-
Notifications
You must be signed in to change notification settings - Fork 2
/
lru_cache_test.go
239 lines (181 loc) · 4.53 KB
/
lru_cache_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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
package incache
import (
"testing"
"time"
)
func TestSet_LRU(t *testing.T) {
c := NewLRU[string, string](10)
c.Set("key1", "value1")
if c.m["key1"].Value.(*lruItem[string, string]).value != "value1" {
t.Errorf("Set failed")
}
}
func TestGet_LRU(t *testing.T) {
c := NewLRU[string, string](10)
c.Set("key1", "value1")
if v, ok := c.Get("key1"); !ok || v != "value1" {
t.Errorf("Get failed")
}
}
func TestGetAll_LRU(t *testing.T) {
c := NewLRU[string, string](10)
c.Set("key1", "value1")
c.Set("key2", "value2")
c.Set("key3", "value3")
c.Set("key4", "value4")
c.Set("key5", "value5")
c.Set("key6", "value6")
c.Set("key7", "value7")
c.Set("key8", "value8")
c.Set("key9", "value9")
c.Set("key10", "value10")
c.Set("key11", "value11")
c.Set("key12", "value12")
if l := len(c.GetAll()); l != 10 {
t.Errorf("GetAll failed: expected %d, got %d\n", 10, l)
}
}
func TestSetWithTimeout_LRU(t *testing.T) {
c := NewLRU[string, string](10)
c.SetWithTimeout("key1", "value1", time.Millisecond)
time.Sleep(time.Millisecond)
if c.m["key1"].Value.(*lruItem[string, string]).value != "value1" {
t.Errorf("SetWithTimeout failed")
}
}
func TestNotFoundSet_LRU(t *testing.T) {
c := NewLRU[string, string](10)
if !c.NotFoundSet("key1", "value1") {
t.Errorf("NotFoundSet failed")
}
if c.NotFoundSet("key1", "value2") {
t.Errorf("NotFoundSet failed")
}
}
func TestNotFoundSetWithTimeout_LRU(t *testing.T) {
c := NewLRU[string, string](10)
if !c.NotFoundSetWithTimeout("key1", "value1", 0) {
t.Errorf("NotFoundSetWithTimeout failed")
}
if c.NotFoundSetWithTimeout("key1", "value2", 0) {
t.Errorf("NotFoundSetWithTimeout failed")
}
}
func TestDelete_LRU(t *testing.T) {
c := NewLRU[string, string](10)
c.Set("key1", "value1")
c.Delete("key1")
if _, ok := c.Get("key1"); ok {
t.Errorf("Delete failed")
}
}
func TestTransferTo_LRU(t *testing.T) {
c := NewLRU[string, string](10)
c.Set("key1", "value1")
c.Set("key2", "value2")
c.Set("key3", "value3")
c.Set("key4", "value4")
c.Set("key5", "value5")
c2 := NewLRU[string, string](10)
c.TransferTo(c2)
if _, ok := c2.Get("key1"); !ok {
t.Errorf("TransferTo failed")
}
if c.Len() != c.Count() || c.Len() != 0 || c2.Len() != c2.Count() || c2.Len() != 5 {
t.Errorf("TransferTo failed")
}
}
func TestCopyTo_LRU(t *testing.T) {
c := NewLRU[string, string](10)
c.Set("key1", "value1")
c.Set("key2", "value2")
c.Set("key3", "value3")
c.Set("key4", "value4")
c.Set("key5", "value5")
c.SetWithTimeout("key6", "value6", time.Second)
c2 := NewLRU[string, string](10)
c.CopyTo(c2)
if _, ok := c2.Get("key1"); !ok {
t.Errorf("CopyTo failed")
}
if c.Len() != c.Count() || c.Len() != 6 || c2.Len() != c2.Count() || c2.Len() != 6 {
t.Errorf("CopyTo failed")
}
}
func TestKeys_LRU(t *testing.T) {
c := NewLRU[string, string](10)
c.Set("key1", "value1")
c.Set("key2", "value2")
c.Set("key3", "value3")
c.Set("key4", "value4")
c.Set("key5", "value5")
c.SetWithTimeout("key6", "value6", 1)
c.SetWithTimeout("key7", "value7", 1)
c.SetWithTimeout("key8", "value8", 1)
c.SetWithTimeout("key9", "value9", 1)
c.Set("key10", "value10")
keys := c.Keys()
if len(keys) != 6 {
t.Errorf("Keys failed")
}
}
func TestPurge_LRU(t *testing.T) {
c := NewLRU[string, string](10)
c.Set("key1", "value1")
c.Set("key2", "value2")
c.Set("key3", "value3")
c.Purge()
if _, ok := c.Get("key1"); ok {
t.Errorf("Purge failed")
}
if _, ok := c.Get("key2"); ok {
t.Errorf("Purge failed")
}
if _, ok := c.Get("key3"); ok {
t.Errorf("Purge failed")
}
}
func TestCount_LRU(t *testing.T) {
c := NewLRU[string, string](10)
c.Set("key1", "value1")
c.Set("key2", "value2")
c.Set("key3", "value3")
c.Set("key4", "value4")
c.Set("key5", "value5")
if c.Count() != 5 {
t.Errorf("Count failed")
}
c.SetWithTimeout("key6", "value6", time.Microsecond)
time.Sleep(time.Microsecond)
if c.Count() != 5 {
t.Errorf("Count failed")
}
}
func TestLen_LRU(t *testing.T) {
c := NewLRU[string, string](10)
c.Set("key1", "value1")
c.Set("key2", "value2")
c.Set("key3", "value3")
c.Set("key4", "value4")
c.Set("key5", "value5")
if c.Len() != 5 {
t.Errorf("Len failed")
}
c.SetWithTimeout("key6", "value6", time.Microsecond)
time.Sleep(time.Microsecond)
if c.Len() != 6 {
t.Errorf("Len failed")
}
}
func TestEvict_LRU(t *testing.T) {
c := NewLRU[string, string](10)
c.Set("key1", "value1")
c.Set("key2", "value2")
c.Set("key3", "value3")
c.Set("key4", "value4")
c.Set("key5", "value5")
c.evict(1)
if c.Len() != c.Count() || c.Len() != 4 {
t.Errorf("Evict failed")
}
}