forked from elastic/go-freelru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelper_test.go
80 lines (64 loc) · 1.33 KB
/
helper_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
package freelru
import (
"testing"
)
func TestDefaultLRUAddGet(t *testing.T) {
const CAP = 1_000_000
cache, _ := NewDefault[int, int](CAP * 2)
m := make(map[int]int, CAP)
for i := 0; i < CAP; i++ {
x := int(runtimeFastrand())
cache.Add(i, x)
m[i] = x
}
cache.PrintStats()
for i := 0; i < CAP; i++ {
v, ok := cache.Get(i)
if !ok {
t.Fatalf("key: %d not found", i)
}
if v != m[i] {
t.Fatalf("key: %d, value: %d != %d", i, v, m[i])
}
}
}
func TestSyncedDefaultLRUAddGet(t *testing.T) {
const CAP = 1_000_000
cache, _ := NewSyncedDefault[int, int](CAP * 2)
m := make(map[int]int, CAP)
for i := 0; i < CAP; i++ {
x := int(runtimeFastrand())
cache.Add(i, x)
m[i] = x
}
cache.PrintStats()
for i := 0; i < CAP; i++ {
v, ok := cache.Get(i)
if !ok {
t.Fatalf("key: %d not found", i)
}
if v != m[i] {
t.Fatalf("key: %d, value: %d != %d", i, v, m[i])
}
}
}
func TestShardedDefaultLRUAddGet(t *testing.T) {
const CAP = 1_000_000
cache, _ := NewShardedDefault[int, int](CAP * 2)
m := make(map[int]int, CAP)
for i := 0; i < CAP; i++ {
x := int(runtimeFastrand())
cache.Add(i, x)
m[i] = x
}
cache.PrintStats()
for i := 0; i < CAP; i++ {
v, ok := cache.Get(i)
if !ok {
t.Fatalf("key: %d not found", i)
}
if v != m[i] {
t.Fatalf("key: %d, value: %d != %d", i, v, m[i])
}
}
}