forked from valkey-io/valkey-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cache_test.go
206 lines (165 loc) · 6.27 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
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
package valkey
import (
"context"
"errors"
"testing"
"time"
)
func test(t *testing.T, storeFn func() CacheStore) {
t.Run("Flight and Update", func(t *testing.T) {
var err error
var now = time.Now()
var store = storeFn()
v, e := store.Flight("key", "cmd", time.Millisecond*100, now)
if v.typ != 0 || e != nil {
t.Fatal("first flight should return empty ValkeyMessage and nil CacheEntry")
}
v, e = store.Flight("key", "cmd", time.Millisecond*100, now)
if v.typ != 0 || e == nil {
t.Fatal("flights before Update should return empty ValkeyMessage and non-nil CacheEntry")
}
store.Delete([]ValkeyMessage{{typ: '+', string: "key"}}) // Delete should not affect pending CacheEntry
v2, e2 := store.Flight("key", "cmd", time.Millisecond*100, now)
if v2.typ != 0 || e != e2 {
t.Fatal("flights before Update should return empty ValkeyMessage and the same CacheEntry, not be affected by Delete")
}
v = ValkeyMessage{typ: '+', string: "val"}
v.setExpireAt(now.Add(time.Second).UnixMilli())
if pttl := store.Update("key", "cmd", v); pttl < now.Add(90*time.Millisecond).UnixMilli() || pttl > now.Add(100*time.Millisecond).UnixMilli() {
t.Fatal("Update should return a desired pttl")
}
v2, err = e.Wait(context.Background())
if v2.typ != v.typ || v2.string != v.string || err != nil {
t.Fatal("unexpected cache response")
}
if pttl := v2.CachePXAT(); pttl < now.Add(90*time.Millisecond).UnixMilli() || pttl > now.Add(100*time.Millisecond).UnixMilli() {
t.Fatal("CachePXAT should return a desired pttl")
}
v2, _ = store.Flight("key", "cmd", time.Millisecond*100, now)
if v2.typ != v.typ || v2.string != v.string {
t.Fatal("flights after Update should return updated ValkeyMessage")
}
if pttl := v2.CachePXAT(); pttl < now.Add(90*time.Millisecond).UnixMilli() || pttl > now.Add(100*time.Millisecond).UnixMilli() {
t.Fatal("CachePXAT should return a desired pttl")
}
store.Delete([]ValkeyMessage{{typ: '+', string: "key"}})
v, e = store.Flight("key", "cmd", time.Millisecond*100, now)
if v.typ != 0 || e != nil {
t.Fatal("flights after Delete should return empty ValkeyMessage and nil CacheEntry")
}
})
t.Run("Flight and Cancel", func(t *testing.T) {
var err error
var now = time.Now()
var store = storeFn()
v, e := store.Flight("key", "cmd", time.Millisecond*100, now)
if v.typ != 0 || e != nil {
t.Fatal("first flight should return empty ValkeyMessage and nil CacheEntry")
}
v, e = store.Flight("key", "cmd", time.Millisecond*100, now)
if v.typ != 0 || e == nil {
t.Fatal("flights before Update should return empty ValkeyMessage and non-nil CacheEntry")
}
store.Delete([]ValkeyMessage{{typ: '+', string: "key"}}) // Delete should not affect pending CacheEntry
v2, e2 := store.Flight("key", "cmd", time.Millisecond*100, now)
if v2.typ != 0 || e != e2 {
t.Fatal("flights before Update should return empty ValkeyMessage and the same CacheEntry, not be affected by Delete")
}
store.Cancel("key", "cmd", errors.New("err"))
v2, err = e.Wait(context.Background())
if err.Error() != "err" {
t.Fatal("unexpected cache response")
}
v, e = store.Flight("key", "cmd", time.Millisecond*100, now)
if v.typ != 0 || e != nil {
t.Fatal("flights after Cancel should return empty ValkeyMessage and nil CacheEntry")
}
})
t.Run("Flight and Delete", func(t *testing.T) {
var now = time.Now()
var store = storeFn()
for _, deletions := range [][]ValkeyMessage{
{{typ: '+', string: "key"}},
nil,
} {
store.Flight("key", "cmd1", time.Millisecond*100, now)
store.Flight("key", "cmd2", time.Millisecond*100, now)
store.Update("key", "cmd1", ValkeyMessage{typ: '+', string: "val"})
store.Update("key", "cmd2", ValkeyMessage{typ: '+', string: "val"})
store.Delete(deletions)
if v, e := store.Flight("key", "cmd1", time.Millisecond*100, now); v.typ != 0 || e != nil {
t.Fatal("flight after delete should return empty ValkeyMessage and nil CacheEntry")
}
if v, e := store.Flight("key", "cmd2", time.Millisecond*100, now); v.typ != 0 || e != nil {
t.Fatal("flight after delete should return empty ValkeyMessage and nil CacheEntry")
}
}
})
t.Run("Flight and TTL", func(t *testing.T) {
var now = time.Now()
var store = storeFn()
v, e := store.Flight("key", "cmd", time.Second, now)
if v.typ != 0 || e != nil {
t.Fatal("first flight should return empty ValkeyMessage and nil CacheEntry")
}
v = ValkeyMessage{typ: '+', string: "val"}
v.setExpireAt(now.Add(time.Millisecond).UnixMilli())
store.Update("key", "cmd", v)
v, e = store.Flight("key", "cmd", time.Second, now.Add(time.Millisecond))
if v.typ != 0 || e != nil {
t.Fatal("flight after TTL should return empty ValkeyMessage and nil CacheEntry")
}
})
t.Run("Flight and Close", func(t *testing.T) {
var now = time.Now()
var store = storeFn()
_, _ = store.Flight("key", "cmd", time.Millisecond*100, now)
_, e := store.Flight("key", "cmd", time.Millisecond*100, now)
store.Close(errors.New("err"))
if _, err := e.Wait(context.Background()); err.Error() != "err" {
t.Fatal("unexpected cache response")
}
_, e = store.Flight("key", "cmd", time.Millisecond*100, now)
if e != nil {
t.Fatal("flight after Close should return empty ValkeyMessage and nil CacheEntry")
}
})
t.Run("Flight timeout", func(t *testing.T) {
var now = time.Now()
var store = storeFn()
_, _ = store.Flight("key", "cmd", time.Millisecond*100, now)
_, e := store.Flight("key", "cmd", time.Millisecond*100, now)
ctx, cancel := context.WithCancel(context.Background())
cancel()
if _, err := e.Wait(ctx); err != context.Canceled {
t.Fatal("Wait should honor context")
}
})
}
func TestCacheStore(t *testing.T) {
t.Run("LRUCacheStore", func(t *testing.T) {
test(t, func() CacheStore {
return newLRU(CacheStoreOption{CacheSizeEachConn: DefaultCacheBytes})
})
})
t.Run("SimpleCache", func(t *testing.T) {
test(t, func() CacheStore {
return NewSimpleCacheAdapter(&simple{store: map[string]ValkeyMessage{}})
})
})
}
type simple struct {
store map[string]ValkeyMessage
}
func (s *simple) Get(key string) ValkeyMessage {
return s.store[key]
}
func (s *simple) Set(key string, val ValkeyMessage) {
s.store[key] = val
}
func (s *simple) Del(key string) {
delete(s.store, key)
}
func (s *simple) Flush() {
s.store = nil
}