forked from nbari/violetear
-
Notifications
You must be signed in to change notification settings - Fork 0
/
trie_test.go
187 lines (172 loc) · 4.89 KB
/
trie_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
package violetear
import (
"testing"
)
func TestTrieSetEmpty(t *testing.T) {
trie := &Trie{}
_, err := trie.Set([]string{}, nil, "ALL", "")
if err == nil {
t.Error("path cannot be empty")
}
}
func TestTrieSet(t *testing.T) {
trie := &Trie{}
tt := []struct {
name string
path []string
method string
version string
err bool
}{
{"root", []string{"/"}, "ALL", "", false},
{"root v3", []string{"/"}, "ALL", "v3", false},
{"root", []string{"/"}, "ALL", "", false},
{"root", []string{"root"}, "ALL", "", false},
{"dyn", []string{":dnyamic"}, "ALL", "", false},
{"*", []string{"*"}, "ALL", "", false},
{"root", []string{"root", "*"}, "ALL", "", false},
{"root", []string{"root", "alpha"}, "ALL", "", false},
{"root", []string{"root", ":dynamic"}, "ALL", "", false},
{"alpha", []string{"alpha", "beta", "gamma"}, "ALL", "", false},
{"* error", []string{"root", "*", "beta"}, "ALL", "", true},
{"* error", []string{"*", ":dynamic"}, "ALL", "", true},
{"root", []string{"root", "alpha", "beta"}, "ALL", "", false},
{"root 4", []string{"root", "alpha", "beta", "gamma"}, "ALL", "", false},
{"root 4", []string{"root", "alpha", "beta", "gamma"}, "ALL", "v3", false},
}
for _, tc := range tt {
t.Run(tc.name, func(t *testing.T) {
_, err := trie.Set(tc.path, nil, tc.method, tc.version)
expect(t, err != nil, tc.err)
})
}
}
func TestTrieGet(t *testing.T) {
trie := &Trie{}
tt := []struct {
path []string
method string
version string
}{
{[]string{"*"}, "ALL", ""},
{[]string{"*"}, "ALL", "v3"},
{[]string{":dynamic"}, "ALL", ""},
{[]string{":dynamic"}, "ALL", "v3"},
{[]string{"root"}, "ALL", ""},
{[]string{"root"}, "ALL", "v3"},
{[]string{"root", "*"}, "ALL", ""},
{[]string{"root", "*"}, "ALL", "v3"},
{[]string{"root", "alpha", "*"}, "ALL", ""},
{[]string{"root", "alpha", "*"}, "ALL", ""},
{[]string{"root", "alpha1", "*"}, "ALL", ""},
{[]string{"root", "alpha1", "*"}, "ALL", ""},
{[]string{"root", "alpha2", ":dynamic"}, "ALL", ""},
{[]string{"root", "alpha", "beta", "gamma"}, "ALL", ""},
{[]string{"alpha", "*"}, "ALL", ""},
}
for _, tc := range tt {
_, err := trie.Set(tc.path, nil, tc.method, tc.version)
expect(t, err, nil)
}
// Get
ttGet := []struct {
path string
version string
node int
key string
newPath string
leaf bool
}{
{"", "", 0, "", "", false},
{"*", "", 0, "*", "", true},
{"*", "v5", 0, "*", "", false},
{"*", "v4", 0, "*", "", false},
{"*", "v3", 0, "*", "", true},
{":dynamic", "", 0, ":dynamic", "", true},
{":dynamic", "v3", 0, ":dynamic", "", true},
{"root", "", 4, "root", "", true},
{"root/v3", "v3", 1, "v3", "", false},
{"root/alpha", "", 2, "alpha", "", true},
{"root/not_found", "", 4, "not_found", "", false},
{"root/alpha1", "", 1, "alpha1", "", true},
}
for _, tc := range ttGet {
n, k, p, l := trie.Get(tc.path, tc.version)
if tc.node > 0 {
expect(t, len(n.Node), tc.node)
}
expect(t, k, tc.key)
expect(t, p, tc.newPath)
expect(t, l, tc.leaf)
}
n, k, p, l := trie.Get("not_found", "")
expect(t, k, "not_found")
expect(t, p, "")
expect(t, l, false)
expect(t, n.HasRegex, true)
n, k, p, l = trie.Get("root/alpha1/any", "")
expect(t, k, "any")
expect(t, p, "")
expect(t, l, false)
expect(t, len(n.Node), 1)
expect(t, n.HasRegex, false)
n, k, p, l = trie.Get("root/alpha2/any", "")
expect(t, k, "any")
expect(t, p, "")
expect(t, l, false)
expect(t, len(n.Node), 1)
expect(t, n.HasRegex, true)
n, k, p, l = trie.Get("root/alpha/beta", "")
expect(t, k, "beta")
expect(t, p, "")
expect(t, l, true)
expect(t, len(n.Node), 1)
expect(t, n.HasRegex, false)
n, k, p, l = trie.Get("root/alpha/beta/gamma", "")
expect(t, k, "gamma")
expect(t, p, "")
expect(t, l, true)
expect(t, len(n.Node), 0)
expect(t, n.HasRegex, false)
n, k, p, l = trie.Get("root/alphaA/betaB/gammaC", "")
expect(t, k, "alphaA")
expect(t, p, "/betaB/gammaC")
expect(t, l, false)
expect(t, len(n.Node), 4)
expect(t, n.HasRegex, false)
n, k, p, l = trie.Get("root/alpha/betaB/gammaC", "")
expect(t, k, "betaB")
expect(t, p, "/gammaC")
expect(t, l, false)
expect(t, len(n.Node), 2)
expect(t, n.HasRegex, false)
n, k, p, l = trie.Get("root/alpha/betaB/gamma/delta", "")
expect(t, k, "betaB")
expect(t, p, "/gamma/delta")
expect(t, l, false)
expect(t, len(n.Node), 2)
expect(t, n.HasRegex, false)
}
func TestSplitPath(t *testing.T) {
tt := []struct {
in string
out []string
}{
{"/", []string{"/", ""}},
{"//", []string{"/", ""}},
{"///", []string{"/", ""}},
{"////", []string{"/", ""}},
{"/////", []string{"/", ""}},
{"/hello", []string{"hello", ""}},
{"/hello/world", []string{"hello", "/world"}},
{"/hello/:world", []string{"hello", "/:world"}},
{"*", []string{"*", ""}},
{"/?foo=bar", []string{"?foo=bar", ""}},
}
trie := &Trie{}
for _, tc := range tt {
k, p := trie.SplitPath(tc.in)
expect(t, k, tc.out[0])
expect(t, p, tc.out[1])
}
}