-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdapter.delete.test.ts
71 lines (66 loc) · 2.21 KB
/
Adapter.delete.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
import type { CacheInterface } from '@soluble/cache-interop';
import { Guards } from '@soluble/cache-interop';
import { getTestAdapters } from '../setup/getTestAdapters';
const adapters = getTestAdapters();
describe.each(adapters)('Adapter: %s', (name, adapterFactory) => {
let cache: CacheInterface;
beforeAll(async () => {
cache = await adapterFactory();
});
afterEach(async () => {
await cache.clear();
});
afterAll(async () => {
if (Guards.isConnectedCache(cache)) {
await cache.getConnection().quit();
}
});
describe('Adapter.delete()', () => {
describe('when value is not in cache', () => {
it('should return false', async () => {
expect(await cache.delete('no_existing')).toStrictEqual(false);
});
});
describe('when value is in cache', () => {
it('should return true and delete the entry', async () => {
await cache.set('k', 'cool');
expect((await cache.get('k')).data).toStrictEqual('cool');
expect(await cache.delete('k')).toStrictEqual(true);
expect((await cache.get('k')).data).toStrictEqual(null);
});
});
describe('when disableCache is set to true', () => {
describe('when an item exists', () => {
it('should no delete it and return false', async () => {
await cache.set('k', 'hello');
const ret = await cache.delete('k', {
disableCache: true,
});
expect(ret).toStrictEqual(false);
expect((await cache.get('k')).data).toStrictEqual('hello');
});
describe('when no item exists', () => {
it('should return false', async () => {
const ret = await cache.delete('k', {
disableCache: true,
});
expect(ret).toStrictEqual(false);
});
});
});
it('should always return false whether the item exists or not', async () => {
expect(
await cache.has('k', {
disableCache: true,
})
).toStrictEqual(false);
await cache.set('k', 'hello world');
expect(
await cache.has('k', {
disableCache: true,
})
).toStrictEqual(false);
});
});
});
});