forked from redis/rueidis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lru_test.go
283 lines (260 loc) · 9.24 KB
/
lru_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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
package rueidis
import (
"context"
"errors"
"strconv"
"sync"
"sync/atomic"
"testing"
"time"
)
const PTTL = 50
const TTL = 100 * time.Millisecond
const Entries = 3
//gocyclo:ignore
func TestLRU(t *testing.T) {
setup := func(t *testing.T) *lru {
lru := newLRU(entryMinSize * Entries)
if v, entry := lru.GetOrPrepare("0", "GET", time.Now(), TTL); v.typ != 0 || entry != nil {
t.Fatalf("got unexpected value from the first GetOrPrepare: %v %v", v, entry)
}
lru.Update("0", "GET", RedisMessage{typ: '+', string: "0", values: []RedisMessage{{}}}, PTTL)
return lru
}
t.Run("Cache Hit & Expire", func(t *testing.T) {
lru := setup(t)
if v, _ := lru.GetOrPrepare("0", "GET", time.Now(), TTL); v.typ == 0 {
t.Fatalf("did not get the value from the second GetOrPrepare")
} else if v.string != "0" {
t.Fatalf("got unexpected value from the second GetOrPrepare: %v", v)
}
time.Sleep(PTTL * time.Millisecond)
if v, entry := lru.GetOrPrepare("0", "GET", time.Now(), TTL); v.typ != 0 || entry != nil {
t.Fatalf("got unexpected value from the GetOrPrepare after pttl: %v %v", v, entry)
}
})
t.Run("Cache Should Not Expire By PTTL -2", func(t *testing.T) {
lru := setup(t)
if v, entry := lru.GetOrPrepare("1", "GET", time.Now(), TTL); v.typ != 0 || entry != nil {
t.Fatalf("got unexpected value from the GetOrPrepare after pttl: %v %v", v, entry)
}
lru.Update("1", "GET", RedisMessage{typ: '+', string: "1"}, -2)
if v, _ := lru.GetOrPrepare("1", "GET", time.Now(), TTL); v.typ == 0 {
t.Fatalf("did not get the value from the second GetOrPrepare")
} else if v.string != "1" {
t.Fatalf("got unexpected value from the second GetOrPrepare: %v", v)
}
})
t.Run("Cache Miss Suppress", func(t *testing.T) {
count := 5000
lru := setup(t)
wg := sync.WaitGroup{}
wg.Add(count)
for i := 0; i < count; i++ {
go func() {
defer wg.Done()
if v, _ := lru.GetOrPrepare("1", "GET", time.Now(), TTL); v.typ != 0 {
t.Errorf("got unexpected value from the first GetOrPrepare: %v", v)
}
if v, _ := lru.GetOrPrepare("2", "GET", time.Now(), TTL); v.typ != 0 {
t.Errorf("got unexpected value from the first GetOrPrepare: %v", v)
}
}()
}
wg.Wait()
lru.mu.RLock()
store1 := lru.store["1"]
store2 := lru.store["2"]
lru.mu.RUnlock()
if miss := atomic.LoadUint64(&store1.miss); miss != 1 {
t.Fatalf("unexpected miss count %v", miss)
}
if hits := atomic.LoadUint64(&store1.hits); hits != uint64(count-1) {
t.Fatalf("unexpected hits count %v", hits)
}
if miss := atomic.LoadUint64(&store2.miss); miss != 1 {
t.Fatalf("unexpected miss count %v", miss)
}
if hits := atomic.LoadUint64(&store2.hits); hits != uint64(count-1) {
t.Fatalf("unexpected hits count %v", hits)
}
})
t.Run("Cache Evict", func(t *testing.T) {
lru := setup(t)
for i := 1; i <= Entries; i++ {
lru.GetOrPrepare(strconv.Itoa(i), "GET", time.Now(), TTL)
lru.Update(strconv.Itoa(i), "GET", RedisMessage{typ: '+', string: strconv.Itoa(i)}, PTTL)
}
if v, entry := lru.GetOrPrepare("1", "GET", time.Now(), TTL); v.typ != 0 {
t.Fatalf("got evicted value from the first GetOrPrepare: %v %v", v, entry)
}
if v, _ := lru.GetOrPrepare(strconv.Itoa(Entries), "GET", time.Now(), TTL); v.typ == 0 {
t.Fatalf("did not get the latest value from the GetOrPrepare")
} else if v.string != strconv.Itoa(Entries) {
t.Fatalf("got unexpected value from the GetOrPrepare: %v", v)
}
})
t.Run("Cache Delete", func(t *testing.T) {
lru := setup(t)
lru.Delete([]RedisMessage{{string: "0"}})
if v, _ := lru.GetOrPrepare("0", "GET", time.Now(), TTL); v.typ != 0 {
t.Fatalf("got unexpected value from the first GetOrPrepare: %v", v)
}
})
t.Run("Cache Flush", func(t *testing.T) {
lru := setup(t)
for i := 1; i < Entries; i++ {
lru.GetOrPrepare(strconv.Itoa(i), "GET", time.Now(), TTL)
lru.Update(strconv.Itoa(i), "GET", RedisMessage{typ: '+', string: strconv.Itoa(i)}, -1)
}
for i := 1; i < Entries; i++ {
if v, _ := lru.GetOrPrepare(strconv.Itoa(i), "GET", time.Now(), TTL); v.string != strconv.Itoa(i) {
t.Fatalf("got unexpected value before flush all: %v", v)
}
}
lru.Delete(nil)
for i := 1; i <= Entries; i++ {
if v, _ := lru.GetOrPrepare(strconv.Itoa(i), "GET", time.Now(), TTL); v.typ != 0 {
t.Fatalf("got unexpected value after flush all: %v", v)
}
}
})
t.Run("Cache FreeAndClose", func(t *testing.T) {
lru := setup(t)
v, entry := lru.GetOrPrepare("1", "GET", time.Now(), TTL)
if v.typ != 0 || entry != nil {
t.Fatalf("got unexpected value from the first GetOrPrepare: %v %v", v, entry)
}
v, entry = lru.GetOrPrepare("1", "GET", time.Now(), TTL)
if v.typ != 0 || entry == nil { // entry should not be nil in second call
t.Fatalf("got unexpected value from the second GetOrPrepare: %v %v", v, entry)
}
lru.FreeAndClose(ErrDoCacheAborted)
if _, err := entry.Wait(context.Background()); err != ErrDoCacheAborted {
t.Fatalf("got unexpected value after FreeAndClose: %v", err)
}
lru.Update("1", "GET", RedisMessage{typ: '+', string: "this Update should have no effect"}, PTTL)
for i := 0; i < 2; i++ { // entry should be always nil after the first call if FreeAndClose
if v, entry := lru.GetOrPrepare("1", "GET", time.Now(), TTL); v.typ != 0 || entry != nil {
t.Fatalf("got unexpected value from the first GetOrPrepare: %v %v", v, entry)
}
}
})
t.Run("Cache Cancel", func(t *testing.T) {
lru := setup(t)
v, entry := lru.GetOrPrepare("1", "GET", time.Now(), TTL)
if v.typ != 0 || entry != nil {
t.Fatalf("got unexpected value from the first GetOrPrepare: %v %v", v, entry)
}
v, entry = lru.GetOrPrepare("1", "GET", time.Now(), TTL)
if v.typ != 0 || entry == nil { // entry should not be nil in second call
t.Fatalf("got unexpected value from the second GetOrPrepare: %v %v", v, entry)
}
err := errors.New("any")
go func() {
lru.Cancel("1", "GET", err)
}()
if _, err2 := entry.Wait(context.Background()); err2 != err {
t.Fatalf("got unexpected value from the entry.Wait(): %v %v", err, err2)
}
})
t.Run("GetTTL", func(t *testing.T) {
lru := setup(t)
if v := lru.GetTTL("empty"); v != -2 {
t.Fatalf("unexpected %v", v)
}
lru.GetOrPrepare("key", "cmd", time.Now(), time.Second)
lru.Update("key", "cmd", RedisMessage{typ: 1}, 1000)
if v := lru.GetTTL("key"); !roughly(v, time.Second) {
t.Fatalf("unexpected %v", v)
}
})
t.Run("Update Message TTL", func(t *testing.T) {
t.Run("client side TTL > server side TTL", func(t *testing.T) {
lru := setup(t)
lru.GetOrPrepare("key", "cmd", time.Now(), 2*time.Second)
lru.Update("key", "cmd", RedisMessage{typ: 1}, 1000)
if v, _ := lru.GetOrPrepare("key", "cmd", time.Now(), 2*time.Second); v.CacheTTL() != 1 {
t.Fatalf("unexpected %v", v.CacheTTL())
}
})
t.Run("client side TTL < server side TTL", func(t *testing.T) {
lru := setup(t)
lru.GetOrPrepare("key", "cmd", time.Now(), 2*time.Second)
lru.Update("key", "cmd", RedisMessage{typ: 1}, 3000)
if v, _ := lru.GetOrPrepare("key", "cmd", time.Now(), 2*time.Second); v.CacheTTL() != 2 {
t.Fatalf("unexpected %v", v.CacheTTL())
}
})
t.Run("no server side TTL -1", func(t *testing.T) {
lru := setup(t)
lru.GetOrPrepare("key", "cmd", time.Now(), 2*time.Second)
lru.Update("key", "cmd", RedisMessage{typ: 1}, -1)
if v, _ := lru.GetOrPrepare("key", "cmd", time.Now(), 2*time.Second); v.CacheTTL() != 2 {
t.Fatalf("unexpected %v", v.CacheTTL())
}
})
t.Run("no server side TTL -2", func(t *testing.T) {
lru := setup(t)
lru.GetOrPrepare("key", "cmd", time.Now(), 2*time.Second)
lru.Update("key", "cmd", RedisMessage{typ: 1}, -2)
if v, _ := lru.GetOrPrepare("key", "cmd", time.Now(), 2*time.Second); v.CacheTTL() != 2 {
t.Fatalf("unexpected %v", v.CacheTTL())
}
})
})
}
func roughly(ttl, expect time.Duration) bool {
return ttl >= (expect/4) && ttl <= expect
}
func BenchmarkLRU(b *testing.B) {
lru := newLRU(entryMinSize * Entries)
b.Run("GetOrPrepare", func(b *testing.B) {
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
lru.GetOrPrepare("0", "GET", time.Now(), TTL)
}
})
})
b.Run("Update", func(b *testing.B) {
for i := 0; i < b.N; i++ {
key := strconv.Itoa(i)
lru.GetOrPrepare(key, "GET", time.Now(), TTL)
lru.Update(key, "GET", RedisMessage{}, PTTL)
}
})
}
func TestEntry(t *testing.T) {
t.Run("Wait", func(t *testing.T) {
e := entry{ch: make(chan struct{}, 1)}
err := errors.New("any")
go func() {
e.val = RedisMessage{typ: 1}
e.err = err
close(e.ch)
}()
if v, err2 := e.Wait(context.Background()); v.typ != 1 || err2 != err {
t.Fatalf("got unexpected value from the Wait: %v %v", v.typ, err)
}
})
t.Run("Wait with cancel", func(t *testing.T) {
e := entry{ch: make(chan struct{}, 1)}
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
go func() {
e.val = RedisMessage{typ: 1}
close(e.ch)
}()
if v, err := e.Wait(ctx); v.typ != 1 || err != nil {
t.Fatalf("got unexpected value from the Wait: %v %v", v.typ, err)
}
})
t.Run("Wait with closed ctx", func(t *testing.T) {
e := entry{ch: make(chan struct{}, 1)}
ctx, cancel := context.WithCancel(context.Background())
cancel()
if v, err := e.Wait(ctx); err != context.Canceled {
t.Fatalf("got unexpected value from the Wait: %v %v", v.typ, err)
}
})
}