代码拉取完成,页面将自动刷新
// 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 }
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。