-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrouter_test.go
472 lines (407 loc) · 11.7 KB
/
router_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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
package router
import (
"errors"
"fmt"
"net/http"
"net/http/httptest"
"reflect"
"strings"
"testing"
"github.com/goa-go/goa"
)
func TestParams(t *testing.T) {
ps := goa.Params{
goa.Param{"param1", "value1"},
goa.Param{"param2", "value2"},
goa.Param{"param3", "value3"},
}
for i := range ps {
if val := ps.Get(ps[i].Key); val != ps[i].Value {
t.Errorf("Wrong value for %s: Got %s; Want %s", ps[i].Key, val, ps[i].Value)
}
}
if val := ps.Get("noKey"); val != "" {
t.Errorf("Expected empty string for not found key; got: %s", val)
}
}
func handle(c *goa.Context, req *http.Request, router Router) {
c.Request = req
c.Method = req.Method
c.URL = req.URL
c.Path = req.URL.Path
router.Handle(c)
}
func TestRouter(t *testing.T) {
router := New()
routed := false
router.Register("GET", "/user/:name", func(c *goa.Context) {
routed = true
want := goa.Params{goa.Param{"name", "gopher"}}
if !reflect.DeepEqual(c.Params, want) {
t.Fatalf("wrong wildcard values: want %v, got %v", want, c.Params)
}
})
c := &goa.Context{}
req, _ := http.NewRequest("GET", "/user/gopher", nil)
handle(c, req, *router)
if !routed {
t.Fatal("routing failed")
}
}
func TestRouterAPI(t *testing.T) {
var get, head, options, post, put, patch, delete, register bool
router := New()
router.GET("/GET", func(c *goa.Context) {
get = true
})
router.HEAD("/GET", func(c *goa.Context) {
head = true
})
router.OPTIONS("/GET", func(c *goa.Context) {
options = true
})
router.POST("/POST", func(c *goa.Context) {
post = true
})
router.PUT("/PUT", func(c *goa.Context) {
put = true
})
router.PATCH("/PATCH", func(c *goa.Context) {
patch = true
})
router.DELETE("/DELETE", func(c *goa.Context) {
delete = true
})
router.Register("GET", "/Register", func(c *goa.Context) {
register = true
})
c := &goa.Context{}
r, _ := http.NewRequest("GET", "/GET", nil)
handle(c, r, *router)
if !get {
t.Error("routing GET failed")
}
r, _ = http.NewRequest("HEAD", "/GET", nil)
handle(c, r, *router)
if !head {
t.Error("routing HEAD failed")
}
r, _ = http.NewRequest("OPTIONS", "/GET", nil)
handle(c, r, *router)
if !options {
t.Error("routing OPTIONS failed")
}
r, _ = http.NewRequest("POST", "/POST", nil)
handle(c, r, *router)
if !post {
t.Error("routing POST failed")
}
r, _ = http.NewRequest("PUT", "/PUT", nil)
handle(c, r, *router)
if !put {
t.Error("routing PUT failed")
}
r, _ = http.NewRequest("PATCH", "/PATCH", nil)
handle(c, r, *router)
if !patch {
t.Error("routing PATCH failed")
}
r, _ = http.NewRequest("DELETE", "/DELETE", nil)
handle(c, r, *router)
if !delete {
t.Error("routing DELETE failed")
}
r, _ = http.NewRequest("GET", "/Register", nil)
handle(c, r, *router)
if !register {
t.Error("routing Register failed")
}
}
func TestRoutes(t *testing.T) {
// todo
c := &goa.Context{}
router := New()
router.Routes()(c)
}
func TestRouterRoot(t *testing.T) {
router := New()
recv := catchPanic(func() {
router.GET("noSlashRoot", nil)
})
if recv == nil {
t.Fatal("registering path not beginning with '/' did not panic")
}
}
func TestRedirectTrailingSlash(t *testing.T) {
c := &goa.Context{}
router := New()
// GET 301
router.GET("/path", func(c *goa.Context) {})
r, _ := http.NewRequest("GET", "/path/", nil)
w := httptest.NewRecorder()
c.ResponseWriter = w
handle(c, r, *router)
if !(w.Code == 301 && strings.Contains(fmt.Sprint(w.Header()), "Location:[/path]")) {
t.Errorf("Redirect trailing slash failed with get method: Code=%d, Header=%v", w.Code, w.Header())
}
// other methods 307
router.POST("/path", func(c *goa.Context) {})
r, _ = http.NewRequest("POST", "/path/", nil)
w = httptest.NewRecorder()
c.ResponseWriter = w
handle(c, r, *router)
if !(w.Code == 307 && strings.Contains(fmt.Sprint(w.Header()), "Location:[/path]")) {
t.Errorf("Redirect trailing slash failed with post method: Code=%d, Header=%v", w.Code, w.Header())
}
// delete trailing slash
router.PUT("/path/", func(c *goa.Context) {})
r, _ = http.NewRequest("PUT", "/path", nil)
w = httptest.NewRecorder()
c.ResponseWriter = w
handle(c, r, *router)
if !(w.Code == 307 && strings.Contains(fmt.Sprint(w.Header()), "Location:[/path/]")) {
t.Errorf("Redirect trailing slash failed with redirecting /path to /path/: Code=%d, Header=%v", w.Code, w.Header())
}
}
func TestRedirectFixedPath(t *testing.T) {
c := &goa.Context{}
router := New()
router.GET("/path", func(c *goa.Context) {})
r, _ := http.NewRequest("GET", "/..//path", nil)
w := httptest.NewRecorder()
c.ResponseWriter = w
handle(c, r, *router)
if !(w.Code == 301 && strings.Contains(fmt.Sprint(w.Header()), "Location:[/path]")) {
t.Errorf("Redirect fixed path failed: Code=%d, Header=%v", w.Code, w.Header())
}
}
func TestRouterChaining(t *testing.T) {
router1 := New()
router2 := New()
router1.NotFound = router2.Handle
fooHit := false
router1.POST("/foo", func(c *goa.Context) {
fooHit = true
})
barHit := false
router2.POST("/bar", func(c *goa.Context) {
barHit = true
})
c := &goa.Context{}
r, _ := http.NewRequest("POST", "/foo", nil)
handle(c, r, *router1)
if !fooHit {
t.Errorf("Regular routing failed with router chaining.")
t.FailNow()
}
r, _ = http.NewRequest("POST", "/bar", nil)
handle(c, r, *router1)
if !barHit {
t.Errorf("Chained routing failed with router chaining.")
t.FailNow()
}
}
func TestRouterOPTIONS(t *testing.T) {
c := &goa.Context{}
handlerFunc := func(c *goa.Context) {}
router := New()
router.POST("/path", handlerFunc)
// test not allowed
// * (server)
r, _ := http.NewRequest("OPTIONS", "*", nil)
w := httptest.NewRecorder()
c.ResponseWriter = w
handle(c, r, *router)
if !(w.Code == http.StatusOK) {
t.Errorf("OPTIONS handling failed: Code=%d, Header=%v", w.Code, w.Header())
} else if allow := w.Header().Get("Allow"); allow != "POST, OPTIONS" {
t.Error("unexpected Allow header value: " + allow)
}
// path
r, _ = http.NewRequest("OPTIONS", "/path", nil)
w = httptest.NewRecorder()
c.ResponseWriter = w
handle(c, r, *router)
if !(w.Code == http.StatusOK) {
t.Errorf("OPTIONS handling failed: Code=%d, Header=%v", w.Code, w.Header())
} else if allow := w.Header().Get("Allow"); allow != "POST, OPTIONS" {
t.Error("unexpected Allow header value: " + allow)
}
// add another method
router.GET("/path", handlerFunc)
// test again
// * (server)
r, _ = http.NewRequest("OPTIONS", "*", nil)
c.ResponseWriter = w
handle(c, r, *router)
if !(w.Code == http.StatusOK) {
t.Errorf("OPTIONS handling failed: Code=%d, Header=%v", w.Code, w.Header())
} else if allow := w.Header().Get("Allow"); allow != "POST, GET, OPTIONS" && allow != "GET, POST, OPTIONS" {
t.Error("unexpected Allow header value: " + allow)
}
// path
r, _ = http.NewRequest("OPTIONS", "/path", nil)
w = httptest.NewRecorder()
c.ResponseWriter = w
handle(c, r, *router)
if !(w.Code == http.StatusOK) {
t.Errorf("OPTIONS handling failed: Code=%d, Header=%v", w.Code, w.Header())
} else if allow := w.Header().Get("Allow"); allow != "POST, GET, OPTIONS" && allow != "GET, POST, OPTIONS" {
t.Error("unexpected Allow header value: " + allow)
}
// custom handler
var custom bool
router.OPTIONS("/path", func(c *goa.Context) {
custom = true
})
// test again
// * (server)
r, _ = http.NewRequest("OPTIONS", "*", nil)
c.ResponseWriter = w
handle(c, r, *router)
if !(w.Code == http.StatusOK) {
t.Errorf("OPTIONS handling failed: Code=%d, Header=%v", w.Code, w.Header())
} else if allow := w.Header().Get("Allow"); allow != "POST, GET, OPTIONS" && allow != "GET, POST, OPTIONS" {
t.Error("unexpected Allow header value: " + allow)
}
if custom {
t.Error("custom handler called on *")
}
// path
r, _ = http.NewRequest("OPTIONS", "/path", nil)
w = httptest.NewRecorder()
c.ResponseWriter = w
handle(c, r, *router)
if !(w.Code == http.StatusOK) {
t.Errorf("OPTIONS handling failed: Code=%d, Header=%v", w.Code, w.Header())
}
if !custom {
t.Error("custom handler not called")
}
}
func TestRouterNotAllowed(t *testing.T) {
handlerFunc := func(c *goa.Context) {}
c := &goa.Context{}
router := New()
router.POST("/path", handlerFunc)
// test not allowed
r, _ := http.NewRequest("GET", "/path", nil)
w := httptest.NewRecorder()
c.ResponseWriter = w
recv := catchPanic(func() {
handle(c, r, *router)
})
if err, ok := recv.(goa.Error); !ok {
if err.Code != http.StatusMethodNotAllowed {
t.Errorf("NotAllowed handling failed: Code=%d, Header=%v", err.Code, w.Header())
}
t.Errorf("unexpected recv: %v", recv)
} else if allow := w.Header().Get("Allow"); allow != "POST, OPTIONS" {
t.Error("unexpected Allow header value: " + allow)
}
// add another method
router.DELETE("/path", handlerFunc)
router.OPTIONS("/path", handlerFunc) // must be ignored
// test again
r, _ = http.NewRequest("GET", "/path", nil)
w = httptest.NewRecorder()
c.ResponseWriter = w
recv = catchPanic(func() {
handle(c, r, *router)
})
if err, ok := recv.(goa.Error); !ok {
if err.Code != http.StatusMethodNotAllowed {
t.Errorf("NotAllowed handling failed: Code=%d, Header=%v", err.Code, w.Header())
}
t.Errorf("unexpected recv: %v", recv)
} else if allow := w.Header().Get("Allow"); allow != "POST, DELETE, OPTIONS" && allow != "DELETE, POST, OPTIONS" {
t.Error("unexpected Allow header value: " + allow)
}
// test custom handler
customMethodNotAllowed := false
router.MethodNotAllowed = func(c *goa.Context) {
customMethodNotAllowed = true
}
handle(c, r, *router)
if !customMethodNotAllowed {
t.Error("coustom MethodNotAllowed handling failed")
}
if allow := w.Header().Get("Allow"); allow != "POST, DELETE, OPTIONS" && allow != "DELETE, POST, OPTIONS" {
t.Error("unexpected Allow header value: " + allow)
}
}
func TestRouterNotFound(t *testing.T) {
c := &goa.Context{}
// Test custom not found handler
router := New()
var notFound bool
router.NotFound = func(c *goa.Context) {
c.Status(404)
notFound = true
}
r, _ := http.NewRequest("GET", "/nope", nil)
handle(c, r, *router)
if !(c.GetStatus() == 404 && notFound == true) {
t.Errorf("Custom NotFound handler failed: Code=%d", c.GetStatus())
}
// Test other method than GET (want 307 instead of 301)
router.PATCH("/path", func(c *goa.Context) {})
r, _ = http.NewRequest("PATCH", "/path/", nil)
w := httptest.NewRecorder()
c.ResponseWriter = w
handle(c, r, *router)
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())
}
}
type mockFileSystem struct {
opened bool
}
func (mfs *mockFileSystem) Open(name string) (http.File, error) {
mfs.opened = true
return nil, errors.New("this is just a mock")
}
func TestRouterServeFiles(t *testing.T) {
c := &goa.Context{}
router := New()
mfs := &mockFileSystem{}
recv := catchPanic(func() {
router.ServeFiles("/noFilepath", mfs)
})
if recv == nil {
t.Fatal("registering path not ending with '*filepath' did not panic")
}
router.ServeFiles("/*filepath", mfs)
r, _ := http.NewRequest("GET", "/favicon.ico", nil)
w := httptest.NewRecorder()
c.ResponseWriter = w
handle(c, r, *router)
if !mfs.opened {
t.Error("serving file failed")
}
}
// func TestRouteMiddleware(t *testing.T) {
// c := &goa.Context{}
// calls := []int{}
// router := New()
// router.GET("/", func(c *goa.Context) {
// }, func(c *goa.Context, next func()) {
// calls = append(calls, 1)
// next()
// calls = append(calls, 5)
// }, func(c *goa.Context, next func()) {
// calls = append(calls, 2)
// next()
// calls = append(calls, 4)
// }, func(c *goa.Context, next func()) {
// calls = append(calls, 3)
// next()
// })
// r, _ := http.NewRequest("GET", "/", nil)
// handle(c, r, *router)
// for i, call := range calls {
// if i+1 != call {
// t.Error("Route use middleware fail")
// }
// }
// }