-
Notifications
You must be signed in to change notification settings - Fork 0
/
router_test.go
562 lines (445 loc) · 13.9 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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
package goexpress
import (
"net/http"
"net/http/httptest"
"strings"
"testing"
)
// TestNewRouter ensures that a new Router is created successfully.
func TestNewRouter(t *testing.T) {
r := New()
if r == nil {
t.Fatal("Expected non-nil router")
}
}
// TestRouterHandle tests route registration and response.
func TestRouterHandle(t *testing.T) {
r := New()
r.Get("/hello", func(w http.ResponseWriter, _ *http.Request) {
_, err := w.Write([]byte("Hello, world!"))
if err != nil {
t.Errorf("write byte: %v", err)
}
})
req := httptest.NewRequest("GET", "/hello", nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
resp := w.Result()
if resp.StatusCode != http.StatusOK {
t.Errorf("expected status OK; got %d", resp.StatusCode)
}
body := w.Body.String()
if body != "Hello, world!" {
t.Errorf("expected body to be 'Hello, world!'; got %s", body)
}
}
// TestRouterPost ensures that POST routes are handled correctly.
func TestRouterGet(t *testing.T) {
r := New()
r.Get("/todos", func(w http.ResponseWriter, _ *http.Request) {
_, err := w.Write([]byte("Todo list."))
if err != nil {
t.Errorf("write byte: %v", err)
}
})
req := httptest.NewRequest("GET", "/todos", nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
resp := w.Result()
if resp.StatusCode != http.StatusOK {
t.Errorf("expected status OK; got %d", resp.StatusCode)
}
body := w.Body.String()
if body != "Todo list." {
t.Errorf("expected body to be 'Post submitted!'; got %s", body)
}
}
// TestRouterPost ensures that POST routes are handled correctly.
func TestRouterPost(t *testing.T) {
r := New()
r.Post("/submit", func(w http.ResponseWriter, _ *http.Request) {
_, err := w.Write([]byte("Post submitted!"))
if err != nil {
t.Errorf("write byte: %v", err)
}
})
req := httptest.NewRequest("POST", "/submit", nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
resp := w.Result()
if resp.StatusCode != http.StatusOK {
t.Errorf("expected status OK; got %d", resp.StatusCode)
}
body := w.Body.String()
if body != "Post submitted!" {
t.Errorf("expected body to be 'Post submitted!'; got %s", body)
}
}
// TestRouterPost ensures that POST routes are handled correctly.
func TestRouterPatch(t *testing.T) {
r := New()
r.Patch("/patch_update", func(w http.ResponseWriter, _ *http.Request) {
_, err := w.Write([]byte("Post updated!"))
if err != nil {
t.Errorf("write byte: %v", err)
}
})
req := httptest.NewRequest("PATCH", "/patch_update", nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
resp := w.Result()
if resp.StatusCode != http.StatusOK {
t.Errorf("expected status OK; got %d", resp.StatusCode)
}
body := w.Body.String()
if body != "Post updated!" {
t.Errorf("expected body to be 'Post updated!'; got %s", body)
}
}
func TestRouterPut(t *testing.T) {
r := New()
r.Put("/put_update", func(w http.ResponseWriter, _ *http.Request) {
_, err := w.Write([]byte("Post updated!"))
if err != nil {
t.Errorf("write byte: %v", err)
}
})
req := httptest.NewRequest("PUT", "/put_update", nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
resp := w.Result()
if resp.StatusCode != http.StatusOK {
t.Errorf("expected status OK; got %d", resp.StatusCode)
}
body := w.Body.String()
if body != "Post updated!" {
t.Errorf("expected body to be 'Post updated!'; got %s", body)
}
}
// TestRouterNotFound ensures that the router returns error 404 for unassigned routes.
func TestRouterNotFoundHandling(t *testing.T) {
r := New()
req := httptest.NewRequest("GET", "/notfound", nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
resp := w.Result()
if resp.StatusCode != http.StatusNotFound {
t.Errorf("expected status 404; got %d", resp.StatusCode)
}
}
// TestGlobalMiddleware ensures that global middleware is applied to all routes.
func TestGlobalMiddleware(t *testing.T) {
r := New()
// Add a global middleware that appends "Processed: " to the response.
r.Use(func(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
_, err := w.Write([]byte("Processed: "))
if err != nil {
t.Errorf("write byte: %v", err)
}
next.ServeHTTP(w, r)
})
})
r.Get("/hello", func(w http.ResponseWriter, _ *http.Request) {
_, err := w.Write([]byte("Hello"))
if err != nil {
t.Errorf("write byte: %v", err)
}
})
req := httptest.NewRequest("GET", "/hello", nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
body := w.Body.String()
expected := "Processed: Hello"
if body != expected {
t.Errorf("expected '%s', got '%s'", expected, body)
}
}
// TestRouteSpecificMiddleware ensures route-specific middleware is applied correctly.
func TestRouteSpecificMiddleware(t *testing.T) {
r := New()
// Add route-specific middleware that appends "Specific: " to the response.
r.Get("/hello", func(w http.ResponseWriter, _ *http.Request) {
_, err := w.Write([]byte("Hello"))
if err != nil {
t.Errorf("write byte: %v", err)
}
}, func(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
_, err := w.Write([]byte("Specific: "))
if err != nil {
t.Errorf("write byte: %v", err)
}
next.ServeHTTP(w, r)
})
})
req := httptest.NewRequest("GET", "/hello", nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
body := w.Body.String()
expected := "Specific: Hello"
if body != expected {
t.Errorf("expected '%s', got '%s'", expected, body)
}
}
// TestMethodNotAllowed ensures that the router returns a 405 status for unsupported methods.
func TestMethodNotAllowed(t *testing.T) {
r := New()
r.Get("/hello", func(w http.ResponseWriter, _ *http.Request) {
_, err := w.Write([]byte("Hello"))
if err != nil {
t.Errorf("write byte: %v", err)
}
})
req := httptest.NewRequest("POST", "/hello", nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
resp := w.Result()
if resp.StatusCode != http.StatusMethodNotAllowed {
t.Errorf("expected status MethodNotAllowed; got %d", resp.StatusCode)
}
}
// TestRouterHandleMethod tests that a specific HTTP method and path are handled correctly.
func TestRouterHandleMethod(t *testing.T) {
r := New()
r.handleMethod("PUT", "/update", func(w http.ResponseWriter, _ *http.Request) {
_, err := w.Write([]byte("Update successful"))
if err != nil {
t.Errorf("write byte: %v", err)
}
})
req := httptest.NewRequest("PUT", "/update", nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
resp := w.Result()
if resp.StatusCode != http.StatusOK {
t.Errorf("expected status OK; got %d", resp.StatusCode)
}
body := w.Body.String()
if body != "Update successful" {
t.Errorf("expected body to be 'Update successful'; got %s", body)
}
}
// TestDeleteMethod ensures that DELETE routes are handled correctly.
func TestDeleteMethod(t *testing.T) {
r := New()
r.Delete("/remove", func(w http.ResponseWriter, _ *http.Request) {
_, err := w.Write([]byte("Delete successful"))
if err != nil {
t.Errorf("write byte: %v", err)
}
})
req := httptest.NewRequest("DELETE", "/remove", nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
resp := w.Result()
if resp.StatusCode != http.StatusOK {
t.Errorf("expected status OK; got %d", resp.StatusCode)
}
body := w.Body.String()
if body != "Delete successful" {
t.Errorf("expected body to be 'Delete successful'; got %s", body)
}
}
// TestConnect tests the Connect method of the Router.
func TestConnect(t *testing.T) {
r := New()
r.Connect("/connect", func(w http.ResponseWriter, _ *http.Request) {
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte("Connect response"))
if err != nil {
t.Errorf("write byte: %v", err)
}
})
req := httptest.NewRequest("CONNECT", "/connect", nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
resp := w.Result()
if resp.StatusCode != http.StatusOK {
t.Errorf("expected status OK; got %d", resp.StatusCode)
}
body := w.Body.String()
if body != "Connect response" {
t.Errorf("expected body to be 'Connect response'; got %s", body)
}
}
// TestOptions tests the Options method of the Router.
func TestOptions(t *testing.T) {
r := New()
r.Options("/options", func(w http.ResponseWriter, _ *http.Request) {
w.WriteHeader(http.StatusNoContent)
})
req := httptest.NewRequest("OPTIONS", "/options", nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
resp := w.Result()
if resp.StatusCode != http.StatusNoContent {
t.Errorf("expected status No Content; got %d", resp.StatusCode)
}
}
// TestTrace tests the Trace method of the Router.
func TestTrace(t *testing.T) {
r := New()
r.Trace("/trace", func(w http.ResponseWriter, _ *http.Request) {
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte("Trace response"))
if err != nil {
t.Errorf("write byte: %v", err)
}
})
req := httptest.NewRequest("TRACE", "/trace", nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
resp := w.Result()
if resp.StatusCode != http.StatusOK {
t.Errorf("expected status OK; got %d", resp.StatusCode)
}
body := w.Body.String()
if body != "Trace response" {
t.Errorf("expected body to be 'Trace response'; got %s", body)
}
}
// TestHead tests the Head method of the Router.
func TestHead(t *testing.T) {
r := New()
r.Head("/head", func(w http.ResponseWriter, _ *http.Request) {
w.Header().Set("X-Custom-Header", "CustomValue")
w.WriteHeader(http.StatusOK)
})
req := httptest.NewRequest("HEAD", "/head", nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
resp := w.Result()
if resp.StatusCode != http.StatusOK {
t.Errorf("expected status OK; got %d", resp.StatusCode)
}
// Check that the custom header is present
if headerValue := resp.Header.Get("X-Custom-Header"); headerValue != "CustomValue" {
t.Errorf("expected header X-Custom-Header to be 'CustomValue'; got %s", headerValue)
}
// Ensure the body is empty for HEAD requests
body := w.Body.String()
if body != "" {
t.Errorf("expected body to be empty for HEAD request; got %s", body)
}
}
// TestStaticPathHandling verifies that a request to a static file within a specified directory is correctly handled
func TestStaticPathHandling(t *testing.T) {
const staticPath = "public"
r := New()
r.ServeStatic(staticPath)
req := httptest.NewRequest("GET", "/public/home.html", nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
resp := w.Result()
if resp.StatusCode != http.StatusOK {
t.Errorf("expected status OK; got %d", resp.StatusCode)
}
contentType := resp.Header.Get("content-type")
if strings.Split(contentType, ";")[0] != "text/html" {
t.Errorf("expected content-type text/html; got %s", resp.Header.Get("content-type"))
}
}
// TestNotFound verifies that the custom "Not Found" handler is called for undefined routes.
func TestNotFound(t *testing.T) {
// Initialize the router.
router := New()
// Define the custom "Not Found" handler.
notFoundHandler := func(w http.ResponseWriter, _ *http.Request) {
http.Error(w, "Custom 404 - Page Not Found", http.StatusNotFound)
}
// Set the custom "Not Found" handler in the router.
router.NotFound(notFoundHandler)
// Create a request to an undefined route.
req := httptest.NewRequest("GET", "/undefined", nil)
rec := httptest.NewRecorder()
// Serve the request using the router.
router.ServeHTTP(rec, req)
// Check the response status code.
if status := rec.Code; status != http.StatusNotFound {
t.Errorf("expected status %d, got %d", http.StatusNotFound, status)
}
// Check the response body.
expectedBody := "Custom 404 - Page Not Found\n"
if body := rec.Body.String(); body != expectedBody {
t.Errorf("expected body %q, got %q", expectedBody, body)
}
}
func TestGroup(t *testing.T) {
r := New()
r.Group("/api/v1", func(router *Router) *Router {
router.Get("/user", func(w http.ResponseWriter, _ *http.Request) {
_, err := w.Write([]byte("route group works"))
if err != nil {
t.Errorf("write byte: %v", err)
}
})
router.Post("/user", func(w http.ResponseWriter, _ *http.Request) {
w.WriteHeader(http.StatusCreated)
_, err := w.Write([]byte("user route group post works"))
if err != nil {
t.Errorf("write byte: %v", err)
}
})
router.Get("/jobs", func(w http.ResponseWriter, _ *http.Request) {
_, err := w.Write([]byte("jobs route group works"))
if err != nil {
t.Errorf("write byte: %v", err)
}
})
router.Group("/admin", func(r *Router) *Router {
r.Get("/users", func(w http.ResponseWriter, _ *http.Request) {
_, err := w.Write([]byte("nested route group works"))
if err != nil {
t.Errorf("write byte: %v", err)
}
})
return r
})
return router
})
req := httptest.NewRequest("GET", "/api/v1/user", nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
resp := w.Result()
if resp.StatusCode != http.StatusOK {
t.Errorf("expected status OK; got %d", resp.StatusCode)
}
expectedBody := "route group works"
if body := w.Body.String(); body != expectedBody {
t.Errorf("expected body %q, got %q", expectedBody, body)
}
req = httptest.NewRequest("GET", "/api/v1/jobs", nil)
w = httptest.NewRecorder()
r.ServeHTTP(w, req)
resp = w.Result()
if resp.StatusCode != http.StatusOK {
t.Errorf("expected status OK; got %d", resp.StatusCode)
}
expectedBody = "jobs route group works"
if body := w.Body.String(); body != expectedBody {
t.Errorf("expected body %q, got %q", expectedBody, body)
}
req = httptest.NewRequest("POST", "/api/v1/user", nil)
w = httptest.NewRecorder()
r.ServeHTTP(w, req)
resp = w.Result()
if resp.StatusCode != http.StatusCreated {
t.Errorf("expected status created; got %d", resp.StatusCode)
}
expectedBody = "user route group post works"
if body := w.Body.String(); body != expectedBody {
t.Errorf("expected body %q, got %q", expectedBody, body)
}
req = httptest.NewRequest("GET", "/api/v1/admin/users", nil)
w = httptest.NewRecorder()
r.ServeHTTP(w, req)
resp = w.Result()
if resp.StatusCode != http.StatusOK {
t.Errorf("expected status OK; got %d", resp.StatusCode)
}
expectedBody = "nested route group works"
if body := w.Body.String(); body != expectedBody {
t.Errorf("expected body %q, got %q", expectedBody, body)
}
}