@@ -229,13 +229,32 @@ func TestPrintHandler(t *testing.T) {
229
229
}
230
230
}
231
231
232
+ func requestIdMiddle () func (next http.Handler ) http.Handler {
233
+ return func (next http.Handler ) http.Handler {
234
+ return http .HandlerFunc (func (w http.ResponseWriter , r * http.Request ) {
235
+ // 从请求头中获取 request-id
236
+ requestId := GenId (r .Header .Get ("request-id" ))
237
+ // 将 request-id 添加到响应头
238
+ r .Header .Set ("request-id" , requestId )
239
+ w .Header ().Set ("request-id" , requestId )
240
+ // 调用下一个处理器
241
+ // 定义请求ID的上下文键类型
242
+ type requestIDKey struct {}
243
+
244
+ // 使用自定义类型作为上下文键
245
+ r2 := r .WithContext (context .WithValue (r .Context (), requestIDKey {}, requestId ))
246
+ next .ServeHTTP (w , r2 )
247
+ })
248
+ }
249
+ }
250
+
232
251
func Test_SSE (t * testing.T ) {
233
252
ctx , cancel := context .WithCancel (context .Background ())
234
- r := NewServeMux (Logf (LogS ))
253
+ r := NewServeMux (Logf (LogS ), Use ( requestIdMiddle ()) )
235
254
r .Route ("/123" , func (w http.ResponseWriter , r * http.Request ) {
236
255
w .WriteHeader (200 )
237
256
w .Write ([]byte ("hello world" ))
238
- })
257
+ }, Method ( "PUT" ) )
239
258
r .Route ("/sse" , func (w http.ResponseWriter , r * http.Request ) {
240
259
241
260
for i := 0 ; i < 3 ; i ++ {
@@ -246,7 +265,7 @@ func Test_SSE(t *testing.T) {
246
265
w .Write ([]byte (fmt .Sprintf (`{"a":"12345\n", "b": %d}` , i )))
247
266
}
248
267
}
249
- }, Use (SSE ()))
268
+ }, Use (SSE ()), Method ( "DELETE" ) )
250
269
s := NewServer (ctx , r , URL ("http://0.0.0.0:1234" ))
251
270
go s .ListenAndServe ()
252
271
time .Sleep (1 * time .Second )
@@ -282,3 +301,38 @@ func SSERound(i int64, b []byte, f func([]byte) error) error {
282
301
return nil
283
302
}
284
303
}
304
+
305
+ func Test_UseStep (t * testing.T ) {
306
+ var ss []string
307
+ var use = func (stage , step string ) func (next http.Handler ) http.Handler {
308
+ return func (next http.Handler ) http.Handler {
309
+ return http .HandlerFunc (func (w http.ResponseWriter , r * http.Request ) {
310
+ ss = append (ss , fmt .Sprintf ("%s-%s-start" , stage , step ))
311
+ t .Logf ("use: %s-%s-start" , stage , step )
312
+ next .ServeHTTP (w , r )
313
+ ss = append (ss , fmt .Sprintf ("%s-%s-end" , stage , step ))
314
+ t .Logf ("use: %s-%s-end" , stage , step )
315
+ })
316
+ }
317
+ }
318
+
319
+ mux := NewServeMux (
320
+ Use (requestIdMiddle ()),
321
+ Logf (func (ctx context.Context , stat * Stat ) {
322
+ t .Logf ("mux: Logf: %v" , ctx .Value ("request-id" ))
323
+ }),
324
+ Use (use ("mux" , "1" )),
325
+ Use (use ("mux" , "2" )),
326
+ Use (use ("mux" , "3" )),
327
+ )
328
+ ctx , cancel := context .WithCancel (context .Background ())
329
+ defer cancel ()
330
+ mux .Route ("/" , func (w http.ResponseWriter , r * http.Request ) {
331
+ w .Write ([]byte ("hello world" ))
332
+ }, Use (use ("route" , "1" ), use ("route" , "2" ), use ("route" , "3" )))
333
+ server := NewServer (ctx , mux , URL ("http://0.0.0.0:9090" ), Use (use ("server" , "1" ), use ("server" , "2" ), use ("server" , "3" )))
334
+ go server .ListenAndServe ()
335
+
336
+ Get ("http://127.0.0.1:9090/" )
337
+ time .Sleep (1 * time .Second )
338
+ }
0 commit comments