retainer 0.5.0

Minimal async cache in Rust with support for key expirations
Documentation
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
use retainer::*;

use std::time::{Duration, Instant};

fn expired_instant() -> Instant {
    Instant::now().checked_sub(Duration::from_secs(1)).unwrap()
}

#[tokio::test]
async fn test_cache_default_starts_empty() {
    let cache = Cache::<u8, u8>::default();

    assert!(cache.is_empty().await);
}

#[tokio::test]
async fn test_cache_is_empty_tracks_entries() {
    let cache = Cache::<u8, u8>::new();
    assert!(cache.is_empty().await);

    cache.insert(1, 1, CacheExpiration::none()).await;
    assert!(!cache.is_empty().await);

    assert_eq!(cache.remove(&1).await, Some(1));
    assert!(cache.is_empty().await);
}

#[tokio::test]
async fn test_cache_is_not_empty_when_entry_is_expired() {
    let cache = Cache::<u8, u8>::new();

    cache.insert(1, 1, expired_instant()).await;

    assert_eq!(cache.expired().await, 1);
    assert!(!cache.is_empty().await);
}

#[tokio::test]
async fn test_cache_counts_entries_by_expiration() {
    let cache = Cache::<u8, u8>::new();

    cache.insert(1, 2, CacheExpiration::none()).await;
    cache.insert(2, 2, CacheExpiration::none()).await;
    cache.insert(3, 3, expired_instant()).await;

    assert_eq!(cache.len().await, 3);
    assert_eq!(cache.expired().await, 1);
    assert_eq!(cache.unexpired().await, 2);
}

#[tokio::test]
async fn test_cache_clear_removes_all_entries() {
    let cache = Cache::<u8, u8>::new();

    cache.insert(1, 1, CacheExpiration::none()).await;
    cache.insert(2, 2, expired_instant()).await;

    assert_eq!(cache.len().await, 2);
    assert_eq!(cache.unexpired().await, 1);
    assert_eq!(cache.expired().await, 1);

    cache.clear().await;

    assert!(cache.is_empty().await);
    assert_eq!(cache.len().await, 0);
    assert_eq!(cache.unexpired().await, 0);
    assert_eq!(cache.expired().await, 0);
}

#[tokio::test]
async fn test_cache_update_changes_value() {
    let cache = Cache::<u8, u8>::new();

    cache.insert(1, 1, CacheExpiration::none()).await;

    assert_eq!(cache.get(&1).await.unwrap().value(), &1);

    cache.update(&1, |value| *value = 5).await;

    assert_eq!(cache.get(&1).await.unwrap().value(), &5);
}

#[tokio::test]
async fn test_cache_borrow_types() {
    let key = "key".to_string();
    let cache = Cache::<String, bool>::new();

    cache
        .insert(key.clone(), true, CacheExpiration::none())
        .await;

    let lookup: &str = &key;

    assert!(cache.get(lookup).await.unwrap().value());
}

#[tokio::test]
async fn test_cache_update_ignores_missing_entry() {
    let cache = Cache::<u8, u8>::new();
    let mut called = false;

    assert!(cache.is_empty().await);

    cache.update(&1, |_| called = true).await;

    assert!(!called);
}

#[tokio::test]
async fn test_cache_update_preserves_expiration() {
    let cache = Cache::<u8, u8>::new();
    let expiration = Instant::now().checked_add(Duration::from_secs(60)).unwrap();

    cache.insert(1, 1, expiration).await;

    {
        let guard = cache.get(&1).await.unwrap();
        assert_eq!(*guard, 1);
        assert_eq!(guard.expiration().instant(), &Some(expiration));
    }

    cache.update(&1, |value| *value = 2).await;

    let guard = cache.get(&1).await.unwrap();
    assert_eq!(*guard, 2);
    assert_eq!(guard.expiration().instant(), &Some(expiration));
}

