-
Notifications
You must be signed in to change notification settings - Fork 1
/
lru_test.go
78 lines (68 loc) · 1.82 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
74
75
76
77
78
package lru_test
import (
"github.com/notEpsilon/go-lru"
"testing"
)
func TestLRUCache(t *testing.T) {
cache, err := lru.New[string, string](2)
if err != nil {
t.Errorf("expected `err` to be <nil> but got %q", err.Error())
}
cache.Set("name", "ibrahim")
val, err := cache.Get("name")
if err != nil {
t.Errorf("expected `err` to be <nil> but got %q", err.Error())
}
if val != "ibrahim" {
t.Errorf("expected `val` to be %q but got %q", "ibrahim", val)
}
cache.Set("age", "21")
val, err = cache.Get("name")
if err != nil {
t.Errorf("expected `err` to be <nil> but got %q", err.Error())
}
if val != "ibrahim" {
t.Errorf("expected `val` to be %q but got %q", "ibrahim", val)
}
val, err = cache.Get("age")
if err != nil {
t.Errorf("expected `err` to be <nil> but got %q", err.Error())
}
if val != "21" {
t.Errorf("expected `val` to be %q but got %q", "21", val)
}
cache.Set("nice", "yes")
val, err = cache.Get("name")
if err == nil {
t.Errorf("expected `err` to be `keyNotFound` error but got <nil>")
}
if val != *new(string) {
t.Errorf("expected `val` to be %q but got %q", *new(string), val)
}
val, err = cache.Get("age")
if err != nil {
t.Errorf("expected `err` to be <nil> but got %q", err.Error())
}
if val != "21" {
t.Errorf("expected `val` to be %q but got %q", "21", val)
}
val, err = cache.Get("nice")
if err != nil {
t.Errorf("expected `err` to be <nil> but got %q", err.Error())
}
if val != "yes" {
t.Errorf("expected `val` to be %q but got %q", "yes", val)
}
}
func TestEviction(t *testing.T) {
cache, err := lru.New[int, any](128)
if err != nil {
t.Errorf("expected `err` to be <nil> error but got %q", err.Error())
}
for i := 0; i < 256; i++ {
cache.Set(i, nil)
}
if cache.Size() != 128 {
t.Errorf("expected cache size to be %d but got %d", 128, cache.Size())
}
}