-
Notifications
You must be signed in to change notification settings - Fork 1
/
helper_test.go
124 lines (120 loc) · 1.85 KB
/
helper_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
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
package atom
import (
"math"
"strings"
"testing"
)
func Test_hashInt64(t *testing.T) {
tests := []struct {
name string
value int64
want uint32
}{
{
name: "zero",
value: 0,
want: 2615243109,
},
{
name: "+1",
value: 1,
want: 1048580676,
},
{
name: "-1",
value: -1,
want: 1823345245,
},
{
name: "max",
value: math.MaxInt64,
want: 3970880477,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := hashInt64(tt.value); got != tt.want {
t.Errorf("hashInt64(%d) = %v, want %v", tt.value, got, tt.want)
}
})
}
}
func Test_hashFloat64(t *testing.T) {
tests := []struct {
name string
value float64
want uint32
}{
{
name: "zero",
value: 0,
want: 2615243109,
},
{
name: "+1",
value: 1,
want: 2355796088,
},
{
name: "-1",
value: -1,
want: 208260856,
},
{
name: "max",
value: math.MaxFloat64,
want: 3968320621,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := hashFloat64(tt.value); got != tt.want {
t.Errorf("hashFloat64(%f) = %v, want %v", tt.value, got, tt.want)
}
})
}
}
func Test_hashString(t *testing.T) {
tests := []struct {
name string
input string
want uint32
}{
{
name: "empty",
input: "",
want: 2166136261,
},
{
name: "single",
input: "a",
want: 3826002220,
},
{
name: "next",
input: "b",
want: 3876335077,
},
{
name: "add",
input: "ab",
want: 1294271946,
},
{
name: "hello",
input: "hello",
want: 1335831723,
},
{
name: "long",
input: strings.Repeat("this is a long string", 100),
want: 229378413,
},
}
for _, tt := range tests {
got := hashString(tt.input)
if got != tt.want {
t.Errorf("hashString(%q) = %v, want %v", tt.input, got, tt.want)
}
}
}