This repository has been archived by the owner on May 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 288
/
span_context_test.go
234 lines (216 loc) Β· 6.59 KB
/
span_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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
// 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 (
"math"
"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.True(t, ctx.IsSampled())
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.True(t, ctx.IsSampled())
assert.Equal(t, "00000000000000ff", SpanID(255).String())
assert.Equal(t, "00000000000000ff", TraceID{Low: 255}.String())
assert.Equal(t, "00000000000000ff00000000000000ff", TraceID{High: 255, Low: 255}.String())
ctx = NewSpanContext(TraceID{High: 255, Low: 255}, SpanID(1), SpanID(1), false, nil)
assert.Equal(t, "00000000000000ff00000000000000ff:0000000000000001:0000000000000001: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_WithBaggageItem_Delete(t *testing.T) {
var ctx SpanContext
ctx = ctx.WithBaggageItem("some-KEY", "")
assert.Nil(t, ctx.baggage)
ctx = ctx.WithBaggageItem("some-KEY", "Some-Value")
assert.Equal(t, map[string]string{"some-KEY": "Some-Value"}, ctx.baggage)
ctx = ctx.WithBaggageItem("another-KEY", "")
assert.Equal(t, map[string]string{"some-KEY": "Some-Value"}, ctx.baggage)
ctx2 := ctx.WithBaggageItem("some-KEY", "")
assert.Equal(t, map[string]string{"some-KEY": "Some-Value"}, ctx.baggage, "parent unchanged")
assert.Equal(t, map[string]string{}, ctx2.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"])
}
func TestTraceIDString(t *testing.T) {
var tests = map[string]struct {
in TraceID
expected string
}{
"Empty TraceID": {
in: TraceID{},
expected: "0000000000000000",
},
"TraceID low only": {
in: TraceID{Low: math.MaxUint64/16 - 405},
expected: "0ffffffffffffe6a",
},
"TraceID low and high": {
in: TraceID{High: math.MaxUint64 / 16, Low: math.MaxUint64/16 - 405},
expected: "0fffffffffffffff0ffffffffffffe6a",
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
assert.Equal(t, tc.expected, tc.in.String())
parsed, err := TraceIDFromString(tc.in.String())
assert.NoError(t, err)
assert.Equal(t, tc.in, parsed)
})
}
}
func TestSpanIDString(t *testing.T) {
var tests = map[string]struct {
in SpanID
expected string
}{
"SpanID zero": {
in: 0,
expected: "0000000000000000",
},
"SpanID non zero": {
in: math.MaxUint64/16 - 405,
expected: "0ffffffffffffe6a",
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
assert.Equal(t, tc.expected, tc.in.String())
parsed, err := SpanIDFromString(tc.in.String())
assert.NoError(t, err)
assert.Equal(t, tc.in, parsed)
})
}
}