koel/resources/assets/js/services/downloadService.spec.ts

51 lines
1.7 KiB
TypeScript
Raw Normal View History

2022-06-10 10:47:46 +00:00
import { favoriteStore } from '@/stores'
2022-05-13 17:58:38 +00:00
import factory from '@/__tests__/factory'
import { expect, it } from 'vitest'
import UnitTestCase from '@/__tests__/UnitTestCase'
import { downloadService } from './downloadService'
new class extends UnitTestCase {
protected test () {
it('downloads songs', () => {
const mock = this.mock(downloadService, 'trigger')
2024-05-19 05:49:42 +00:00
downloadService.fromPlayables([factory<Song>('song', { id: 'foo' }), factory<Song>('song', { id: 'bar' })])
2022-05-13 17:58:38 +00:00
expect(mock).toHaveBeenCalledWith('songs?songs[]=bar&songs[]=foo&')
})
it('downloads all by artist', () => {
const mock = this.mock(downloadService, 'trigger')
downloadService.fromArtist(factory<Artist>('artist', { id: 42 }))
expect(mock).toHaveBeenCalledWith('artist/42')
})
it('downloads all in album', () => {
const mock = this.mock(downloadService, 'trigger')
downloadService.fromAlbum(factory<Album>('album', { id: 42 }))
expect(mock).toHaveBeenCalledWith('album/42')
})
it('downloads a playlist', () => {
const mock = this.mock(downloadService, 'trigger')
const playlist = factory<Playlist>('playlist')
2022-05-13 17:58:38 +00:00
downloadService.fromPlaylist(playlist)
expect(mock).toHaveBeenCalledWith(`playlist/${playlist.id}`)
2022-05-13 17:58:38 +00:00
})
it.each<[Song[], boolean]>([[[], false], [factory<Song>('song', 5), true]])(
'downloads favorites if available',
(songs, triggered) => {
const mock = this.mock(downloadService, 'trigger')
2022-09-14 16:45:08 +00:00
favoriteStore.state.songs = songs
2022-05-13 17:58:38 +00:00
downloadService.fromFavorites()
triggered ? expect(mock).toHaveBeenCalledWith('favorites') : expect(mock).not.toHaveBeenCalled()
})
}
}