-
Notifications
You must be signed in to change notification settings - Fork 408
/
Copy pathredis.test.js
42 lines (35 loc) · 1.12 KB
/
redis.test.js
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
const RedisCache = require('../../cache/redis');
const { delay } = require('../../lib/helper');
const { tearUp, tearDown, testSuite } = require('./helper');
const KEY = '35aa17374c';
describe('Cache', () => {
describe('RedisCache', () => {
describe('constructed without expire option', () => {
beforeEach(async () => {
this.cache = new RedisCache();
});
tearUp(this);
tearDown(this);
testSuite(this);
});
describe('constructed with expire = 1', () => {
beforeEach(async () => {
this.cache = new RedisCache({ expire: 1 });
});
tearUp(this);
tearDown(this);
test('expires set value after wait', async () => {
await this.cache.set(KEY, 'http://example.com/');
await delay(1500);
const value = await this.cache.get(KEY);
expect(value).toBeNull();
});
test('expires enqueued value after wait', async () => {
await this.cache.enqueue(KEY, 'http://example.com/');
await delay(1500);
const value = await this.cache.get(KEY);
expect(value).toBeNull();
});
});
});
});