koel/resources/assets/js/components/album/AlbumCard.spec.ts
2022-05-09 11:59:31 +02:00

60 lines
1.5 KiB
TypeScript

import { fireEvent } from '@testing-library/vue'
import { expect, it } from 'vitest'
import { downloadService, playbackService } from '@/services'
import factory from '@/__tests__/factory'
import ComponentTestCase from '@/__tests__/ComponentTestCase'
import AlbumCard from './AlbumCard.vue'
let album: Album
new class extends ComponentTestCase {
protected beforeEach () {
super.beforeEach(() => {
album = factory<Album>('album', {
name: 'IV',
songs: factory<Song>('song', 10)
})
})
}
protected test () {
it('renders', () => {
const { getByText, getByTestId } = this.render(AlbumCard, {
props: {
album
}
})
expect(getByTestId('name').innerText).equal('IV')
getByText(/^10 songs.+0 plays$/)
getByTestId('shuffle-album')
getByTestId('download-album')
})
it('downloads', async () => {
const mock = this.mock(downloadService, 'fromAlbum')
const { getByTestId } = this.render(AlbumCard, {
props: {
album
}
})
await fireEvent.click(getByTestId('download-album'))
expect(mock).toHaveBeenCalledTimes(1)
})
it('shuffles', async () => {
const mock = this.mock(playbackService, 'playAllInAlbum')
const { getByTestId } = this.render(AlbumCard, {
props: {
album
}
})
await fireEvent.click(getByTestId('shuffle-album'))
expect(mock).toHaveBeenCalled()
})
}
}