-
Notifications
You must be signed in to change notification settings - Fork 0
/
matcher_test.go
249 lines (194 loc) · 5.2 KB
/
matcher_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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
package routing
import (
"net/http"
"reflect"
"testing"
)
func Test_byHost_WithSpecificHosts(t *testing.T) {
h := "test.com"
h2 := "test2.com"
req, _ := http.NewRequest("GET", "/", nil)
req.Host = h
m, _ := byHost(h)
m2, _ := byHost(h2)
matches, leaf := m(req)
assertTrue(t, matches)
assertFalse(t, leaf.hasParameters())
matches2, leaf2 := m2(req)
assertFalse(t, matches2)
assertFalse(t, leaf2.hasParameters())
}
func Test_byHost_WithDynamicHosts(t *testing.T) {
h := "app.{subdomain:[a-z]+}.test2.com"
req, _ := http.NewRequest("GET", "/", nil)
req.Host = "app.golossus.test2.com"
m, _ := byHost(h)
matches, leaf := m(req)
assertTrue(t, matches)
assertTrue(t, leaf.hasParameters())
req.Host = "app.1234.test2.com"
m, _ = byHost(h)
matches, leaf = m(req)
assertFalse(t, matches)
assertTrue(t, leaf.hasParameters())
}
func Test_byHost_ReturnsErrorWhenMalformedHost(t *testing.T) {
h := "app.{subdomain:[a-z]+}{m}.test2.com"
req, _ := http.NewRequest("GET", "/", nil)
req.Host = "app.golossus.test2.com"
m, err := byHost(h)
assertNil(t, m)
assertNotNil(t, err)
}
func Test_bySchemas_WithValidStaticSchemas(t *testing.T) {
httpReq, _ := http.NewRequest("GET", "/", nil)
httpReq.URL.Scheme = "http"
httpsReq, _ := http.NewRequest("GET", "/", nil)
httpsReq.URL.Scheme = "https"
ftpReq, _ := http.NewRequest("GET", "/", nil)
ftpReq.URL.Scheme = "ftp"
m, err := bySchemas("http", "https")
assertNotNil(t, m)
assertNil(t, err)
matches, leaf := m(httpReq)
assertTrue(t, matches)
assertFalse(t, leaf.hasParameters())
matches, leaf = m(httpsReq)
assertTrue(t, matches)
assertFalse(t, leaf.hasParameters())
matches, leaf = m(ftpReq)
assertFalse(t, matches)
assertNil(t, leaf)
}
func Test_bySchemas_WithValidDynamicSchemas(t *testing.T) {
httpReq, _ := http.NewRequest("GET", "/", nil)
httpReq.URL.Scheme = "http"
httpsReq, _ := http.NewRequest("GET", "/", nil)
httpsReq.URL.Scheme = "https"
ftpReq, _ := http.NewRequest("GET", "/", nil)
ftpReq.URL.Scheme = "ftp"
m, err := bySchemas("htt{_:ps?}")
assertNotNil(t, m)
assertNil(t, err)
matches, leaf := m(httpReq)
assertTrue(t, matches)
assertTrue(t, leaf.hasParameters())
matches, leaf = m(httpsReq)
assertTrue(t, matches)
assertTrue(t, leaf.hasParameters())
matches, leaf = m(ftpReq)
assertFalse(t, matches)
assertNil(t, leaf)
}
func Test_bySchemas_ReturnsErrorWhenInvalidSchemaFormat(t *testing.T) {
s := "http:"
_, err := bySchemas(s)
assertNotNil(t, err)
}
func Test_byHeaders_ReturnsFalseWhenInsufficientHeaders(t *testing.T) {
req, _ := http.NewRequest("GET", "/", nil)
headers := map[string]string{
"key1": "value1",
}
m := byHeaders(headers)
matches, _ := m(req)
assertFalse(t, matches)
}
func Test_byHeaders_ReturnsFalseWhenHeaderDoNotMach(t *testing.T) {
req, _ := http.NewRequest("GET", "/", nil)
req.Header.Set("key1", "value1")
req.Header.Set("key2", "invalid")
headers := map[string]string{
"key1": "value1",
"key2": "value2",
}
m := byHeaders(headers)
matches, _ := m(req)
assertFalse(t, matches)
}
func Test_byHeaders_ReturnsTrueWhenHeadersMatch(t *testing.T) {
req, _ := http.NewRequest("GET", "/", nil)
req.Header.Set("key1", "value1")
req.Header.Set("key2", "value2")
headers := map[string]string{
"key1": "value1",
"key2": "value2",
}
m := byHeaders(headers)
matches, _ := m(req)
assertTrue(t, matches)
}
func Test_byQueryParameters_ReturnsFalseWhenInsufficientQueryParams(t *testing.T) {
req, _ := http.NewRequest("GET", "/", nil)
params := map[string]string{
"key1": "value1",
}
m := byQueryParameters(params)
matches, _ := m(req)
assertFalse(t, matches)
}
func Test_byQueryParameters_ReturnsFalseWhenQueryParamsDoNotMach(t *testing.T) {
req, _ := http.NewRequest("GET", "/?key1=value1&key2=invalid", nil)
params := map[string]string{
"key1": "value1",
"key2": "value2",
}
m := byQueryParameters(params)
matches, _ := m(req)
assertFalse(t, matches)
}
func Test_byQueryParameters_ReturnsTrueWhenQueryParamsMatch(t *testing.T) {
req, _ := http.NewRequest("GET", "/?key1=value1&key2=value2", nil)
params := map[string]string{
"key1": "value1",
"key2": "value2",
}
m := byQueryParameters(params)
matches, _ := m(req)
assertTrue(t, matches)
}
func Test_byCustomMatcher_UsesCustomFunction(t *testing.T) {
req, _ := http.NewRequest("GET", "/", nil)
matcherTrue := func(r *http.Request) bool {
return true
}
matcherFalse := func(r *http.Request) bool {
return false
}
m := byCustomMatcher(matcherTrue)
matches, _ := m(req)
assertTrue(t, matches)
m = byCustomMatcher(matcherFalse)
matches, _ = m(req)
assertFalse(t, matches)
}
func assertTrue(t *testing.T, value bool) {
if !value {
t.Errorf("%v is not true", value)
}
}
func assertFalse(t *testing.T, value bool) {
if value {
t.Errorf("%v is not false", value)
}
}
func assertNil(t *testing.T, value interface{}) {
if value == nil {
return
}
reflectedValue := reflect.ValueOf(value)
switch reflectedValue.Kind() {
case reflect.Chan, reflect.Func,
reflect.Interface, reflect.Map,
reflect.Ptr, reflect.Slice:
if reflectedValue.IsNil() {
return
}
}
t.Errorf("%v is not nil", value)
}
func assertNotNil(t *testing.T, value interface{}) {
if value == nil {
t.Errorf("%v is nil", value)
}
}