koel/resources/assets/js/components/screens/AlbumListScreen.spec.ts

44 lines
1.5 KiB
TypeScript
Raw Normal View History

2022-07-10 17:15:56 +00:00
import { expect, it } from 'vitest'
import factory from '@/__tests__/factory'
import UnitTestCase from '@/__tests__/UnitTestCase'
2022-07-11 17:30:51 +00:00
import { albumStore, preferenceStore } from '@/stores'
import { eventBus } from '@/utils'
import { fireEvent, waitFor } from '@testing-library/vue'
2022-07-10 17:15:56 +00:00
import AlbumListScreen from './AlbumListScreen.vue'
new class extends UnitTestCase {
2022-07-11 17:30:51 +00:00
protected beforeEach () {
2022-07-22 21:56:13 +00:00
super.beforeEach(() => this.mock(albumStore, 'paginate'))
2022-07-11 17:30:51 +00:00
}
private renderComponent () {
albumStore.state.albums = factory<Album[]>('album', 9)
return this.render(AlbumListScreen)
}
2022-07-10 17:15:56 +00:00
protected test () {
it('renders', () => {
2022-07-11 17:30:51 +00:00
expect(this.renderComponent().getAllByTestId('album-card')).toHaveLength(9)
})
it.each<[ArtistAlbumViewMode]>([['list'], ['thumbnails']])('sets layout from preferences', async (mode) => {
preferenceStore.albumsViewMode = mode
const { getByTestId } = this.renderComponent()
eventBus.emit('LOAD_MAIN_CONTENT', 'Albums')
await waitFor(() => expect(getByTestId('album-list').classList.contains(`as-${mode}`)).toBe(true))
})
it('switches layout', async () => {
const { getByTestId, getByTitle } = this.renderComponent()
await fireEvent.click(getByTitle('View as list'))
await waitFor(() => expect(getByTestId('album-list').classList.contains(`as-list`)).toBe(true))
2022-07-10 17:15:56 +00:00
2022-07-11 17:30:51 +00:00
await fireEvent.click(getByTitle('View as thumbnails'))
await waitFor(() => expect(getByTestId('album-list').classList.contains(`as-thumbnails`)).toBe(true))
2022-07-10 17:15:56 +00:00
})
}
}