-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathplugin_test.go
96 lines (86 loc) · 2.76 KB
/
plugin_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
//
//
// Tencent is pleased to support the open source community by making tRPC available.
//
// Copyright (C) 2023 THL A29 Limited, a Tencent company.
// All rights reserved.
//
// If you have downloaded a copy of the tRPC source code from Tencent,
// please note that tRPC source code is licensed under the Apache 2.0 License,
// A copy of the Apache 2.0 License is included in this file.
//
//
package traceid_test
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
"github.com/valyala/fasthttp"
"go.opentelemetry.io/otel/trace"
"trpc.group/trpc-go/trpc-gateway/common/gwmsg"
"trpc.group/trpc-go/trpc-gateway/common/http"
"trpc.group/trpc-go/trpc-gateway/plugin"
"trpc.group/trpc-go/trpc-gateway/plugin/traceid"
)
func TestPlugin_CheckConfig(t *testing.T) {
p := &traceid.Plugin{}
_ = p.Setup("", nil)
opts := &traceid.Options{}
decoder := &plugin.PropsDecoder{Props: opts}
// Configuration validation success
err := p.CheckConfig("", decoder)
assert.Nil(t, err)
// Non-HTTP request
_, err = traceid.ServerFilter(context.Background(), nil, func(ctx context.Context,
req interface{}) (rsp interface{}, err error) {
return nil, nil
})
assert.Nil(t, err)
// Set up the context
fctx := &fasthttp.RequestCtx{}
ctx := http.WithRequestContext(context.Background(), fctx)
ctx, _ = gwmsg.WithNewGWMessage(ctx)
// No span ID
sc := trace.NewSpanContext(trace.SpanContextConfig{
TraceID: [16]byte{0x01},
//SpanID: [8]byte{0x01},
TraceFlags: trace.FlagsSampled,
Remote: true,
})
ctx = trace.ContextWithSpanContext(ctx, sc)
_, err = traceid.ServerFilter(ctx, nil, func(ctx context.Context,
req interface{}) (rsp interface{}, err error) {
return nil, nil
})
assert.Nil(t, err)
assert.Equal(t, "", string(fctx.Response.Header.Peek("X-Galileo-Trace-Id")))
// No sampling
sc = trace.NewSpanContext(trace.SpanContextConfig{
TraceID: [16]byte{0x01},
SpanID: [8]byte{0x01},
//TraceFlags: trace.FlagsSampled,
Remote: true,
})
ctx = trace.ContextWithSpanContext(ctx, sc)
_, err = traceid.ServerFilter(ctx, nil, func(ctx context.Context,
req interface{}) (rsp interface{}, err error) {
return nil, nil
})
assert.Nil(t, err)
assert.Equal(t, "", string(fctx.Response.Header.Peek("X-Galileo-Trace-Id")))
// Set up the context with valid span ID and sampling
sc = trace.NewSpanContext(trace.SpanContextConfig{
TraceID: [16]byte{0x01},
SpanID: [8]byte{0x01},
TraceFlags: trace.FlagsSampled,
Remote: true,
})
ctx = trace.ContextWithSpanContext(ctx, sc)
_, err = traceid.ServerFilter(ctx, nil, func(ctx context.Context,
req interface{}) (rsp interface{}, err error) {
return nil, nil
})
assert.Nil(t, err)
assert.Equal(t, "01000000000000000000000000000000",
string(fctx.Response.Header.Peek("X-Galileo-Trace-Id")))
}