koel/resources/assets/js/components/album/AlbumCard.spec.ts

51 lines
1.2 KiB
TypeScript
Raw Normal View History

import { fireEvent } from '@testing-library/vue'
import { expect, it } from 'vitest'
2022-06-10 10:47:46 +00:00
import { downloadService } from '@/services'
2022-05-02 18:53:19 +00:00
import factory from '@/__tests__/factory'
2022-05-13 17:58:38 +00:00
import UnitTestCase from '@/__tests__/UnitTestCase'
2022-05-04 20:47:12 +00:00
import AlbumCard from './AlbumCard.vue'
2022-05-02 07:21:14 +00:00
2022-05-03 16:51:59 +00:00
let album: Album
2022-05-02 07:21:14 +00:00
2022-05-13 17:58:38 +00:00
new class extends UnitTestCase {
protected beforeEach () {
super.beforeEach(() => {
album = factory<Album>('album', {
2022-06-10 10:47:46 +00:00
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 () => {
2022-06-10 10:47:46 +00:00
throw 'Unimplemented'
})
}
}