forked from brentp/intintmap
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmap64_test.go
275 lines (248 loc) · 5.34 KB
/
map64_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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
package intmap
import (
"testing"
)
func TestMap64(t *testing.T) {
type pairs [][2]int64
cases := []struct {
name string
vals pairs
}{
{
name: "empty",
},
{
name: "one",
vals: pairs{{1, 2}},
},
{
name: "one_zero",
vals: pairs{{0, 2}},
},
{
name: "two",
vals: pairs{{1, 2}, {3, 4}},
},
{
name: "two_zero",
vals: pairs{{1, 2}, {0, 4}},
},
{
name: "ten",
vals: pairs{{1, 1}, {2, 2}, {3, 3}, {4, 4}, {5, 5}, {6, 6}, {7, 7}, {8, 8}, {9, 9}, {10, 10}},
},
{
name: "ten_zero",
vals: pairs{{1, 1}, {2, 2}, {3, 3}, {4, 4}, {5, 5}, {6, 6}, {7, 7}, {8, 8}, {9, 9}, {10, 10}, {0, 11}},
},
}
runTest := func(t *testing.T, m *Map[int64, int64], vals pairs) {
for i, pair := range vals {
m.Put(pair[0], pair[1])
if sz := m.Len(); sz != i+1 {
t.Fatalf("unexpected size after %d put()s: %d", sz, i+1)
}
}
for i, pair := range vals {
val, ok := m.Get(pair[0])
if !ok {
t.Fatalf("key number %d not found: %d", i, pair[0])
}
if val != pair[1] {
t.Fatalf("incorrect value %d for key %d, expected %d", pair[1], pair[0], val)
}
}
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
t.Run("zero_cap", func(t *testing.T) {
m := New[int64, int64](0)
runTest(t, m, tc.vals)
})
t.Run("full_cap", func(t *testing.T) {
m := New[int64, int64](len(tc.vals))
runTest(t, m, tc.vals)
})
})
}
}
func TestNilMap(t *testing.T) {
var m *Map[int, int]
if sz := m.Len(); sz != 0 {
t.Fatalf("nil map must have length zero: %d", sz)
}
if m.Has(0) || m.Has(1) {
t.Fatalf("nil map must not have 0 or 1 as keys")
}
zero, ok := m.Get(0)
if ok {
t.Fatalf("nil map must not have 0 as key")
}
if zero != 0 {
t.Fatalf("nil map must return zero value for missing keys")
}
count := 0
m.ForEach(func(i int, i2 int) bool {
count++
t.Fatalf("must not be reached, nil map has no elements")
return true
})
if count != 0 {
t.Fatalf("iterating over nil map must not yield")
}
if m != nil { // sanity check
t.Fatalf("bad test - m must be nil")
}
}
func TestMap64Delete(t *testing.T) {
m := New[int, int](10)
for i := 0; i < 100; i++ {
m.Put(i, -i)
}
if sz := m.Len(); sz != 100 {
t.Fatalf("expected %d elements in map: %d", 100, sz)
}
for i := 0; i < 100; i++ {
if found := m.Del(i); !found {
t.Fatalf("deleted key should have been there: %d", i)
}
if sz := m.Len(); sz != 100-i-1 {
t.Fatalf("expected %d elements in map: %d", 100-i-1, sz)
}
if found := m.Del(i); found {
t.Fatalf("deleted key should not be there: %d", i)
}
}
if sz := m.Len(); sz != 0 {
t.Fatalf("map not empty, %d elements remain", sz)
}
}
func TestMap64Has(t *testing.T) {
m := New[int, int](10)
for i := 0; i < 100; i++ {
m.Put(i, -i)
}
if sz := m.Len(); sz != 100 {
t.Fatalf("expected %d elements in map: %d", 100, sz)
}
for i := 0; i < 100; i++ {
if found := m.Has(i); !found {
t.Fatalf("key should have been there: %d", i)
}
if found := m.Has(i + 100); found {
t.Fatalf("key should not be there: %d", i+100)
}
}
}
func TestMap64PutIfNotExists(t *testing.T) {
m := New[int, int](10)
for i := 0; i < 100; i++ {
m.Put(i, -i)
}
if sz := m.Len(); sz != 100 {
t.Fatalf("expected %d elements in map: %d", 100, sz)
}
for i := 0; i < 100; i++ {
val, ok := m.PutIfNotExists(i, i+100)
if ok {
t.Fatalf("key should have been there: %d", i)
}
if val != -i {
t.Fatalf("key should have been there: %d", i)
}
}
}
func TestMap64ForEachStop(t *testing.T) {
m := New[int, int](10)
for i := 0; i < 100; i++ {
m.Put(i, -i)
}
count := 0
m.ForEach(func(k, v int) bool {
count++
return count < 50
})
if have, want := count, 50; have != want {
t.Fatalf("unexpected number of elements processed: %d, want %d", have, want)
}
}
func TestMap64Iterators(t *testing.T) {
m := New[int, int](10)
for i := 0; i < 100; i++ {
m.Put(i, 99-i) // 0:99, 1:98, 2:97, ...
}
const sumTo99 = 99 * (99 + 1) / 2
sum := 0
for k, v := range m.All() {
sum += k + v
}
if sum != sumTo99*2 {
t.Fatalf("unexpected sum when iterating over keys and values: %d, want %d", sum, sumTo99*2)
}
sum = 0
for k := range m.Keys() {
if k == 9 {
continue
}
sum += k
}
expected := sumTo99 - 9
if sum != expected {
t.Fatalf("unexpected sum when iterating over keys: %d, want %d", sum, expected)
}
sum = 0
for v := range m.Values() {
sum += v
}
if sum != sumTo99 {
t.Fatalf("unexpected sum when iterating over values: %d, want %d", sum, sumTo99*2)
}
}
func TestPhiMix64(t *testing.T) {
cases := []struct {
name string
input int
expected func(int) int
}{
{
name: "zero",
input: 0,
expected: func(x int) int {
return 0
},
},
{
name: "one",
input: 1,
expected: func(x int) int {
h := int64(x) * 0x9E3779B9
return int(h ^ (h >> 16))
},
},
{
name: "negative_one",
input: -1,
expected: func(x int) int {
h := int64(x) * 0x9E3779B9
return int(h ^ (h >> 16))
},
},
{
name: "large_number",
input: 1234567,
expected: func(x int) int {
h := int64(x) * 0x9E3779B9
return int(h ^ (h >> 16))
},
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
result := phiMix64(tc.input)
expected := tc.expected(tc.input)
if result != expected {
t.Errorf("phiMix64(%d) = %d; want %d", tc.input, result, expected)
}
})
}
}