6161f94910
refs: https://github.com/TryGhost/Toolbox/issues/595 We're rolling out new rules around the node assert library, the first of which is enforcing the use of assert/strict. This means we don't need to use the strict version of methods, as the standard version will work that way by default. This caught some gotchas in our existing usage of assert where the lack of strict mode had unexpected results: - Url matching needs to be done on `url.href` seeaa58b354a4
- Null and undefined are not the same thing, there were a few cases of this being confused - Particularly questionable changes in [PostExporter tests](c1a468744b
) tracked [here](https://github.com/TryGhost/Team/issues/3505). - A typo seeeaac9c293a
Moving forward, using assert strict should help us to catch unexpected behaviour, particularly around nulls and undefineds during implementation.
103 lines
3.4 KiB
JavaScript
103 lines
3.4 KiB
JavaScript
const assert = require('assert/strict');
|
|
const MemoryTTLCache = require('../index');
|
|
|
|
const sleep = ms => (
|
|
new Promise((resolve) => {
|
|
setTimeout(resolve, ms);
|
|
})
|
|
);
|
|
|
|
describe('Cache Adapter In Memory with Time To Live', function () {
|
|
it('Can initialize a cache instance', function () {
|
|
const cache = new MemoryTTLCache();
|
|
assert.ok(cache);
|
|
});
|
|
|
|
describe('get', function () {
|
|
it('Can get a value from the cache', async function () {
|
|
const cache = new MemoryTTLCache({});
|
|
cache.set('a', 'b');
|
|
assert.equal(cache.get('a'), 'b', 'should get the value from the cache');
|
|
|
|
await sleep(100);
|
|
|
|
assert.equal(cache.get('a'), 'b', 'should get the value from the cache after some time');
|
|
});
|
|
|
|
it.skip('Can get a value from the cache before TTL kicks in', async function () {
|
|
const cache = new MemoryTTLCache({ttl: 50});
|
|
cache.set('a', 'b');
|
|
assert.equal(cache.get('a'), 'b', 'should get the value from the cache');
|
|
|
|
await sleep(20);
|
|
|
|
assert.equal(cache.get('a'), 'b', 'should get the value from the cache before TTL time');
|
|
|
|
// NOTE: 20 + 200 = 220, which is more than 50 TTL
|
|
await sleep(200);
|
|
|
|
assert.equal(cache.get('a'), undefined, 'should NOT get the value from the cache after TTL time');
|
|
});
|
|
});
|
|
|
|
describe('set', function () {
|
|
it.skip('Can set a value in the cache', async function () {
|
|
const cache = new MemoryTTLCache({ttl: 50});
|
|
|
|
cache.set('a', 'b');
|
|
|
|
assert.equal(cache.get('a'), 'b', 'should get the value from the cache');
|
|
|
|
await sleep(20);
|
|
|
|
assert.equal(cache.get('a'), 'b', 'should get the value from the cache after time < TTL');
|
|
|
|
await sleep(200);
|
|
|
|
assert.equal(cache.get('a'), undefined, 'should NOT get the value from the cache after TTL time');
|
|
});
|
|
|
|
it.skip('Can override TTL time', async function () {
|
|
const cache = new MemoryTTLCache({ttl: 20});
|
|
|
|
cache.set('a', 'b', {ttl: 50});
|
|
|
|
await sleep(21);
|
|
|
|
assert.equal(cache.get('a'), 'b', 'should get the value from the cache');
|
|
|
|
await sleep(200);
|
|
|
|
assert.equal(cache.get('a'), undefined, 'should NOT get the value from the cache after TTL time');
|
|
});
|
|
});
|
|
|
|
describe('reset', function () {
|
|
it('Can reset the cache', async function () {
|
|
const cache = new MemoryTTLCache({ttl: 150});
|
|
|
|
cache.set('a', 'b');
|
|
cache.set('c', 'd');
|
|
|
|
assert.equal(cache.get('a'), 'b', 'should get the value from the cache');
|
|
assert.equal(cache.get('c'), 'd', 'should get the value from the cache');
|
|
|
|
cache.reset();
|
|
|
|
assert.equal(cache.get('a'), undefined, 'should NOT get the value from the cache after reset');
|
|
assert.equal(cache.get('c'), undefined, 'should NOT get the value from the cache after reset');
|
|
});
|
|
});
|
|
|
|
describe('keys', function () {
|
|
it('Can get all keys from the cache', async function () {
|
|
const cache = new MemoryTTLCache({ttl: 200});
|
|
|
|
cache.set('a', 'b');
|
|
cache.set('c', 'd');
|
|
|
|
assert.deepEqual(cache.keys(), ['a', 'c'], 'should get all keys from the cache');
|
|
});
|
|
});
|
|
});
|