mirror of
https://github.com/koel/koel
synced 2024-12-19 09:03:07 +00:00
81 lines
2.3 KiB
TypeScript
81 lines
2.3 KiB
TypeScript
import Router from '@/router'
|
|
import { expect, it } from 'vitest'
|
|
import factory from '@/__tests__/factory'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import { commonStore, queueStore, songStore } from '@/stores'
|
|
import { screen, waitFor } from '@testing-library/vue'
|
|
import { playbackService } from '@/services'
|
|
import AllSongsScreen from './AllSongsScreen.vue'
|
|
|
|
new class extends UnitTestCase {
|
|
protected beforeEach (cb?: Closure) {
|
|
super.beforeEach(cb)
|
|
commonStore.state.song_count = 420
|
|
commonStore.state.song_length = 123_456
|
|
songStore.state.songs = factory('song', 20)
|
|
this.be()
|
|
}
|
|
|
|
protected test () {
|
|
it('renders', async () => {
|
|
const [{ html }] = await this.renderComponent()
|
|
await waitFor(() => expect(html()).toMatchSnapshot())
|
|
})
|
|
|
|
it('shuffles', async () => {
|
|
const queueMock = this.mock(queueStore, 'fetchRandom')
|
|
const playMock = this.mock(playbackService, 'playFirstInQueue')
|
|
const goMock = this.mock(Router, 'go')
|
|
await this.renderComponent()
|
|
|
|
await this.user.click(screen.getByTitle('Shuffle all. Press Alt/⌥ to change mode.'))
|
|
|
|
await waitFor(() => {
|
|
expect(queueMock).toHaveBeenCalled()
|
|
expect(playMock).toHaveBeenCalled()
|
|
expect(goMock).toHaveBeenCalledWith('queue')
|
|
})
|
|
})
|
|
|
|
it('renders in Plus edition', async () => {
|
|
this.enablePlusEdition()
|
|
|
|
const [{ html }, fetchMock] = await this.renderComponent()
|
|
await waitFor(() => expect(html()).toMatchSnapshot())
|
|
|
|
await this.user.click(screen.getByLabelText('Own songs only'))
|
|
await waitFor(() => expect(fetchMock).toHaveBeenCalledWith({
|
|
sort: 'title',
|
|
order: 'asc',
|
|
page: 1,
|
|
own_songs_only: true,
|
|
}))
|
|
})
|
|
}
|
|
|
|
private async renderComponent () {
|
|
const fetchMock = this.mock(songStore, 'paginate').mockResolvedValue(2)
|
|
|
|
this.router.$currentRoute.value = {
|
|
screen: 'Songs',
|
|
path: '/songs',
|
|
}
|
|
|
|
const rendered = this.render(AllSongsScreen, {
|
|
global: {
|
|
stubs: {
|
|
SongList: this.stub('song-list'),
|
|
},
|
|
},
|
|
})
|
|
|
|
await waitFor(() => expect(fetchMock).toHaveBeenCalledWith({
|
|
sort: 'title',
|
|
order: 'asc',
|
|
page: 1,
|
|
own_songs_only: false,
|
|
}))
|
|
|
|
return [rendered, fetchMock] as const
|
|
}
|
|
}
|