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
|
// Copyright 2022 The OpenZipkin Authors
//
// 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 idgenerator_test
import (
"testing"
"github.com/openzipkin/zipkin-go/idgenerator"
"github.com/openzipkin/zipkin-go/model"
)
func TestRandom64(t *testing.T) {
var (
spanID model.ID
gen = idgenerator.NewRandom64()
traceID = gen.TraceID()
)
if traceID.Empty() {
t.Errorf("Expected valid TraceID, got: %+v", traceID)
}
if want, have := uint64(0), traceID.High; want != have {
t.Errorf("Expected TraceID.High to be 0, got %d", have)
}
spanID = gen.SpanID(traceID)
if want, have := model.ID(traceID.Low), spanID; want != have {
t.Errorf("Expected root span to have span ID %d, got %d", want, have)
}
spanID = gen.SpanID(model.TraceID{})
if spanID == 0 {
t.Errorf("Expected child span to have a valid span ID, got 0")
}
}
func TestRandom128(t *testing.T) {
var (
spanID model.ID
gen = idgenerator.NewRandom128()
traceID = gen.TraceID()
)
if traceID.Empty() {
t.Errorf("Expected valid TraceID, got: %+v", traceID)
}
if traceID.Low == 0 {
t.Error("Expected TraceID.Low to have value, got 0")
}
if traceID.High == 0 {
t.Error("Expected TraceID.High to have value, got 0")
}
spanID = gen.SpanID(traceID)
if want, have := model.ID(traceID.Low), spanID; want != have {
t.Errorf("Expected root span to have span ID %d, got %d", want, have)
}
spanID = gen.SpanID(model.TraceID{})
if spanID == 0 {
t.Errorf("Expected child span to have a valid span ID, got 0")
}
}
func TestRandomTimeStamped(t *testing.T) {
var (
spanID model.ID
gen = idgenerator.NewRandomTimestamped()
traceID = gen.TraceID()
)
if traceID.Empty() {
t.Errorf("Expected valid TraceID, got: %+v", traceID)
}
if traceID.Low == 0 {
t.Error("Expected TraceID.Low to have value, got 0")
}
if traceID.High == 0 {
t.Error("Expected TraceID.High to have value, got 0")
}
spanID = gen.SpanID(traceID)
if want, have := model.ID(traceID.Low), spanID; want != have {
t.Errorf("Expected root span to have span ID %d, got %d", want, have)
}
spanID = gen.SpanID(model.TraceID{})
if spanID == 0 {
t.Errorf("Expected child span to have a valid span ID, got 0")
}
// test chronological order
var ids []model.TraceID
for i := 0; i < 1000; i++ {
ids = append(ids, gen.TraceID())
}
var latestTS uint64
for idx, traceID := range ids {
if newVal, oldVal := traceID.High>>32, latestTS; newVal < oldVal {
t.Errorf("[%d] expected a higher timestamp part in traceid but got: old: %d new: %d", idx, oldVal, newVal)
}
latestTS = traceID.High >> 32
}
}
|