-
Notifications
You must be signed in to change notification settings - Fork 5
/
safe_map_test.go
147 lines (142 loc) · 2.74 KB
/
safe_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
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
package collection
import (
"reflect"
"sort"
"testing"
)
func TestSafeMap(t *testing.T) {
tests := []struct {
name string
action func(m *SafeMap[string, int]) interface{}
expect interface{}
}{
{
name: "Set and Get",
action: func(m *SafeMap[string, int]) interface{} {
m.Set("key1", 100)
val, ok := m.Get("key1")
return struct {
value int
ok bool
}{val, ok}
},
expect: struct {
value int
ok bool
}{100, true},
},
{
name: "Get non-existent key",
action: func(m *SafeMap[string, int]) interface{} {
_, ok := m.Get("keyDoesNotExist")
return ok
},
expect: false,
},
{
name: "Delete key",
action: func(m *SafeMap[string, int]) interface{} {
m.Set("keyToDelete", 42)
m.Delete("keyToDelete")
_, ok := m.Get("keyToDelete")
return ok
},
expect: false,
},
{
name: "Has key",
action: func(m *SafeMap[string, int]) interface{} {
m.Set("existingKey", 1)
return m.Has("existingKey")
},
expect: true,
},
{
name: "Len",
action: func(m *SafeMap[string, int]) interface{} {
m.Set("k1", 1)
m.Set("k2", 2)
return m.Len()
},
expect: 2,
},
{
name: "Clear map",
action: func(m *SafeMap[string, int]) interface{} {
m.Set("k1", 1)
m.Set("k2", 2)
m.Clear()
return m.Len()
},
expect: 0,
},
{
name: "Keys method",
action: func(m *SafeMap[string, int]) interface{} {
m.Set("k1", 1)
m.Set("k2", 2)
return m.Keys()
},
expect: []string{"k1", "k2"},
},
{
name: "Values method",
action: func(m *SafeMap[string, int]) interface{} {
m.Set("k1", 1)
m.Set("k2", 2)
return m.Values()
},
expect: []int{1, 2},
},
{
name: "ForEach method",
action: func(m *SafeMap[string, int]) interface{} {
results := make(map[string]int)
m.Set("k1", 1)
m.Set("k2", 2)
m.ForEach(func(k string, v int) {
results[k] = v
})
return results
},
expect: map[string]int{"k1": 1, "k2": 2},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
m := NewSafeMap[string, int]()
result := tt.action(m)
if !compareResults(result, tt.expect) {
t.Errorf("expected %v, got %v", tt.expect, result)
}
})
}
}
func compareResults(a, b interface{}) bool {
switch a := a.(type) {
case []string:
b := b.([]string)
sort.Strings(a)
sort.Strings(b)
return reflect.DeepEqual(a, b)
case []int:
b := b.([]int)
sort.Ints(a)
sort.Ints(b)
return reflect.DeepEqual(a, b)
case map[string]int:
b := b.(map[string]int)
return reflect.DeepEqual(a, b)
case struct {
value int
ok bool
}:
b := b.(struct {
value int
ok bool
})
return a.value == b.value && a.ok == b.ok
default:
return a == b
}
}