-
Notifications
You must be signed in to change notification settings - Fork 116
/
mux_test.go
271 lines (238 loc) · 7.6 KB
/
mux_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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
package pat
import (
"io"
"net/http"
"net/http/httptest"
"net/url"
"reflect"
"sort"
"strings"
"testing"
)
func TestPatMatch(t *testing.T) {
for i, tt := range []struct {
pat string
u string
match bool
vals url.Values
}{
{"/", "/", true, nil},
{"/", "/wrong_url", false, nil},
{"/foo/:name", "/foo/bar", true, url.Values{":name": {"bar"}}},
{"/foo/:name/baz", "/foo/bar", false, nil},
{"/foo/:name/bar/", "/foo/keith/bar/baz", true, url.Values{":name": {"keith"}}},
{"/foo/:name/bar/", "/foo/keith/bar/", true, url.Values{":name": {"keith"}}},
{"/foo/:name/bar/", "/foo/keith/bar", false, nil},
{"/foo/:name/baz", "/foo/bar/baz", true, url.Values{":name": {"bar"}}},
{"/foo/:name/baz/:id", "/foo/bar/baz", false, nil},
{"/foo/:name/baz/:id", "/foo/bar/baz/123", true, url.Values{":name": {"bar"}, ":id": {"123"}}},
{"/foo/:name/baz/:name", "/foo/bar/baz/123", true, url.Values{":name": {"bar", "123"}}},
{"/foo/:name.txt", "/foo/bar.txt", true, url.Values{":name": {"bar"}}},
{"/foo/:name", "/foo/:bar", true, url.Values{":name": {":bar"}}},
{"/foo/:a:b", "/foo/val1:val2", true, url.Values{":a": {"val1"}, ":b": {":val2"}}},
{"/foo/:a.", "/foo/.", true, url.Values{":a": {""}}},
{"/foo/:a:b", "/foo/:bar", true, url.Values{":a": {""}, ":b": {":bar"}}},
{"/foo/:a:b:c", "/foo/:bar", true, url.Values{":a": {""}, ":b": {""}, ":c": {":bar"}}},
{"/foo/::name", "/foo/val1:val2", true, url.Values{":": {"val1"}, ":name": {":val2"}}},
{"/foo/:name.txt", "/foo/bar/baz.txt", false, nil},
{"/foo/x:name", "/foo/bar", false, nil},
{"/foo/x:name", "/foo/xbar", true, url.Values{":name": {"bar"}}},
} {
params, ok := (&patHandler{pat: tt.pat}).try(tt.u)
if !tt.match {
if ok {
t.Errorf("[%d] url %q matched pattern %q", i, tt.u, tt.pat)
}
continue
}
if !ok {
t.Errorf("[%d] url %q did not match pattern %q", i, tt.u, tt.pat)
continue
}
if tt.vals != nil {
if !reflect.DeepEqual(params, tt.vals) {
t.Errorf(
"[%d] for url %q, pattern %q: got %v; want %v",
i, tt.u, tt.pat, params, tt.vals,
)
}
}
}
}
func TestPatRoutingHit(t *testing.T) {
p := New()
var ok bool
p.Get("/foo/:name", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ok = true
t.Logf("%#v", r.URL.Query())
if got, want := r.URL.Query().Get(":name"), "keith"; got != want {
t.Errorf("got %q, want %q", got, want)
}
}))
p.ServeHTTP(nil, newRequest("GET", "/foo/keith?a=b", nil))
if !ok {
t.Error("handler not called")
}
}
func TestPatRoutingMethodNotAllowed(t *testing.T) {
p := New()
var ok bool
p.Post("/foo/:name", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ok = true
}))
p.Put("/foo/:name", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ok = true
}))
r := httptest.NewRecorder()
p.ServeHTTP(r, newRequest("GET", "/foo/keith", nil))
if ok {
t.Fatal("handler called when it should have not been allowed")
}
if r.Code != http.StatusMethodNotAllowed {
t.Fatalf("got status %d; expected %d", r.Code, http.StatusMethodNotAllowed)
}
got := strings.Split(r.Header().Get("Allow"), ", ")
sort.Strings(got)
want := []string{"POST", "PUT"}
if !reflect.DeepEqual(got, want) {
t.Fatalf("got Allow header %v; want %v", got, want)
}
}
// Check to make sure we don't pollute the Raw Query when we have no parameters
func TestPatNoParams(t *testing.T) {
p := New()
var ok bool
p.Get("/foo/", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ok = true
t.Logf("%#v", r.URL.RawQuery)
if r.URL.RawQuery != "" {
t.Errorf("RawQuery was %q; should be empty", r.URL.RawQuery)
}
}))
p.ServeHTTP(nil, newRequest("GET", "/foo/", nil))
if !ok {
t.Error("handler not called")
}
}
// Check to make sure we don't pollute the Raw Query when there are parameters but no pattern variables
func TestPatOnlyUserParams(t *testing.T) {
p := New()
var ok bool
p.Get("/foo/", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ok = true
t.Logf("%#v", r.URL.RawQuery)
if got, want := r.URL.RawQuery, "a=b"; got != want {
t.Errorf("for RawQuery: got %q; want %q", got, want)
}
}))
p.ServeHTTP(nil, newRequest("GET", "/foo/?a=b", nil))
if !ok {
t.Error("handler not called")
}
}
func TestPatImplicitRedirect(t *testing.T) {
p := New()
p.Get("/foo/", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {}))
res := httptest.NewRecorder()
p.ServeHTTP(res, newRequest("GET", "/foo", nil))
if res.Code != 301 {
t.Errorf("got Code %d; want 301", res.Code)
}
if loc := res.Header().Get("Location"); loc != "/foo/" {
t.Errorf("got %q; want %q", loc, "/foo/")
}
p = New()
p.Get("/foo", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {}))
p.Get("/foo/", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {}))
res = httptest.NewRecorder()
p.ServeHTTP(res, newRequest("GET", "/foo", nil))
if res.Code != 200 {
t.Errorf("got %d; want Code 200", res.Code)
}
p = New()
p.Get("/hello/:name/", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {}))
res = httptest.NewRecorder()
p.ServeHTTP(res, newRequest("GET", "/hello/bob?a=b#f", nil))
if res.Code != 301 {
t.Errorf("got code %d; want 301", res.Code)
}
if got, want := res.Header().Get("Location"), "/hello/bob/?a=b#f"; got != want {
t.Errorf("got %q; want %q", got, want)
}
}
func TestTail(t *testing.T) {
for i, test := range []struct {
pat string
path string
expect string
}{
{"/:a/", "/x/y/z", "y/z"},
{"/:a/", "/x", ""},
{"/:a/", "/x/", ""},
{"/:a", "/x/y/z", ""},
{"/b/:a", "/x/y/z", ""},
{"/hello/:title/", "/hello/mr/mizerany", "mizerany"},
{"/:a/", "/x/y/z", "y/z"},
} {
tail := Tail(test.pat, test.path)
if tail != test.expect {
t.Errorf("failed test %d: Tail(%q, %q) == %q (!= %q)",
i, test.pat, test.path, tail, test.expect)
}
}
}
func TestNotFound(t *testing.T) {
p := New()
p.NotFound = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(123)
})
p.Post("/bar", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {}))
for _, path := range []string{"/foo", "/bar"} {
res := httptest.NewRecorder()
p.ServeHTTP(res, newRequest("GET", path, nil))
if res.Code != 123 {
t.Errorf("for path %q: got code %d; want 123", path, res.Code)
}
}
}
func TestMethodPatch(t *testing.T) {
p := New()
p.Patch("/foo/bar", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {}))
// Test to see if we get a 405 Method Not Allowed errors from trying to
// issue a GET request to a handler that only supports the PATCH method.
res := httptest.NewRecorder()
res.Code = http.StatusMethodNotAllowed
p.ServeHTTP(res, newRequest("GET", "/foo/bar", nil))
if res.Code != http.StatusMethodNotAllowed {
t.Errorf("got Code %d; want 405", res.Code)
}
// Now, test to see if we get a 200 OK from issuing a PATCH request to
// the same handler.
res = httptest.NewRecorder()
p.ServeHTTP(res, newRequest("PATCH", "/foo/bar", nil))
if res.Code != http.StatusOK {
t.Errorf("Expected code %d, got %d", http.StatusOK, res.Code)
}
}
func TestEscapedUrl(t *testing.T) {
p := New()
var ok bool
p.Get("/foo/:name", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ok = true
t.Logf("%#v", r.URL.Query())
if got, want := r.URL.Query().Get(":name"), "bad/bear"; got != want {
t.Errorf("got %q, want %q", got, want)
}
}))
p.ServeHTTP(nil, newRequest("GET", "/foo/bad%2fbear?a=b", nil))
if !ok {
t.Error("handler not called")
}
}
func newRequest(method, urlStr string, body io.Reader) *http.Request {
req, err := http.NewRequest(method, urlStr, body)
if err != nil {
panic(err)
}
return req
}