This repository has been archived by the owner on Dec 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmux_test.go
377 lines (311 loc) · 11.2 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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
package xmux
import (
"fmt"
"net/http"
"net/http/httptest"
"testing"
"github.com/rs/xhandler"
"github.com/stretchr/testify/assert"
"golang.org/x/net/context"
)
type mockResponseWriter struct{}
func (m *mockResponseWriter) Header() (h http.Header) {
return http.Header{}
}
func (m *mockResponseWriter) Write(p []byte) (n int, err error) {
return len(p), nil
}
func (m *mockResponseWriter) WriteString(s string) (n int, err error) {
return len(s), nil
}
func (m *mockResponseWriter) WriteHeader(int) {}
func TestParams(t *testing.T) {
ps := ParamHolder{
{"param1", "value1"},
{"param2", "value2"},
{"param3", "value3"},
}
for i := range ps {
assert.Equal(t, ps[i].Value, ps.Get(ps[i].Name))
}
assert.Equal(t, "", ps.Get("noKey"), "Expected empty string for not found")
}
func TestParamsDup(t *testing.T) {
ps := ParamHolder{
{"param", "value1"},
{"param", "value2"},
}
assert.Equal(t, "value1", ps.Get("param"))
}
func TestCtxParams(t *testing.T) {
ps := ParamHolder{{"param1", "value1"}}
ctx := newParamContext(context.TODO(), ps)
assert.Equal(t, "value1", Params(ctx).Get("param1"))
assert.Equal(t, emptyParams, Params(context.TODO()))
assert.Equal(t, emptyParams, Params(nil))
}
func TestCtxParam(t *testing.T) {
ps := ParamHolder{{"param1", "value1"}}
ctx := newParamContext(context.TODO(), ps)
assert.Equal(t, "value1", Param(ctx, "param1"))
assert.Equal(t, "", Param(context.TODO(), "param1"))
assert.Equal(t, "", Param(nil, "param1"))
}
func TestMux(t *testing.T) {
mux := New()
routed := false
mux.HandleC("GET", "/user/:name", xhandler.HandlerFuncC(func(ctx context.Context, w http.ResponseWriter, r *http.Request) {
routed = true
assert.Equal(t, ParamHolder{{"name", "gopher"}}, Params(ctx))
}))
w := new(mockResponseWriter)
r, _ := http.NewRequest("GET", "/user/gopher", nil)
mux.ServeHTTPC(context.Background(), w, r)
assert.True(t, routed, "routing failed")
}
func TestMuxAdaptors(t *testing.T) {
mux := New()
var handle, handleFunc bool
mux.Handle("GET", "/handle", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
handle = true
}))
mux.HandleFunc("GET", "/handleFunc", func(w http.ResponseWriter, r *http.Request) {
handleFunc = true
})
w := new(mockResponseWriter)
r, _ := http.NewRequest("GET", "/handle", nil)
mux.ServeHTTPC(context.Background(), w, r)
assert.True(t, handle, "routing failed")
w = new(mockResponseWriter)
r, _ = http.NewRequest("GET", "/handleFunc", nil)
mux.ServeHTTPC(context.Background(), w, r)
assert.True(t, handleFunc, "routing failed")
}
type handlerStruct struct {
handeled *bool
}
func (h handlerStruct) ServeHTTPC(ctx context.Context, w http.ResponseWriter, r *http.Request) {
*h.handeled = true
}
func TestMuxAPI(t *testing.T) {
var get, head, options, post, put, patch, delete bool
mux := New()
mux.GET("/GET", xhandler.HandlerFuncC(func(ctx context.Context, w http.ResponseWriter, r *http.Request) {
get = true
}))
mux.HEAD("/GET", xhandler.HandlerFuncC(func(ctx context.Context, w http.ResponseWriter, r *http.Request) {
head = true
}))
mux.OPTIONS("/GET", xhandler.HandlerFuncC(func(ctx context.Context, w http.ResponseWriter, r *http.Request) {
options = true
}))
mux.POST("/POST", xhandler.HandlerFuncC(func(ctx context.Context, w http.ResponseWriter, r *http.Request) {
post = true
}))
mux.PUT("/PUT", xhandler.HandlerFuncC(func(ctx context.Context, w http.ResponseWriter, r *http.Request) {
put = true
}))
mux.PATCH("/PATCH", xhandler.HandlerFuncC(func(ctx context.Context, w http.ResponseWriter, r *http.Request) {
patch = true
}))
mux.DELETE("/DELETE", xhandler.HandlerFuncC(func(ctx context.Context, w http.ResponseWriter, r *http.Request) {
delete = true
}))
w := new(mockResponseWriter)
r, _ := http.NewRequest("GET", "/GET", nil)
mux.ServeHTTPC(context.Background(), w, r)
assert.NotNil(t, get, "routing GET failed")
r, _ = http.NewRequest("HEAD", "/GET", nil)
mux.ServeHTTPC(context.Background(), w, r)
assert.NotNil(t, head, "routing HEAD failed")
r, _ = http.NewRequest("OPTIONS", "/GET", nil)
mux.ServeHTTPC(context.Background(), w, r)
assert.NotNil(t, options, "routing OPTIONS failed")
r, _ = http.NewRequest("POST", "/POST", nil)
mux.ServeHTTPC(context.Background(), w, r)
assert.NotNil(t, post, "routing POST failed")
r, _ = http.NewRequest("PUT", "/PUT", nil)
mux.ServeHTTPC(context.Background(), w, r)
assert.NotNil(t, put, "routing PUT failed")
r, _ = http.NewRequest("PATCH", "/PATCH", nil)
mux.ServeHTTPC(context.Background(), w, r)
assert.NotNil(t, patch, "routing PATCH failed")
r, _ = http.NewRequest("DELETE", "/DELETE", nil)
mux.ServeHTTPC(context.Background(), w, r)
assert.NotNil(t, delete, "routing DELETE failed")
}
func TestMuxRoot(t *testing.T) {
mux := New()
recv := catchPanic(func() {
mux.GET("noSlashRoot", nil)
})
assert.NotNil(t, recv, "registering path not beginning with '/' did not panic")
}
func TestMuxChaining(t *testing.T) {
mux1 := New()
mux2 := New()
mux1.NotFound = mux2
fooHit := false
mux1.POST("/foo", xhandler.HandlerFuncC(func(ctx context.Context, w http.ResponseWriter, req *http.Request) {
fooHit = true
w.WriteHeader(http.StatusOK)
}))
barHit := false
mux2.POST("/bar", xhandler.HandlerFuncC(func(ctx context.Context, w http.ResponseWriter, req *http.Request) {
barHit = true
w.WriteHeader(http.StatusOK)
}))
r, _ := http.NewRequest("POST", "/foo", nil)
w := httptest.NewRecorder()
mux1.ServeHTTPC(context.Background(), w, r)
if !(w.Code == http.StatusOK && fooHit) {
t.Errorf("Regular routing failed with router chaining.")
t.FailNow()
}
r, _ = http.NewRequest("POST", "/bar", nil)
w = httptest.NewRecorder()
mux1.ServeHTTPC(context.Background(), w, r)
if !(w.Code == http.StatusOK && barHit) {
t.Errorf("Chained routing failed with router chaining.")
t.FailNow()
}
r, _ = http.NewRequest("POST", "/qax", nil)
w = httptest.NewRecorder()
mux1.ServeHTTPC(context.Background(), w, r)
if !(w.Code == http.StatusNotFound) {
t.Errorf("NotFound behavior failed with router chaining.")
t.FailNow()
}
}
func TestMuxNotAllowed(t *testing.T) {
handlerFunc := xhandler.HandlerFuncC(func(_ context.Context, _ http.ResponseWriter, _ *http.Request) {})
mux := New()
mux.POST("/path", handlerFunc)
mux.PUT("/path", handlerFunc)
// Test not allowed
r, _ := http.NewRequest("GET", "/path", nil)
w := httptest.NewRecorder()
mux.ServeHTTPC(context.Background(), w, r)
assert.Equal(t, w.Code, http.StatusMethodNotAllowed, "NotAllowed handling failed")
assert.Equal(t, "POST, PUT", w.HeaderMap.Get("Allow"))
w = httptest.NewRecorder()
responseText := "custom method"
mux.MethodNotAllowed = xhandler.HandlerFuncC(func(ctx context.Context, w http.ResponseWriter, req *http.Request) {
w.WriteHeader(http.StatusTeapot)
w.Write([]byte(responseText))
})
mux.ServeHTTPC(context.Background(), w, r)
assert.Equal(t, responseText, w.Body.String())
assert.Equal(t, w.Code, http.StatusTeapot)
}
func TestMuxNotAllowedSkipOptions(t *testing.T) {
handlerFunc := xhandler.HandlerFuncC(func(_ context.Context, _ http.ResponseWriter, _ *http.Request) {})
mux := New()
mux.OPTIONS("/path", handlerFunc)
// Test not allowed
r, _ := http.NewRequest("GET", "/path", nil)
w := httptest.NewRecorder()
mux.ServeHTTPC(context.Background(), w, r)
assert.Equal(t, w.Code, http.StatusNotFound, "Not allowed response when only OPTIONS is allowed")
}
func TestMuxNotFound(t *testing.T) {
handlerFunc := xhandler.HandlerFuncC(func(_ context.Context, _ http.ResponseWriter, _ *http.Request) {})
mux := New()
mux.GET("/path", handlerFunc)
mux.GET("/dir/", handlerFunc)
mux.GET("/", handlerFunc)
testRoutes := []struct {
route string
code int
header string
}{
{"/path/", 301, "map[Location:[/path]]"}, // TSR -/
{"/dir", 301, "map[Location:[/dir/]]"}, // TSR +/
{"", 301, "map[Location:[/]]"}, // TSR +/
{"/PATH", 301, "map[Location:[/path]]"}, // Fixed Case
{"/DIR/", 301, "map[Location:[/dir/]]"}, // Fixed Case
{"/PATH/", 301, "map[Location:[/path]]"}, // Fixed Case -/
{"/DIR", 301, "map[Location:[/dir/]]"}, // Fixed Case +/
{"/../path", 301, "map[Location:[/path]]"}, // CleanPath
{"/nope", 404, ""}, // NotFound
}
for _, tr := range testRoutes {
r, _ := http.NewRequest("GET", tr.route, nil)
w := httptest.NewRecorder()
mux.ServeHTTPC(context.Background(), w, r)
if !(w.Code == tr.code && (w.Code == 404 || fmt.Sprint(w.Header()) == tr.header)) {
t.Errorf("NotFound handling route %s failed: Code=%d, Header=%v", tr.route, w.Code, w.Header())
}
}
// Test custom not found handler
var notFound bool
mux.NotFound = xhandler.HandlerFuncC(func(ctx context.Context, w http.ResponseWriter, r *http.Request) {
w.WriteHeader(404)
notFound = true
})
r, _ := http.NewRequest("GET", "/nope", nil)
w := httptest.NewRecorder()
mux.ServeHTTPC(context.Background(), w, r)
if !(w.Code == 404 && notFound == true) {
t.Errorf("Custom NotFound handler failed: Code=%d, Header=%v", w.Code, w.Header())
}
// Test other method than GET (want 307 instead of 301)
mux.PATCH("/path", handlerFunc)
r, _ = http.NewRequest("PATCH", "/path/", nil)
w = httptest.NewRecorder()
mux.ServeHTTPC(context.Background(), w, r)
if !(w.Code == 307 && fmt.Sprint(w.Header()) == "map[Location:[/path]]") {
t.Errorf("Custom NotFound handler failed: Code=%d, Header=%v", w.Code, w.Header())
}
// Test special case where no node for the prefix "/" exists
mux = New()
mux.GET("/a", handlerFunc)
r, _ = http.NewRequest("GET", "/", nil)
w = httptest.NewRecorder()
mux.ServeHTTPC(context.Background(), w, r)
assert.Equal(t, 404, w.Code)
}
func TestMuxPanicHandler(t *testing.T) {
mux := New()
panicHandled := false
mux.PanicHandler = func(ctx context.Context, w http.ResponseWriter, r *http.Request, p interface{}) {
panicHandled = true
}
mux.HandleC("PUT", "/user/:name", xhandler.HandlerFuncC(func(_ context.Context, _ http.ResponseWriter, _ *http.Request) {
panic("oops!")
}))
w := new(mockResponseWriter)
req, _ := http.NewRequest("PUT", "/user/gopher", nil)
defer func() {
if rcv := recover(); rcv != nil {
t.Fatal("handling panic failed")
}
}()
mux.ServeHTTPC(context.Background(), w, req)
assert.True(t, panicHandled, "simulating failed")
}
func TestMuxLookup(t *testing.T) {
routed := false
wantHandler := xhandler.HandlerFuncC(func(_ context.Context, _ http.ResponseWriter, _ *http.Request) {
routed = true
})
mux := New()
// try empty router first
handler, _, tsr := mux.Lookup("GET", "/nope")
assert.Nil(t, handler, "Got handle for unregistered pattern: %v", handler)
assert.False(t, tsr, "Got wrong TSR recommendation!")
// insert route and try again
mux.GET("/user/:name", wantHandler)
handler, params, tsr := mux.Lookup("GET", "/user/gopher")
if assert.NotNil(t, handler) {
handler.ServeHTTPC(nil, nil, nil)
assert.True(t, routed, "Routing failed!")
}
assert.Equal(t, newParams("name", "gopher"), params)
handler, _, tsr = mux.Lookup("GET", "/user/gopher/")
assert.Nil(t, handler, "Got handle for unregistered pattern: %v", handler)
assert.True(t, tsr, "Got no TSR recommendation!")
handler, _, tsr = mux.Lookup("GET", "/nope")
assert.Nil(t, handler, "Got handle for unregistered pattern: %v", handler)
assert.False(t, tsr, "Got wrong TSR recommendation!")
}