-
Notifications
You must be signed in to change notification settings - Fork 45
/
utils_test.go
91 lines (83 loc) · 1.61 KB
/
utils_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
package orc
import (
"math"
"testing"
)
func TestSubtractionOverflow(t *testing.T) {
testCases := []struct {
a, b bool
}{
{
false,
isSafeSubtract(int64(22222222222), math.MinInt64),
},
{
false,
isSafeSubtract(int64(-22222222222), math.MaxInt64),
},
{
false,
isSafeSubtract(math.MinInt64, math.MaxInt64),
},
{
true,
isSafeSubtract(int64(-1553103058346370095), int64(6553103058346370095)),
},
{
true,
isSafeSubtract(int64(0), math.MaxInt64),
},
{
true,
isSafeSubtract(math.MinInt64, 0),
},
}
for i, tc := range testCases {
if tc.a != tc.b {
t.Errorf("Test failed, case %v", i)
}
}
}
func TestZigZagEncoder(t *testing.T) {
ints := []int64{0, -1, 1, -2, 2, -3, 3, -4, 4, -5}
for i, v := range ints {
if int(zigzagEncode(v)) != i {
t.Errorf("Test failed, expected %v to equal %v", v, i)
}
}
}
func TestZigZagDecode(t *testing.T) {
ints := []int64{0, -1, 1, -2, 2, -3, 3, -4, 4, -5}
for i, v := range ints {
if zigzagDecode(uint64(i)) != v {
t.Errorf("Test failed, expected %v to equal %v", i, v)
}
}
}
func BenchmarkZigZagEncode(b *testing.B) {
for i := 0; i < b.N; i++ {
zigzagEncode(int64(i))
}
}
func BenchmarkZigZagDecode(b *testing.B) {
for i := 0; i < b.N; i++ {
zigzagDecode(uint64(i))
}
}
func TestFormatNanos(t *testing.T) {
testCases := []struct {
input int64
expected int64
}{
{99, 0x0318},
{100, 0x09},
{1000, 0x0a},
{100000, 0x0c},
}
for _, v := range testCases {
output := formatNanos(v.input)
if output != v.expected {
t.Errorf("Input: %d. Expected %x got %x", v.input, v.expected, output)
}
}
}