-
Notifications
You must be signed in to change notification settings - Fork 1
/
go-fs_test.go
131 lines (127 loc) · 2.67 KB
/
go-fs_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
package gofat
import (
"io"
"strings"
"testing"
"testing/fstest"
)
func TestGoFS(t *testing.T) {
gofs := GoFs{*testingNew(t, testFileReader(fat32))}
if err := fstest.TestFS(gofs, "DoNotEdit_tests/HelloWorldThisIsALoongFileName.txt", "DoNotEdit_tests/README.md"); err != nil {
t.Fatal(err)
}
}
func TestNewGoFS(t *testing.T) {
type args struct {
reader io.ReadSeeker
}
tests := []struct {
name string
args args
// Do not expect something special. Should be enough to check for non-nil.
// Would not be that easy to provide a valid Fs to check with DeepEqual.
wantNotNil bool
wantErr bool
}{
{
name: "FAT32 test image",
args: args{
reader: testFileReader(fat32),
},
wantNotNil: true,
wantErr: false,
},
{
name: "FAT16 test image",
args: args{
reader: testFileReader(fat16),
},
wantNotNil: true,
wantErr: false,
},
{
name: "no FAT file",
args: args{
reader: strings.NewReader("This is no FAT file"),
},
wantNotNil: false,
wantErr: true,
},
{
name: "fat32 invalid sectors per cluster test image",
args: args{
reader: testFileReader(fat32InvalidSectorsPerCluster),
},
wantNotNil: false,
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := NewGoFS(tt.args.reader)
if (err != nil) != tt.wantErr {
t.Errorf("New() error = %v, wantErr %v", err, tt.wantErr)
return
}
if (got != nil) != tt.wantNotNil {
t.Errorf("New() = %v, wantNotNil %v", got, tt.wantNotNil)
}
})
}
}
func TestNewGoFSSkipChecks(t *testing.T) {
type args struct {
reader io.ReadSeeker
}
tests := []struct {
name string
args args
wantNotNil bool
wantErr bool
}{
{
name: "FAT32 test image",
args: args{
reader: testFileReader(fat32),
},
wantNotNil: true,
wantErr: false,
},
{
name: "FAT16 test image",
args: args{
reader: testFileReader(fat16),
},
wantNotNil: true,
wantErr: false,
},
{
name: "no FAT file",
args: args{
reader: strings.NewReader("This is no FAT file"),
},
wantNotNil: false,
wantErr: true,
},
{
name: "fat32 invalid sectors per cluster test image",
args: args{
reader: testFileReader(fat32InvalidSectorsPerCluster),
},
wantNotNil: true,
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := NewGoFSSkipChecks(tt.args.reader)
if (err != nil) != tt.wantErr {
t.Errorf("NewSkipChecks() error = %v, wantErr %v", err, tt.wantErr)
return
}
if (got != nil) != tt.wantNotNil {
t.Errorf("New() = %v, wantNotNil %v", got, tt.wantNotNil)
}
})
}
}