-
Notifications
You must be signed in to change notification settings - Fork 158
/
lru_test.go
525 lines (486 loc) · 17.4 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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
package rueidis
import (
"context"
"errors"
"strconv"
"sync"
"sync/atomic"
"testing"
"time"
"github.com/redis/rueidis/internal/cmds"
)
const PTTL = 50
const TTL = 100 * time.Millisecond
const Entries = 3
//gocyclo:ignore
func TestLRU(t *testing.T) {
defer ShouldNotLeaked(SetupLeakDetection())
setup := func(t *testing.T) *lru {
store := newLRU(CacheStoreOption{CacheSizeEachConn: entryMinSize * Entries})
if v, entry := store.Flight("0", "GET", TTL, time.Now()); v.typ != 0 || entry != nil {
t.Fatalf("got unexpected value from the first Flight: %v %v", v, entry)
}
m := RedisMessage{typ: '+', string: "0", values: []RedisMessage{{}}}
m.setExpireAt(time.Now().Add(PTTL * time.Millisecond).UnixMilli())
store.Update("0", "GET", m)
return store.(*lru)
}
t.Run("Cache Hit & Expire", func(t *testing.T) {
lru := setup(t)
if v, _ := lru.Flight("0", "GET", TTL, time.Now()); v.typ == 0 {
t.Fatalf("did not get the value from the second Flight")
} else if v.string != "0" {
t.Fatalf("got unexpected value from the second Flight: %v", v)
}
time.Sleep(PTTL * time.Millisecond)
if v, entry := lru.Flight("0", "GET", TTL, time.Now()); v.typ != 0 || entry != nil {
t.Fatalf("got unexpected value from the Flight 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.Flight("1", "GET", TTL, time.Now()); v.typ != 0 || entry != nil {
t.Fatalf("got unexpected value from the Flight after pttl: %v %v", v, entry)
}
m := RedisMessage{typ: '+', string: "1"}
lru.Update("1", "GET", m)
if v, _ := lru.Flight("1", "GET", TTL, time.Now()); v.typ == 0 {
t.Fatalf("did not get the value from the second Flight")
} else if v.string != "1" {
t.Fatalf("got unexpected value from the second Flight: %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.Flight("1", "GET", TTL, time.Now()); v.typ != 0 {
t.Errorf("got unexpected value from the first Flight: %v", v)
}
if v, _ := lru.Flight("2", "GET", TTL, time.Now()); v.typ != 0 {
t.Errorf("got unexpected value from the first Flight: %v", v)
}
}()
}
wg.Wait()
lru.mu.RLock()
store1 := lru.store["1"]
store2 := lru.store["2"]
lru.mu.RUnlock()
if miss := atomic.LoadUint32(&store1.miss); miss != 1 {
t.Fatalf("unexpected miss count %v", miss)
}
if hits := atomic.LoadUint32(&store1.hits); hits != uint32(count-1) {
t.Fatalf("unexpected hits count %v", hits)
}
if miss := atomic.LoadUint32(&store2.miss); miss != 1 {
t.Fatalf("unexpected miss count %v", miss)
}
if hits := atomic.LoadUint32(&store2.hits); hits != uint32(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.Flight(strconv.Itoa(i), "GET", TTL, time.Now())
m := RedisMessage{typ: '+', string: strconv.Itoa(i)}
m.setExpireAt(time.Now().Add(PTTL * time.Millisecond).UnixMilli())
lru.Update(strconv.Itoa(i), "GET", m)
}
if v, entry := lru.Flight("1", "GET", TTL, time.Now()); v.typ != 0 {
t.Fatalf("got evicted value from the first Flight: %v %v", v, entry)
}
if v, _ := lru.Flight(strconv.Itoa(Entries), "GET", TTL, time.Now()); v.typ == 0 {
t.Fatalf("did not get the latest value from the Flight")
} else if v.string != strconv.Itoa(Entries) {
t.Fatalf("got unexpected value from the Flight: %v", v)
}
})
t.Run("Cache Delete", func(t *testing.T) {
lru := setup(t)
lru.Delete([]RedisMessage{{string: "0"}})
if v, _ := lru.Flight("0", "GET", TTL, time.Now()); v.typ != 0 {
t.Fatalf("got unexpected value from the first Flight: %v", v)
}
})
t.Run("Cache Flush", func(t *testing.T) {
lru := setup(t)
for i := 1; i < Entries; i++ {
lru.Flight(strconv.Itoa(i), "GET", TTL, time.Now())
m := RedisMessage{typ: '+', string: strconv.Itoa(i)}
lru.Update(strconv.Itoa(i), "GET", m)
}
for i := 1; i < Entries; i++ {
if v, _ := lru.Flight(strconv.Itoa(i), "GET", TTL, time.Now()); 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.Flight(strconv.Itoa(i), "GET", TTL, time.Now()); v.typ != 0 {
t.Fatalf("got unexpected value after flush all: %v", v)
}
}
})
t.Run("Cache Close", func(t *testing.T) {
lru := setup(t)
v, entry := lru.Flight("1", "GET", TTL, time.Now())
if v.typ != 0 || entry != nil {
t.Fatalf("got unexpected value from the first Flight: %v %v", v, entry)
}
v, entry = lru.Flight("1", "GET", TTL, time.Now())
if v.typ != 0 || entry == nil { // entry should not be nil in second call
t.Fatalf("got unexpected value from the second Flight: %v %v", v, entry)
}
lru.Close(ErrDoCacheAborted)
if _, err := entry.Wait(context.Background()); err != ErrDoCacheAborted {
t.Fatalf("got unexpected value after Close: %v", err)
}
m := RedisMessage{typ: '+', string: "this Update should have no effect"}
m.setExpireAt(time.Now().Add(PTTL * time.Millisecond).UnixMilli())
lru.Update("1", "GET", m)
for i := 0; i < 2; i++ { // entry should be always nil after the first call if Close
if v, entry := lru.Flight("1", "GET", TTL, time.Now()); v.typ != 0 || entry != nil {
t.Fatalf("got unexpected value from the first Flight: %v %v", v, entry)
}
}
})
t.Run("Cache Cancel", func(t *testing.T) {
lru := setup(t)
v, entry := lru.Flight("1", "GET", TTL, time.Now())
if v.typ != 0 || entry != nil {
t.Fatalf("got unexpected value from the first Flight: %v %v", v, entry)
}
v, entry = lru.Flight("1", "GET", TTL, time.Now())
if v.typ != 0 || entry == nil { // entry should not be nil in second call
t.Fatalf("got unexpected value from the second Flight: %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 CacheEntry.Wait(): %v %v", err, err2)
}
})
t.Run("GetTTL", func(t *testing.T) {
lru := setup(t)
if v := lru.GetTTL("empty", "cmd"); v != -2 {
t.Fatalf("unexpected %v", v)
}
lru.Flight("key", "cmd", time.Second, time.Now())
m := RedisMessage{typ: 1}
m.setExpireAt(time.Now().Add(time.Second).UnixMilli())
lru.Update("key", "cmd", m)
if v := lru.GetTTL("key", "cmd"); !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.Flight("key", "cmd", 2*time.Second, time.Now())
m := RedisMessage{typ: 1}
m.setExpireAt(time.Now().Add(time.Second).UnixMilli())
lru.Update("key", "cmd", m)
if v, _ := lru.Flight("key", "cmd", 2*time.Second, time.Now()); 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.Flight("key", "cmd", 2*time.Second, time.Now())
m := RedisMessage{typ: 1}
m.setExpireAt(time.Now().Add(3 * time.Second).UnixMilli())
lru.Update("key", "cmd", m)
if v, _ := lru.Flight("key", "cmd", 2*time.Second, time.Now()); v.CacheTTL() != 2 {
t.Fatalf("unexpected %v", v.CacheTTL())
}
})
t.Run("no server side TTL -1", func(t *testing.T) {
lru := setup(t)
lru.Flight("key", "cmd", 2*time.Second, time.Now())
m := RedisMessage{typ: 1}
lru.Update("key", "cmd", m)
if v, _ := lru.Flight("key", "cmd", 2*time.Second, time.Now()); v.CacheTTL() != 2 {
t.Fatalf("unexpected %v", v.CacheTTL())
}
})
t.Run("no server side TTL -2", func(t *testing.T) {
lru := setup(t)
lru.Flight("key", "cmd", 2*time.Second, time.Now())
m := RedisMessage{typ: 1}
lru.Update("key", "cmd", m)
if v, _ := lru.Flight("key", "cmd", 2*time.Second, time.Now()); v.CacheTTL() != 2 {
t.Fatalf("unexpected %v", v.CacheTTL())
}
})
})
t.Run("Batch Cache Hit & Expire", func(t *testing.T) {
lru := setup(t)
if v, _ := lru.Flight("0", "GET", TTL, time.Now()); v.typ == 0 {
t.Fatalf("did not get the value from the second Flight")
} else if v.string != "0" {
t.Fatalf("got unexpected value from the second Flight: %v", v)
}
time.Sleep(PTTL * time.Millisecond)
if v, entry := flights(lru, time.Now(), TTL, "GET", "0"); v.typ != 0 || entry != nil {
t.Fatalf("got unexpected value from the Flight after pttl: %v %v", v, entry)
}
})
t.Run("Batch Cache Should Not Expire By PTTL -2", func(t *testing.T) {
lru := setup(t)
if v, entry := lru.Flight("1", "GET", TTL, time.Now()); v.typ != 0 || entry != nil {
t.Fatalf("got unexpected value from the Flight after pttl: %v %v", v, entry)
}
m := RedisMessage{typ: '+', string: "1"}
lru.Update("1", "GET", m)
if v, _ := flights(lru, time.Now(), TTL, "GET", "1"); v.typ == 0 {
t.Fatalf("did not get the value from the second Flight")
} else if v.string != "1" {
t.Fatalf("got unexpected value from the second Flight: %v", v)
}
})
t.Run("Batch 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, _ := flights(lru, time.Now(), TTL, "GET", "1"); v.typ != 0 {
t.Errorf("got unexpected value from the first Flight: %v", v)
}
if v, _ := flights(lru, time.Now(), TTL, "GET", "2"); v.typ != 0 {
t.Errorf("got unexpected value from the first Flight: %v", v)
}
}()
}
wg.Wait()
lru.mu.RLock()
store1 := lru.store["1"]
store2 := lru.store["2"]
lru.mu.RUnlock()
if miss := atomic.LoadUint32(&store1.miss); miss != 1 {
t.Fatalf("unexpected miss count %v", miss)
}
if hits := atomic.LoadUint32(&store1.hits); hits != uint32(count-1) {
t.Fatalf("unexpected hits count %v", hits)
}
if miss := atomic.LoadUint32(&store2.miss); miss != 1 {
t.Fatalf("unexpected miss count %v", miss)
}
if hits := atomic.LoadUint32(&store2.hits); hits != uint32(count-1) {
t.Fatalf("unexpected hits count %v", hits)
}
})
t.Run("Batch Cache Evict", func(t *testing.T) {
lru := setup(t)
for i := 1; i <= Entries; i++ {
flights(lru, time.Now(), TTL, "GET", strconv.Itoa(i))
m := RedisMessage{typ: '+', string: strconv.Itoa(i)}
m.setExpireAt(time.Now().Add(PTTL * time.Millisecond).UnixMilli())
lru.Update(strconv.Itoa(i), "GET", m)
}
if v, entry := flights(lru, time.Now(), TTL, "GET", "1"); v.typ != 0 {
t.Fatalf("got evicted value from the first Flight: %v %v", v, entry)
}
if v, _ := flights(lru, time.Now(), TTL, "GET", strconv.Itoa(Entries)); v.typ == 0 {
t.Fatalf("did not get the latest value from the Flight")
} else if v.string != strconv.Itoa(Entries) {
t.Fatalf("got unexpected value from the Flight: %v", v)
}
})
t.Run("Batch Cache Delete", func(t *testing.T) {
lru := setup(t)
lru.Delete([]RedisMessage{{string: "0"}})
if v, _ := flights(lru, time.Now(), TTL, "GET", "0"); v.typ != 0 {
t.Fatalf("got unexpected value from the first Flight: %v", v)
}
})
t.Run("Batch Cache Flush", func(t *testing.T) {
lru := setup(t)
for i := 1; i < Entries; i++ {
flights(lru, time.Now(), TTL, "GET", strconv.Itoa(i))
m := RedisMessage{typ: '+', string: strconv.Itoa(i)}
lru.Update(strconv.Itoa(i), "GET", m)
}
for i := 1; i < Entries; i++ {
if v, _ := flights(lru, time.Now(), TTL, "GET", strconv.Itoa(i)); 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, _ := flights(lru, time.Now(), TTL, "GET", strconv.Itoa(i)); v.typ != 0 {
t.Fatalf("got unexpected value after flush all: %v", v)
}
}
})
t.Run("Batch Cache Close", func(t *testing.T) {
lru := setup(t)
v, entry := flights(lru, time.Now(), TTL, "GET", "1")
if v.typ != 0 || entry != nil {
t.Fatalf("got unexpected value from the first Flight: %v %v", v, entry)
}
v, entry = flights(lru, time.Now(), TTL, "GET", "1")
if v.typ != 0 || entry == nil { // entry should not be nil in second call
t.Fatalf("got unexpected value from the second Flight: %v %v", v, entry)
}
lru.Close(ErrDoCacheAborted)
if _, err := entry.Wait(context.Background()); err != ErrDoCacheAborted {
t.Fatalf("got unexpected value after Close: %v", err)
}
m := RedisMessage{typ: '+', string: "this Update should have no effect"}
m.setExpireAt(time.Now().Add(PTTL * time.Millisecond).UnixMilli())
lru.Update("1", "GET", m)
for i := 0; i < 2; i++ { // entry should be always nil after the first call if Close
if v, entry := flights(lru, time.Now(), TTL, "GET", "1"); v.typ != 0 || entry != nil {
t.Fatalf("got unexpected value from the first Flight: %v %v", v, entry)
}
}
})
t.Run("Batch Cache Cancel", func(t *testing.T) {
lru := setup(t)
v, entry := flights(lru, time.Now(), TTL, "GET", "1")
if v.typ != 0 || entry != nil {
t.Fatalf("got unexpected value from the first Flight: %v %v", v, entry)
}
v, entry = flights(lru, time.Now(), TTL, "GET", "1")
if v.typ != 0 || entry == nil { // entry should not be nil in second call
t.Fatalf("got unexpected value from the second Flight: %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 CacheEntry.Wait(): %v %v", err, err2)
}
})
t.Run("Batch GetTTL", func(t *testing.T) {
lru := setup(t)
if v := lru.GetTTL("empty", "cmd"); v != -2 {
t.Fatalf("unexpected %v", v)
}
flights(lru, time.Now(), time.Second, "cmd", "key")
m := RedisMessage{typ: 1}
m.setExpireAt(time.Now().Add(time.Second).UnixMilli())
lru.Update("key", "cmd", m)
if v := lru.GetTTL("key", "cmd"); !roughly(v, time.Second) {
t.Fatalf("unexpected %v", v)
}
})
t.Run("Batch Update Message TTL", func(t *testing.T) {
t.Run("client side TTL > server side TTL", func(t *testing.T) {
lru := setup(t)
flights(lru, time.Now(), time.Second*2, "cmd", "key")
m := RedisMessage{typ: 1}
m.setExpireAt(time.Now().Add(time.Second).UnixMilli())
lru.Update("key", "cmd", m)
if v, _ := flights(lru, time.Now(), time.Second*2, "cmd", "key"); v.CacheTTL() != 1 {
t.Fatalf("unexpected %v", v.CacheTTL())
}
})
t.Run("client side TTL < server side TTL", func(t *testing.T) {
lru := setup(t)
flights(lru, time.Now(), time.Second*2, "cmd", "key")
m := RedisMessage{typ: 1}
m.setExpireAt(time.Now().Add(3 * time.Second).UnixMilli())
lru.Update("key", "cmd", m)
if v, _ := flights(lru, time.Now(), time.Second*2, "cmd", "key"); v.CacheTTL() != 2 {
t.Fatalf("unexpected %v", v.CacheTTL())
}
})
t.Run("no server side TTL -1", func(t *testing.T) {
lru := setup(t)
flights(lru, time.Now(), time.Second*2, "cmd", "key")
m := RedisMessage{typ: 1}
lru.Update("key", "cmd", m)
if v, _ := flights(lru, time.Now(), time.Second*2, "cmd", "key"); v.CacheTTL() != 2 {
t.Fatalf("unexpected %v", v.CacheTTL())
}
})
t.Run("no server side TTL -2", func(t *testing.T) {
lru := setup(t)
flights(lru, time.Now(), time.Second*2, "cmd", "key")
m := RedisMessage{typ: 1}
lru.Update("key", "cmd", m)
if v, _ := flights(lru, time.Now(), time.Second*2, "cmd", "key"); v.CacheTTL() != 2 {
t.Fatalf("unexpected %v", v.CacheTTL())
}
})
})
}
func flights(lru *lru, now time.Time, ttl time.Duration, args ...string) (RedisMessage, CacheEntry) {
results := make([]RedisResult, 1)
entries := make(map[int]CacheEntry, 1)
lru.Flights(now, commands(ttl, args...), results, entries)
return results[0].val, entries[0]
}
func commands(ttl time.Duration, args ...string) []CacheableTTL {
return []CacheableTTL{CT(Cacheable(cmds.NewCompleted(args)), ttl)}
}
func roughly(ttl, expect time.Duration) bool {
return ttl >= (expect/4) && ttl <= expect
}
func BenchmarkLRU(b *testing.B) {
lru := newLRU(CacheStoreOption{CacheSizeEachConn: entryMinSize * Entries})
b.Run("Flight", func(b *testing.B) {
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
lru.Flight("0", "GET", TTL, time.Now())
}
})
})
b.Run("Update", func(b *testing.B) {
for i := 0; i < b.N; i++ {
key := strconv.Itoa(i)
lru.Flight(key, "GET", TTL, time.Now())
m := RedisMessage{}
m.setExpireAt(time.Now().Add(PTTL * time.Millisecond).UnixMilli())
lru.Update(key, "GET", m)
}
})
}
func TestEntry(t *testing.T) {
defer ShouldNotLeaked(SetupLeakDetection())
t.Run("Wait", func(t *testing.T) {
e := cacheEntry{ch: make(chan struct{})}
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 := cacheEntry{ch: make(chan struct{})}
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 := cacheEntry{ch: make(chan struct{})}
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)
}
})
}