-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconcurrent_map_test.go
More file actions
267 lines (228 loc) · 5.36 KB
/
Copy pathconcurrent_map_test.go
File metadata and controls
267 lines (228 loc) · 5.36 KB
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
package cmap
import (
"encoding/json"
"sort"
"strconv"
"testing"
)
type Animal struct {
name string
}
func TestMapCreation(t *testing.T) {
m := New[string]()
if m.shards == nil {
t.Error("map is null.")
}
if m.Count() != 0 {
t.Error("new map should be empty.")
}
}
func TestStore(t *testing.T) {
m := New[Animal]()
m.Store("elephant", Animal{"elephant"})
m.Store("monkey", Animal{"monkey"})
if m.Count() != 2 {
t.Error("map should contain exactly two elements.")
}
}
func TestLoad(t *testing.T) {
m := New[Animal]()
val, ok := m.Load("Money")
if ok {
t.Error("ok should be false when item is missing from map.")
}
if (val != Animal{}) {
t.Error("Missing values should return as zero value.")
}
m.Store("elephant", Animal{"elephant"})
elephant, ok := m.Load("elephant")
if !ok {
t.Error("ok should be true for item stored within the map.")
}
if elephant.name != "elephant" {
t.Error("item was modified.")
}
}
func TestDelete(t *testing.T) {
m := New[Animal]()
m.Store("monkey", Animal{"monkey"})
m.Delete("monkey")
if m.Count() != 0 {
t.Error("Expecting count to be zero once item was removed.")
}
temp, ok := m.Load("monkey")
if ok {
t.Error("Expecting ok to be false for missing items.")
}
if (temp != Animal{}) {
t.Error("Expecting item to be zero value after deletion.")
}
// Delete a non-existing element should not panic.
m.Delete("noone")
}
func TestLoadOrStore(t *testing.T) {
m := New[Animal]()
elephant := Animal{"elephant"}
monkey := Animal{"monkey"}
actual, loaded := m.LoadOrStore("elephant", elephant)
if loaded {
t.Error("should not be loaded on first call")
}
if actual != elephant {
t.Error("returned value should be the stored value")
}
actual, loaded = m.LoadOrStore("elephant", monkey)
if !loaded {
t.Error("should be loaded on second call")
}
if actual != elephant {
t.Error("returned value should be the original stored value, not the new one")
}
}
func TestLoadAndDelete(t *testing.T) {
m := New[Animal]()
monkey := Animal{"monkey"}
m.Store("monkey", monkey)
v, loaded := m.LoadAndDelete("monkey")
if !loaded || v != monkey {
t.Error("LoadAndDelete didn't find a monkey.")
}
v2, loaded2 := m.LoadAndDelete("monkey")
if loaded2 || v2 == monkey {
t.Error("LoadAndDelete keeps finding monkey")
}
if m.Count() != 0 {
t.Error("Expecting count to be zero once item was LoadAndDeleted.")
}
}
func TestRange(t *testing.T) {
m := New[Animal]()
for i := 0; i < 100; i++ {
m.Store(strconv.Itoa(i), Animal{strconv.Itoa(i)})
}
counter := 0
m.Range(func(key string, v Animal) bool {
if (v == Animal{}) {
t.Error("Expecting an object.")
}
counter++
return true
})
if counter != 100 {
t.Errorf("We should have counted 100 elements, got %d.", counter)
}
}
func TestRangeEarlyExit(t *testing.T) {
m := New[Animal]()
for i := 0; i < 100; i++ {
m.Store(strconv.Itoa(i), Animal{strconv.Itoa(i)})
}
counter := 0
m.Range(func(key string, v Animal) bool {
counter++
return counter < 10
})
if counter > 10 {
t.Errorf("Range should have stopped early, got %d iterations.", counter)
}
}
func TestCount(t *testing.T) {
m := New[Animal]()
for i := 0; i < 100; i++ {
m.Store(strconv.Itoa(i), Animal{strconv.Itoa(i)})
}
if m.Count() != 100 {
t.Error("Expecting 100 element within map.")
}
}
func TestClear(t *testing.T) {
m := New[Animal]()
for i := 0; i < 100; i++ {
m.Store(strconv.Itoa(i), Animal{strconv.Itoa(i)})
}
m.Clear()
if m.Count() != 0 {
t.Error("We should have 0 elements.")
}
}
func TestConcurrent(t *testing.T) {
m := New[int]()
ch := make(chan int)
const iterations = 1000
var a [iterations]int
go func() {
for i := 0; i < iterations/2; i++ {
m.Store(strconv.Itoa(i), i)
val, _ := m.Load(strconv.Itoa(i))
ch <- val
}
}()
go func() {
for i := iterations / 2; i < iterations; i++ {
m.Store(strconv.Itoa(i), i)
val, _ := m.Load(strconv.Itoa(i))
ch <- val
}
}()
counter := 0
for elem := range ch {
a[counter] = elem
counter++
if counter == iterations {
break
}
}
sort.Ints(a[0:iterations])
if m.Count() != iterations {
t.Error("Expecting 1000 elements.")
}
for i := 0; i < iterations; i++ {
if i != a[i] {
t.Error("missing value", i)
}
}
}
func TestJsonMarshal(t *testing.T) {
SHARD_COUNT = 2
defer func() { SHARD_COUNT = 32 }()
expected := "{\"a\":1,\"b\":2}"
m := New[int]()
m.Store("a", 1)
m.Store("b", 2)
j, err := json.Marshal(m)
if err != nil {
t.Error(err)
}
if string(j) != expected {
t.Errorf("json %s differ from expected %s", string(j), expected)
}
}
func TestAxhash(t *testing.T) {
// Determinism: same input must always produce the same output.
for _, key := range []string{"", "a", "hello", "concurrent-map", "0123456789abcdef", "longer-key-that-exceeds-16-bytes"} {
h1 := axhash(key)
h2 := axhash(key)
if h1 != h2 {
t.Errorf("axhash(%q) not deterministic: %d vs %d", key, h1, h2)
}
}
// Basic collision resistance: 1000 distinct keys must not collide.
seen := make(map[uint32]string)
for i := 0; i < 1000; i++ {
key := strconv.Itoa(i)
h := axhash(key)
if prev, ok := seen[h]; ok {
t.Errorf("axhash collision: %q and %q both hash to %d", prev, key, h)
break
}
seen[h] = key
}
// Boundary sanity: every length 0–256 must not panic.
buf := make([]byte, 256)
for i := range buf {
buf[i] = byte(i)
}
for n := 0; n <= 256; n++ {
_ = axhash(string(buf[:n]))
}
}