forked from kevburnsjr/microcache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
microcache_test.go
415 lines (386 loc) · 10.1 KB
/
microcache_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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
package microcache
import (
"net/http"
"net/http/httptest"
"sync"
"testing"
"time"
)
// TTL should be respected
func TestTTL(t *testing.T) {
testMonitor := &monitorFunc{interval: 100 * time.Second, logFunc: func(Stats) {}}
cache := New(Config{
TTL: 30 * time.Second,
Monitor: testMonitor,
Driver: NewDriverLRU(10),
})
cache.Start()
handler := cache.Middleware(http.HandlerFunc(noopSuccessHandler))
batchGet(handler, []string{
"/",
"/",
})
cache.offsetIncr(30 * time.Second)
batchGet(handler, []string{
"/",
"/",
})
if testMonitor.misses != 2 || testMonitor.hits != 2 {
t.Log("TTL not respected - got", testMonitor.hits, "hits")
t.Fail()
}
cache.Stop()
}
// HashQuery
func TestHashQuery(t *testing.T) {
testMonitor := &monitorFunc{interval: 100 * time.Second, logFunc: func(Stats) {}}
cache := New(Config{
TTL: 30 * time.Second,
HashQuery: true,
Monitor: testMonitor,
Driver: NewDriverLRU(10),
})
handler := cache.Middleware(http.HandlerFunc(noopSuccessHandler))
batchGet(handler, []string{
"/",
"/?a=1",
})
if testMonitor.misses != 2 {
t.Log("HashQuery not respected - got", testMonitor.misses, "misses")
t.Fail()
}
cache.Stop()
}
// HashQuery Disabled
func TestHashQueryDisabled(t *testing.T) {
testMonitor := &monitorFunc{interval: 100 * time.Second, logFunc: func(Stats) {}}
cache := New(Config{
TTL: 30 * time.Second,
HashQuery: false,
Monitor: testMonitor,
Driver: NewDriverLRU(10),
})
handler := cache.Middleware(http.HandlerFunc(noopSuccessHandler))
batchGet(handler, []string{
"/",
"/?a=1",
})
if testMonitor.misses != 1 {
t.Log("HashQuery not ignored - got", testMonitor.misses, "misses")
t.Fail()
}
cache.Stop()
}
// QueryIgnore should be respected when HashQuery is true
func TestQueryIgnore(t *testing.T) {
testMonitor := &monitorFunc{interval: 100 * time.Second, logFunc: func(Stats) {}}
cache := New(Config{
TTL: 30 * time.Second,
HashQuery: true,
QueryIgnore: []string{"a"},
Monitor: testMonitor,
Driver: NewDriverLRU(10),
})
handler := cache.Middleware(http.HandlerFunc(noopSuccessHandler))
batchGet(handler, []string{
"/",
"/?a=1",
"/?a=2",
})
if testMonitor.misses != 1 || testMonitor.hits != 2 {
t.Log("Query parameters not ignored - got", testMonitor.misses, "misses")
t.Fail()
}
cache.Stop()
}
// QueryIgnore should be disregarded when HashQuery is false
func TestQueryIgnoreDisabled(t *testing.T) {
testMonitor := &monitorFunc{interval: 100 * time.Second, logFunc: func(Stats) {}}
cache := New(Config{
TTL: 30 * time.Second,
HashQuery: false,
QueryIgnore: []string{"a"},
Monitor: testMonitor,
Driver: NewDriverLRU(10),
})
handler := cache.Middleware(http.HandlerFunc(noopSuccessHandler))
batchGet(handler, []string{
"/",
"/?a=1",
"/?b=2",
})
if testMonitor.misses != 1 {
t.Log("Query parameters ignored - got", testMonitor.misses, "misses")
t.Fail()
}
cache.Stop()
}
// StaleIfError
func TestStaleIfError(t *testing.T) {
testMonitor := &monitorFunc{interval: 100 * time.Second, logFunc: func(Stats) {}}
cache := New(Config{
TTL: 30 * time.Second,
StaleIfError: 600 * time.Second,
Monitor: testMonitor,
QueryIgnore: []string{"fail"},
Driver: NewDriverLRU(10),
})
cache.Start()
handler := cache.Middleware(http.HandlerFunc(failureHandler))
// prime cache
batchGet(handler, []string{
"/",
"/",
})
if testMonitor.misses != 1 || testMonitor.hits != 1 {
t.Log("StaleIfError not respected - got", testMonitor.misses, "misses")
t.Fail()
}
// stale after 30s
cache.offsetIncr(30 * time.Second)
batchGet(handler, []string{
"/?fail=1",
})
if testMonitor.stales != 1 {
t.Log("StaleIfError not respected - got", testMonitor.stales, "stales")
t.Fail()
}
// error after 600s
cache.offsetIncr(600 * time.Second)
batchGet(handler, []string{
"/?fail=1",
})
if testMonitor.errors != 2 || testMonitor.stales != 1 {
t.Log("StaleIfError not respected - got", testMonitor.errors, "errors")
t.Fail()
}
cache.Stop()
}
// StaleWhilRevalidate
func TestStaleWhilRevalidate(t *testing.T) {
testMonitor := &monitorFunc{interval: 100 * time.Second, logFunc: func(Stats) {}}
cache := New(Config{
TTL: 30 * time.Second,
StaleWhileRevalidate: 30 * time.Second,
Monitor: testMonitor,
Driver: NewDriverLRU(10),
})
cache.Start()
handler := cache.Middleware(http.HandlerFunc(noopSuccessHandler))
// prime cache
batchGet(handler, []string{
"/",
"/",
})
if testMonitor.misses != 1 || testMonitor.hits != 1 {
t.Log("StaleWhilRevalidate not respected - got", testMonitor.misses, "misses")
t.Fail()
}
// stale and hit after 30s
cache.offsetIncr(30 * time.Second)
batchGet(handler, []string{
"/",
})
time.Sleep(10 * time.Millisecond)
batchGet(handler, []string{
"/",
})
if testMonitor.stales != 1 || testMonitor.hits != 2 {
t.Log("StaleWhilRevalidate not respected - got", testMonitor.stales, "stales")
t.Fail()
}
cache.Stop()
}
// StaleRecache
func TestStaleRecache(t *testing.T) {
testMonitor := &monitorFunc{interval: 100 * time.Second, logFunc: func(Stats) {}}
cache := New(Config{
TTL: 30 * time.Second,
StaleIfError: 600 * time.Second,
StaleRecache: true,
Monitor: testMonitor,
QueryIgnore: []string{"fail"},
Driver: NewDriverLRU(10),
})
cache.Start()
handler := cache.Middleware(http.HandlerFunc(failureHandler))
// prime cache
batchGet(handler, []string{
"/",
"/",
})
if testMonitor.misses != 1 || testMonitor.hits != 1 {
t.Log("StaleRecache not respected - got", testMonitor.misses, "misses")
t.Fail()
}
// stale after 30s
cache.offsetIncr(30 * time.Second)
batchGet(handler, []string{
"/?fail=1",
})
if testMonitor.stales != 1 {
t.Log("StaleIfError not respected - got", testMonitor.stales, "stales")
t.Fail()
}
// hit when stale is recached
batchGet(handler, []string{
"/?fail=1",
})
if testMonitor.hits != 2 {
t.Log("StaleRecache not respected - got", testMonitor.errors, "errors")
t.Fail()
}
cache.Stop()
}
// Timeout
func TestTimeout(t *testing.T) {
testMonitor := &monitorFunc{interval: 100 * time.Second, logFunc: func(Stats) {}}
cache := New(Config{
TTL: 30 * time.Second,
Timeout: 10 * time.Millisecond,
Monitor: testMonitor,
Driver: NewDriverLRU(10),
})
handler := cache.Middleware(http.HandlerFunc(slowSuccessHandler))
start := time.Now()
batchGet(handler, []string{
"/",
})
if testMonitor.errors != 1 || time.Since(start) > 20*time.Millisecond {
t.Log("Timeout not respected - got", testMonitor.errors, "errors")
t.Fail()
}
cache.Stop()
}
// CollapsedFowarding
func TestCollapsedFowarding(t *testing.T) {
testMonitor := &monitorFunc{interval: 100 * time.Second, logFunc: func(Stats) {}}
cache := New(Config{
TTL: 30 * time.Second,
CollapsedForwarding: true,
Monitor: testMonitor,
Driver: NewDriverLRU(10),
})
handler := cache.Middleware(http.HandlerFunc(timelySuccessHandler))
start := time.Now()
parallelGet(handler, []string{
"/",
"/",
"/",
"/",
"/",
"/",
})
if testMonitor.misses != 1 || testMonitor.hits != 5 || time.Since(start) > 20*time.Millisecond {
t.Log("CollapsedFowarding not respected - got", testMonitor.hits, "hits")
t.Fail()
}
cache.Stop()
}
// SuppressAgeHeader
func TestAgeHeader(t *testing.T) {
// Age header is added by default
testMonitor := &monitorFunc{interval: 100 * time.Second, logFunc: func(Stats) {}}
cache := New(Config{
TTL: 30 * time.Second,
Monitor: testMonitor,
Driver: NewDriverLRU(10),
})
handler := cache.Middleware(http.HandlerFunc(noopSuccessHandler))
batchGet(handler, []string{
"/",
})
cache.offsetIncr(20 * time.Second)
w := getResponse(handler, "/")
if w.Header().Get("age") != "20" {
t.Log("Age header was not correct \"", w.Header().Get("age"), "\" != 20")
t.Fail()
}
cache.Stop()
// Age header can be suppressed
cache = New(Config{
TTL: 30 * time.Second,
SuppressAgeHeader: true,
Monitor: testMonitor,
Driver: NewDriverLRU(10),
})
handler = cache.Middleware(http.HandlerFunc(noopSuccessHandler))
batchGet(handler, []string{
"/",
})
w = getResponse(handler, "/")
if w.Header().Get("age") != "" {
t.Log("Age header was added when it should be empty")
t.Fail()
}
cache.Stop()
}
// ARCCache should work as expected
func TestARCCache(t *testing.T) {
testMonitor := &monitorFunc{interval: 100 * time.Second, logFunc: func(Stats) {}}
cache := New(Config{
TTL: 30 * time.Second,
Monitor: testMonitor,
Driver: NewDriverARC(10),
})
cache.Start()
handler := cache.Middleware(http.HandlerFunc(noopSuccessHandler))
batchGet(handler, []string{
"/",
"/",
})
cache.offsetIncr(30 * time.Second)
batchGet(handler, []string{
"/",
"/",
})
if testMonitor.misses != 2 || testMonitor.hits != 2 {
t.Log("TTL not respected by ARC - got", testMonitor.hits, "hits")
t.Fail()
}
cache.Stop()
}
// --- helper funcs ---
func batchGet(handler http.Handler, urls []string) {
for _, url := range urls {
r1, _ := http.NewRequest("GET", url, nil)
handler.ServeHTTP(httptest.NewRecorder(), r1)
}
}
func parallelGet(handler http.Handler, urls []string) {
var wg sync.WaitGroup
for _, url := range urls {
r1, _ := http.NewRequest("GET", url, nil)
wg.Add(1)
go func() {
handler.ServeHTTP(httptest.NewRecorder(), r1)
wg.Done()
}()
}
wg.Wait()
}
func getResponse(handler http.Handler, url string) *httptest.ResponseRecorder {
r, _ := http.NewRequest("GET", url, nil)
w := httptest.NewRecorder()
handler.ServeHTTP(w, r)
return w
}
func noopSuccessHandler(w http.ResponseWriter, r *http.Request) {
http.Error(w, "done", 200)
}
func failureHandler(w http.ResponseWriter, r *http.Request) {
fail := r.FormValue("fail")
if fail != "" {
http.Error(w, "fail", 500)
} else {
http.Error(w, "done", 200)
}
}
func slowSuccessHandler(w http.ResponseWriter, r *http.Request) {
time.Sleep(100 * time.Millisecond)
http.Error(w, "done", 200)
}
func timelySuccessHandler(w http.ResponseWriter, r *http.Request) {
time.Sleep(10 * time.Millisecond)
http.Error(w, "done", 200)
}