forked from folbricht/routedns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lru-cache_test.go
68 lines (59 loc) · 1.41 KB
/
lru-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
package rdns
import (
"fmt"
"net"
"testing"
"github.com/miekg/dns"
"github.com/stretchr/testify/require"
)
func TestLRUAddGet(t *testing.T) {
c := newLRUCache(5)
type item struct {
query *dns.Msg
answer *cacheAnswer
}
var items []item
for i := 0; i < 10; i++ {
msg := new(dns.Msg)
msg.SetQuestion(fmt.Sprintf("test%d.com.", i), dns.TypeA)
msg.Answer = []dns.RR{
&dns.A{
Hdr: dns.RR_Header{
Name: msg.Question[0].Name,
Rrtype: dns.TypeA,
Class: dns.ClassINET,
Ttl: uint32(i),
},
A: net.IP{127, 0, 0, 1},
},
}
answer := &cacheAnswer{Msg: msg}
items = append(items, item{
query: msg,
answer: answer,
})
// Load into the cache
c.add(msg, answer)
}
// Since the capacity is only 5 and we loaded 10, only the last 5 should be in there
require.Equal(t, 5, c.size())
// Check it's the right items in the cache
for _, item := range items[:5] {
answer := c.get(item.query)
require.Nil(t, answer)
}
for _, item := range items[5:] {
answer := c.get(item.query)
require.NotNil(t, answer)
require.Equal(t, item.answer, answer)
}
// Delete one of the items directly
c.delete(items[5].query)
require.Equal(t, 4, c.size())
// Use an iterator to delete two more
c.deleteFunc(func(a *cacheAnswer) bool {
question := a.Msg.Question[0]
return question.Name == "test8.com." || question.Name == "test9.com."
})
require.Equal(t, 2, c.size())
}