-
Notifications
You must be signed in to change notification settings - Fork 11
/
distribution_test.go
698 lines (591 loc) · 20.3 KB
/
distribution_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
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
package sturdyc_test
import (
"context"
"errors"
"sync"
"testing"
"time"
"github.com/creativecreature/sturdyc"
)
type mockStorage struct {
sync.Mutex
getCount int
setCount int
deleteCount int
records map[string][]byte
}
func (m *mockStorage) Get(_ context.Context, key string) ([]byte, bool) {
m.Lock()
defer m.Unlock()
m.getCount++
bytes, ok := m.records[key]
return bytes, ok
}
func (m *mockStorage) Set(_ context.Context, key string, bytes []byte) {
m.Lock()
defer m.Unlock()
m.setCount++
if m.records == nil {
m.records = make(map[string][]byte)
}
m.records[key] = bytes
}
func (m *mockStorage) Delete(_ context.Context, key string) {
m.Lock()
defer m.Unlock()
m.deleteCount++
delete(m.records, key)
}
func (m *mockStorage) GetBatch(_ context.Context, _ []string) map[string][]byte {
m.Lock()
defer m.Unlock()
m.getCount++
return m.records
}
func (m *mockStorage) SetBatch(_ context.Context, records map[string][]byte) {
m.Lock()
defer m.Unlock()
m.setCount++
if m.records == nil {
m.records = records
return
}
for key, value := range records {
m.records[key] = value
}
}
func (m *mockStorage) DeleteBatch(_ context.Context, keys []string) {
m.Lock()
defer m.Unlock()
for _, key := range keys {
m.deleteCount++
delete(m.records, key)
}
}
func (m *mockStorage) assertRecord(t *testing.T, key string) {
t.Helper()
m.Lock()
defer m.Unlock()
if _, ok := m.records[key]; !ok {
t.Errorf("expected key %s to be in records", key)
}
}
func (m *mockStorage) assertRecords(t *testing.T, ids []string, keyFn sturdyc.KeyFn) {
t.Helper()
m.Lock()
defer m.Unlock()
keys := make([]string, 0, len(ids))
for _, id := range ids {
keys = append(keys, keyFn(id))
}
for _, key := range keys {
if _, ok := m.records[key]; !ok {
t.Errorf("expected key %s to be in records", key)
}
}
}
func (m *mockStorage) assertGetCount(t *testing.T, count int) {
t.Helper()
m.Lock()
defer m.Unlock()
if m.getCount != count {
t.Errorf("expected get count %d, got %d", count, m.getCount)
}
}
func (m *mockStorage) assertSetCount(t *testing.T, count int) {
t.Helper()
m.Lock()
defer m.Unlock()
if m.setCount != count {
t.Errorf("expected set count %d, got %d", count, m.setCount)
}
}
func (m *mockStorage) assertDeleteCount(t *testing.T, count int) {
t.Helper()
m.Lock()
defer m.Unlock()
if m.deleteCount != count {
t.Errorf("expected delete count %d, got %d", count, m.deleteCount)
}
}
func TestDistributedStorage(t *testing.T) {
t.Parallel()
ctx := context.Background()
ttl := time.Minute
distributedStorage := &mockStorage{}
c := sturdyc.New[string](1000, 10, ttl, 30,
sturdyc.WithNoContinuousEvictions(),
sturdyc.WithDistributedStorage(distributedStorage),
)
fetchObserver := NewFetchObserver(1)
key := "key1"
fetchObserver.Response(key)
_, err := sturdyc.GetOrFetch(ctx, c, key, fetchObserver.Fetch)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
<-fetchObserver.FetchCompleted
fetchObserver.AssertFetchCount(t, 1)
fetchObserver.Clear()
// The keys are written asynchonously, to the distributed storage.
time.Sleep(100 * time.Millisecond)
distributedStorage.assertRecord(t, key)
distributedStorage.assertGetCount(t, 1)
distributedStorage.assertSetCount(t, 1)
// Next, we'll delete the records from the in-memory cache to simulate that they were evicted.
c.Delete(key)
if c.Size() != 0 {
t.Fatalf("expected cache size to be 0, got %d", c.Size())
}
// Now we can request the same key again. The underlying data source should not be called.
res, err := sturdyc.GetOrFetch(ctx, c, key, fetchObserver.Fetch)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
if res != "valuekey1" {
t.Errorf("expected valuekey1, got %s", res)
}
// The keys are written asynchonously, to the distributed storage.
time.Sleep(100 * time.Millisecond)
fetchObserver.AssertFetchCount(t, 1)
distributedStorage.assertGetCount(t, 2)
distributedStorage.assertSetCount(t, 1)
distributedStorage.assertDeleteCount(t, 0)
}
func TestDistributedStaleStorage(t *testing.T) {
t.Parallel()
clock := sturdyc.NewTestClock(time.Now())
ctx := context.Background()
ttl := time.Minute
distributedStorage := &mockStorage{}
c := sturdyc.New[string](1000, 10, ttl, 30,
sturdyc.WithNoContinuousEvictions(),
sturdyc.WithClock(clock),
sturdyc.WithDistributedStorageEarlyRefreshes(distributedStorage, time.Minute),
)
fetchObserver := NewFetchObserver(1)
key := "key1"
fetchObserver.Response(key)
_, err := sturdyc.GetOrFetch(ctx, c, key, fetchObserver.Fetch)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
<-fetchObserver.FetchCompleted
fetchObserver.AssertFetchCount(t, 1)
fetchObserver.Clear()
time.Sleep(100 * time.Millisecond)
distributedStorage.assertRecord(t, key)
distributedStorage.assertGetCount(t, 1)
distributedStorage.assertSetCount(t, 1)
// Next, we'll move the clock to make the record expire in the
// in-memory cache, and become stale in the distributed storage.
clock.Add(time.Minute * 2)
// Now we can request the same key again, but we'll make the fetchFn error.
fetchObserver.Err(errors.New("error"))
res, err := sturdyc.GetOrFetch(ctx, c, key, fetchObserver.Fetch)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
if res != "valuekey1" {
t.Errorf("expected valuekey1, got %s", res)
}
// We'll want to assert that the fetch observer was called again.
time.Sleep(100 * time.Millisecond)
fetchObserver.AssertFetchCount(t, 2)
distributedStorage.assertGetCount(t, 2)
distributedStorage.assertSetCount(t, 1)
distributedStorage.assertDeleteCount(t, 0)
}
func TestDistributedStaleStorageDeletes(t *testing.T) {
t.Parallel()
clock := sturdyc.NewTestClock(time.Now())
ctx := context.Background()
ttl := time.Minute
distributedStorage := &mockStorage{}
c := sturdyc.New[string](1000, 10, ttl, 30,
sturdyc.WithNoContinuousEvictions(),
sturdyc.WithClock(clock),
sturdyc.WithDistributedStorageEarlyRefreshes(distributedStorage, time.Minute),
)
fetchObserver := NewFetchObserver(1)
key := "key1"
fetchObserver.Response(key)
_, err := sturdyc.GetOrFetch(ctx, c, key, fetchObserver.Fetch)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
<-fetchObserver.FetchCompleted
fetchObserver.AssertFetchCount(t, 1)
fetchObserver.Clear()
time.Sleep(100 * time.Millisecond)
distributedStorage.assertRecord(t, key)
distributedStorage.assertGetCount(t, 1)
distributedStorage.assertSetCount(t, 1)
// Next, we'll move the clock to make the record expire in the
// in-memory cache, and become stale in the distributed storage.
clock.Add(time.Minute * 2)
// Now we can request the same key again, but we'll make the fetchFn return a
// ErrNotFound. This should signal to the cache that the record has been
// deleted at the underlying data source.
fetchObserver.Err(sturdyc.ErrNotFound)
res, err := sturdyc.GetOrFetch(ctx, c, key, fetchObserver.Fetch)
if !errors.Is(err, sturdyc.ErrNotFound) {
t.Fatalf("expected ErrNotFound, got %v", err)
}
if res != "" {
t.Errorf("expected empty string (zero value), got %s", res)
}
// We'll want to assert that the fetch observer was called again.
time.Sleep(100 * time.Millisecond)
fetchObserver.AssertFetchCount(t, 2)
distributedStorage.assertGetCount(t, 2)
distributedStorage.assertSetCount(t, 1)
distributedStorage.assertDeleteCount(t, 1)
}
func TestDistributedStaleStorageConvertsToMissingRecord(t *testing.T) {
t.Parallel()
clock := sturdyc.NewTestClock(time.Now())
ctx := context.Background()
ttl := time.Minute
distributedStorage := &mockStorage{}
c := sturdyc.New[string](1000, 10, ttl, 30,
sturdyc.WithNoContinuousEvictions(),
sturdyc.WithClock(clock),
sturdyc.WithDistributedStorageEarlyRefreshes(distributedStorage, time.Minute),
sturdyc.WithMissingRecordStorage(),
)
fetchObserver := NewFetchObserver(1)
key := "key1"
fetchObserver.Response(key)
_, err := sturdyc.GetOrFetch(ctx, c, key, fetchObserver.Fetch)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
<-fetchObserver.FetchCompleted
fetchObserver.AssertFetchCount(t, 1)
fetchObserver.Clear()
time.Sleep(100 * time.Millisecond)
distributedStorage.assertRecord(t, key)
distributedStorage.assertGetCount(t, 1)
distributedStorage.assertSetCount(t, 1)
// Next, we'll move the clock to make the record expire in the
// in-memory cache, and become stale in the distributed storage.
clock.Add(time.Minute * 2)
// Now we can request the same key again, but we'll make the fetchFn return a
// ErrNotFound. This should signal to the cache that the record has been
// deleted at the underlying data source.
fetchObserver.Err(sturdyc.ErrNotFound)
res, err := sturdyc.GetOrFetch(ctx, c, key, fetchObserver.Fetch)
if !errors.Is(err, sturdyc.ErrMissingRecord) {
t.Fatalf("expected ErrMissingRecord, got %v", err)
}
if res != "" {
t.Errorf("expected empty string (zero value), got %s", res)
}
// We'll want to assert that the fetch observer was called again.
<-fetchObserver.FetchCompleted
time.Sleep(100 * time.Millisecond)
fetchObserver.AssertFetchCount(t, 2)
distributedStorage.assertGetCount(t, 2)
distributedStorage.assertSetCount(t, 2)
distributedStorage.assertDeleteCount(t, 0)
// Lastly, we'll want to ensure that the record can be brought back into
// existence if the fetchFn returns it from a refresh.
fetchObserver.Clear()
fetchObserver.Response(key)
c.Delete(key)
clock.Add(time.Minute * 2)
res, err = sturdyc.GetOrFetch(ctx, c, key, fetchObserver.Fetch)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
if res != "valuekey1" {
t.Errorf("expected valuekey1, got %s", res)
}
time.Sleep(100 * time.Millisecond)
<-fetchObserver.FetchCompleted
fetchObserver.AssertFetchCount(t, 3)
distributedStorage.assertGetCount(t, 3)
distributedStorage.assertSetCount(t, 3)
distributedStorage.assertDeleteCount(t, 0)
// And now we'll get it from the distributed storage without
// a fetch to ensure that the conversion propagated.
c.Delete(key)
res, err = sturdyc.GetOrFetch(ctx, c, key, fetchObserver.Fetch)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
if res != "valuekey1" {
t.Errorf("expected valuekey1, got %s", res)
}
time.Sleep(100 * time.Millisecond)
fetchObserver.AssertFetchCount(t, 3)
distributedStorage.assertGetCount(t, 4)
distributedStorage.assertSetCount(t, 3)
distributedStorage.assertDeleteCount(t, 0)
}
func TestDistributedStorageBatch(t *testing.T) {
t.Parallel()
ctx := context.Background()
ttl := time.Minute
distributedStorage := &mockStorage{}
c := sturdyc.New[string](1000, 10, ttl, 30,
sturdyc.WithNoContinuousEvictions(),
sturdyc.WithDistributedStorage(distributedStorage),
)
fetchObserver := NewFetchObserver(1)
keyFn := c.BatchKeyFn("item")
firstBatchOfIDs := []string{"1", "2", "3"}
fetchObserver.BatchResponse(firstBatchOfIDs)
_, err := sturdyc.GetOrFetchBatch(ctx, c, firstBatchOfIDs, keyFn, fetchObserver.FetchBatch)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
<-fetchObserver.FetchCompleted
fetchObserver.AssertRequestedRecords(t, firstBatchOfIDs)
fetchObserver.AssertFetchCount(t, 1)
fetchObserver.Clear()
// The keys are written asynchonously, to the distributed storage.
time.Sleep(100 * time.Millisecond)
distributedStorage.assertRecords(t, firstBatchOfIDs, keyFn)
distributedStorage.assertGetCount(t, 1)
distributedStorage.assertSetCount(t, 1)
// Next, we'll delete the records from the in-memory cache to simulate that they were evicted.
for _, id := range firstBatchOfIDs {
c.Delete(keyFn(id))
}
if c.Size() != 0 {
t.Fatalf("expected cache size to be 0, got %d", c.Size())
}
// Now we can request a second batch of IDs. The fetchObservers
// FetchBatch function should not get called for IDs 1-3.
fetchObserver.BatchResponse([]string{"4", "5", "6"})
secondBatchOfIDs := []string{"1", "2", "3", "4", "5", "6"}
res, err := sturdyc.GetOrFetchBatch(ctx, c, secondBatchOfIDs, keyFn, fetchObserver.FetchBatch)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
for _, id := range secondBatchOfIDs {
if _, ok := res[id]; !ok {
t.Errorf("expected id %s to be in the response", id)
}
}
<-fetchObserver.FetchCompleted
fetchObserver.AssertRequestedRecords(t, []string{"4", "5", "6"})
fetchObserver.AssertFetchCount(t, 2)
// The keys are written asynchonously, to the distributed storage.
time.Sleep(100 * time.Millisecond)
distributedStorage.assertRecords(t, secondBatchOfIDs, keyFn)
distributedStorage.assertGetCount(t, 2)
distributedStorage.assertSetCount(t, 2)
distributedStorage.assertDeleteCount(t, 0)
}
func TestDistributedStaleStorageBatch(t *testing.T) {
t.Parallel()
clock := sturdyc.NewTestClock(time.Now())
staleDuration := time.Minute
ctx := context.Background()
ttl := time.Minute
distributedStorage := &mockStorage{}
c := sturdyc.New[string](1000, 10, ttl, 30,
sturdyc.WithNoContinuousEvictions(),
sturdyc.WithClock(clock),
sturdyc.WithDistributedStorageEarlyRefreshes(distributedStorage, staleDuration),
)
fetchObserver := NewFetchObserver(1)
keyFn := c.BatchKeyFn("item")
firstBatchOfIDs := []string{"1", "2", "3"}
fetchObserver.BatchResponse(firstBatchOfIDs)
_, err := sturdyc.GetOrFetchBatch(ctx, c, firstBatchOfIDs, keyFn, fetchObserver.FetchBatch)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
<-fetchObserver.FetchCompleted
fetchObserver.AssertRequestedRecords(t, firstBatchOfIDs)
fetchObserver.AssertFetchCount(t, 1)
fetchObserver.Clear()
// The keys are written asynchonously, to the distributed storage.
time.Sleep(100 * time.Millisecond)
distributedStorage.assertRecords(t, firstBatchOfIDs, keyFn)
distributedStorage.assertGetCount(t, 1)
distributedStorage.assertSetCount(t, 1)
// Next, we'll delete the records from the in-memory cache to simulate that they were evicted.
for _, id := range firstBatchOfIDs {
c.Delete(keyFn(id))
}
if c.Size() != 0 {
t.Fatalf("expected cache size to be 0, got %d", c.Size())
}
// Make the records stale by moving the clock, and then make the next fetch call return an error.
clock.Add(staleDuration + 1)
fetchObserver.Err(errors.New("error"))
res, err := sturdyc.GetOrFetchBatch(ctx, c, firstBatchOfIDs, keyFn, fetchObserver.FetchBatch)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
for id, value := range res {
if value != "value"+id {
t.Errorf("expected value%s, got %s", id, value)
}
}
<-fetchObserver.FetchCompleted
fetchObserver.AssertRequestedRecords(t, firstBatchOfIDs)
fetchObserver.AssertFetchCount(t, 2)
time.Sleep(100 * time.Millisecond)
distributedStorage.assertGetCount(t, 2)
distributedStorage.assertSetCount(t, 1)
distributedStorage.assertDeleteCount(t, 0)
}
func TestDistributedStorageBatchDeletes(t *testing.T) {
t.Parallel()
staleDuration := time.Minute
clock := sturdyc.NewTestClock(time.Now())
ctx := context.Background()
ttl := time.Minute
distributedStorage := &mockStorage{}
c := sturdyc.New[string](1000, 10, ttl, 30,
sturdyc.WithNoContinuousEvictions(),
sturdyc.WithClock(clock),
sturdyc.WithDistributedStorageEarlyRefreshes(distributedStorage, staleDuration),
)
fetchObserver := NewFetchObserver(1)
keyFn := c.BatchKeyFn("item")
batchOfIDs := []string{"1", "2", "3"}
fetchObserver.BatchResponse(batchOfIDs)
_, err := sturdyc.GetOrFetchBatch(ctx, c, batchOfIDs, keyFn, fetchObserver.FetchBatch)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
<-fetchObserver.FetchCompleted
fetchObserver.AssertRequestedRecords(t, batchOfIDs)
fetchObserver.AssertFetchCount(t, 1)
fetchObserver.Clear()
// The keys are written asynchonously, to the distributed storage.
time.Sleep(100 * time.Millisecond)
distributedStorage.assertRecords(t, batchOfIDs, keyFn)
distributedStorage.assertGetCount(t, 1)
distributedStorage.assertSetCount(t, 1)
// Next, we'll delete the records from the in-memory cache to simulate that they were evicted.
for _, id := range batchOfIDs {
c.Delete(keyFn(id))
}
if c.Size() != 0 {
t.Fatalf("expected cache size to be 0, got %d", c.Size())
}
// Now we'll want to go past the stale time, and setup the fetch observer so
// that it only returns the first two IDs. This will simulate that the last
// ID has been deleted at the underlying data source.
clock.Add(staleDuration + 1)
fetchObserver.BatchResponse([]string{"1", "2"})
res, err := sturdyc.GetOrFetchBatch(ctx, c, batchOfIDs, keyFn, fetchObserver.FetchBatch)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
if len(res) != 2 {
t.Fatalf("expected 2 records, got %d", len(res))
}
<-fetchObserver.FetchCompleted
fetchObserver.AssertRequestedRecords(t, batchOfIDs)
fetchObserver.AssertFetchCount(t, 2)
// The keys are written asynchonously, to the distributed storage.
time.Sleep(100 * time.Millisecond)
distributedStorage.assertRecords(t, []string{"1", "2"}, keyFn)
distributedStorage.assertGetCount(t, 2)
distributedStorage.assertSetCount(t, 2)
distributedStorage.assertDeleteCount(t, 1)
}
func TestDistributedStorageBatchConverstToMissingRecord(t *testing.T) {
t.Parallel()
staleDuration := time.Minute
clock := sturdyc.NewTestClock(time.Now())
ctx := context.Background()
ttl := time.Minute
distributedStorage := &mockStorage{}
c := sturdyc.New[string](1000, 10, ttl, 30,
sturdyc.WithNoContinuousEvictions(),
sturdyc.WithClock(clock),
sturdyc.WithMissingRecordStorage(),
sturdyc.WithDistributedStorageEarlyRefreshes(distributedStorage, staleDuration),
)
fetchObserver := NewFetchObserver(1)
keyFn := c.BatchKeyFn("item")
batchOfIDs := []string{"1", "2", "3"}
fetchObserver.BatchResponse(batchOfIDs)
_, err := sturdyc.GetOrFetchBatch(ctx, c, batchOfIDs, keyFn, fetchObserver.FetchBatch)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
<-fetchObserver.FetchCompleted
fetchObserver.AssertRequestedRecords(t, batchOfIDs)
fetchObserver.AssertFetchCount(t, 1)
fetchObserver.Clear()
// The keys are written asynchonously, to the distributed storage.
time.Sleep(100 * time.Millisecond)
distributedStorage.assertRecords(t, batchOfIDs, keyFn)
distributedStorage.assertGetCount(t, 1)
distributedStorage.assertSetCount(t, 1)
// Next, we'll delete the records from the in-memory cache to simulate that they were evicted.
for _, id := range batchOfIDs {
c.Delete(keyFn(id))
}
if c.Size() != 0 {
t.Fatalf("expected cache size to be 0, got %d", c.Size())
}
// Now we'll want to go past the stale time, and setup the fetch observer so
// that it only returns the first two IDs. This will simulate that the last
// ID has been deleted at the underlying data source.
clock.Add(staleDuration + 1)
fetchObserver.BatchResponse([]string{"1", "2"})
res, err := sturdyc.GetOrFetchBatch(ctx, c, batchOfIDs, keyFn, fetchObserver.FetchBatch)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
if len(res) != 2 {
t.Fatalf("expected 2 records, got %d", len(res))
}
<-fetchObserver.FetchCompleted
fetchObserver.AssertRequestedRecords(t, batchOfIDs)
fetchObserver.AssertFetchCount(t, 2)
fetchObserver.Clear()
// The keys are written asynchonously, to the distributed storage.
time.Sleep(100 * time.Millisecond)
distributedStorage.assertRecords(t, []string{"1", "2"}, keyFn)
distributedStorage.assertGetCount(t, 2)
distributedStorage.assertSetCount(t, 2)
distributedStorage.assertDeleteCount(t, 0)
// Next, we'll want to assert that the records can be restored from missing to existing.
for _, id := range batchOfIDs {
c.Delete(keyFn(id))
}
clock.Add(staleDuration + 1)
fetchObserver.BatchResponse(batchOfIDs)
res, err = sturdyc.GetOrFetchBatch(ctx, c, batchOfIDs, keyFn, fetchObserver.FetchBatch)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
if len(res) != 3 {
t.Fatalf("expected 3 records, got %d", len(res))
}
<-fetchObserver.FetchCompleted
fetchObserver.AssertRequestedRecords(t, batchOfIDs)
fetchObserver.AssertFetchCount(t, 3)
// The keys are written asynchonously, to the distributed storage.
time.Sleep(100 * time.Millisecond)
distributedStorage.assertRecords(t, batchOfIDs, keyFn)
distributedStorage.assertGetCount(t, 3)
distributedStorage.assertSetCount(t, 3)
distributedStorage.assertDeleteCount(t, 0)
// Make sure we get it from the distributed cache.
for _, id := range batchOfIDs {
c.Delete(keyFn(id))
}
res, err = sturdyc.GetOrFetchBatch(ctx, c, batchOfIDs, keyFn, fetchObserver.FetchBatch)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
if len(res) != 3 {
t.Fatalf("expected 3 records, got %d", len(res))
}
time.Sleep(50 * time.Millisecond)
fetchObserver.AssertFetchCount(t, 3)
}