-
Notifications
You must be signed in to change notification settings - Fork 546
/
utils_test.go
49 lines (46 loc) · 1008 Bytes
/
utils_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
package main
import "testing"
func TestSublimeContains(t *testing.T) {
tests := []struct {
text string
substr string
pass bool
}{
{"hello", "lo", true},
{"abcdefg", "cf", true},
{"abcdefg", "a", true},
{"abcdefg", "b", true},
{"abcdefg", "cfa", false},
{"abcdefg", "aa", false},
{"世界", "a", false},
{"Hello 世界", "界", true},
{"Hello 世界", "elo", true},
}
for _, v := range tests {
res := SublimeContains(v.text, v.substr)
if res != v.pass {
t.Fatalf("Failed: %v - res:%v", v, res)
}
}
}
func TestCleanPath(t *testing.T) {
tests := []struct {
orig string
expect string
}{
// {"C:\\hello", "C:/hello"}, // Only works in windows
{"", "."},
{"//../foo", "/foo"},
{"/../../", "/"},
{"/hello/world/..", "/hello"},
{"/..", "/"},
{"/foo/..", "/"},
{"/-/foo", "/-/foo"},
}
for _, v := range tests {
res := cleanPath(v.orig)
if res != v.expect {
t.Fatalf("Clean path(%v) expect(%v) but got(%v)", v.orig, v.expect, res)
}
}
}