koel/resources/assets/js/components/artist/ArtistCard.spec.ts

52 lines
1.3 KiB
TypeScript
Raw Normal View History

import { fireEvent } from '@testing-library/vue'
import { expect, it } from 'vitest'
2022-05-04 20:47:12 +00:00
import factory from '@/__tests__/factory'
2022-06-10 10:47:46 +00:00
import { downloadService } from '@/services'
2022-05-13 17:58:38 +00:00
import UnitTestCase from '@/__tests__/UnitTestCase'
import ArtistCard from './ArtistCard.vue'
2022-05-04 20:47:12 +00:00
let artist: Artist
2022-05-13 17:58:38 +00:00
new class extends UnitTestCase {
protected beforeEach () {
super.beforeEach(() => {
artist = factory<Artist>('artist', {
id: 3, // make sure it's not "Various Artists"
2022-06-10 10:47:46 +00:00
name: 'Led Zeppelin'
})
})
}
protected test () {
it('renders', () => {
const { getByText, getByTestId } = this.render(ArtistCard, {
props: {
artist
}
})
expect(getByTestId('name').textContent).toBe('Led Zeppelin')
getByText(/^4 albums\s+•\s+16 songs.+0 plays$/)
getByTestId('shuffle-artist')
getByTestId('download-artist')
})
it('downloads', async () => {
const mock = this.mock(downloadService, 'fromArtist')
const { getByTestId } = this.render(ArtistCard, {
props: {
artist
}
})
await fireEvent.click(getByTestId('download-artist'))
expect(mock).toHaveBeenCalledTimes(1)
})
it('shuffles', async () => {
2022-06-10 10:47:46 +00:00
throw 'Unimplemented'
})
}
}