mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
55 lines
1.7 KiB
TypeScript
55 lines
1.7 KiB
TypeScript
import _ from 'lodash'
|
|
import factory from '@/__tests__/factory'
|
|
import { expect, it } from 'vitest'
|
|
import { fireEvent } from '@testing-library/vue'
|
|
import { eventBus, noop } from '@/utils'
|
|
import ComponentTestCase from '@/__tests__/ComponentTestCase'
|
|
import SongList from './SongList.vue'
|
|
|
|
let songs: Song[]
|
|
|
|
new class extends ComponentTestCase {
|
|
protected beforeEach () {
|
|
// suppress the warning
|
|
super.beforeEach(() => eventBus.on('SET_SELECTED_SONGS', noop))
|
|
}
|
|
|
|
private renderComponent (type: SongListType = 'all-songs') {
|
|
songs = factory<Song>('song', 3)
|
|
|
|
return this.render(SongList, {
|
|
props: {
|
|
items: songs,
|
|
type
|
|
}
|
|
})
|
|
}
|
|
|
|
protected test () {
|
|
it.each<[string, SongListSortField[]]>([
|
|
['header-track-number', ['song.track', 'song.disc']],
|
|
['header-title', ['song.title']],
|
|
['header-artist', ['song.album.artist.name', 'song.album.name', 'song.track', 'song.disc']],
|
|
['header-album', ['song.album.name', 'song.track', 'song.disc']],
|
|
['header-length', ['song.length']]
|
|
])('sorts when "%s" header is clicked', async (testId: string, sortFields: SongListSortField[]) => {
|
|
const mock = this.mock(_, 'orderBy', [])
|
|
const { getByTestId } = this.renderComponent()
|
|
|
|
await fireEvent.click(getByTestId(testId))
|
|
|
|
expect(mock).toHaveBeenCalledWith(expect.anything(), sortFields, 'asc')
|
|
})
|
|
|
|
it.each<[string, string]>([
|
|
['Enter', 'press:enter'],
|
|
['Delete', 'press:delete']
|
|
])('emits when %s key is pressed', async (key: string, eventName: string) => {
|
|
const { emitted, getByTestId } = this.renderComponent()
|
|
|
|
await fireEvent.keyDown(getByTestId('song-list'), { key })
|
|
|
|
expect(emitted()[eventName]).toBeTruthy()
|
|
})
|
|
}
|
|
}
|