gf/net/ghttp/ghttp_z_unit_feature_otel_test.go
2022-02-22 14:12:09 +08:00

47 lines
1.1 KiB
Go

// Copyright GoFrame Author(https://goframe.org). 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 (
"fmt"
"testing"
"time"
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/net/ghttp"
"github.com/gogf/gf/v2/net/gtrace"
"github.com/gogf/gf/v2/test/gtest"
"github.com/gogf/gf/v2/util/guid"
)
func Test_OTEL_TraceID(t *testing.T) {
var (
traceId string
)
s := g.Server(guid.S())
s.BindHandler("/", func(r *ghttp.Request) {
traceId = gtrace.GetTraceID(r.Context())
r.Response.Write(r.GetUrl())
})
s.SetDumpRouterMap(false)
s.Start()
defer s.Shutdown()
time.Sleep(100 * time.Millisecond)
gtest.C(t, func(t *gtest.T) {
prefix := fmt.Sprintf("http://127.0.0.1:%d", s.GetListenedPort())
client := g.Client()
client.SetBrowserMode(true)
client.SetPrefix(prefix)
res, err := client.Get(ctx, "/")
t.AssertNil(err)
defer res.Close()
t.Assert(res.Header.Get("Trace-Id"), traceId)
})
}