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
/
zipkin_test.go
68 lines (59 loc) · 2.64 KB
/
zipkin_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
// 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/opentracing/opentracing-go/ext"
"github.com/stretchr/testify/assert"
)
func TestZipkinPropagator(t *testing.T) {
tracer, tCloser := NewTracer("x", NewConstSampler(true), NewNullReporter(), TracerOptions.ZipkinSharedRPCSpan(true))
defer tCloser.Close()
carrier := &TestZipkinSpan{}
sp := tracer.StartSpan("y")
// Note: we intentionally use string as format, as that's what TChannel would need to do
if err := tracer.Inject(sp.Context(), "zipkin-span-format", carrier); err != nil {
t.Fatalf("Inject failed: %+v", err)
}
sp1 := sp.(*Span)
assert.Equal(t, sp1.context.traceID, TraceID{Low: carrier.traceID})
assert.Equal(t, sp1.context.spanID, SpanID(carrier.spanID))
assert.Equal(t, sp1.context.parentID, SpanID(carrier.parentID))
assert.Equal(t, sp1.context.samplingState.flags(), carrier.flags)
sp2ctx, err := tracer.Extract("zipkin-span-format", carrier)
if err != nil {
t.Fatalf("Extract failed: %+v", err)
}
sp2 := tracer.StartSpan("x", ext.RPCServerOption(sp2ctx))
sp3 := sp2.(*Span)
assert.Equal(t, sp1.context.traceID, sp3.context.traceID)
assert.Equal(t, sp1.context.spanID, sp3.context.spanID)
assert.Equal(t, sp1.context.parentID, sp3.context.parentID)
assert.Equal(t, sp1.context.samplingState.flags(), sp3.context.samplingState.flags())
}
// TestZipkinSpan is a mock-up of TChannel's internal Span struct
type TestZipkinSpan struct {
traceID uint64
parentID uint64
spanID uint64
flags byte
}
func (s TestZipkinSpan) TraceID() uint64 { return s.traceID }
func (s TestZipkinSpan) ParentID() uint64 { return s.parentID }
func (s TestZipkinSpan) SpanID() uint64 { return s.spanID }
func (s TestZipkinSpan) Flags() byte { return s.flags }
func (s *TestZipkinSpan) SetTraceID(traceID uint64) { s.traceID = traceID }
func (s *TestZipkinSpan) SetSpanID(spanID uint64) { s.spanID = spanID }
func (s *TestZipkinSpan) SetParentID(parentID uint64) { s.parentID = parentID }
func (s *TestZipkinSpan) SetFlags(flags byte) { s.flags = flags }