-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsync_map_test.go
More file actions
148 lines (135 loc) · 3.11 KB
/
sync_map_test.go
File metadata and controls
148 lines (135 loc) · 3.11 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
package hmap
import (
"testing"
)
func TestSyncMap_NewSyncMap(t *testing.T) {
m := NewSyncMap[string, int]()
if m == nil {
t.Errorf("NewSyncMap returned nil")
}
}
func TestSyncMap_Len(t *testing.T) {
m := NewSyncMap[string, int]()
if m.Len() != 0 {
t.Errorf("Expected length 0, got %d", m.Len())
}
m.Store("key1", 1)
if m.Len() != 1 {
t.Errorf("Expected length 1, got %d", m.Len())
}
}
func TestSyncMap_Load(t *testing.T) {
m := NewSyncMap[string, int]()
m.Store("key1", 1)
v, ok := m.Load("key1")
if !ok || v != 1 {
t.Errorf("Expected value 1, got %d, ok %v", v, ok)
}
v, ok = m.Load("key2")
if ok {
t.Errorf("Expected ok to be false, got %v", ok)
}
}
func TestSyncMap_Swap(t *testing.T) {
m := NewSyncMap[string, int]()
m.Store("key1", 1)
v, ok := m.Swap("key1", 2)
if !ok || v != 1 {
t.Errorf("Expected value 1, got %d, ok %v", v, ok)
}
if m.Len() != 1 {
t.Errorf("Expected length 1, got %d", m.Len())
}
v, ok = m.Swap("key2", 2)
if ok {
t.Errorf("Expected ok to be false, got %v", ok)
}
if m.Len() != 2 {
t.Errorf("Expected length 2, got %d", m.Len())
}
}
func TestSyncMap_Store(t *testing.T) {
m := NewSyncMap[string, int]()
m.Store("key1", 1)
v, ok := m.Load("key1")
if !ok || v != 1 {
t.Errorf("Expected value 1, got %d, ok %v", v, ok)
}
}
func TestSyncMap_LoadOrStore(t *testing.T) {
m := NewSyncMap[string, int]()
v, ok := m.LoadOrStore("key1", 1)
if ok {
t.Errorf("Expected ok to be false, got %v", ok)
}
if m.Len() != 1 {
t.Errorf("Expected length 1, got %d", m.Len())
}
v, ok = m.LoadOrStore("key1", 2)
if !ok || v != 1 {
t.Errorf("Expected value 1, got %d, ok %v", v, ok)
}
}
func TestSyncMap_Delete(t *testing.T) {
m := NewSyncMap[string, int]()
m.Store("key1", 1)
m.Delete("key1")
if m.Len() != 0 {
t.Errorf("Expected length 0, got %d", m.Len())
}
}
func TestSyncMap_LoadAndDelete(t *testing.T) {
m := NewSyncMap[string, int]()
m.Store("key1", 1)
v, ok := m.LoadAndDelete("key1")
if !ok || v != 1 {
t.Errorf("Expected value 1, got %d, ok %v", v, ok)
}
if m.Len() != 0 {
t.Errorf("Expected length 0, got %d", m.Len())
}
}
func TestSyncMap_Range(t *testing.T) {
m := NewSyncMap[string, int]()
m.Store("key1", 1)
m.Store("key2", 2)
count := 0
m.Range(func(k string, v int) bool {
count++
return true
})
if count != 2 {
t.Errorf("Expected count 2, got %d", count)
}
}
func TestSyncMap_Clean(t *testing.T) {
m := NewSyncMap[string, int]()
m.Store("key1", 1)
m.Clean()
if m.Len() != 0 {
t.Errorf("Expected length 0, got %d", m.Len())
}
}
func TestSyncMap_CompareAndSwap(t *testing.T) {
m := NewSyncMap[string, int]()
m.Store("key1", 1)
swapped := m.CompareAndSwap("key1", 1, 2)
if !swapped {
t.Errorf("Expected swapped to be true, got %v", swapped)
}
v, ok := m.Load("key1")
if !ok || v != 2 {
t.Errorf("Expected value 2, got %d, ok %v", v, ok)
}
}
func TestSyncMap_CompareAndDelete(t *testing.T) {
m := NewSyncMap[string, int]()
m.Store("key1", 1)
deleted := m.CompareAndDelete("key1", 1)
if !deleted {
t.Errorf("Expected deleted to be true, got %v", deleted)
}
if m.Len() != 0 {
t.Errorf("Expected length 0, got %d", m.Len())
}
}