-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcache_test.go
652 lines (518 loc) · 15 KB
/
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
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
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
package sdpcache
import (
"context"
"errors"
"fmt"
"sync"
"testing"
"time"
"github.com/overmindtech/cli/sdp-go"
)
func TestStoreItem(t *testing.T) {
cache := NewCache()
t.Run("one match", func(t *testing.T) {
item := GenerateRandomItem()
ck := CacheKeyFromQuery(item.GetMetadata().GetSourceQuery(), item.GetMetadata().GetSourceName())
cache.StoreItem(item, 10*time.Second, ck)
results, err := cache.Search(ck)
if err != nil {
t.Error(err)
}
if len(results) != 1 {
t.Errorf("expected 1 result, got %v", len(results))
}
})
t.Run("another match", func(t *testing.T) {
item := GenerateRandomItem()
ck := CacheKeyFromQuery(item.GetMetadata().GetSourceQuery(), item.GetMetadata().GetSourceName())
cache.StoreItem(item, 10*time.Second, ck)
results, err := cache.Search(ck)
if err != nil {
t.Error(err)
}
if len(results) != 1 {
t.Errorf("expected 1 result, got %v", len(results))
}
})
t.Run("different scope", func(t *testing.T) {
item := GenerateRandomItem()
ck := CacheKeyFromQuery(item.GetMetadata().GetSourceQuery(), item.GetMetadata().GetSourceName())
cache.StoreItem(item, 10*time.Second, ck)
ck.SST.Scope = fmt.Sprintf("new scope %v", ck.SST.Scope)
results, err := cache.Search(ck)
if err != nil {
if !errors.Is(err, ErrCacheNotFound) {
t.Error(err)
} else {
t.Log("expected cache miss")
}
}
if len(results) != 0 {
t.Errorf("expected 0 result, got %v", results)
}
})
}
func TestStoreError(t *testing.T) {
cache := NewCache()
t.Run("with just an error", func(t *testing.T) {
sst := SST{
SourceName: "foo",
Scope: "foo",
Type: "foo",
}
uav := "foo"
cache.StoreError(errors.New("arse"), 10*time.Second, CacheKey{
SST: sst,
Method: sdp.QueryMethod_GET.Enum(),
Query: &uav,
})
items, err := cache.Search(CacheKey{
SST: sst,
Method: sdp.QueryMethod_GET.Enum(),
Query: &uav,
})
if len(items) > 0 {
t.Errorf("expected 0 items, got %v", len(items))
}
if err == nil {
t.Error("expected error, got nil")
}
})
t.Run("with items and an error for the same query", func(t *testing.T) {
// Add an item with the same details as above
item := GenerateRandomItem()
item.Metadata.SourceQuery.Method = sdp.QueryMethod_GET
item.Metadata.SourceQuery.Query = "foo"
item.Metadata.SourceName = "foo"
item.Scope = "foo"
item.Type = "foo"
ck := CacheKeyFromQuery(item.GetMetadata().GetSourceQuery(), item.GetMetadata().GetSourceName())
items, err := cache.Search(ck)
if len(items) > 0 {
t.Errorf("expected 0 items, got %v", len(items))
}
if err == nil {
t.Error("expected error, got nil")
}
})
t.Run("with multiple errors", func(t *testing.T) {
sst := SST{
SourceName: "foo",
Scope: "foo",
Type: "foo",
}
uav := "foo"
cache.StoreError(errors.New("nope"), 10*time.Second, CacheKey{
SST: sst,
Method: sdp.QueryMethod_GET.Enum(),
Query: &uav,
})
items, err := cache.Search(CacheKey{
SST: sst,
Method: sdp.QueryMethod_GET.Enum(),
Query: &uav,
})
if len(items) > 0 {
t.Errorf("expected 0 items, got %v", len(items))
}
if err == nil {
t.Error("expected error, got nil")
}
})
}
func TestPurge(t *testing.T) {
cache := NewCache()
cachedItems := []struct {
Item *sdp.Item
Expiry time.Time
}{
{
Item: GenerateRandomItem(),
Expiry: time.Now().Add(0 * time.Second),
},
{
Item: GenerateRandomItem(),
Expiry: time.Now().Add(1 * time.Second),
},
{
Item: GenerateRandomItem(),
Expiry: time.Now().Add(2 * time.Second),
},
{
Item: GenerateRandomItem(),
Expiry: time.Now().Add(3 * time.Second),
},
{
Item: GenerateRandomItem(),
Expiry: time.Now().Add(4 * time.Second),
},
{
Item: GenerateRandomItem(),
Expiry: time.Now().Add(5 * time.Second),
},
}
for _, i := range cachedItems {
ck := CacheKeyFromQuery(i.Item.GetMetadata().GetSourceQuery(), i.Item.GetMetadata().GetSourceName())
cache.StoreItem(i.Item, time.Until(i.Expiry), ck)
}
// Make sure all the items are in the cache
for _, i := range cachedItems {
ck := CacheKeyFromQuery(i.Item.GetMetadata().GetSourceQuery(), i.Item.GetMetadata().GetSourceName())
items, err := cache.Search(ck)
if err != nil {
t.Error(err)
}
if len(items) != 1 {
t.Errorf("expected 1 item, got %v", len(items))
}
}
// Purge just the first one
stats := cache.Purge(cachedItems[0].Expiry.Add(500 * time.Millisecond))
if stats.NumPurged != 1 {
t.Errorf("expected 1 item purged, got %v", stats.NumPurged)
}
// The times won't be exactly equal because we're checking it against
// time.Now more than once. So I need to check that they are *almost* the
// same, but not exactly
nextExpiryString := stats.NextExpiry.Format(time.RFC3339)
expectedNextExpiryString := cachedItems[1].Expiry.Format(time.RFC3339)
if nextExpiryString != expectedNextExpiryString {
t.Errorf("expected next expiry to be %v, got %v", expectedNextExpiryString, nextExpiryString)
}
// Purge all but the last one
stats = cache.Purge(cachedItems[4].Expiry.Add(500 * time.Millisecond))
if stats.NumPurged != 4 {
t.Errorf("expected 4 item purged, got %v", stats.NumPurged)
}
// Purge the last one
stats = cache.Purge(cachedItems[5].Expiry.Add(500 * time.Millisecond))
if stats.NumPurged != 1 {
t.Errorf("expected 1 item purged, got %v", stats.NumPurged)
}
if stats.NextExpiry != nil {
t.Errorf("expected expiry to be nil, got %v", stats.NextExpiry)
}
}
func TestStartPurge(t *testing.T) {
cache := NewCache()
cache.MinWaitTime = 100 * time.Millisecond
cachedItems := []struct {
Item *sdp.Item
Expiry time.Time
}{
{
Item: GenerateRandomItem(),
Expiry: time.Now().Add(0),
},
{
Item: GenerateRandomItem(),
Expiry: time.Now().Add(100 * time.Millisecond),
},
}
for _, i := range cachedItems {
ck := CacheKeyFromQuery(i.Item.GetMetadata().GetSourceQuery(), i.Item.GetMetadata().GetSourceName())
cache.StoreItem(i.Item, time.Until(i.Expiry), ck)
}
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
err := cache.StartPurger(ctx)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
// Wait for everything to be purged
time.Sleep(200 * time.Millisecond)
// At this point everything should be been cleaned, and the purger should be
// sleeping forever
items, err := cache.Search(CacheKeyFromQuery(
cachedItems[1].Item.GetMetadata().GetSourceQuery(),
cachedItems[1].Item.GetMetadata().GetSourceName(),
))
if !errors.Is(err, ErrCacheNotFound) {
t.Errorf("unexpected error: %v", err)
t.Errorf("unexpected items: %v", len(items))
}
cache.purgeMutex.Lock()
if cache.nextPurge.Before(time.Now().Add(time.Hour)) {
// If the next purge is within the next hour that's an error, it should
// be really, really for in the future
t.Errorf("Expected next purge to be in 1000 years, got %v", cache.nextPurge.String())
}
cache.purgeMutex.Unlock()
// Adding a new item should kick off the purging again
for _, i := range cachedItems {
ck := CacheKeyFromQuery(i.Item.GetMetadata().GetSourceQuery(), i.Item.GetMetadata().GetSourceName())
cache.StoreItem(i.Item, 100*time.Millisecond, ck)
}
time.Sleep(200 * time.Millisecond)
// It should be empty again
items, err = cache.Search(CacheKeyFromQuery(
cachedItems[1].Item.GetMetadata().GetSourceQuery(),
cachedItems[1].Item.GetMetadata().GetSourceName(),
))
if !errors.Is(err, ErrCacheNotFound) {
t.Errorf("unexpected error: %v", err)
t.Errorf("unexpected items: %v", len(items))
}
}
func TestStopPurge(t *testing.T) {
cache := NewCache()
cache.MinWaitTime = 1 * time.Millisecond
ctx, cancel := context.WithCancel(context.Background())
err := cache.StartPurger(ctx)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
// Stop the purger
cancel()
// Insert an item
item := GenerateRandomItem()
ck := CacheKeyFromQuery(item.GetMetadata().GetSourceQuery(), item.GetMetadata().GetSourceName())
cache.StoreItem(item, time.Millisecond, ck)
sst := SST{
SourceName: item.GetMetadata().GetSourceName(),
Scope: item.GetScope(),
Type: item.GetType(),
}
// Make sure it's not purged
time.Sleep(100 * time.Millisecond)
items, err := cache.Search(CacheKey{
SST: sst,
})
if err != nil {
t.Error(err)
}
if len(items) != 1 {
t.Errorf("Expected 1 item, got %v", len(items))
}
}
func TestDelete(t *testing.T) {
cache := NewCache()
// Insert an item
item := GenerateRandomItem()
ck := CacheKeyFromQuery(item.GetMetadata().GetSourceQuery(), item.GetMetadata().GetSourceName())
cache.StoreItem(item, time.Millisecond, ck)
sst := SST{
SourceName: item.GetMetadata().GetSourceName(),
Scope: item.GetScope(),
Type: item.GetType(),
}
// It should be there
items, err := cache.Search(CacheKey{
SST: sst,
})
if err != nil {
t.Error(err)
}
if len(items) != 1 {
t.Errorf("expected 1 item, got %v", len(items))
}
// Delete it
cache.Delete(CacheKey{
SST: sst,
})
// It should be gone
items, err = cache.Search(CacheKey{
SST: sst,
})
if !errors.Is(err, ErrCacheNotFound) {
t.Errorf("expected ErrCacheNotFound, got %v", err)
}
if len(items) != 0 {
t.Errorf("expected 0 item, got %v", len(items))
}
}
// This test is designed to be run with -race to ensure that there aren't any
// data races
func TestConcurrent(t *testing.T) {
cache := NewCache()
// Run the purger super fast to generate a worst-case scenario
cache.MinWaitTime = 1 * time.Millisecond
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
err := cache.StartPurger(ctx)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
var wg sync.WaitGroup
numParallel := 1_000
for i := 0; i < numParallel; i++ {
wg.Add(1)
go func() {
defer wg.Done()
// Store the item
item := GenerateRandomItem()
ck := CacheKeyFromQuery(item.GetMetadata().GetSourceQuery(), item.GetMetadata().GetSourceName())
cache.StoreItem(item, 100*time.Millisecond, ck)
wg.Add(1)
// Create a goroutine to also delete in parallel
go func() {
defer wg.Done()
cache.Delete(ck)
}()
}()
}
wg.Wait()
}
func TestPointers(t *testing.T) {
cache := NewCache()
item := GenerateRandomItem()
ck := CacheKeyFromQuery(item.GetMetadata().GetSourceQuery(), item.GetMetadata().GetSourceName())
cache.StoreItem(item, time.Minute, ck)
item.Type = "bad"
items, err := cache.Search(ck)
if err != nil {
t.Error(err)
}
if len(items) != 1 {
t.Errorf("expected 1 item, got %v", len(items))
}
if items[0].GetType() == "bad" {
t.Error("item was changed in cache")
}
}
func TestCacheClear(t *testing.T) {
cache := NewCache()
cache.Clear()
// Populate the cache
item := GenerateRandomItem()
ck := CacheKeyFromQuery(item.GetMetadata().GetSourceQuery(), item.GetMetadata().GetSourceName())
cache.StoreItem(item, 500*time.Millisecond, ck)
// Start purging just to make sure it doesn't break
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
err := cache.StartPurger(ctx)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
// Make sure the cache is populated
_, err = cache.Search(ck)
if err != nil {
t.Error(err)
}
// Clear the cache
cache.Clear()
// Make sure the cache is empty
_, err = cache.Search(ck)
if err == nil {
t.Error("expected error, cache not cleared")
}
// Make sure we can populate it again
cache.StoreItem(item, 500*time.Millisecond, ck)
_, err = cache.Search(ck)
if err != nil {
t.Error(err)
}
}
func TestToIndexValues(t *testing.T) {
ck := CacheKey{
SST: SST{
SourceName: "foo",
Scope: "foo",
Type: "foo",
},
}
t.Run("with just SST", func(t *testing.T) {
iv := ck.ToIndexValues()
if iv.SSTHash != ck.SST.Hash() {
t.Error("hash mismatch")
}
})
t.Run("with SST & Method", func(t *testing.T) {
ck.Method = sdp.QueryMethod_GET.Enum()
iv := ck.ToIndexValues()
if iv.Method != sdp.QueryMethod_GET {
t.Errorf("expected %v, got %v", sdp.QueryMethod_GET, iv.Method)
}
})
t.Run("with SST & Query", func(t *testing.T) {
q := "query"
ck.Query = &q
iv := ck.ToIndexValues()
if iv.Query != "query" {
t.Errorf("expected %v, got %v", "query", iv.Query)
}
})
t.Run("with SST & UniqueAttributeValue", func(t *testing.T) {
q := "foo"
ck.UniqueAttributeValue = &q
iv := ck.ToIndexValues()
if iv.UniqueAttributeValue != "foo" {
t.Errorf("expected %v, got %v", "foo", iv.UniqueAttributeValue)
}
})
}
func TestLookup(t *testing.T) {
ctx := context.Background()
cache := NewCache()
item := GenerateRandomItem()
ck := CacheKeyFromQuery(item.GetMetadata().GetSourceQuery(), item.GetMetadata().GetSourceName())
cache.StoreItem(item, 10*time.Second, ck)
// ignore the cache
cacheHit, _, cachedItems, err := cache.Lookup(ctx, item.GetMetadata().GetSourceName(), sdp.QueryMethod_GET, item.GetScope(), item.GetType(), item.UniqueAttributeValue(), true)
if err != nil {
t.Fatal(err)
}
if cacheHit {
t.Error("expected cache miss, got hit")
}
if cachedItems != nil {
t.Errorf("expected nil items, got %v", cachedItems)
}
// Lookup the item
cacheHit, _, cachedItems, err = cache.Lookup(ctx, item.GetMetadata().GetSourceName(), sdp.QueryMethod_GET, item.GetScope(), item.GetType(), item.UniqueAttributeValue(), false)
if err != nil {
t.Fatal(err)
}
if !cacheHit {
t.Fatal("expected cache hit, got miss")
}
if len(cachedItems) != 1 {
t.Fatalf("expected 1 item, got %v", len(cachedItems))
}
if cachedItems[0].GetType() != item.GetType() {
t.Errorf("expected type %v, got %v", item.GetType(), cachedItems[0].GetType())
}
if cachedItems[0].Health == nil {
t.Error("expected health to be set")
}
if len(cachedItems[0].GetTags()) != len(item.GetTags()) {
t.Error("expected tags to be set")
}
stats := cache.Purge(time.Now().Add(1 * time.Hour))
if stats.NumPurged != 1 {
t.Errorf("expected 1 item purged, got %v", stats.NumPurged)
}
// Lookup the item
cacheHit, _, cachedItems, err = cache.Lookup(ctx, item.GetMetadata().GetSourceName(), sdp.QueryMethod_GET, item.GetScope(), item.GetType(), item.UniqueAttributeValue(), false)
if err != nil {
t.Fatal(err)
}
if cacheHit {
t.Fatal("expected cache miss, got hit")
}
if len(cachedItems) != 0 {
t.Fatalf("expected 0 item, got %v", len(cachedItems))
}
}
func TestStoreSearch(t *testing.T) {
ctx := context.Background()
cache := NewCache()
item := GenerateRandomItem()
item.Metadata.SourceQuery.Method = sdp.QueryMethod_SEARCH
ck := CacheKeyFromQuery(item.GetMetadata().GetSourceQuery(), item.GetMetadata().GetSourceName())
cache.StoreItem(item, 10*time.Second, ck)
// Lookup the item as GET request
cacheHit, _, cachedItems, err := cache.Lookup(ctx, item.GetMetadata().GetSourceName(), sdp.QueryMethod_GET, item.GetScope(), item.GetType(), item.UniqueAttributeValue(), false)
if err != nil {
t.Fatal(err)
}
if !cacheHit {
t.Fatal("expected cache hit, got miss")
}
if len(cachedItems) != 1 {
t.Fatalf("expected 1 item, got %v", len(cachedItems))
}
if cachedItems[0].GetType() != item.GetType() {
t.Errorf("expected type %v, got %v", item.GetType(), cachedItems[0].GetType())
}
}