mirror of
https://github.com/koel/koel
synced 2024-11-15 08:57:16 +00:00
57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
import { expect, it, vi } from 'vitest'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import { Cache } from './cache'
|
|
|
|
let cache: Cache
|
|
|
|
new class extends UnitTestCase {
|
|
protected beforeEach () {
|
|
super.beforeEach(() => cache = new Cache())
|
|
}
|
|
|
|
protected afterEach () {
|
|
super.afterEach(() => vi.useRealTimers())
|
|
}
|
|
|
|
protected test () {
|
|
it('sets and gets a value', () => {
|
|
cache.set('foo', 'bar')
|
|
expect(cache.get('foo')).toBe('bar')
|
|
})
|
|
|
|
it('invalidates an entry after set time', () => {
|
|
vi.useFakeTimers()
|
|
cache.set('foo', 'bar', 999)
|
|
expect(cache.has('foo')).toBe(true)
|
|
|
|
vi.advanceTimersByTime(1000 * 1000)
|
|
expect(cache.has('foo')).toBe(false)
|
|
})
|
|
|
|
it('removes an entry', () => {
|
|
cache.set('foo', 'bar')
|
|
cache.remove('foo')
|
|
expect(cache.get('foo')).toBeUndefined()
|
|
})
|
|
|
|
it('checks an entry\'s presence', () => {
|
|
cache.set('foo', 'bar')
|
|
expect(cache.hit('foo')).toBe(true)
|
|
expect(cache.has('foo')).toBe(true)
|
|
expect(cache.miss('foo')).toBe(false)
|
|
|
|
cache.remove('foo')
|
|
expect(cache.hit('foo')).toBe(false)
|
|
expect(cache.has('foo')).toBe(false)
|
|
expect(cache.miss('foo')).toBe(true)
|
|
})
|
|
|
|
it('remembers a value', async () => {
|
|
const resolver = vi.fn().mockResolvedValue('bar')
|
|
expect(cache.has('foo')).toBe(false)
|
|
|
|
expect(await cache.remember('foo', resolver)).toBe('bar')
|
|
expect(cache.get('foo')).toBe('bar')
|
|
})
|
|
}
|
|
}
|