-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpath_test.go
74 lines (65 loc) · 2.17 KB
/
path_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
package domain_test
import (
"fmt"
"testing"
"github.com/sokool/domain"
)
func TestNewPath(t *testing.T) {
type scenario struct {
description string
path string
err bool
}
cases := []scenario{
{"root path is required", "/", false},
{"strings are fine", "/some/cool/files/path/readme", false},
{"uppercase are ok", "/HI/THERE", false},
{"numbers are ok", "/users/35682/file", false},
{"whitespaces are ok", "/Nice Users/Tom Hilldinor", false},
{"hyphens are ok", "/documents/invoices-2022-04/fv-1", false},
{"dashes are ok", "/hello_word/_example_/__fold er__", false},
{"tilda are ok", "/~Hello_word~2~example", false},
{"dots are ok", "/some.user.path.with/filename.txt", false},
{"plus are ok", "/in+flames/guitar+samples/ yoo mama", false},
{"exclamation mark are ok", "/!!important!!!/D.O.C.U.M.E.N.T.S", false},
{"no slash at beginning is ok", "some/path/folder", false},
{"empty string is ok", "", false},
{"slash at end is not ok", "/some/path/folder/", true},
{"dollar sign is not ok", "/$HI$/THERE", true},
{"multiple slashes are not ok", "/path//name", true},
{"extra characters at end are not ok", "/dir/game.exe?query=true", true},
}
for _, c := range cases {
t.Run(c.description, func(t *testing.T) {
if _, err := domain.NewPath(c.path); (err != nil && !c.err) || (err == nil && c.err) {
t.Fatalf("expected error:%v got:%v", c.err, err)
}
})
}
}
func TestPath_Element(t *testing.T) {
type scenario struct {
description string
path string
from, to int
elements string
}
cases := []scenario{
{"no path", "", 0, -1, ""},
{"from 0 of / gives /", "/", 0, -1, "/"},
{"from 0 of /a/b gives /a/b", "/a/b", 0, -1, "/a/b"},
{"from 0 of /a/b gives /b", "/a/b", 1, -1, "/b"},
{"from 2 of /a/b gives none", "/a/b", 2, -1, ""},
{"from 1 to 3 of /a/b/c/d gives /b/c", "/a/b/c/d", 1, 3, "/b/c"},
}
for _, c := range cases {
t.Run(c.description, func(t *testing.T) {
p, _ := domain.NewPath(c.path)
if s := p.Trim(c.from, c.to).String(); s != c.elements {
t.Fatalf("expected `%s`, got:`%s`", c.elements, s)
}
fmt.Println(p.String())
fmt.Println(p.Replace("/", ""))
})
}
}