import { expect, it } from 'vitest' import factory from '@/__tests__/factory' import UnitTestCase from '@/__tests__/UnitTestCase' import { albumStore, preferenceStore } from '@/stores' import { fireEvent, waitFor } from '@testing-library/vue' import AlbumListScreen from './AlbumListScreen.vue' new class extends UnitTestCase { protected beforeEach () { super.beforeEach(() => this.mock(albumStore, 'paginate')) } private async renderComponent () { albumStore.state.albums = factory('album', 9) const rendered = this.render(AlbumListScreen, { global: { stubs: { AlbumCard: this.stub('album-card') } } }) await this.router.activateRoute({ path: 'albums', screen: 'Albums' }) return rendered } protected test () { it('renders', async () => { const { getAllByTestId } = await this.renderComponent() expect(getAllByTestId('album-card')).toHaveLength(9) }) it.each<[ArtistAlbumViewMode]>([['list'], ['thumbnails']])('sets layout from preferences', async (mode) => { preferenceStore.albumsViewMode = mode const { getByTestId } = await this.renderComponent() await waitFor(() => expect(getByTestId('album-list').classList.contains(`as-${mode}`)).toBe(true)) }) it('switches layout', async () => { const { getByTestId, getByTitle } = await this.renderComponent() await fireEvent.click(getByTitle('View as list')) await waitFor(() => expect(getByTestId('album-list').classList.contains(`as-list`)).toBe(true)) await fireEvent.click(getByTitle('View as thumbnails')) await waitFor(() => expect(getByTestId('album-list').classList.contains(`as-thumbnails`)).toBe(true)) }) } }