File: idgenerator_test.go

package info (click to toggle)
golang-github-openzipkin-zipkin-go 0.1.5%2Bgit20190103.2fd7f4a-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 532 kB
  • sloc: makefile: 22
file content (116 lines) | stat: -rw-r--r-- 2,515 bytes parent folder | download | duplicates (2)
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
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 new, old := traceID.High>>32, latestTS; new < old {
			t.Errorf("[%d] expected a higher timestamp part in traceid but got: old: %d new: %d", idx, old, new)
		}
		latestTS = traceID.High >> 32
	}

}