forked from bluele/gcache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lru_test.go
73 lines (62 loc) · 1.38 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
package gcache
import (
"fmt"
"testing"
"time"
)
func evictedFuncForLRU(key, value interface{}) {
fmt.Printf("[LRU] Key:%v Value:%v will be evicted.\n", key, value)
}
func buildLRUCache(size int) Cache {
return New(size).
LRU().
EvictedFunc(evictedFuncForLRU).
Expiration(time.Second).
Build()
}
func buildLoadingLRUCache(size int, loader LoaderFunc) Cache {
return New(size).
LRU().
LoaderFunc(loader).
EvictedFunc(evictedFuncForLRU).
Expiration(time.Second).
Build()
}
func TestLRUGet(t *testing.T) {
size := 1000
gc := buildLRUCache(size)
testSetCache(t, gc, size)
testGetCache(t, gc, size)
}
func TestLoadingLRUGet(t *testing.T) {
size := 1000
gc := buildLoadingLRUCache(size, loader)
testGetCache(t, gc, size)
}
func TestLRULength(t *testing.T) {
gc := buildLoadingLRUCache(1000, loader)
gc.Get("test1")
gc.Get("test2")
length := gc.Len()
expectedLength := 2
if length != expectedLength {
t.Errorf("Expected length is %v, not %v", length, expectedLength)
}
}
func TestLRUEvictItem(t *testing.T) {
cacheSize := 10
numbers := 11
gc := buildLoadingLRUCache(cacheSize, loader)
for i := 0; i < numbers; i++ {
_, err := gc.Get(fmt.Sprintf("Key-%d", i))
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
}
}
func TestLRUGetIFPresent(t *testing.T) {
testGetIFPresent(t, TYPE_LRU)
}
func TestLRUGetALL(t *testing.T) {
testGetALL(t, TYPE_LRU)
}