#[tokio::test]
async fn test_cache_get_rejects_missing_entry() {
    let cache = Cache::<u8, u8>::new();

    assert!(cache.get(&1).await.is_none());
}

#[tokio::test]
async fn test_cache_get_rejects_expired_entry_without_removing_it() {
    let cache = Cache::<u8, u8>::new();

    cache.insert(1, 10, expired_instant()).await;

    assert_eq!(cache.len().await, 1);
    assert_eq!(cache.expired().await, 1);

    assert!(cache.get(&1).await.is_none());

    // Reads reject expired entries without physically removing them.
    assert_eq!(cache.len().await, 1);
    assert_eq!(cache.expired().await, 1);
}

#[tokio::test]
async fn test_cache_insert_returns_unexpired_replaced_value() {
    let cache = Cache::<u8, u8>::new();

    assert_eq!(cache.insert(1, 10, CacheExpiration::none()).await, None);
    assert_eq!(cache.insert(1, 20, CacheExpiration::none()).await, Some(10));
}

#[tokio::test]
async fn test_cache_insert_discards_expired_replaced_value() {
    let cache = Cache::<u8, u8>::new();

    cache.insert(1, 30, expired_instant()).await;

    assert_eq!(cache.len().await, 1);
    assert_eq!(cache.expired().await, 1);

    assert_eq!(cache.insert(1, 40, CacheExpiration::none()).await, None);
    assert_eq!(*cache.get(&1).await.unwrap(), 40);
}

#[tokio::test]
async fn test_cache_remove_discards_expired_value() {
    let cache = Cache::<u8, u8>::new();

    cache.insert(1, 10, expired_instant()).await;

    assert_eq!(cache.len().await, 1);
    assert_eq!(cache.expired().await, 1);

    assert_eq!(cache.remove(&1).await, None);
    assert!(cache.is_empty().await);
}

#[tokio::test]
async fn test_cache_remove_returns_unexpired_value() {
    let cache = Cache::<u8, u8>::new();

    cache.insert(1, 10, CacheExpiration::none()).await;

    assert_eq!(*cache.get(&1).await.unwrap(), 10);
    assert_eq!(cache.remove(&1).await, Some(10));
    assert!(cache.is_empty().await);
}

#[tokio::test]
async fn test_cache_remove_missing_entry_returns_none() {
    let cache = Cache::<u8, u8>::new();

    assert!(cache.is_empty().await);
    assert_eq!(cache.remove(&1).await, None);
}

#[tokio::test]
async fn test_cache_get_mut_changes_value() {
    let cache = Cache::<u8, u8>::new();

    cache.insert(1, 10, CacheExpiration::none()).await;
    assert_eq!(*cache.get(&1).await.unwrap(), 10);

    *cache.get_mut(&1).await.unwrap() = 20;
    assert_eq!(*cache.get(&1).await.unwrap(), 20);
}

#[tokio::test]
async fn test_cache_get_mut_changes_expiration() {
    let cache = Cache::<u8, u8>::new();
    let initial = Instant::now().checked_add(Duration::from_secs(30)).unwrap();
    let updated = Instant::now().checked_add(Duration::from_secs(60)).unwrap();

    cache.insert(1, 10, initial).await;
    assert_eq!(
        cache.get(&1).await.unwrap().expiration().instant(),
        &Some(initial)
    );

    *cache.get_mut(&1).await.unwrap().expiration_mut() = updated.into();
    assert_eq!(
        cache.get(&1).await.unwrap().expiration().instant(),
        &Some(updated)
    );
}

#[tokio::test]
async fn test_cache_get_mut_removes_expiration() {
    let cache = Cache::<u8, u8>::new();
    let expiration = Instant::now().checked_add(Duration::from_secs(30)).unwrap();

    cache.insert(1, 10, expiration).await;
    assert_eq!(
        cache.get(&1).await.unwrap().expiration().instant(),
        &Some(expiration)
    );

    *cache.get_mut(&1).await.unwrap().expiration_mut() = CacheExpiration::none();
    assert_eq!(cache.get(&1).await.unwrap().expiration().instant(), &None);
}

