koel/resources/assets/js/stores/queueStore.spec.ts

132 lines
4.8 KiB
TypeScript
Raw Normal View History

import factory from '@/__tests__/factory'
2022-09-14 16:45:08 +00:00
import { reactive } from 'vue'
2022-05-15 14:57:28 +00:00
import UnitTestCase from '@/__tests__/UnitTestCase'
import { expect, it } from 'vitest'
import { http } from '@/services'
2022-09-14 16:45:08 +00:00
import { queueStore, songStore } from '.'
2022-05-15 14:57:28 +00:00
let playables: Playable[]
2022-05-15 14:57:28 +00:00
new class extends UnitTestCase {
protected beforeEach () {
super.beforeEach(() => {
playables = factory('song', 3)
queueStore.state.playables = reactive(playables)
2022-05-15 14:57:28 +00:00
})
}
protected test () {
it('returns all queued songs', () => expect(queueStore.all).toEqual(playables))
2022-05-15 14:57:28 +00:00
it('returns the first queued song', () => expect(queueStore.first).toEqual(playables[0]))
2022-07-23 10:00:14 +00:00
it('returns the last queued song', () => expect(queueStore.last).toEqual(playables[2]))
2022-07-23 10:00:14 +00:00
it('queues to bottom', () => {
const song = factory('song')
const putMock = this.mock(http, 'put')
2022-07-23 10:00:14 +00:00
queueStore.queue(song)
expect(queueStore.all).toHaveLength(4)
expect(queueStore.last).toEqual(song)
expect(putMock).toHaveBeenCalledWith('queue/state', { songs: queueStore.all.map(song => song.id) })
2022-05-15 14:57:28 +00:00
})
2022-07-23 10:00:14 +00:00
it('queues to top', () => {
const song = factory('song')
const putMock = this.mock(http, 'put')
2022-07-23 10:00:14 +00:00
queueStore.queueToTop(song)
expect(queueStore.all).toHaveLength(4)
expect(queueStore.first).toEqual(song)
expect(putMock).toHaveBeenCalledWith('queue/state', { songs: queueStore.all.map(song => song.id) })
2022-05-15 14:57:28 +00:00
})
it('replaces the whole queue', () => {
const newSongs = factory('song', 2)
const putMock = this.mock(http, 'put')
2022-07-23 10:00:14 +00:00
queueStore.replaceQueueWith(newSongs)
expect(queueStore.all).toEqual(newSongs)
expect(putMock).toHaveBeenCalledWith('queue/state', { songs: newSongs.map(song => song.id) })
2022-05-15 14:57:28 +00:00
})
it('removes a song from queue', () => {
const putMock = this.mock(http, 'put')
queueStore.unqueue(playables[1])
2022-07-23 10:00:14 +00:00
expect(queueStore.all).toEqual([playables[0], playables[2]])
expect(putMock).toHaveBeenCalledWith('queue/state', { songs: queueStore.all.map(song => song.id) })
2022-05-15 14:57:28 +00:00
})
it('removes multiple songs from queue', () => {
const putMock = this.mock(http, 'put')
queueStore.unqueue([playables[1], playables[0]])
2022-07-23 10:00:14 +00:00
expect(queueStore.all).toEqual([playables[2]])
expect(putMock).toHaveBeenCalledWith('queue/state', { songs: queueStore.all.map(song => song.id) })
2022-05-15 14:57:28 +00:00
})
2022-07-23 10:00:14 +00:00
it('clears the queue', () => {
const putMock = this.mock(http, 'put')
2022-05-15 14:57:28 +00:00
queueStore.clear()
2024-05-19 05:49:42 +00:00
expect(queueStore.state.playables).toHaveLength(0)
expect(putMock).toHaveBeenCalledWith('queue/state', { songs: [] })
2022-05-15 14:57:28 +00:00
})
2022-09-14 16:45:08 +00:00
it.each<[PlaybackState]>([['Playing'], ['Paused']])('identifies the current song by %s state', state => {
2024-05-19 05:49:42 +00:00
queueStore.state.playables[1].playback_state = state
expect(queueStore.current).toEqual(queueStore.state.playables[1])
2022-05-15 14:57:28 +00:00
})
2022-07-23 10:00:14 +00:00
it('gets the next song in queue', () => {
2024-05-19 05:49:42 +00:00
queueStore.state.playables[1].playback_state = 'Playing'
expect(queueStore.next).toEqual(queueStore.state.playables[2])
2022-07-23 10:00:14 +00:00
})
2022-05-15 14:57:28 +00:00
it('returns undefined as next song if at end of queue', () => {
2024-05-19 05:49:42 +00:00
queueStore.state.playables[2].playback_state = 'Playing'
2022-05-15 14:57:28 +00:00
expect(queueStore.next).toBeUndefined()
})
2022-07-23 10:00:14 +00:00
it('gets the previous song in queue', () => {
2024-05-19 05:49:42 +00:00
queueStore.state.playables[1].playback_state = 'Playing'
expect(queueStore.previous).toEqual(queueStore.state.playables[0])
2022-07-23 10:00:14 +00:00
})
2022-05-15 14:57:28 +00:00
it('returns undefined as previous song if at beginning of queue', () => {
2024-05-19 05:49:42 +00:00
queueStore.state.playables[0].playback_state = 'Playing'
2022-05-15 14:57:28 +00:00
expect(queueStore.previous).toBeUndefined()
})
2022-07-23 10:00:14 +00:00
it('fetches random songs to queue', async () => {
const songs = factory('song', 3)
const getMock = this.mock(http, 'get').mockResolvedValue(songs)
2022-07-23 10:00:14 +00:00
const syncMock = this.mock(songStore, 'syncWithVault', songs)
const putMock = this.mock(http, 'put')
2022-07-23 11:07:14 +00:00
2022-07-23 10:00:14 +00:00
await queueStore.fetchRandom(3)
expect(getMock).toHaveBeenCalledWith('queue/fetch?order=rand&limit=3')
expect(syncMock).toHaveBeenCalledWith(songs)
expect(queueStore.all).toEqual(songs)
expect(putMock).toHaveBeenCalledWith('queue/state', { songs: songs.map(song => song.id) })
2022-07-23 10:00:14 +00:00
})
it('fetches random songs to queue with a custom order', async () => {
const songs = factory('song', 3)
const getMock = this.mock(http, 'get').mockResolvedValue(songs)
2022-07-23 10:00:14 +00:00
const syncMock = this.mock(songStore, 'syncWithVault', songs)
const putMock = this.mock(http, 'put')
2022-07-23 10:00:14 +00:00
await queueStore.fetchInOrder('title', 'desc', 3)
expect(getMock).toHaveBeenCalledWith('queue/fetch?order=desc&sort=title&limit=3')
expect(syncMock).toHaveBeenCalledWith(songs)
expect(queueStore.all).toEqual(songs)
expect(putMock).toHaveBeenCalledWith('queue/state', { songs: songs.map(song => song.id) })
2022-07-23 10:00:14 +00:00
})
2022-05-15 14:57:28 +00:00
}
}