-
Notifications
You must be signed in to change notification settings - Fork 568
/
Copy pathfind_test.go
450 lines (435 loc) ยท 11.8 KB
/
find_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
438
439
440
441
442
443
444
445
446
447
448
449
450
// Copyright (c) 2015-2022 MinIO, Inc.
//
// This file is part of MinIO Object Storage stack
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package cmd
import (
"context"
"os/exec"
"regexp"
"runtime"
"strings"
"testing"
"time"
)
// Tests match find function with all supported inputs on
// file pattern, size and time.
func TestMatchFind(t *testing.T) {
// List of various contexts used in each tests,
// tests are run in the same order as this list.
listFindContexts := []*findContext{
{
clnt: &S3Client{
targetURL: &ClientURL{},
},
ignorePattern: "*.go",
},
{
clnt: &S3Client{
targetURL: &ClientURL{},
},
namePattern: "console",
},
{
clnt: &S3Client{
targetURL: &ClientURL{},
},
pathPattern: "*console*",
},
{
clnt: &S3Client{
targetURL: &ClientURL{},
},
regexPattern: regexp.MustCompile(`^(\d+\.){3}\d+$`),
},
{
clnt: &S3Client{
targetURL: &ClientURL{},
},
olderThan: "1d",
},
{
clnt: &S3Client{
targetURL: &ClientURL{},
},
newerThan: "32000d",
},
{
clnt: &S3Client{
targetURL: &ClientURL{},
},
largerSize: 1024 * 1024,
},
{
clnt: &S3Client{
targetURL: &ClientURL{},
},
smallerSize: 1024,
},
{
clnt: &S3Client{
targetURL: &ClientURL{},
},
ignorePattern: "*.txt",
},
{
clnt: &S3Client{
targetURL: &ClientURL{},
},
},
}
testCases := []struct {
content contentMessage
expectedMatch bool
}{
// Matches ignore pattern, so match will be false - Test 1.
{
content: contentMessage{
Key: "pkg/console/console.go",
},
expectedMatch: false,
},
// Matches name pattern - Test 2.
{
content: contentMessage{
Key: "pkg/console/console.go",
},
expectedMatch: true,
},
// Matches path pattern - Test 3.
{
content: contentMessage{
Key: "pkg/console/console.go",
},
expectedMatch: true,
},
// Matches regex pattern - Test 4.
{
content: contentMessage{
Key: "192.168.1.1",
},
expectedMatch: true,
},
// Matches older than time - Test 5.
{
content: contentMessage{
Time: time.Unix(11999, 0).UTC(),
},
expectedMatch: true,
},
// Matches newer than time - Test 6.
{
content: contentMessage{
Time: time.Unix(12001, 0).UTC(),
},
expectedMatch: true,
},
// Matches size larger - Test 7.
{
content: contentMessage{
Size: 1024 * 1024 * 2,
},
expectedMatch: true,
},
// Matches size smaller - Test 8.
{
content: contentMessage{
Size: 1023,
},
expectedMatch: true,
},
// Does not match ignore pattern, so match will be true - Test 9.
{
content: contentMessage{
Key: "pkg/console/console.go",
},
expectedMatch: true,
},
// No matching inputs were provided, so nothing to match return value is true - Test 10.
{
content: contentMessage{},
expectedMatch: true,
},
}
// Runs all the test cases and validate the expected conditions.
for i, testCase := range testCases {
gotMatch := matchFind(listFindContexts[i], testCase.content)
if testCase.expectedMatch != gotMatch {
t.Errorf("Test: %d, expected match %t, got %t", i+1, testCase.expectedMatch, gotMatch)
}
}
}
// Tests suffix strings trimmed off correctly at maxdepth.
func TestSuffixTrimmingAtMaxDepth(t *testing.T) {
testCases := []struct {
startPrefix string
path string
separator string
maxDepth uint
expectedNewPath string
}{
// Tests at max depth 0.
{
startPrefix: "./",
path: ".git/refs/remotes",
separator: "/",
maxDepth: 0,
expectedNewPath: ".git/refs/remotes",
},
// Tests at max depth 1.
{
startPrefix: "./",
path: ".git/refs/remotes",
separator: "/",
maxDepth: 1,
expectedNewPath: "./.git/",
},
// Tests at max depth 2.
{
startPrefix: "./",
path: ".git/refs/remotes",
separator: "/",
maxDepth: 2,
expectedNewPath: "./.git/refs/",
},
// Tests at max depth 3.
{
startPrefix: "./",
path: ".git/refs/remotes",
separator: "/",
maxDepth: 3,
expectedNewPath: "./.git/refs/remotes",
},
// Tests with startPrefix empty.
{
startPrefix: "",
path: ".git/refs/remotes",
separator: "/",
maxDepth: 2,
expectedNewPath: ".git/refs/",
},
// Tests with separator empty.
{
startPrefix: "",
path: ".git/refs/remotes",
separator: "",
maxDepth: 2,
expectedNewPath: ".g",
},
// Tests with nested startPrefix paths - 1.
{
startPrefix: ".git/refs/",
path: ".git/refs/remotes",
separator: "/",
maxDepth: 1,
expectedNewPath: ".git/refs/remotes",
},
// Tests with nested startPrefix paths - 2.
{
startPrefix: ".git/refs",
path: ".git/refs/remotes",
separator: "/",
maxDepth: 1,
expectedNewPath: ".git/refs/",
},
}
// Run all the test cases and validate for returned new path.
for i, testCase := range testCases {
gotNewPath := trimSuffixAtMaxDepth(testCase.startPrefix, testCase.path, testCase.separator, testCase.maxDepth)
if testCase.expectedNewPath != gotNewPath {
t.Errorf("Test: %d, expected path %s, got %s", i+1, testCase.expectedNewPath, gotNewPath)
}
}
}
// Tests matching functions for name, path and regex.
func TestFindMatch(t *testing.T) {
// testFind is the structure used to contain params pertinent to find related tests
type testFind struct {
pattern, filePath, flagName string
match bool
}
basicTests := []testFind{
// Name match tests - success cases.
{"*.jpg", "carter.jpg", "name", true},
{"console", "pkg/console/console.go", "name", true},
{"console.go", "pkg/console/console.go", "name", true},
{"*XA==", "I/enjoy/morning/walks/XA==", "name ", true},
{"*parser", "/This/might/mess up./the/parser", "name", true},
{"*LTIxNDc0ODM2NDgvLTE=", "What/A/Naughty/String/LTIxNDc0ODM2NDgvLTE=", "name", true},
{"*", "/bla/bla/bla/ ", "name", true},
// Name match tests - failure cases.
{"*.jpg", "carter.jpeg", "name", false},
{"*/test/*", "/test/bob/likes/cake", "name", false},
{"*test/*", "bob/test/likes/cake", "name", false},
{"*test/*", "bob/likes/test/cake", "name", false},
{"*/test/*", "bob/likes/cake/test", "name", false},
{"*.jpg", ".jpg/elves/are/evil", "name", false},
{
"wq3YgNiB2ILYg9iE2IXYnNud3I/hoI7igIvigIzigI3igI7igI/igKrigKvigKzigK3igK7igaDi",
"An/Even/Bigger/String/wq3YgNiB2ILYg9iE2IXYnNud3I/hoI7igIvigIzigI3igI7igI/igKrigKvigKzigK3igK7igaDi", "name", false,
},
{"๐ฟ๐๐", "well/this/isAN/odd/font/THE", "name", false},
{"๐ฟ๐๐", "well/this/isAN/odd/font/The", "name", false},
{"๐ฟ๐๐", "well/this/isAN/odd/font/๐ฃ๐ฑ๐ฎ", "name", false},
{"๐ฟ๐๐", "what/a/strange/turn/of/events/๐ฃhe", "name", false},
{"๐ฟ๐๐", "well/this/isAN/odd/font/๐ฟ๐๐", "name", true},
// Path match tests - success cases.
{"*/test/*", "bob/test/likes/cake", "path", true},
{"*/test/*", "/test/bob/likes/cake", "path", true},
// Path match tests - failure cases.
{"*.jpg", ".jpg/elves/are/evil", "path", false},
{"*/test/*", "test1/test2/test3/test", "path", false},
{"*/ test /*", "test/test1/test2/test3/test", "path", false},
{"*/test/*", " test /I/have/Really/Long/hair", "path", false},
{"*XA==", "XA==/Height/is/a/social/construct", "path", false},
{"*W", "/Word//this/is a/trickyTest", "path", false},
{"LTIxNDc0ODM2NDgvLTE=", "LTIxNDc0ODM2NDgvLTE=/I/Am/One/Baaaaad/String", "path", false},
{"/", "funky/path/name", "path", false},
}
for _, test := range basicTests {
switch test.flagName {
case "name":
testMatch := nameMatch(test.pattern, test.filePath)
if testMatch != test.match {
t.Fatalf("Unexpected result %t, with pattern %s, flag %s and filepath %s \n",
!test.match, test.pattern, test.flagName, test.filePath)
}
case "path":
testMatch := pathMatch(test.pattern, test.filePath)
if testMatch != test.match {
t.Fatalf("Unexpected result %t, with pattern %s, flag %s and filepath %s \n",
!test.match, test.pattern, test.flagName, test.filePath)
}
}
}
}
// Tests string substitution function.
func TestStringReplace(t *testing.T) {
testCases := []struct {
str string
expectedStr string
content contentMessage
}{
// Tests string replace {} without quotes.
{
str: "{}",
expectedStr: "path/1",
content: contentMessage{Key: "path/1"},
},
// Tests string replace {} with quotes.
{
str: `{""}`,
expectedStr: `"path/1"`,
content: contentMessage{Key: "path/1"},
},
// Tests string replace {base}
{
str: "{base}",
expectedStr: "1",
content: contentMessage{Key: "path/1"},
},
// Tests string replace {"base"} with quotes.
{
str: `{"base"}`,
expectedStr: `"1"`,
content: contentMessage{Key: "path/1"},
},
// Tests string replace {dir}
{
str: `{dir}`,
expectedStr: `path`,
content: contentMessage{Key: "path/1"},
},
// Tests string replace {"dir"} with quotes.
{
str: `{"dir"}`,
expectedStr: `"path"`,
content: contentMessage{Key: "path/1"},
},
// Tests string replace {"size"} with quotes.
{
str: `{"size"}`,
expectedStr: `"0 B"`,
content: contentMessage{Size: 0},
},
// Tests string replace {"time"} with quotes.
{
str: `{"time"}`,
expectedStr: `"2038-01-19 03:14:07 UTC"`,
content: contentMessage{
Time: time.Unix(2147483647, 0).UTC(),
},
},
// Tests string replace {size}
{
str: `{size}`,
expectedStr: `1.0 MiB`,
content: contentMessage{Size: 1024 * 1024},
},
// Tests string replace {time}
{
str: `{time}`,
expectedStr: `2038-01-19 03:14:07 UTC`,
content: contentMessage{
Time: time.Unix(2147483647, 0).UTC(),
},
},
}
for i, testCase := range testCases {
gotStr := stringsReplace(context.Background(), testCase.str, testCase.content)
if gotStr != testCase.expectedStr {
t.Errorf("Test %d: Expected %s, got %s", i+1, testCase.expectedStr, gotStr)
}
}
}
// Tests exit status, getExitStatus() function
func TestGetExitStatus(t *testing.T) {
if runtime.GOOS != "linux" {
t.Skip("Skipping on non-linux")
return
}
testCases := []struct {
command string
expectedExitStatus int
}{
// Tests "No such file or directory", exit status code 2
{
command: "ls asdf",
expectedExitStatus: 2,
},
{
command: "cp x x",
expectedExitStatus: 1,
},
// expectedExitStatus for "command not found" case is 127,
// but exec command cannot capture anything since a process
// for the command could not be started at all,
// so the expectedExitStatus is 1
{
command: "asdf",
expectedExitStatus: 1,
},
}
for i, testCase := range testCases {
commandArgs := strings.Split(testCase.command, " ")
cmd := exec.Command(commandArgs[0], commandArgs[1:]...)
// Return exit status of the command run
exitStatus := getExitStatus(cmd.Run())
if exitStatus != testCase.expectedExitStatus {
t.Errorf("Test %d: Expected error status code for command \"%v\" is %v, got %v",
i+1, testCase.command, testCase.expectedExitStatus, exitStatus)
}
}
}