2024-01-18 11:13:05 +00:00
|
|
|
import { merge, take } from 'lodash'
|
2022-07-21 08:43:57 +00:00
|
|
|
import { ref } from 'vue'
|
2022-05-09 15:09:55 +00:00
|
|
|
import { expect, it } from 'vitest'
|
|
|
|
import factory from '@/__tests__/factory'
|
2022-05-13 17:58:38 +00:00
|
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
2024-06-03 07:16:29 +00:00
|
|
|
import { PlayablesKey, SelectedPlayablesKey } from '@/symbols'
|
2022-11-29 10:18:58 +00:00
|
|
|
import { screen } from '@testing-library/vue'
|
2022-05-09 15:09:55 +00:00
|
|
|
import SongListControls from './SongListControls.vue'
|
|
|
|
|
2022-05-13 17:58:38 +00:00
|
|
|
new class extends UnitTestCase {
|
2022-05-09 15:09:55 +00:00
|
|
|
protected test () {
|
|
|
|
it.each([[0], [1]])('shuffles all if %s songs are selected', async (selectedCount: number) => {
|
2022-11-29 10:18:58 +00:00
|
|
|
const { emitted } = this.renderComponent(selectedCount)
|
2022-05-09 15:09:55 +00:00
|
|
|
|
2024-01-12 10:09:15 +00:00
|
|
|
await this.user.click(screen.getByTitle('Shuffle all. Press Alt/⌥ to change mode.'))
|
2022-05-09 15:09:55 +00:00
|
|
|
|
|
|
|
expect(emitted().playAll[0]).toEqual([true])
|
|
|
|
})
|
|
|
|
|
|
|
|
it.each([[0], [1]])('plays all if %s songs are selected with Alt pressed', async (selectedCount: number) => {
|
2022-11-29 10:18:58 +00:00
|
|
|
const { emitted } = this.renderComponent(selectedCount)
|
2022-05-09 15:09:55 +00:00
|
|
|
|
2022-11-29 10:18:58 +00:00
|
|
|
await this.user.keyboard('{Alt>}')
|
2024-01-12 10:09:15 +00:00
|
|
|
await this.user.click(screen.getByTitle('Play all. Press Alt/⌥ to change mode.'))
|
2022-11-29 10:18:58 +00:00
|
|
|
await this.user.keyboard('{/Alt}')
|
2022-05-09 15:09:55 +00:00
|
|
|
|
|
|
|
expect(emitted().playAll[0]).toEqual([false])
|
|
|
|
})
|
|
|
|
|
|
|
|
it('shuffles selected if more than one song are selected', async () => {
|
2022-11-29 10:18:58 +00:00
|
|
|
const { emitted } = this.renderComponent(2)
|
2022-05-09 15:09:55 +00:00
|
|
|
|
2024-01-12 10:09:15 +00:00
|
|
|
await this.user.click(screen.getByTitle('Shuffle selected. Press Alt/⌥ to change mode.'))
|
2022-05-09 15:09:55 +00:00
|
|
|
|
|
|
|
expect(emitted().playSelected[0]).toEqual([true])
|
|
|
|
})
|
|
|
|
|
|
|
|
it('plays selected if more than one song are selected with Alt pressed', async () => {
|
2022-11-29 10:18:58 +00:00
|
|
|
const { emitted } = this.renderComponent(2)
|
2022-05-09 15:09:55 +00:00
|
|
|
|
2022-11-29 10:18:58 +00:00
|
|
|
await this.user.keyboard('{Alt>}')
|
2024-01-12 10:09:15 +00:00
|
|
|
await this.user.click(screen.getByTitle('Play selected. Press Alt/⌥ to change mode.'))
|
2022-11-29 10:18:58 +00:00
|
|
|
await this.user.keyboard('{/Alt}')
|
2022-05-09 15:09:55 +00:00
|
|
|
|
|
|
|
expect(emitted().playSelected[0]).toEqual([false])
|
|
|
|
})
|
|
|
|
|
|
|
|
it('clears queue', async () => {
|
2024-01-18 11:13:05 +00:00
|
|
|
const { emitted } = this.renderComponent(0)
|
2022-05-09 15:09:55 +00:00
|
|
|
|
2022-11-29 10:18:58 +00:00
|
|
|
await this.user.click(screen.getByTitle('Clear current queue'))
|
2022-05-09 15:09:55 +00:00
|
|
|
|
|
|
|
expect(emitted().clearQueue).toBeTruthy()
|
|
|
|
})
|
|
|
|
|
|
|
|
it('deletes current playlist', async () => {
|
2024-01-18 11:13:05 +00:00
|
|
|
const { emitted } = this.renderComponent(0)
|
2022-05-09 15:09:55 +00:00
|
|
|
|
2022-11-29 10:18:58 +00:00
|
|
|
await this.user.click(screen.getByTitle('Delete this playlist'))
|
2022-05-09 15:09:55 +00:00
|
|
|
|
|
|
|
expect(emitted().deletePlaylist).toBeTruthy()
|
|
|
|
})
|
|
|
|
}
|
2024-04-23 21:01:27 +00:00
|
|
|
|
|
|
|
private renderComponent (selectedSongCount = 1, configOverrides: Partial<SongListControlsConfig> = {}) {
|
2024-06-01 18:02:27 +00:00
|
|
|
const songs = factory('song', 5)
|
2024-04-23 21:01:27 +00:00
|
|
|
const config: SongListControlsConfig = merge({
|
|
|
|
addTo: {
|
|
|
|
queue: true,
|
2024-10-13 17:37:01 +00:00
|
|
|
favorites: true,
|
2024-04-23 21:01:27 +00:00
|
|
|
},
|
|
|
|
clearQueue: true,
|
|
|
|
deletePlaylist: true,
|
|
|
|
refresh: true,
|
2024-10-13 17:37:01 +00:00
|
|
|
filter: true,
|
2024-04-23 21:01:27 +00:00
|
|
|
}, configOverrides)
|
|
|
|
|
|
|
|
return this.render(SongListControls, {
|
|
|
|
global: {
|
|
|
|
provide: {
|
2024-05-19 05:49:42 +00:00
|
|
|
[<symbol>PlayablesKey]: [ref(songs)],
|
2024-10-13 17:37:01 +00:00
|
|
|
[<symbol>SelectedPlayablesKey]: [ref(take(songs, selectedSongCount))],
|
|
|
|
},
|
2024-04-23 21:01:27 +00:00
|
|
|
},
|
|
|
|
props: {
|
2024-10-13 17:37:01 +00:00
|
|
|
config,
|
|
|
|
},
|
2024-04-23 21:01:27 +00:00
|
|
|
})
|
|
|
|
}
|
2022-05-09 15:09:55 +00:00
|
|
|
}
|