#[tokio::test]
async fn test_cache_get_mut_rejects_missing_entry() {
    let cache = Cache::<u8, u8>::new();

    assert!(cache.get_mut(&1).await.is_none());
}

#[tokio::test]
async fn test_cache_get_mut_rejects_expired_entry() {
    let cache = Cache::<u8, u8>::new();

    cache.insert(1, 10, expired_instant()).await;
    assert_eq!(cache.expired().await, 1);

    assert!(cache.get_mut(&1).await.is_none());

    assert_eq!(cache.expired().await, 1);
}

#[tokio::test]
async fn test_cache_get_mut_accepts_borrowed_key() {
    let cache = Cache::<String, u8>::new();

    cache
        .insert("key".to_owned(), 10, CacheExpiration::none())
        .await;
    assert_eq!(*cache.get("key").await.unwrap(), 10);

    *cache.get_mut("key").await.unwrap() = 20;

    assert_eq!(*cache.get("key").await.unwrap(), 20);
}

#[tokio::test]
async fn test_cache_update_ignores_expired_entry() {
    let cache = Cache::<u8, u8>::new();

    cache.insert(1, 10, expired_instant()).await;

    assert_eq!(cache.len().await, 1);
    assert_eq!(cache.expired().await, 1);

    let mut called = false;

    cache.update(&1, |_| called = true).await;

    assert!(!called);
}

#[tokio::test]
async fn test_cache_get_reports_expiration_metadata() {
    let cache = Cache::<u8, u8>::new();
    let expiration = Instant::now().checked_add(Duration::from_secs(60)).unwrap();

    cache.insert(1, 10, expiration).await;

    assert_eq!(cache.len().await, 1);

    let guard = cache.get(&1).await.unwrap();

    assert_eq!(guard.expiration().instant(), &Some(expiration));
    assert!(guard.expiration().remaining().unwrap() <= Duration::from_secs(60));
    assert!(!guard.expiration().is_expired());
}

#[tokio::test]
async fn test_cache_purge_removes_all_expired_entries_with_oversized_sample() {
    let cache = Cache::<u8, u8>::new();

    cache.insert(1, 10, expired_instant()).await;
    cache.insert(2, 20, expired_instant()).await;
    cache.insert(3, 30, CacheExpiration::none()).await;

    assert_eq!(cache.expired().await, 2);
    assert_eq!(cache.unexpired().await, 1);

    cache.purge(25, 0.25).await;

    assert_eq!(cache.len().await, 1);
    assert_eq!(cache.expired().await, 0);
    assert_eq!(*cache.get(&3).await.unwrap(), 30);
}

#[tokio::test]
async fn test_cache_purge_removes_only_one_partial_sample() {
    let cache = Cache::<u8, u8>::new();

    for key in 0..5 {
        cache.insert(key, key, expired_instant()).await;
    }

    assert_eq!(cache.len().await, 5);
    assert_eq!(cache.expired().await, 5);

    cache.purge(2, 1.0).await;

    assert_eq!(cache.len().await, 3);
    assert_eq!(cache.expired().await, 3);
}

#[tokio::test]
async fn test_cache_purge_accepts_empty_cache() {
    let cache = Cache::<u8, u8>::new();

    assert!(cache.is_empty().await);

    cache.purge(25, 0.25).await;

    assert!(cache.is_empty().await);
}

#[tokio::test]
async fn test_cache_purge_accepts_zero_threshold() {
    let cache = Cache::<u8, u8>::new();

    cache.insert(1, 10, CacheExpiration::none()).await;
    assert_eq!(cache.unexpired().await, 1);

    tokio::time::timeout(Duration::from_secs(1), cache.purge(1, 0.0))
        .await
        .expect("zero-threshold purge did not terminate");

    assert_eq!(cache.unexpired().await, 1);
}

