-
Notifications
You must be signed in to change notification settings - Fork 1
/
dir_test.go
437 lines (419 loc) · 9.01 KB
/
dir_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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
package main
import (
"os"
"path/filepath"
"strings"
"testing"
"github.com/stretchr/testify/require"
)
func TestReadCSVFile(t *testing.T) {
validLines := [][]string{
{filenameColName, passwordColName},
{"file_1.zip", "password_1"},
{"file_2.zip", "password_2"},
}
validCSVFilePath, err := createTempFile("", "test*.csv", []byte("File Name,Zip Password\nfile_1.zip,password_1\nfile_2.zip,password_2\n"))
require.NoError(t, err)
defer os.Remove(validCSVFilePath)
invalidCSVFilePath, err := createTempFile("", "test*.csv", []byte("File Name,Zip Password\nfile_1.zip,password_1\nfile_2.zip\n"))
require.NoError(t, err)
defer os.Remove(invalidCSVFilePath)
tests := []struct {
name string
path string
expected [][]string
expectErr bool
}{
{
name: "with a valid csv file",
path: validCSVFilePath,
expected: validLines,
expectErr: false,
},
{
name: "with a non-existent csv file",
path: "non-existing_file.csv",
expected: nil,
expectErr: true,
},
{
name: "with an invalid csv file",
path: invalidCSVFilePath,
expected: nil,
expectErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
actual, err := readCSVFile(tt.path)
if tt.expectErr {
require.Error(t, err)
return
}
require.NoError(t, err)
require.Equal(t, tt.expected, actual)
})
}
}
func TestValidateCSVFile(t *testing.T) {
tests := []struct {
name string
lines [][]string
expectErr bool
}{
{
name: "with a valid csv file",
lines: [][]string{
{filenameColName, passwordColName},
{"file_1.zip", "password_1"},
},
expectErr: false,
},
{
name: "with an invalid line count",
lines: [][]string{
{filenameColName, passwordColName},
},
expectErr: true,
},
{
name: "with an invalid header col count",
lines: [][]string{
{filenameColName},
{"file_1.zip"},
},
expectErr: true,
},
{
name: "with empty filenames",
lines: [][]string{
{filenameColName, passwordColName},
{"", "password_1"},
},
expectErr: true,
},
{
name: "with duplicate filenames",
lines: [][]string{
{filenameColName, passwordColName},
{"file_1.zip", "password_1"},
{"file_1.zip", "password_2"},
},
expectErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := validateCSVFile(tt.lines)
if tt.expectErr {
require.Error(t, err)
return
}
require.NoError(t, err)
})
}
}
func TestValidateLineCount(t *testing.T) {
tests := []struct {
name string
lines [][]string
expectErr bool
}{
{
name: "with a valid line count",
lines: [][]string{
{filenameColName, passwordColName},
{"file_1.zip", "password_1"},
},
expectErr: false,
},
{
name: "with an invalid line count",
lines: [][]string{
{filenameColName, passwordColName},
},
expectErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := validateLineCount(tt.lines)
if tt.expectErr {
require.Error(t, err)
return
}
require.NoError(t, err)
})
}
}
func TestValidateHeaderColCount(t *testing.T) {
tests := []struct {
name string
lines [][]string
expectErr bool
}{
{
name: "with a valid header col count",
lines: [][]string{
{filenameColName, passwordColName},
},
expectErr: false,
},
{
name: "with an invalid header col count",
lines: [][]string{
{filenameColName},
},
expectErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := validateHeaderColCount(tt.lines)
if tt.expectErr {
require.Error(t, err)
return
}
require.NoError(t, err)
})
}
}
func TestCheckEmptyFilenames(t *testing.T) {
tests := []struct {
name string
lines [][]string
emptyFilenameLineNums []int
}{
{
name: "without empty filenames",
lines: [][]string{
{filenameColName, passwordColName},
{"file_1.zip", "password_1"},
{"file_2.zip", "password_2"},
},
emptyFilenameLineNums: []int{},
},
{
name: "with empty filenames",
lines: [][]string{
{filenameColName, passwordColName},
{"", "password_1"},
{"file_2.zip", "password_2"},
{"", "password_3"},
},
emptyFilenameLineNums: []int{2, 4},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := checkEmptyFilenames(tt.lines)
if len(tt.emptyFilenameLineNums) > 0 {
require.Error(t, err)
errMsgContainsEmptyFilenameLineNums := strings.Contains(err.Error(), joinLineNums(tt.emptyFilenameLineNums))
require.True(t, errMsgContainsEmptyFilenameLineNums)
return
}
require.NoError(t, err)
})
}
}
func TestCheckDuplicateFilenames(t *testing.T) {
tests := []struct {
name string
lines [][]string
duplicateLineNums []int
}{
{
name: "without duplicate filenames",
lines: [][]string{
{filenameColName, passwordColName},
{"file_1.zip", "password_1"},
{"file_2.zip", "password_2"},
},
duplicateLineNums: []int{},
},
{
name: "with duplicate filenames",
lines: [][]string{
{filenameColName, passwordColName},
{"file_1.zip", "password_1"},
{"file_2.zip", "password_2"},
{"file_1.zip", "password_3"},
},
duplicateLineNums: []int{2, 4},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := checkDuplicateFilenames(tt.lines)
if len(tt.duplicateLineNums) > 0 {
require.Error(t, err)
errMsgContainsDuplicateLineNums := strings.Contains(err.Error(), joinLineNums(tt.duplicateLineNums))
require.True(t, errMsgContainsDuplicateLineNums)
return
}
require.NoError(t, err)
})
}
}
func TestParseZipFiles(t *testing.T) {
dirPath := os.TempDir()
filename1 := "file_1.zip"
filePath1 := filepath.Join(dirPath, filename1)
password1 := "password_1"
filename2 := "file_2.zip"
filePath2 := filepath.Join(dirPath, filename2)
password2 := "password_2"
lines := [][]string{
{filenameColName, passwordColName},
{filename1, password1},
{filename2, password2},
}
expected := []zipFile{
{
path: filePath1,
password: password1,
},
{
path: filePath2,
password: password2,
},
}
actual := parseZipFiles(dirPath, lines)
require.Equal(t, expected, actual)
}
func TestValidateZipFiles(t *testing.T) {
filePath, err := createTempFile("", "file_1.zip", nil)
require.NoError(t, err)
defer os.Remove(filePath)
tests := []struct {
name string
files []zipFile
expectErr bool
}{
{
name: "with valid files",
files: []zipFile{
{
path: filePath,
},
},
expectErr: false,
},
{
name: "with a non-existing file",
files: []zipFile{
{
path: "non-existing_file.zip",
},
},
expectErr: true,
},
{
name: "with an irregular file (dir)",
files: []zipFile{
{
path: os.TempDir(),
},
},
expectErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := validateZipFiles(tt.files)
errExists := err != nil
require.Equal(t, tt.expectErr, errExists)
})
}
}
func TestFindFilenameColIndex(t *testing.T) {
tests := []struct {
name string
header []string
expected int
}{
{
name: "with the filename column",
header: []string{"column 1", filenameColName, "column 2"},
expected: 1,
},
{
name: "without the filename column",
header: []string{"column 1", "column 2"},
expected: 0,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
actual := findFilenameColIndex(tt.header)
require.Equal(t, tt.expected, actual)
})
}
}
func TestFindPasswordColIndex(t *testing.T) {
tests := []struct {
name string
header []string
expected int
}{
{
name: "with the password column",
header: []string{"column 1", passwordColName, "column 2"},
expected: 1,
},
{
name: "without the password column",
header: []string{"column 1", "column 2"},
expected: 1,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
actual := findPasswordColIndex(tt.header)
require.Equal(t, tt.expected, actual)
})
}
}
func TestJoinLineNums(t *testing.T) {
lineNums := []int{1, 2}
expected := "1, 2"
actual := joinLineNums(lineNums)
require.Equal(t, expected, actual)
}
func TestLineNumExists(t *testing.T) {
lineNums := []int{1, 2}
tests := []struct {
name string
lineNum int
expected bool
}{
{
name: "with an existing line number",
lineNum: 1,
expected: true,
},
{
name: "with a non-existing line number",
lineNum: 3,
expected: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
actual := lineNumExists(tt.lineNum, lineNums)
require.Equal(t, tt.expected, actual)
})
}
}
func createTempFile(dir string, filename string, content []byte) (string, error) {
file, err := os.CreateTemp(dir, filename)
if err != nil {
return "", err
}
_, err = file.Write(content)
if err != nil {
return "", err
}
return file.Name(), nil
}