-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathe2e_test.go
434 lines (389 loc) · 8.82 KB
/
e2e_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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
package haxmap
import (
"fmt"
"math"
"strconv"
"sync"
"sync/atomic"
"testing"
"time"
)
type Animal struct {
name string
}
func TestMapCreation(t *testing.T) {
m := New[int, int]()
if m.Len() != 0 {
t.Errorf("new map should be empty but has %d items.", m.Len())
}
t.Run("default size is used when zero is provided", func(t *testing.T) {
m := New[int, int](0)
index := m.metadata.Load().index
if len(index) != defaultSize {
t.Error("map index size is not as expected")
}
})
}
func TestOverwrite(t *testing.T) {
type customUint uint
m := New[customUint, string]()
key := customUint(1)
cat := "cat"
tiger := "tiger"
m.Set(key, cat)
m.Set(key, tiger)
if m.Len() != 1 {
t.Errorf("map should contain exactly one element but has %v items.", m.Len())
}
item, ok := m.Get(key) // Retrieve inserted element.
if !ok {
t.Error("ok should be true for item stored within the map.")
}
if item != tiger {
t.Error("wrong item returned.")
}
}
func TestSet(t *testing.T) {
m := New[int, string](4)
m.Set(4, "cat")
m.Set(3, "cat")
m.Set(2, "tiger")
m.Set(1, "tiger")
if m.Len() != 4 {
t.Error("map should contain exactly 4 elements.")
}
}
// From bug https://github.com/alphadose/haxmap/issues/33
func TestSet2(t *testing.T) {
h := New[int, string]()
for i := 1; i <= 10; i++ {
h.Set(i, strconv.Itoa(i))
}
for i := 1; i <= 10; i++ {
h.Del(i)
}
for i := 1; i <= 10; i++ {
h.Set(i, strconv.Itoa(i))
}
for i := 1; i <= 10; i++ {
id, ok := h.Get(i)
if !ok {
t.Error("ok should be true for item stored within the map.")
}
if id != strconv.Itoa(i) {
t.Error("item is not as expected.")
}
}
}
func TestGet(t *testing.T) {
m := New[string, string]()
cat := "cat"
key := "animal"
_, ok := m.Get(key) // Get a missing element.
if ok {
t.Error("ok should be false when item is missing from map.")
}
m.Set(key, cat)
_, ok = m.Get("human") // Get a missing element.
if ok {
t.Error("ok should be false when item is missing from map.")
}
value, ok := m.Get(key) // Retrieve inserted element.
if !ok {
t.Error("ok should be true for item stored within the map.")
}
if value != cat {
t.Error("item was modified.")
}
}
func TestGrow(t *testing.T) {
m := New[uint, uint]()
m.Grow(63)
d := m.metadata.Load()
log := int(math.Log2(64))
expectedSize := uintptr(strconv.IntSize - log)
if d.keyshifts != expectedSize {
t.Errorf("Grow operation did not result in correct internal map data structure, Dump -> %#v", d)
}
}
func TestGrow2(t *testing.T) {
size := 64
m := New[int, any](uintptr(size))
for i := 0; i < 10000; i++ {
m.Set(i, nil)
m.Del(i)
if n := len(m.metadata.Load().index); n != size {
t.Fatalf("map should not be resized, new size: %d", n)
}
}
}
func TestFillrate(t *testing.T) {
m := New[int, any]()
for i := 0; i < 1000; i++ {
m.Set(i, nil)
}
for i := 0; i < 1000; i++ {
m.Del(i)
}
if fr := m.Fillrate(); fr != 0 {
t.Errorf("Fillrate should be zero when the map is empty, fillrate: %v", fr)
}
}
func TestDelete(t *testing.T) {
m := New[int, *Animal]()
cat := &Animal{"cat"}
tiger := &Animal{"tiger"}
m.Set(1, cat)
m.Set(2, tiger)
m.Del(0)
m.Del(3, 4, 5)
if m.Len() != 2 {
t.Error("map should contain exactly two elements.")
}
m.Del(1, 2, 1)
if m.Len() != 0 {
t.Error("map should be empty.")
}
_, ok := m.Get(1) // Get a missing element.
if ok {
t.Error("ok should be false when item is missing from map.")
}
}
// From bug https://github.com/alphadose/haxmap/issues/11
func TestDelete2(t *testing.T) {
m := New[int, string]()
m.Set(1, "one")
m.Del(1) // delegate key 1
if m.Len() != 0 {
t.Fail()
}
// Still can traverse the key/value pair ?
m.ForEach(func(key int, value string) bool {
t.Fail()
return true
})
}
// from https://pkg.go.dev/sync#Map.LoadOrStore
func TestGetOrSet(t *testing.T) {
var (
m = New[int, string]()
data = "one"
)
if val, loaded := m.GetOrSet(1, data); loaded {
t.Error("Value should not have been present")
} else if val != data {
t.Error("Returned value should be the same as given value if absent")
}
if val, loaded := m.GetOrSet(1, data); !loaded {
t.Error("Value should have been present")
} else if val != data {
t.Error("Returned value should be the same as given value")
}
}
func TestForEach(t *testing.T) {
m := New[int, *Animal]()
m.ForEach(func(i int, a *Animal) bool {
t.Errorf("map should be empty but got key -> %d and value -> %#v.", i, a)
return true
})
itemCount := 16
for i := itemCount; i > 0; i-- {
m.Set(i, &Animal{strconv.Itoa(i)})
}
counter := 0
m.ForEach(func(i int, a *Animal) bool {
if a == nil {
t.Error("Expecting an object.")
}
counter++
return true
})
if counter != itemCount {
t.Error("Returned item count did not match.")
}
}
func TestClear(t *testing.T) {
m := New[int, any]()
for i := 0; i < 100; i++ {
m.Set(i, nil)
}
m.Clear()
if m.Len() != 0 {
t.Error("map size should be zero after clear")
}
if m.Fillrate() != 0 {
t.Error("fillrate should be zero after clear")
}
log := int(math.Log2(defaultSize))
expectedSize := uintptr(strconv.IntSize - log)
if m.metadata.Load().keyshifts != expectedSize {
t.Error("keyshift is not as expected after clear")
}
for i := 0; i < 100; i++ {
if _, ok := m.Get(i); ok {
t.Error("the entries should not be existing in the map after clear")
}
}
}
func TestMapParallel(t *testing.T) {
max := 10
dur := 2 * time.Second
m := New[int, int]()
do := func(t *testing.T, max int, d time.Duration, fn func(*testing.T, int)) <-chan error {
t.Helper()
done := make(chan error)
var times int64
// This goroutines will terminate test in case if closure hangs.
go func() {
for {
select {
case <-time.After(d + 500*time.Millisecond):
if atomic.LoadInt64(×) == 0 {
done <- fmt.Errorf("closure was not executed even once, something blocks it")
}
close(done)
case <-done:
}
}
}()
go func() {
timer := time.NewTimer(d)
defer timer.Stop()
InfLoop:
for {
for i := 0; i < max; i++ {
select {
case <-timer.C:
break InfLoop
default:
}
fn(t, i)
atomic.AddInt64(×, 1)
}
}
close(done)
}()
return done
}
wait := func(t *testing.T, done <-chan error) {
t.Helper()
if err := <-done; err != nil {
t.Error(err)
}
}
// Initial fill.
for i := 0; i < max; i++ {
m.Set(i, i)
}
t.Run("set_get", func(t *testing.T) {
doneSet := do(t, max, dur, func(t *testing.T, i int) {
m.Set(i, i)
})
doneGet := do(t, max, dur, func(t *testing.T, i int) {
if _, ok := m.Get(i); !ok {
t.Errorf("missing value for key: %d", i)
}
})
wait(t, doneSet)
wait(t, doneGet)
})
t.Run("delete", func(t *testing.T) {
doneDel := do(t, max, dur, func(t *testing.T, i int) {
m.Del(i)
})
wait(t, doneDel)
})
}
func TestMapConcurrentWrites(t *testing.T) {
blocks := New[string, struct{}]()
var wg sync.WaitGroup
for i := 0; i < 100; i++ {
wg.Add(1)
go func(blocks *Map[string, struct{}], i int) {
defer wg.Done()
blocks.Set(strconv.Itoa(i), struct{}{})
wg.Add(1)
go func(blocks *Map[string, struct{}], i int) {
defer wg.Done()
blocks.Get(strconv.Itoa(i))
}(blocks, i)
}(blocks, i)
}
wg.Wait()
}
// Collision test case when hash key is 0 in value for all entries
func TestHash0Collision(t *testing.T) {
m := New[string, int]()
staticHasher := func(key string) uintptr {
return 0
}
m.SetHasher(staticHasher)
m.Set("1", 1)
m.Set("2", 2)
_, ok := m.Get("1")
if !ok {
t.Error("1 not found")
}
_, ok = m.Get("2")
if !ok {
t.Error("2 not found")
}
}
// test map freezing issue
// https://github.com/alphadose/haxmap/issues/7
// https://github.com/alphadose/haxmap/issues/8
// Update:- Solved now
func TestInfiniteLoop(t *testing.T) {
t.Run("infinite loop", func(b *testing.T) {
m := New[int, int](512)
for i := 0; i < 112050; i++ {
if i > 112024 {
m.Set(i, i) // set debug point here and step into until .inject
} else {
m.Set(i, i)
}
}
})
}
// https://github.com/alphadose/haxmap/issues/18
// test compare and swap
func TestCAS(t *testing.T) {
type custom struct {
val int
}
m := New[string, custom]()
m.Set("1", custom{val: 1})
if m.CompareAndSwap("1", custom{val: 420}, custom{val: 2}) {
t.Error("Invalid Compare and Swap")
}
if !m.CompareAndSwap("1", custom{val: 1}, custom{val: 2}) {
t.Error("Compare and Swap Failed")
}
val, ok := m.Get("1")
if !ok {
t.Error("Key doesnt exists")
}
if val.val != 2 {
t.Error("Invalid Compare and Swap value returned")
}
}
// https://github.com/alphadose/haxmap/issues/18
// test swap
func TestSwap(t *testing.T) {
m := New[string, int]()
m.Set("1", 1)
val, swapped := m.Swap("1", 2)
if !swapped {
t.Error("Swap failed")
}
if val != 1 {
t.Error("Old value not returned in swal")
}
val, ok := m.Get("1")
if !ok {
t.Error("Key doesnt exists")
}
if val != 2 {
t.Error("New value not set")
}
}