koel/resources/assets/js/components/album/AlbumCard.spec.ts
2022-07-04 10:36:39 +02:00

50 lines
1.2 KiB
TypeScript

import { fireEvent } from '@testing-library/vue'
import { expect, it } from 'vitest'
import { downloadService } from '@/services'
import factory from '@/__tests__/factory'
import UnitTestCase from '@/__tests__/UnitTestCase'
import AlbumCard from './AlbumCard.vue'
let album: Album
new class extends UnitTestCase {
protected beforeEach () {
super.beforeEach(() => {
album = factory<Album>('album', {
name: 'IV'
})
})
}
protected test () {
it('renders', () => {
const { getByText, getByTestId } = this.render(AlbumCard, {
props: {
album
}
})
expect(getByTestId('name').textContent).toBe('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 () => {
throw 'Unimplemented'
})
}
}