-
Notifications
You must be signed in to change notification settings - Fork 0
/
map_test.go
74 lines (60 loc) · 1.26 KB
/
map_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
package immap
import (
"context"
"math/rand"
"sync"
"testing"
"time"
)
var testIntfs = []struct {
key interface{}
value interface{}
}{
{"abc", "123"},
{"abc", "123"},
{make(chan struct{}), struct{}{}},
{struct{ x int }{33}, "zz"},
{[...]int{1, 3, 4}, []byte("aaaaa")},
}
func TestAddExists(t *testing.T) {
var ok bool
mapper, cFunc := NewcontextMapper(context.Background())
defer cFunc()
for _, kv := range testIntfs {
mapper.Add(kv.key, kv.value)
}
for _, kv := range testIntfs {
if _, ok = mapper.Exists(kv.key); !ok {
t.Fatal("Key addition failed, does not exist")
}
}
for _, kv := range testIntfs {
mapper.Delete(kv.key)
}
}
func TestAddExistsConc(t *testing.T) {
var ok bool
var wg sync.WaitGroup
mapper, cFunc := NewcontextMapper(context.Background())
defer cFunc()
wg.Add(1)
go func() {
defer wg.Done()
for ind, kv := range [100]struct{}{} {
time.Sleep(time.Duration(rand.Intn(1)) * time.Millisecond)
mapper.Add(ind, kv)
}
}()
wg.Add(1)
time.Sleep(2 * time.Second)
go func() {
defer wg.Done()
for ind := range [100]struct{}{} {
time.Sleep(time.Duration(rand.Intn(5)) * time.Millisecond)
if _, ok = mapper.Exists(ind); !ok {
t.Fatal("Key addition failed, does not exist")
}
}
}()
wg.Wait()
}