forked from jaegertracing/jaeger-client-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext_test.go
168 lines (153 loc) · 4.72 KB
/
context_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
// Copyright (c) 2017 Uber Technologies, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package jaeger
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestContextFromString(t *testing.T) {
var err error
_, err = ContextFromString("")
assert.Error(t, err)
_, err = ContextFromString("abcd")
assert.Error(t, err)
_, err = ContextFromString("x:1:1:1")
assert.Error(t, err)
_, err = ContextFromString("1:x:1:1")
assert.Error(t, err)
_, err = ContextFromString("1:1:x:1")
assert.Error(t, err)
_, err = ContextFromString("1:1:1:x")
assert.Error(t, err)
_, err = ContextFromString("1:1:1:x")
assert.Error(t, err)
_, err = ContextFromString("01234567890123456789012345678901234:1:1:1")
assert.Error(t, err)
_, err = ContextFromString("01234567890123456789012345678901:1:1:1")
assert.NoError(t, err)
_, err = ContextFromString("01234_67890123456789012345678901:1:1:1")
assert.Error(t, err)
_, err = ContextFromString("0123456789012345678901_345678901:1:1:1")
assert.Error(t, err)
_, err = ContextFromString("1:0123456789012345:1:1")
assert.NoError(t, err)
_, err = ContextFromString("1:01234567890123456:1:1")
assert.Error(t, err)
ctx, err := ContextFromString("10000000000000001:1:1:1")
assert.NoError(t, err)
assert.EqualValues(t, TraceID{High: 1, Low: 1}, ctx.traceID)
ctx, err = ContextFromString("1:1:1:1")
assert.NoError(t, err)
assert.EqualValues(t, TraceID{Low: 1}, ctx.traceID)
assert.EqualValues(t, 1, ctx.spanID)
assert.EqualValues(t, 1, ctx.parentID)
assert.EqualValues(t, 1, ctx.flags)
ctx = NewSpanContext(TraceID{Low: 1}, 1, 1, true, nil)
assert.EqualValues(t, TraceID{Low: 1}, ctx.traceID)
assert.EqualValues(t, 1, ctx.spanID)
assert.EqualValues(t, 1, ctx.parentID)
assert.EqualValues(t, 1, ctx.flags)
assert.Equal(t, "ff", SpanID(255).String())
assert.Equal(t, "ff", TraceID{Low: 255}.String())
assert.Equal(t, "ff00000000000000ff", TraceID{High: 255, Low: 255}.String())
ctx = NewSpanContext(TraceID{High: 255, Low: 255}, SpanID(1), SpanID(1), false, nil)
assert.Equal(t, "ff00000000000000ff:1:1:0", ctx.String())
}
func TestSpanContext_WithBaggageItem(t *testing.T) {
var ctx SpanContext
ctx = ctx.WithBaggageItem("some-KEY", "Some-Value")
assert.Equal(t, map[string]string{"some-KEY": "Some-Value"}, ctx.baggage)
ctx = ctx.WithBaggageItem("some-KEY", "Some-Other-Value")
assert.Equal(t, map[string]string{"some-KEY": "Some-Other-Value"}, ctx.baggage)
}
func TestSpanContext_Flags(t *testing.T) {
var tests = map[string]struct {
in string
sampledFlag bool
debugFlag bool
firehoseFlag bool
}{
"None": {
in: "1:1:1:0",
sampledFlag: false,
debugFlag: false,
firehoseFlag: false,
},
"Sampled Only": {
in: "1:1:1:1",
sampledFlag: true,
debugFlag: false,
firehoseFlag: false,
},
"Debug Only": {
in: "1:1:1:2",
sampledFlag: false,
debugFlag: true,
firehoseFlag: false,
},
"IsFirehose Only": {
in: "1:1:1:8",
sampledFlag: false,
debugFlag: false,
firehoseFlag: true,
},
"Sampled And Debug": {
in: "1:1:1:3",
sampledFlag: true,
debugFlag: true,
firehoseFlag: false,
},
"Sampled And Firehose": {
in: "1:1:1:9",
sampledFlag: true,
debugFlag: false,
firehoseFlag: true,
},
"Debug And Firehose": {
in: "1:1:1:10",
sampledFlag: false,
debugFlag: true,
firehoseFlag: true,
},
"Sampled And Debug And Firehose": {
in: "1:1:1:11",
sampledFlag: true,
debugFlag: true,
firehoseFlag: true,
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
ctx, err := ContextFromString(tc.in)
require.NoError(t, err)
assert.Equal(t, tc.sampledFlag, ctx.IsSampled())
assert.Equal(t, tc.debugFlag, ctx.IsDebug())
assert.Equal(t, tc.firehoseFlag, ctx.IsFirehose())
})
}
}
func TestSpanContext_CopyFrom(t *testing.T) {
ctx, err := ContextFromString("1:1:1:1")
require.NoError(t, err)
ctx2 := SpanContext{}
ctx2.CopyFrom(&ctx)
assert.Equal(t, ctx, ctx2)
// with baggage
ctx = ctx.WithBaggageItem("x", "y")
ctx2 = SpanContext{}
ctx2.CopyFrom(&ctx)
assert.Equal(t, ctx, ctx2)
assert.Equal(t, "y", ctx2.baggage["x"])
}