mirror of
https://github.com/koel/koel
synced 2024-12-19 17:13:09 +00:00
64 lines
2.8 KiB
TypeScript
64 lines
2.8 KiB
TypeScript
import { expect, it } from 'vitest'
|
|
import factory from '@/__tests__/factory'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import { cache, http } from '@/services'
|
|
import { albumStore, artistStore } from '@/stores'
|
|
import { mediaInfoService } from './mediaInfoService'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it('fetches the artist info', async () => {
|
|
const artist = artistStore.syncWithVault(factory('artist', { id: 42 }))[0]
|
|
const artistInfo = factory('artist-info')
|
|
const getMock = this.mock(http, 'get').mockResolvedValue(artistInfo)
|
|
const hasCacheMock = this.mock(cache, 'has', false)
|
|
const setCacheMock = this.mock(cache, 'set')
|
|
|
|
await mediaInfoService.fetchForArtist(artist)
|
|
|
|
expect(getMock).toHaveBeenCalledWith('artists/42/information')
|
|
expect(hasCacheMock).toHaveBeenCalledWith(['artist.info', 42])
|
|
expect(setCacheMock).toHaveBeenCalledWith(['artist.info', 42], artistInfo)
|
|
expect(artist.image).toBe(artistInfo.image)
|
|
})
|
|
|
|
it('gets the artist info from cache', async () => {
|
|
const artistInfo = factory('artist-info')
|
|
const hasCacheMock = this.mock(cache, 'has', true)
|
|
const getCacheMock = this.mock(cache, 'get', artistInfo)
|
|
const getMock = this.mock(http, 'get')
|
|
|
|
expect(await mediaInfoService.fetchForArtist(factory('artist', { id: 42 }))).toBe(artistInfo)
|
|
expect(hasCacheMock).toHaveBeenCalledWith(['artist.info', 42])
|
|
expect(getCacheMock).toHaveBeenCalledWith(['artist.info', 42])
|
|
expect(getMock).not.toHaveBeenCalled()
|
|
})
|
|
|
|
it('fetches the album info', async () => {
|
|
const album = albumStore.syncWithVault(factory('album', { id: 42 }))[0]
|
|
const albumInfo = factory('album-info')
|
|
const getMock = this.mock(http, 'get').mockResolvedValue(albumInfo)
|
|
const hasCacheMock = this.mock(cache, 'has', false)
|
|
const setCacheMock = this.mock(cache, 'set')
|
|
|
|
await mediaInfoService.fetchForAlbum(album)
|
|
|
|
expect(getMock).toHaveBeenCalledWith('albums/42/information')
|
|
expect(hasCacheMock).toHaveBeenCalledWith(['album.info', 42])
|
|
expect(setCacheMock).toHaveBeenCalledWith(['album.info', 42], albumInfo)
|
|
expect(album.cover).toBe(albumInfo.cover)
|
|
})
|
|
|
|
it('gets the album info from cache', async () => {
|
|
const albumInfo = factory('album-info')
|
|
const hasCacheMock = this.mock(cache, 'has', true)
|
|
const getCacheMock = this.mock(cache, 'get', albumInfo)
|
|
const getMock = this.mock(http, 'get')
|
|
|
|
expect(await mediaInfoService.fetchForAlbum(factory('album', { id: 42 }))).toBe(albumInfo)
|
|
expect(hasCacheMock).toHaveBeenCalledWith(['album.info', 42])
|
|
expect(getCacheMock).toHaveBeenCalledWith(['album.info', 42])
|
|
expect(getMock).not.toHaveBeenCalled()
|
|
})
|
|
}
|
|
}
|