-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmap_test.go
69 lines (47 loc) · 899 Bytes
/
cmap_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
package cmap
import (
"testing"
)
func Test_map_bucket_zero(t *testing.T) {
defer func() {
if err := recover(); err != nil {
}
}()
NewConcurrentMap(0)
t.Error("bucket=0 not panic")
}
func Test_map_bucket_negative(t *testing.T) {
defer func() {
if err := recover(); err != nil {
}
}()
NewConcurrentMap(-8)
t.Error("bucket<0 not panic")
}
func Test_get_exist(t *testing.T) {
m := NewConcurrentMap(5)
value := "aaa"
m.Set("aaa", value)
m.Set("aaa", value)
o := m.Get("aaa")
if o == nil {
t.Fatal("already set but can not get")
}
v, ok := o.(string)
if !ok {
t.Fatal("get a wrong type")
}
if v != value {
t.Fatal("get a wrong value !=", value)
}
}
func Test_get_nil(t *testing.T) {
m := NewConcurrentMap(5)
value := "aaa"
m.Set("aaa", value)
m.Set("aaa", value)
o := m.Get("bbb")
if o != nil {
t.Fatal("already set but can not get")
}
}