koel/resources/assets/js/components/song/SongListControls.spec.ts

83 lines
2.5 KiB
TypeScript
Raw Normal View History

import { take } from 'lodash'
2022-07-21 08:43:57 +00:00
import { ref } from 'vue'
import { expect, it } from 'vitest'
import factory from '@/__tests__/factory'
2022-05-13 17:58:38 +00:00
import UnitTestCase from '@/__tests__/UnitTestCase'
2022-07-21 08:43:57 +00:00
import { SelectedSongsKey, SongsKey } from '@/symbols'
import { screen } from '@testing-library/vue'
import SongListControls from './SongListControls.vue'
2022-05-13 17:58:38 +00:00
new class extends UnitTestCase {
private renderComponent (selectedSongCount = 1, screen: ScreenName = 'Songs') {
const songs = factory<Song>('song', 5)
this.router.activateRoute({
screen,
path: '_',
})
return this.render(SongListControls, {
global: {
2022-07-21 08:43:57 +00:00
provide: {
[<symbol>SongsKey]: [ref(songs)],
[<symbol>SelectedSongsKey]: [ref(take(songs, selectedSongCount))]
}
}
})
}
protected test () {
it.each([[0], [1]])('shuffles all if %s songs are selected', async (selectedCount: number) => {
const { emitted } = this.renderComponent(selectedCount)
await this.user.click(screen.getByTitle('Shuffle all songs'))
expect(emitted().playAll[0]).toEqual([true])
})
it.each([[0], [1]])('plays all if %s songs are selected with Alt pressed', async (selectedCount: number) => {
const { emitted } = this.renderComponent(selectedCount)
await this.user.keyboard('{Alt>}')
await this.user.click(screen.getByTitle('Play all songs'))
await this.user.keyboard('{/Alt}')
expect(emitted().playAll[0]).toEqual([false])
})
it('shuffles selected if more than one song are selected', async () => {
const { emitted } = this.renderComponent(2)
await this.user.click(screen.getByTitle('Shuffle selected songs'))
expect(emitted().playSelected[0]).toEqual([true])
})
it('plays selected if more than one song are selected with Alt pressed', async () => {
const { emitted } = this.renderComponent(2)
await this.user.keyboard('{Alt>}')
await this.user.click(screen.getByTitle('Play selected songs'))
await this.user.keyboard('{/Alt}')
expect(emitted().playSelected[0]).toEqual([false])
})
it('clears queue', async () => {
const { emitted } = this.renderComponent(0, 'Queue')
await this.user.click(screen.getByTitle('Clear current queue'))
expect(emitted().clearQueue).toBeTruthy()
})
it('deletes current playlist', async () => {
const { emitted } = this.renderComponent(0, 'Playlist')
await this.user.click(screen.getByTitle('Delete this playlist'))
expect(emitted().deletePlaylist).toBeTruthy()
})
}
}