forked from jaredwray/cacheable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcaching.test.ts
391 lines (337 loc) · 11.7 KB
/
caching.test.ts
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
import { faker } from '@faker-js/faker';
import promiseCoalesce from 'promise-coalesce';
import { beforeEach, describe, expect, it, vi } from 'vitest';
import { Cache, MemoryConfig, caching, memoryStore } from '../src';
import { sleep } from './utils';
// Allow the module to be mocked so we can assert
// the old and new behavior for issue #417
vi.mock('promise-coalesce', async () => {
const actualModule =
await vi.importActual<typeof promiseCoalesce>('promise-coalesce');
return {
...actualModule,
coalesceAsync: vi
.fn()
.mockImplementation((key: string, fn: () => Promise<unknown>) => {
if (key.startsWith('mock_no_coalesce')) {
return Promise.resolve(fn());
}
return actualModule.coalesceAsync(key, fn);
}),
};
});
describe('caching', () => {
let cache: Cache;
let key: string;
let value: string;
const defaultTtl = 100;
describe('constructor', () => {
it('should from store', async () => {
const store = memoryStore();
await expect(caching(store)).resolves.toBeDefined();
});
});
describe('get() and set()', () => {
beforeEach(async () => {
cache = await caching('memory');
key = faker.string.alpha(20);
value = faker.string.sample();
});
it('lets us set and get data in cache', async () => {
await cache.set(key, value, defaultTtl);
await sleep(20);
await expect(cache.get(key)).resolves.toEqual(value);
});
it('should error no isCacheable value', () =>
expect(cache.set(key, undefined)).rejects.toStrictEqual(
new Error('no cacheable value undefined'),
));
it('should error no isCacheable value', () =>
expect(cache.store.mset([[key, undefined]])).rejects.toStrictEqual(
new Error('no cacheable value undefined'),
));
it('lets us set and get data without a callback', async () => {
cache = await caching(async (arg?: MemoryConfig) => memoryStore(arg));
await cache.set(key, value, defaultTtl);
await sleep(20);
await expect(cache.get(key)).resolves.toEqual(value);
});
it('lets us set and get data without options object or callback', async () => {
cache = await caching(async (arg?: MemoryConfig) => memoryStore(arg));
await cache.set(key, value);
await sleep(20);
await expect(cache.get(key)).resolves.toEqual(value);
});
});
describe('mget() and mset()', function () {
let key2: string;
let value2: string;
const store = 'memory';
beforeEach(async () => {
key = faker.string.sample(20);
value = faker.string.sample();
key2 = faker.string.sample(20);
value2 = faker.string.sample();
cache = await caching(store, {
ttl: defaultTtl,
});
});
it('lets us set and get several keys and data in cache', async () => {
await cache.store.mset(
[
[key, value],
[key2, value2],
],
defaultTtl,
);
await sleep(20);
await expect(cache.store.mget(key, key2)).resolves.toStrictEqual([
value,
value2,
]);
});
it('lets us set and get data without options', async () => {
await cache.store.mset(
[
[key, value],
[key2, value2],
],
defaultTtl,
);
await sleep(20);
await expect(cache.store.mget(key, key2)).resolves.toStrictEqual([
value,
value2,
]);
});
});
describe('del()', function () {
beforeEach(async () => {
cache = await caching('memory');
key = faker.string.sample(20);
value = faker.string.sample();
await cache.set(key, value, defaultTtl);
});
it('deletes data from cache', async () => {
await expect(cache.get(key)).resolves.toEqual(value);
await cache.del(key);
await expect(cache.get(key)).resolves.toBeUndefined();
});
describe('with multiple keys', function () {
let key2: string;
let value2: string;
beforeEach(async () => {
cache = await caching('memory');
key2 = faker.string.sample(20);
value2 = faker.string.sample();
await cache.store.mset(
[
[key, value],
[key2, value2],
],
defaultTtl,
);
});
it('deletes an an array of keys', async () => {
await expect(cache.store.mget(key, key2)).resolves.toStrictEqual([
value,
value2,
]);
await cache.store.mdel(key, key2);
await expect(cache.store.mget(key, key2)).resolves.toStrictEqual([
undefined,
undefined,
]);
});
});
});
describe('reset()', () => {
let key2: string;
let value2: string;
beforeEach(async () => {
cache = await caching('memory');
key = faker.string.sample(20);
value = faker.string.sample();
await cache.set(key, value);
key2 = faker.string.sample(20);
value2 = faker.string.sample();
await cache.set(key2, value2);
});
it('clears the cache', async () => {
await cache.reset();
await expect(cache.get(key)).resolves.toBeUndefined();
await expect(cache.get(key2)).resolves.toBeUndefined();
});
});
describe('keys()', () => {
let keyCount: number;
let savedKeys: string[];
beforeEach(async () => {
keyCount = 10;
cache = await caching('memory');
savedKeys = (
await Promise.all(
Array.from({ length: keyCount }).map(async (_, i) => {
const key = (i % 3 === 0 ? 'prefix' : '') + faker.string.sample(20);
value = faker.string.sample();
await cache.set(key, value);
return key;
}),
)
).sort((a, b) => a.localeCompare(b));
});
it('calls back with all keys in cache', () =>
expect(
cache.store.keys().then((x) => x.sort((a, b) => a.localeCompare(b))),
).resolves.toStrictEqual(savedKeys));
});
describe('wrap()', () => {
beforeEach(async () => {
cache = await caching('memory');
key = faker.string.sample(20);
value = faker.string.sample();
});
it('lets us set the ttl to be milliseconds', async () => {
const ttl = 2 * 1000;
await cache.wrap(key, async () => value, ttl);
await expect(cache.get(key)).resolves.toEqual(value);
await sleep(ttl);
await expect(cache.get(key)).resolves.toBeUndefined();
await expect(cache.wrap(key, async () => 'foo')).resolves.toEqual('foo');
});
it('lets us set the ttl to be a function', async () => {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const sec = faker.number.int({ min: 2, max: 4 });
value = faker.string.sample(sec * 2);
const fn = vi.fn((v: string) => (v.length / 2) * 1000);
await cache.wrap(key, async () => value, fn);
await expect(cache.get(key)).resolves.toEqual(value);
await expect(cache.wrap(key, async () => 'foo')).resolves.toEqual(value);
expect(fn).toHaveBeenCalledTimes(1);
await sleep(sec * 1000);
await expect(cache.get(key)).resolves.toBeUndefined();
});
it('calls fn to fetch value on cache miss', async () => {
const fn = vi.fn().mockResolvedValue(value);
const ttl = 2 * 1000;
// Confirm the cache is empty.
await expect(cache.get(key)).resolves.toBeUndefined();
// The first request will populate the cache.
fn.mockClear(); // reset count
await expect(cache.wrap(key, fn, ttl)).resolves.toBe(value);
await expect(cache.get(key)).resolves.toBe(value);
expect(fn).toHaveBeenCalledTimes(1);
// The second request will return the cached value.
fn.mockClear(); // reset count
await expect(cache.wrap(key, fn, ttl)).resolves.toBe(value);
await expect(cache.get(key)).resolves.toBe(value);
expect(fn).toHaveBeenCalledTimes(0);
});
it('does not call fn to fetch value on cache hit', async () => {
const fn = vi.fn().mockResolvedValue(value);
const ttl = 2 * 1000;
// Confirm the cache is contains the value.
await cache.set(key, value, ttl);
await expect(cache.get(key)).resolves.toBe(value);
// Will find the cached value and not call the generator function.
fn.mockClear(); // reset count
await expect(cache.wrap(key, fn, ttl)).resolves.toBe(value);
await expect(cache.get(key)).resolves.toBe(value);
expect(fn).toHaveBeenCalledTimes(0);
});
it('calls fn once to fetch value on cache miss when invoked multiple times', async () => {
const fn = vi.fn().mockResolvedValue(value);
const ttl = 2 * 1000;
// Confirm the cache is empty.
await expect(cache.get(key)).resolves.toBeUndefined();
// Simulate several concurrent requests for the same value.
const results = await Promise.allSettled([
cache.wrap(key, fn, ttl), // 1
cache.wrap(key, fn, ttl), // 2
cache.wrap(key, fn, ttl), // 3
cache.wrap(key, fn, ttl), // 4
cache.wrap(key, fn, ttl), // 5
cache.wrap(key, fn, ttl), // 6
cache.wrap(key, fn, ttl), // 7
cache.wrap(key, fn, ttl), // 8
cache.wrap(key, fn, ttl), // 9
cache.wrap(key, fn, ttl), // 10
]);
// Assert that the function was called exactly once.
expect(fn).toHaveBeenCalledTimes(1);
// Assert that all requests resolved to the same value.
results.forEach((result) => {
expect(result).toMatchObject({
status: 'fulfilled',
value,
});
});
});
});
describe('issues', () => {
beforeEach(async () => {
cache = await caching('memory');
key = faker.string.sample(20);
value = faker.string.sample();
});
it('#183', async () => {
await expect(cache.wrap('constructor', async () => 0)).resolves.toEqual(
0,
);
});
it('#417', async () => {
// This test emulates the undesired behavior reported in issue 417.
// See the wrap() tests for the resolution.
key = 'mock_no_coalesce';
const fn = vi.fn().mockResolvedValue(value);
const ttl = 2 * 1000;
// Confirm the cache is empty.
await expect(cache.get(key)).resolves.toBeUndefined();
// Simulate several concurrent requests for the same value.
const results = await Promise.allSettled([
cache.wrap(key, fn, ttl), // 1
cache.wrap(key, fn, ttl), // 2
cache.wrap(key, fn, ttl), // 3
cache.wrap(key, fn, ttl), // 4
cache.wrap(key, fn, ttl), // 5
cache.wrap(key, fn, ttl), // 6
cache.wrap(key, fn, ttl), // 7
cache.wrap(key, fn, ttl), // 8
cache.wrap(key, fn, ttl), // 9
cache.wrap(key, fn, ttl), // 10
]);
// Assert that the function was called multiple times (bad).
expect(fn).toHaveBeenCalledTimes(10);
// Assert that all requests resolved to the same value.
results.forEach((result) => {
expect(result).toMatchObject({
status: 'fulfilled',
value,
});
});
});
it('#533', async () => {
await expect(
(async () => {
cache = await caching('memory', {
ttl: 5 * 1000,
refreshThreshold: 4 * 1000,
});
await cache.wrap('refreshThreshold', async () => 0);
await new Promise((resolve) => {
setTimeout(resolve, 2 * 1000);
});
await cache.wrap('refreshThreshold', async () => 1);
await new Promise((resolve) => {
setTimeout(resolve, 500);
});
await cache.wrap('refreshThreshold', async () => 2);
await new Promise((resolve) => {
setTimeout(resolve, 500);
});
return cache.wrap('refreshThreshold', async () => 3);
})(),
).resolves.toEqual(1);
});
});
});