This repository has been archived by the owner on Apr 27, 2021. It is now read-only.
forked from opentracing/basictracer-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
propagation_test.go
97 lines (82 loc) · 2.48 KB
/
propagation_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
package basictracer_test
import (
"bytes"
"net/http"
"reflect"
"testing"
"time"
"github.com/davecgh/go-spew/spew"
basictracer "github.com/life360/basictracer-go"
opentracing "github.com/life360/opentracing-go"
)
type verbatimCarrier struct {
basictracer.SpanContext
b map[string]string
}
var _ basictracer.DelegatingCarrier = &verbatimCarrier{}
func (vc *verbatimCarrier) SetBaggageItem(k, v string) {
vc.b[k] = v
}
func (vc *verbatimCarrier) GetBaggage(f func(string, string)) {
for k, v := range vc.b {
f(k, v)
}
}
func (vc *verbatimCarrier) SetState(tID, sID uint64, sampled bool) {
vc.SpanContext = basictracer.SpanContext{TraceID: tID, SpanID: sID, Sampled: sampled}
}
func (vc *verbatimCarrier) State() (traceID, spanID uint64, sampled bool) {
return vc.SpanContext.TraceID, vc.SpanContext.SpanID, vc.SpanContext.Sampled
}
func TestSpanPropagator(t *testing.T) {
const op = "test"
recorder := basictracer.NewInMemoryRecorder()
tracer := basictracer.New(recorder)
sp := tracer.StartSpan(op)
sp.Context().SetBaggageItem("foo", "bar")
tmc := opentracing.HTTPHeaderTextMapCarrier(http.Header{})
tests := []struct {
typ, carrier interface{}
}{
{basictracer.Delegator, basictracer.DelegatingCarrier(&verbatimCarrier{b: map[string]string{}})},
{opentracing.Binary, &bytes.Buffer{}},
{opentracing.TextMap, tmc},
}
for i, test := range tests {
if err := tracer.Inject(sp.Context(), test.typ, test.carrier); err != nil {
t.Fatalf("%d: %v", i, err)
}
injectedContext, err := tracer.Extract(test.typ, test.carrier)
if err != nil {
t.Fatalf("%d: %v", i, err)
}
child := tracer.StartSpan(
op,
opentracing.ChildOf(injectedContext))
child.Finish()
}
sp.Finish()
spans := recorder.GetSpans()
if a, e := len(spans), len(tests)+1; a != e {
t.Fatalf("expected %d spans, got %d", e, a)
}
// The last span is the original one.
exp, spans := spans[len(spans)-1], spans[:len(spans)-1]
exp.Duration = time.Duration(123)
exp.Start = time.Time{}.Add(1)
for i, sp := range spans {
if a, e := sp.ParentSpanID, exp.SpanID; a != e {
t.Fatalf("%d: ParentSpanID %d does not match expectation %d", i, a, e)
} else {
// Prepare for comparison.
sp.SpanID, sp.ParentSpanID = exp.SpanID, 0
sp.Duration, sp.Start = exp.Duration, exp.Start
}
if a, e := sp.TraceID, exp.TraceID; a != e {
t.Fatalf("%d: TraceID changed from %d to %d", i, e, a)
}
if !reflect.DeepEqual(exp, sp) {
t.Fatalf("%d: wanted %+v, got %+v", i, spew.Sdump(exp), spew.Sdump(sp))
}
}
}