mirror of
https://gitee.com/johng/gf
synced 2026-06-07 02:12:11 +08:00
45 lines
1.0 KiB
Go
45 lines
1.0 KiB
Go
// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
package ghttp_test
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/gogf/gf/frame/g"
|
|
"github.com/gogf/gf/net/ghttp"
|
|
"github.com/gogf/gf/test/gtest"
|
|
)
|
|
|
|
func Test_Context(t *testing.T) {
|
|
p := ports.PopRand()
|
|
s := g.Server(p)
|
|
s.Group("/", func(group *ghttp.RouterGroup) {
|
|
group.Middleware(func(r *ghttp.Request) {
|
|
r.Context = context.WithValue(r.Context, "traceid", 123)
|
|
r.Middleware.Next()
|
|
})
|
|
group.GET("/", func(r *ghttp.Request) {
|
|
r.Response.Write(r.Context.Value("traceid"))
|
|
})
|
|
})
|
|
s.SetPort(p)
|
|
s.SetDumpRouterMap(false)
|
|
s.Start()
|
|
defer s.Shutdown()
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
gtest.Case(t, func() {
|
|
client := ghttp.NewClient()
|
|
client.SetPrefix(fmt.Sprintf("http://127.0.0.1:%d", p))
|
|
|
|
gtest.Assert(client.GetContent("/"), `123`)
|
|
})
|
|
}
|