add filesystem caching with cacache

This commit is contained in:
Randall Schmidt
2021-07-05 21:40:53 -04:00
parent e8ad8da0bb
commit 6cd42272c4
5 changed files with 268 additions and 35 deletions

View File

@ -447,4 +447,22 @@ describe('File system cache tests', function() {
assert.strictEqual(expectedPngBuffer.equals(body), true);
assert.strictEqual(res.fromCache, true);
});
it('Can eject from cache', async function() {
cachedFetch = FetchCache.withCache(new FileSystemCache());
res = await cachedFetch(TWO_HUNDRED_URL);
assert.strictEqual(res.fromCache, false);
res = await cachedFetch(TWO_HUNDRED_URL);
assert.strictEqual(res.fromCache, true);
await res.ejectFromCache();
res = await cachedFetch(TWO_HUNDRED_URL);
assert.strictEqual(res.fromCache, false);
res = await cachedFetch(TWO_HUNDRED_URL);
assert.strictEqual(res.fromCache, true);
});
});