-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfilepath_test.go
137 lines (123 loc) · 2.94 KB
/
filepath_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
package pathtype_test
import (
"path/filepath"
"testing"
)
func TestAbs(t *testing.T) {
for _, p := range testPaths {
t1 := tester{TB: t, Transform: pathToString}
t1.Expect(filepath.Abs(string(p)))
t1.Result(p.Abs())
t1.AssertEquals()
}
}
func TestBase(t *testing.T) {
for _, p := range testPaths {
t1 := tester{TB: t, Transform: pathToString}
t1.Expect(filepath.Base(string(p)))
t1.Result(p.Base())
t1.AssertEquals()
}
}
func TestClean(t *testing.T) {
for _, p := range testPaths {
t1 := tester{TB: t, Transform: pathToString}
t1.Expect(filepath.Clean(string(p)))
t1.Result(p.Clean())
t1.AssertEquals()
}
}
func TestDir(t *testing.T) {
for _, p := range testPaths {
t1 := tester{TB: t, Transform: pathToString}
t1.Expect(filepath.Dir(string(p)))
t1.Result(p.Dir())
t1.AssertEquals()
}
}
func TestEvalSymlinks(t *testing.T) {
for _, p := range testPaths {
t1 := tester{TB: t, Transform: pathToString}
t1.Expect(filepath.EvalSymlinks(string(p)))
t1.Result(p.EvalSymlinks())
t1.AssertEquals()
}
}
func TestExt(t *testing.T) {
for _, p := range testPaths {
t1 := tester{TB: t, Transform: pathToString}
t1.Expect(filepath.Ext(string(p)))
t1.Result(p.Ext())
t1.AssertEquals()
}
}
func TestFromSlash(t *testing.T) {
for _, p := range testPaths {
t1 := tester{TB: t, Transform: pathToString}
t1.Expect(filepath.FromSlash(string(p)))
t1.Result(p.FromSlash())
t1.AssertEquals()
}
}
func TestGlob(t *testing.T) {
for _, p := range testPaths {
for _, p1 := range testPatterns {
t1 := tester{TB: t, Transform: pathToString}
t1.Expect(filepath.Glob(filepath.Join(string(p), p1)))
t1.Result(p.Glob(p1))
t1.AssertEquals()
}
}
}
func TestIsAbs(t *testing.T) {
for _, p := range testPaths {
t1 := tester{TB: t, Transform: pathToString}
t1.Expect(filepath.IsAbs(string(p)))
t1.Result(p.IsAbs())
t1.AssertEquals()
}
}
func TestMatch(t *testing.T) {
for _, p := range testPaths {
for _, p1 := range testPatterns {
t1 := tester{TB: t, Transform: pathToString}
t1.Expect(filepath.Match(p1, string(p)))
t1.Result(p.Match(p1))
t1.AssertEquals()
}
}
}
func TestRel(t *testing.T) {
for _, p := range testPaths {
for _, p1 := range testPaths {
t1 := tester{TB: t, Transform: pathToString}
t1.Expect(filepath.Rel(string(p), string(p1)))
t1.Result(p.Rel(p1))
t1.AssertEquals()
}
}
}
func TestSplit(t *testing.T) {
for _, p := range testPaths {
t1 := tester{TB: t, Transform: pathToString}
t1.Expect(filepath.Split(string(p)))
t1.Result(p.Split())
t1.AssertEquals()
}
}
func TestToSlash(t *testing.T) {
for _, p := range testPaths {
t1 := tester{TB: t, Transform: pathToString}
t1.Expect(filepath.ToSlash(string(p)))
t1.Result(p.ToSlash())
t1.AssertEquals()
}
}
func TestVolumeName(t *testing.T) {
for _, p := range testPaths {
t1 := tester{TB: t, Transform: pathToString}
t1.Expect(filepath.VolumeName(string(p)))
t1.Result(p.VolumeName())
t1.AssertEquals()
}
}