-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
example_test.go
327 lines (252 loc) · 8.12 KB
/
example_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
package gorouter_test
import (
"fmt"
"net/http"
"net/http/httptest"
"github.com/valyala/fasthttp"
"github.com/vardius/gorouter/v4"
"github.com/vardius/gorouter/v4/context"
)
func handleNetHTTPRequest(method, path string, handler http.Handler) {
w := httptest.NewRecorder()
req, _ := http.NewRequest(method, path, nil)
handler.ServeHTTP(w, req)
}
func handleFastHTTPRequest(method, path string, handler fasthttp.RequestHandler) {
ctx := &fasthttp.RequestCtx{}
ctx.Request.Header.SetMethod(method)
ctx.URI().SetPath(path)
handler(ctx)
}
func Example() {
index := func(_ http.ResponseWriter, _ *http.Request) {
fmt.Printf("Hello\n")
}
hello := func(_ http.ResponseWriter, r *http.Request) {
params, _ := context.Parameters(r.Context())
fmt.Printf("Hello, %s!\n", params.Value("name"))
}
router := gorouter.New()
router.GET("/", http.HandlerFunc(index))
router.GET("/hello/{name}", http.HandlerFunc(hello))
// for this example we will mock request
handleNetHTTPRequest("GET", "/", router)
handleNetHTTPRequest("GET", "/hello/guest", router)
// Output:
// Hello
// Hello, guest!
}
func Example_second() {
hello := func(ctx *fasthttp.RequestCtx) {
params := ctx.UserValue("params").(context.Params)
fmt.Printf("Hello, %s!\n", params.Value("name"))
}
router := gorouter.NewFastHTTPRouter()
router.GET("/hello/{name}", hello)
// for this example we will mock request
handleFastHTTPRequest("GET", "/hello/guest", router.HandleFastHTTP)
// Output:
// Hello, guest!
}
func ExampleMiddlewareFunc() {
// Global middleware example
// applies to all routes
hello := func(w http.ResponseWriter, r *http.Request) {
params, _ := context.Parameters(r.Context())
fmt.Printf("Hello, %s!\n", params.Value("name"))
}
logger := func(next http.Handler) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
fmt.Printf("[%s] %q\n", r.Method, r.URL.String())
next.ServeHTTP(w, r)
}
return http.HandlerFunc(fn)
}
// apply middleware to all routes
// can pass as many as you want
router := gorouter.New(logger)
router.GET("/hello/{name}", http.HandlerFunc(hello))
// for this example we will mock request
handleNetHTTPRequest("GET", "/hello/guest", router)
// Output:
// [GET] "/hello/guest"
// Hello, guest!
}
func ExampleMiddlewareFunc_second() {
// Route level middleware example
// applies to route and its lower tree
hello := func(w http.ResponseWriter, r *http.Request) {
params, _ := context.Parameters(r.Context())
fmt.Printf("Hello, %s!\n", params.Value("name"))
}
logger := func(next http.Handler) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
fmt.Printf("[%s] %q\n", r.Method, r.URL.String())
next.ServeHTTP(w, r)
}
return http.HandlerFunc(fn)
}
router := gorouter.New()
router.GET("/hello/{name}", http.HandlerFunc(hello))
// apply middleware to route and all its children
// can pass as many as you want
router.USE("GET", "/hello/{name}", logger)
// for this example we will mock request
handleNetHTTPRequest("GET", "/hello/guest", router)
// Output:
// [GET] "/hello/guest"
// Hello, guest!
}
func ExampleMiddlewareFunc_third() {
// Http method middleware example
// applies to all routes under this method
hello := func(w http.ResponseWriter, r *http.Request) {
params, _ := context.Parameters(r.Context())
fmt.Printf("Hello, %s!\n", params.Value("name"))
}
logger := func(next http.Handler) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
fmt.Printf("[%s] %q\n", r.Method, r.URL.String())
next.ServeHTTP(w, r)
}
return http.HandlerFunc(fn)
}
router := gorouter.New()
router.GET("/hello/{name}", http.HandlerFunc(hello))
// apply middleware to all routes with GET method
// can pass as many as you want
router.USE("GET", "", logger)
// for this example we will mock request
handleNetHTTPRequest("GET", "/hello/guest", router)
// Output:
// [GET] "/hello/guest"
// Hello, guest!
}
func ExampleFastHTTPMiddlewareFunc() {
// Global middleware example
// applies to all routes
hello := func(ctx *fasthttp.RequestCtx) {
params := ctx.UserValue("params").(context.Params)
fmt.Printf("Hello, %s!\n", params.Value("name"))
}
logger := func(next fasthttp.RequestHandler) fasthttp.RequestHandler {
fn := func(ctx *fasthttp.RequestCtx) {
fmt.Printf("[%s] %q\n", ctx.Method(), ctx.Path())
next(ctx)
}
return fn
}
router := gorouter.NewFastHTTPRouter(logger)
router.GET("/hello/{name}", hello)
// for this example we will mock request
handleFastHTTPRequest("GET", "/hello/guest", router.HandleFastHTTP)
// Output:
// [GET] "/hello/guest"
// Hello, guest!
}
func ExampleFastHTTPMiddlewareFunc_second() {
// Route level middleware example
// applies to route and its lower tree
hello := func(ctx *fasthttp.RequestCtx) {
params := ctx.UserValue("params").(context.Params)
fmt.Printf("Hello, %s!\n", params.Value("name"))
}
logger := func(next fasthttp.RequestHandler) fasthttp.RequestHandler {
fn := func(ctx *fasthttp.RequestCtx) {
fmt.Printf("[%s] %q\n", ctx.Method(), ctx.Path())
next(ctx)
}
return fn
}
router := gorouter.NewFastHTTPRouter()
router.GET("/hello/{name}", hello)
// apply middleware to route and all its children
// can pass as many as you want
router.USE("GET", "/hello/{name}", logger)
// for this example we will mock request
handleFastHTTPRequest("GET", "/hello/guest", router.HandleFastHTTP)
// Output:
// [GET] "/hello/guest"
// Hello, guest!
}
func ExampleFastHTTPMiddlewareFunc_third() {
// Http method middleware example
// applies to all routes under this method
hello := func(ctx *fasthttp.RequestCtx) {
params := ctx.UserValue("params").(context.Params)
fmt.Printf("Hello, %s!\n", params.Value("name"))
}
logger := func(next fasthttp.RequestHandler) fasthttp.RequestHandler {
fn := func(ctx *fasthttp.RequestCtx) {
fmt.Printf("[%s] %q\n", ctx.Method(), ctx.Path())
next(ctx)
}
return fn
}
router := gorouter.NewFastHTTPRouter()
router.GET("/hello/{name}", hello)
// apply middleware to all routes with GET method
// can pass as many as you want
router.USE("GET", "", logger)
// for this example we will mock request
handleFastHTTPRequest("GET", "/hello/guest", router.HandleFastHTTP)
// Output:
// [GET] "/hello/guest"
// Hello, guest!
}
func ExampleRouter_mount() {
hello := func(w http.ResponseWriter, r *http.Request) {
params, _ := context.Parameters(r.Context())
fmt.Printf("Hello, %s!\n", params.Value("name"))
}
// gorouter as subrouter
subrouter := gorouter.New()
subrouter.GET("/{name}", http.HandlerFunc(hello))
// default mux as subrouter
// you can use everything that implements http.Handler interface
unknownSubrouter := http.NewServeMux()
unknownSubrouter.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) {
fmt.Println("Hi, guest!")
})
router := gorouter.New()
router.Mount("/hello", subrouter)
router.Mount("/hi", unknownSubrouter)
// for this example we will mock request
handleNetHTTPRequest("GET", "/hello/guest", router)
handleNetHTTPRequest("GET", "/hi", router)
// Output:
// Hello, guest!
// Hi, guest!
}
func ExampleFastHTTPRouter_mount() {
hello := func(ctx *fasthttp.RequestCtx) {
params := ctx.UserValue("params").(context.Params)
fmt.Printf("Hello, %s!\n", params.Value("name"))
}
subrouter := gorouter.NewFastHTTPRouter()
subrouter.GET("/{name}", hello)
router := gorouter.NewFastHTTPRouter()
router.Mount("/hello", subrouter.HandleFastHTTP)
// for this example we will mock request
handleFastHTTPRequest("GET", "/hello/guest", router.HandleFastHTTP)
// Output:
// Hello, guest!
}
func ExampleRouter_compile() {
health := func(_ http.ResponseWriter, _ *http.Request) {
fmt.Printf("Health OK!\n")
}
readiness := func(_ http.ResponseWriter, r *http.Request) {
fmt.Printf("Ready!\n")
}
router := gorouter.New()
router.GET("/v1/health", http.HandlerFunc(health))
router.GET("/v1/readiness", http.HandlerFunc(readiness))
// fmt.Printf("before: %s\n", router.PrettyPrint())
router.Compile()
// fmt.Printf("after: %s\n", router.PrettyPrint())
// for this example we will mock request
handleNetHTTPRequest("GET", "/v1/health", router)
// Output:
// Health OK!
}