#[tokio::test]
async fn test_cache_purge_accepts_one_threshold() {
    let cache = Cache::<u8, u8>::new();

    cache.insert(1, 10, expired_instant()).await;
    assert_eq!(cache.expired().await, 1);

    cache.purge(1, 1.0).await;

    assert!(cache.is_empty().await);
}

#[tokio::test]
#[should_panic(expected = "sample must be > 0")]
async fn test_cache_purge_rejects_zero_sample() {
    let cache = Cache::<u8, u8>::new();

    cache.purge(0, 0.25).await;
}

#[tokio::test]
#[should_panic(expected = "threshold must be 0..=1")]
async fn test_cache_purge_rejects_negative_threshold() {
    let cache = Cache::<u8, u8>::new();

    cache.purge(1, -0.1).await;
}

#[tokio::test]
#[should_panic(expected = "threshold must be 0..=1")]
async fn test_cache_purge_rejects_threshold_above_one() {
    let cache = Cache::<u8, u8>::new();

    cache.purge(1, 1.1).await;
}

#[tokio::test]
#[should_panic(expected = "threshold must be 0..=1")]
async fn test_cache_purge_rejects_non_finite_threshold() {
    let cache = Cache::<u8, u8>::new();

    cache.purge(1, f64::NAN).await;
}

#[tokio::test]
#[should_panic(expected = "frequency must be > 0")]
async fn test_cache_monitor_rejects_zero_frequency() {
    let cache = Cache::<u8, u8>::new();

    cache.monitor(1, 0.25, Duration::from_secs(0)).await;
}

#[test]
fn test_cache_expiration_from_milliseconds() {
    let started = Instant::now();
    let expiration = CacheExpiration::from(1_000_u64);
    let finished = Instant::now();
    let expiration = expiration.instant().unwrap();
    let earliest = started.checked_add(Duration::from_secs(1)).unwrap();
    let latest = finished.checked_add(Duration::from_secs(1)).unwrap();

    assert!(expiration >= earliest);
    assert!(expiration <= latest);
}

#[test]
fn test_cache_expiration_from_duration() {
    let started = Instant::now();
    let expiration = CacheExpiration::from(Duration::from_secs(1));
    let finished = Instant::now();
    let expiration = expiration.instant().unwrap();
    let earliest = started.checked_add(Duration::from_secs(1)).unwrap();
    let latest = finished.checked_add(Duration::from_secs(1)).unwrap();

    assert!(expiration >= earliest);
    assert!(expiration <= latest);
}

#[test]
fn test_cache_expiration_from_range() {
    let range_started = Instant::now();
    let expiration = CacheExpiration::from(1_000_u64..2_000_u64);
    let range_finished = Instant::now();
    let expiration = expiration.instant().unwrap();

    let earliest_range_expiration = range_started
        .checked_add(Duration::from_millis(1_000))
        .unwrap();

    let latest_range_expiration = range_finished
        .checked_add(Duration::from_millis(2_000))
        .unwrap();

    assert!(expiration >= earliest_range_expiration);
    assert!(expiration < latest_range_expiration);
}

#[test]
fn test_cache_expiration_none_never_expires() {
    let expiration = CacheExpiration::none();

    assert_eq!(expiration.instant(), &None);
    assert_eq!(expiration.remaining(), None);
    assert!(!expiration.is_expired());
}

#[test]
fn test_cache_expiration_preserves_exact_instant() {
    let instant = Instant::now().checked_add(Duration::from_secs(60)).unwrap();

    assert_eq!(CacheExpiration::new(instant).instant(), &Some(instant));
    assert_eq!(CacheExpiration::from(instant).instant(), &Some(instant));
}

#[test]
fn test_expired_cache_expiration_has_no_remaining_time() {
    let expiration = CacheExpiration::new(expired_instant());

    assert_eq!(expiration.remaining(), Some(Duration::from_secs(0)));
}