-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcimut_test.go
118 lines (95 loc) · 2.07 KB
/
cimut_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
package immap
import (
"context"
"math/rand"
"sync"
"testing"
"time"
)
var testcmIntfs = []struct {
key interface{}
value interface{}
}{
{"abc", "123"},
{make(chan struct{}), struct{}{}},
{struct{ x int }{33}, "zz"},
{[...]int{1, 3, 4}, []byte("aaaaa")},
{[...]int{1, 3, 4}, []byte("aaaaa")},
{[...]int{1, 3, 4}, []byte("aaaaa")},
}
func TestAddExistsConImut(t *testing.T) {
var ok bool
mapper, cFunc := NewContextImutMapper(context.Background())
defer cFunc()
for _, kv := range testcmIntfs {
mapper.Add(kv.key, kv.value)
}
for _, kv := range testcmIntfs {
if _, ok, _ = mapper.Exists(kv.key); !ok {
t.Fatal("Key addition failed, does not exist")
}
}
}
func TestAddExistsConImutConc(t *testing.T) {
var ok bool
var wg sync.WaitGroup
mapper, cFunc := NewContextImutMapper(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()
}
func TestAddExistsConImutConcRand(t *testing.T) {
var ok bool
var wg sync.WaitGroup
mapper, cFunc := NewContextImutMapper(context.Background())
defer cFunc()
count := 10000
limit := 50
randChan := make(chan int, count)
randChan2 := make(chan int, count)
go randGenChan(randChan, count, limit)
go randGenChan(randChan2, count, limit)
wg.Add(1)
go func() {
defer wg.Done()
for key := range randChan {
mapper.Add(key, struct{}{})
}
}()
wg.Add(1)
go func() {
defer wg.Done()
for key := range randChan2 {
mapper.Add(key, struct{}{})
}
}()
wg.Add(1)
time.Sleep(2 * time.Second)
go func() {
defer wg.Done()
for key := range randChan {
if _, ok, _ = mapper.Exists(key); !ok {
t.Fatal("Key addition failed, does not exist")
}
}
}()
wg.Wait()
}