-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlru_test.go
160 lines (146 loc) · 3.29 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
package exlru
import (
"context"
"fmt"
"testing"
"time"
)
func TestBaseExpireGet(t *testing.T) {
lru := NewExLru(10)
lru.Add("bb", "zouzuz")
lru.AddWithExpire("aa", "ab", 10*time.Second)
_, ok := lru.Get("aa")
if !ok {
t.Errorf("get key not existed")
}
time.Sleep(5 * time.Second)
_, ok = lru.Get("aa")
if !ok {
t.Errorf("key expired error")
}
time.Sleep(5 * time.Second)
_, ok = lru.Get("aa")
if ok {
t.Errorf("key not expired")
}
_, ok = lru.Get("bb")
if !ok {
t.Errorf("expired error")
}
}
func TestLengthLimit(t *testing.T) {
lru := NewExLru(2)
lru.AddWithExpire("key1", 1, 10*time.Second)
lru.AddWithExpire("key2", "b", 10*time.Second)
v, ok := lru.Get("key1")
if !ok || v != 1 {
t.Errorf("get key error")
}
v, ok = lru.Get("key2")
if !ok || v != "b" {
t.Errorf("get key error")
}
l := []string{"1", "3"}
lru.AddWithExpire("key3", l, 10*time.Second)
_, ok = lru.Get("key1")
if ok {
t.Errorf("lru not work")
}
v, ok = lru.Get("key3")
if !ok {
t.Errorf("lru not work")
}
if v.([]string)[0] != l[0] {
t.Errorf("lru not work")
}
}
func TestMemCache(t *testing.T) {
m := NewMemCache()
a := func(ctx context.Context) (interface{}, error) {
return time.Now(), nil
}
expire := 3 * time.Second
c, _ := m.Execute(context.TODO(), "zou", "a", a, 10, &expire)
fmt.Println(c)
time.Sleep(time.Second)
c2, _ := m.Execute(context.TODO(), "zou", "a", a, 10, &expire)
fmt.Println(c2)
if c != c2 {
t.Errorf("lru not work %v", c)
}
time.Sleep(3 * time.Second)
c3, _ := m.Execute(context.TODO(), "zou", "a", a, 10, &expire)
if c == c3 {
t.Errorf("lru not work %v", c)
}
type person struct {
name string
d time.Time
}
b := func(ctx context.Context) (interface{}, error) {
return &person{name: "kaka", d: time.Now()}, nil
}
d, _ := m.Execute(context.TODO(), "stuct", "ab", b, 10, &expire)
dv1 := d.(*person).d
time.Sleep(time.Second)
d1, _ := m.Execute(context.TODO(), "stuct", "ab", b, 10, &expire)
dv2 := d1.(*person).d
if dv1 != dv2 {
t.Errorf("lru not work %v, %v", d, d1)
}
time.Sleep(3 * time.Second)
d2, _ := m.Execute(context.TODO(), "stuct", "ab", b, 10, &expire)
dv3 := d2.(*person).d
if dv1 == dv3 {
t.Errorf("lru not work %v, %v", d, d2)
}
}
func TestMultiExCache(t *testing.T) {
lru := NewExLru(10)
go func() {
for x := 1; x < 100; x++ {
lru.Add("aa", "bb")
}
}()
go func() {
for y := 1; y <= 200; y++ {
lru.Add("bb", "cc")
}
}()
go func() {
for y := 1; y <= 200; y++ {
lru.Get("aa")
}
}()
time.Sleep(2 * time.Second)
}
func TestMultiMemCache(t *testing.T) {
m := NewMemCache()
a := func(ctx context.Context) (interface{}, error) { fmt.Printf("hello world"); return nil, nil }
go func() {
for x := 1; x < 100; x++ {
_, _ = m.Execute(context.TODO(), "aa", "bb", a, 10, nil)
}
}()
go func() {
for y := 1; y <= 200; y++ {
_, _ = m.Execute(context.TODO(), "bb", "cc", a, 10, nil)
}
}()
go func() {
for y := 1; y <= 200; y++ {
_, _ = m.Execute(context.TODO(), "bb", "dd", a, 10, nil)
}
}()
time.Sleep(2 * time.Second)
}
func BenchmarkMemCache_Execute(b *testing.B) {
m := NewMemCache()
a := func(ctx context.Context) (interface{}, error) { return "hello", nil }
b.ResetTimer()
for i := 0; i < b.N; i++ {
go func() {
_, _ = m.Execute(context.TODO(), string(i), "bb", a, 100, nil)
}()
}
}