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

59 lines
1.9 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'
import { albumStore, commonStore, preferenceStore } from '@/stores'
import { screen, 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
}
2022-07-10 17:15:56 +00:00
protected test () {
it('renders', async () => {
await this.renderComponent()
expect(screen.getAllByTestId('album-card')).toHaveLength(9)
2022-07-11 17:30:51 +00:00
})
it('shows a message when the library is empty', async () => {
commonStore.state.song_length = 0
await this.renderComponent()
await waitFor(() => screen.getByTestId('screen-empty-state'))
})
2022-07-11 17:30:51 +00:00
it.each<[ArtistAlbumViewMode]>([['list'], ['thumbnails']])('sets layout from preferences', async (mode) => {
preferenceStore.albums_view_mode = mode
2022-07-11 17:30:51 +00:00
await this.renderComponent()
2022-07-11 17:30:51 +00:00
await waitFor(() => expect(screen.getByTestId('album-grid').classList.contains(`as-${mode}`)).toBe(true))
2022-07-11 17:30:51 +00:00
})
it('switches layout', async () => {
await this.renderComponent()
2022-07-11 17:30:51 +00:00
await this.user.click(screen.getByRole('radio', { name: 'View as list' }))
await waitFor(() => expect(screen.getByTestId('album-grid').classList.contains(`as-list`)).toBe(true))
2022-07-10 17:15:56 +00:00
await this.user.click(screen.getByRole('radio', { name: 'View as thumbnails' }))
await waitFor(() => expect(screen.getByTestId('album-grid').classList.contains(`as-thumbnails`)).toBe(true))
2022-07-10 17:15:56 +00:00
})
}
2024-04-23 21:01:27 +00:00
private async renderComponent () {
albumStore.state.albums = factory('album', 9)
2024-04-23 21:01:27 +00:00
this.render(AlbumListScreen, {
global: {
stubs: {
AlbumCard: this.stub('album-card')
}
}
})
await this.router.activateRoute({ path: 'albums', screen: 'Albums' })
}
2022-07-10 17:15:56 +00:00
}