-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunc_find_paths_test.go
76 lines (69 loc) · 1.99 KB
/
func_find_paths_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
package testing
import "testing"
func Test_FindPaths_DefaultTarget(t *testing.T) {
rsl := `
paths = find_paths("path_example/dir2")
print(paths)
`
setupAndRunCode(t, rsl, "--color=never")
expected := `[ "dir21", "dir21/file21.txt", "dir22", "dir22/file22.txt", "file2.txt" ]
`
assertOnlyOutput(t, stdOutBuffer, expected)
assertNoErrors(t)
}
func Test_FindPaths_Cwd(t *testing.T) {
rsl := `
paths = find_paths("path_example/dir2", relative="cwd")
print(paths)
`
setupAndRunCode(t, rsl, "--color=never")
expected := `[ "path_example/dir2/dir21", "path_example/dir2/dir21/file21.txt", "path_example/dir2/dir22", "path_example/dir2/dir22/file22.txt", "path_example/dir2/file2.txt" ]
`
assertOnlyOutput(t, stdOutBuffer, expected)
assertNoErrors(t)
}
func Test_FindPaths_Abs(t *testing.T) {
t.Skip("Need to test abstractions in place for this to work regardless of the computer running the test")
rsl := `
paths = find_paths("path_example/dir2", relative="absolute")
print(paths)
`
setupAndRunCode(t, rsl, "--color=never")
expected := `
`
assertOnlyOutput(t, stdOutBuffer, expected)
assertNoErrors(t)
}
func Test_FindPaths_Depth(t *testing.T) {
rsl := `
paths = find_paths("path_example", depth=1)
print(paths)
`
setupAndRunCode(t, rsl, "--color=never")
expected := `[ "dir1", "dir2" ]
`
assertOnlyOutput(t, stdOutBuffer, expected)
assertNoErrors(t)
}
func Test_FindPaths_Neg3DepthIncludesAll(t *testing.T) {
rsl := `
paths = find_paths("path_example", depth=-3)
print(paths)
`
setupAndRunCode(t, rsl, "--color=never")
expected := `[ "dir1", "dir1/dir11", "dir1/dir11/file11.txt", "dir2", "dir2/dir21", "dir2/dir21/file21.txt", "dir2/dir22", "dir2/dir22/file22.txt", "dir2/file2.txt" ]
`
assertOnlyOutput(t, stdOutBuffer, expected)
assertNoErrors(t)
}
func Test_FindPaths_Depth0IncludesNothing(t *testing.T) {
rsl := `
paths = find_paths("path_example", depth=0)
print(paths)
`
setupAndRunCode(t, rsl, "--color=never")
expected := `[ ]
`
assertOnlyOutput(t, stdOutBuffer, expected)
assertNoErrors(t)
}