-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathcache_test.go
109 lines (94 loc) · 2.01 KB
/
cache_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
// Copyright 2016-2020 The CoreDNS authors and contributors
// Adapted for SDNS usage by Semih Alev.
package cache
import (
"fmt"
"testing"
)
func TestCacheAddAndGet(t *testing.T) {
c := New(4)
c.Add(1, 1)
if _, found := c.Get(1); !found {
t.Fatal("Failed to find inserted record")
}
}
func TestCacheLen(t *testing.T) {
c := New(4)
c.Add(1, 1)
if l := c.Len(); l != 1 {
t.Fatalf("Cache size should %d, got %d", 1, l)
}
c.Add(1, 1)
if l := c.Len(); l != 1 {
t.Fatalf("Cache size should %d, got %d", 1, l)
}
c.Add(2, 2)
if l := c.Len(); l != 2 {
t.Fatalf("Cache size should %d, got %d", 2, l)
}
}
func TestCacheRemove(t *testing.T) {
c := New(4)
c.Add(1, 1)
if l := c.Len(); l != 1 {
t.Fatalf("Cache size should %d, got %d", 1, l)
}
c.Remove(1)
if l := c.Len(); l != 0 {
t.Fatalf("Cache size should %d, got %d", 1, l)
}
}
func BenchmarkCacheGet(b *testing.B) {
const items = 1 << 16
c := New(12 * items)
v := []byte("xyza")
for i := 0; i < items; i++ {
c.Add(uint64(i), v)
}
b.ReportAllocs()
b.SetBytes(items)
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
for i := 0; i < items; i++ {
b, _ := c.Get(uint64(i))
if string(b.([]byte)) != string(v) {
panic(fmt.Errorf("BUG: invalid value obtained; got %q; want %q", b, v))
}
}
}
})
}
func BenchmarkCacheSet(b *testing.B) {
const items = 1 << 16
c := New(12 * items)
b.ReportAllocs()
b.SetBytes(items)
b.RunParallel(func(pb *testing.PB) {
v := []byte("xyza")
for pb.Next() {
for i := 0; i < items; i++ {
c.Add(uint64(i), v)
}
}
})
}
func BenchmarkCacheSetGet(b *testing.B) {
const items = 1 << 16
c := New(12 * items)
b.ReportAllocs()
b.SetBytes(2 * items)
b.RunParallel(func(pb *testing.PB) {
v := []byte("xyza")
for pb.Next() {
for i := 0; i < items; i++ {
c.Add(uint64(i), v)
}
for i := 0; i < items; i++ {
b, _ := c.Get(uint64(i))
if string(b.([]byte)) != string(v) {
panic(fmt.Errorf("BUG: invalid value obtained; got %q; want %q", b, v))
}
}
}
})
}