最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Using jest fake timers to advance when testing cache ttl - Stack Overflow

programmeradmin1浏览0评论

I am using a ttl cache library to cache my data and let it expire after a certain duration.

import TTLCache from '@isaacs/ttlcache';

const DATA_KEY = 'barks';

const dataCache = new TTLCache({ ttl: 60_000, checkAgeOnGet: true, max: 1 });

export const getCachedData = async (): Promise<string> => {
    if (!dataCache.has(DATA_KEY)) {
        dataCache.set(DATA_KEY, 'new-item');
    }

    console.log('remainingTTL', dataCache.getRemainingTTL(DATA_KEY));

    return dataCache.get(DATA_KEY);
};

I want to test what happens after the ttl expires, thus the need to use the jest fake timers but I cannot get the timer to advance beyond the ttl expiry:

jest.useFakeTimers();

describe('ttlCaching', () => {
    test('Return undefined when ttl has expired', async () => {
        expect(await getCachedData()).toEqual('new-item');

        jest.advanceTimersByTime(100_000);

        expect(await getCachedData()).toEqual(undefined);
    });
});

When logging the ttl, the ttl has not expired yet I am advancing the timers.

发布评论

评论列表(0)

  1. 暂无评论