-
Notifications
You must be signed in to change notification settings - Fork 46
/
cache_test.go
451 lines (366 loc) · 11.1 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
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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
// Copyright (c) 2018 Dean Jackson <[email protected]>
// MIT Licence - http://opensource.org/licenses/MIT
package aw
import (
"errors"
"os"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/deanishe/awgo/util"
)
// Data are stored and loaded correctly
func TestCache_Store(t *testing.T) {
t.Parallel()
withTempDir(func(dir string) {
var (
c = NewCache(dir)
s = "this is a test"
n = "test.txt"
p = c.path(n)
)
// Sanity checks
require.False(t, util.PathExists(p), "cache file already exists")
// Delete non-existent store
assert.Nil(t, c.Store(n, nil), "clear cache failed")
// Non-existent cache exists
assert.False(t, c.Exists(n), "non-existent cache exists")
// Non-existent cache has expired
assert.True(t, c.Expired(n, 0), "non-existent cache has not expired")
// Store data
data := []byte(s)
assert.Nil(t, c.Store(n, data), "cache data failed")
assert.True(t, util.PathExists(p), "cache file does not exist")
assert.Equal(t, util.PathExists(p), c.Exists(n), "cache file does not exist")
// Load data
data2, err := c.Load(n)
require.Nil(t, err, "load cached data failed")
assert.Equal(t, data, data2, "loaded data do not match saved data")
// Data age
age, err := c.Age(n)
require.Nil(t, err, "get cache age failed")
assert.NotEqual(t, 0, age, "age is zero")
// Delete data
require.Nil(t, c.Store(n, nil), "delete data failed")
_, err = c.Age(n)
assert.NotNil(t, err, "get age of non-existent data succeeded")
assert.True(t, os.IsNotExist(err), "deleted cache exists")
// Load non-existent cache
_, err = c.Load(n)
assert.NotNil(t, err, "load non-existent data succeeded")
})
}
// LoadOrStore API.
func TestCache_LoadOrStore(t *testing.T) {
t.Parallel()
withTempDir(func(dir string) {
var (
s = "this is a test"
reloadCalled bool
c = NewCache(dir)
n = "test.txt"
maxAge = time.Second
)
reload := func() ([]byte, error) {
reloadCalled = true
return []byte(s), nil
}
loadOrStore := func(maxAge time.Duration) {
data, err := c.LoadOrStore(n, maxAge, reload)
require.Nil(t, err, "load/store cached data failed")
require.Equal(t, []byte(s), data, "unexpected cache data")
}
t.Run("sanity check", func(t *testing.T) {
assert.False(t, util.PathExists(c.path(n)), "cache file already exists")
})
t.Run("empty cache", func(t *testing.T) {
loadOrStore(maxAge)
assert.True(t, reloadCalled, "reload not called")
assert.False(t, c.Expired(n, maxAge), "cache expired")
})
t.Run("load cached data", func(t *testing.T) {
reloadCalled = false
loadOrStore(maxAge)
assert.False(t, reloadCalled, "reload called")
})
t.Run("reload on 0 maxAge", func(t *testing.T) {
reloadCalled = false
loadOrStore(0)
assert.False(t, reloadCalled, "reload called")
time.Sleep(time.Second)
assert.True(t, c.Expired(n, maxAge), "cache not expired")
})
t.Run("reload", func(t *testing.T) {
// Reload data
reloadCalled = false
loadOrStore(maxAge)
assert.True(t, reloadCalled, "reload not called")
})
})
}
// TestData is for testing JSON serialisation.
type TestData struct {
A string
B string
}
func (td *TestData) Eq(other *TestData) bool {
if td.A != other.A {
return false
}
if td.B != other.B {
return false
}
return true
}
// Round-trip data through the JSON caching API.
func TestCache_StoreJSON(t *testing.T) {
t.Parallel()
withTempDir(func(dir string) {
n := "test.json"
c := NewCache(dir)
p := c.path(n)
// Delete non-existent store
assert.Nil(t, c.StoreJSON(n, nil), "clear cached data failed")
a := &TestData{"one", "two"}
assert.Nil(t, c.StoreJSON(n, a), "cache data failed")
assert.True(t, util.PathExists(p), "cache does not exist")
b := &TestData{}
assert.Nil(t, c.LoadJSON(n, b), "load data failed")
assert.Equal(t, a, b, "unexpected data")
// Delete store
assert.Nil(t, c.StoreJSON(n, nil), "clear cached data failed")
assert.False(t, util.PathExists(p), "deleted data exist")
// Try to load non-existent cache
b = &TestData{}
assert.NotNil(t, c.LoadJSON(n, b), "load non-existent data succeeded")
})
}
// TestLoadOrStoreJSON tests JSON serialisation.
func TestCache_LoadOrStoreJSON(t *testing.T) {
t.Parallel()
withTempDir(func(dir string) {
var (
n = "test.json"
c = NewCache(dir)
maxAge = time.Second
reloadCalled bool
a = &TestData{"one", "two"}
b = &TestData{}
)
reload := func() (interface{}, error) {
reloadCalled = true
return &TestData{"one", "two"}, nil
}
loadOrStore := func(maxAge time.Duration) {
require.Nil(t, c.LoadOrStoreJSON(n, maxAge, reload, b), "load/store failed")
require.Equal(t, a, b, "unexpected cache data")
}
t.Run("sanity check", func(t *testing.T) {
require.False(t, util.PathExists(c.path(n)), "cache file already exists")
})
t.Run("cache empty", func(t *testing.T) {
loadOrStore(maxAge)
assert.True(t, reloadCalled, "reload not called")
assert.False(t, c.Expired(n, maxAge), "cache expired")
})
t.Run("load cached data", func(t *testing.T) {
reloadCalled = false
loadOrStore(maxAge)
assert.False(t, reloadCalled, "reload called")
})
// Load with 0 maxAge
t.Run("load with maxAge=0", func(t *testing.T) {
reloadCalled = false
loadOrStore(0)
assert.False(t, reloadCalled, "reload was called")
time.Sleep(time.Second)
assert.True(t, c.Expired(n, maxAge), "cache has not expired")
})
// Reload data
t.Run("reload data", func(t *testing.T) {
reloadCalled = false
loadOrStore(maxAge)
assert.True(t, reloadCalled, "reload not called")
})
})
}
// Reload funcs that return errors
func TestCache_reloadError(t *testing.T) {
t.Parallel()
reloadB := func() ([]byte, error) {
return nil, errors.New("an error")
}
reloadJSON := func() (interface{}, error) {
return nil, errors.New("an error")
}
withTempDir(func(dir string) {
c := NewCache(dir)
n := "test"
_, err := c.LoadOrStore(n, 0, reloadB)
assert.NotNil(t, err, "no error returned by reloadB")
v := &TestData{}
assert.NotNil(t, c.LoadOrStoreJSON(n, 0, reloadJSON, v), "no error returned by reloadJSON")
})
}
// Session-scoped caching.
func TestSession_Load(t *testing.T) {
t.Parallel()
withTempDir(func(dir string) {
var (
s = NewSession(dir, NewSessionID())
data = []byte("this is a test")
data2 []byte
n = "test.txt"
p = s.cache.path(s.name(n))
err error
)
// Sanity checks
t.Run("sanity check", func(t *testing.T) {
require.False(t, util.PathExists(p), "cache file already exists")
})
// Delete non-existent store
assert.Nil(t, s.Store(n, nil), "error clearing cache")
// Non-existent cache exists
assert.False(t, s.Exists(n), "non-existent cache exists")
// Store data
assert.Nil(t, s.Store(n, data), "cache data failed")
assert.True(t, util.PathExists(p), "cache file does not exist")
assert.Equal(t, util.PathExists(p), s.Exists(n), "cache file does not exist")
// Load data
data2, err = s.Load(n)
assert.Nil(t, err, "load cached data failed")
assert.Equal(t, data, data2, "loaded data != saved data")
// Clear session
_ = s.Clear(false) // Leave current session data
assert.True(t, util.PathExists(p), "cache file does not exist")
// Clear this session's data, too
_ = s.Clear(true)
assert.False(t, util.PathExists(p), "cleared file still exists")
// Load non-existent cache
_, err = s.Load(n)
assert.NotNil(t, err, "no error loading non-existent data")
})
}
func TestSession_LoadOrStore(t *testing.T) {
withTempDir(func(dir string) {
var (
s = NewSession(dir, NewSessionID())
data = []byte("this is a test")
data2 []byte
n = "test.txt"
called bool
err error
)
reload := func() ([]byte, error) {
called = true
return data, nil
}
loadOrStore := func() {
data2, err = s.LoadOrStore(n, reload)
require.Nil(t, err, "LoadOrStore return error")
require.Equal(t, data, data2, "returned data != reload data")
}
// Sanity checks
t.Run("sanity check", func(t *testing.T) {
require.False(t, util.PathExists(s.cache.path(s.name(n))), "cache already exists")
})
// LoadOrStore API
t.Run("data cached", func(t *testing.T) {
loadOrStore()
assert.True(t, called, "reload not called")
})
t.Run("load cached data", func(t *testing.T) {
called = false
loadOrStore()
assert.False(t, called, "reload called")
})
})
}
func TestSession_LoadJSON(t *testing.T) {
t.Parallel()
withTempDir(func(dir string) {
var (
s = NewSession(dir, NewSessionID())
data = map[string]string{"foo": "bar"}
data2 map[string]string
n = "test.txt"
err error
)
// Sanity checks
p := s.cache.path(s.name(n))
require.False(t, util.PathExists(p), "cache file already exists")
// Delete non-existent store
assert.Nil(t, s.StoreJSON(n, nil), "clear cache failed")
// Non-existent cache exists
assert.False(t, s.Exists(n), "non-existent cache exists")
// Store data
err = s.StoreJSON(n, data)
assert.Nil(t, err, "cache data failed")
assert.True(t, util.PathExists(p), "cache file does not exist")
assert.Equal(t, util.PathExists(p), s.Exists(n), "cache file does not exist")
// Load data
err = s.LoadJSON(n, &data2)
assert.Nil(t, err, "load cached data failed")
assert.Equal(t, data, data2, "loaded data != saved data")
// Clear session
_ = s.Clear(false) // Leave current session data
assert.True(t, util.PathExists(p), "cache file does not exist")
// Clear this session's data, too
_ = s.Clear(true)
assert.False(t, util.PathExists(p), "cleared cache file still exists")
// Load non-existent cache
assert.NotNil(t, s.LoadJSON(n, &data2), "load non-existent cache succeeded")
})
}
func TestSession_LoadOrStoreJSON(t *testing.T) {
withTempDir(func(dir string) {
var (
s = NewSession(dir, NewSessionID())
data = map[string]string{"foo": "bar"}
data2 map[string]string
n = "test.txt"
called bool
err error
)
reload := func() (interface{}, error) {
called = true
return data, nil
}
loadOrStore := func() {
err = s.LoadOrStoreJSON(n, reload, &data2)
require.Nil(t, err, "LoadOrStore return error")
require.Equal(t, data, data2, "returned data != reload data")
}
// Sanity checks
t.Run("sanity check", func(t *testing.T) {
require.False(t, util.PathExists(s.cache.path(s.name(n))), "cache file already exists")
})
// LoadOrStore API
t.Run("cache data", func(t *testing.T) {
loadOrStore()
assert.True(t, called, "reload not called")
})
t.Run("load cache", func(t *testing.T) {
called = false
loadOrStore()
assert.False(t, called, "reload called")
})
})
}
func TestSession_Clear(t *testing.T) {
withTempDir(func(dir string) {
var (
data = []byte("this is a test")
n = "test.txt"
)
// "old" session
s := NewSession(dir, NewSessionID())
assert.Nil(t, s.Store(n, data), "store failed")
assert.True(t, s.Exists(n), "cached data do not exist")
// "new" session
s = NewSession(dir, NewSessionID())
assert.Nil(t, s.Clear(false), "clear failed")
assert.False(t, s.Exists(n), "expired data still exist")
})
}