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

81 lines
2.1 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-07-08 21:25:20 +00:00
import { downloadService, playbackService } from '@/services'
2022-05-13 17:58:38 +00:00
import UnitTestCase from '@/__tests__/UnitTestCase'
2022-07-08 21:25:20 +00:00
import { commonStore, songStore } from '@/stores'
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', {
2022-07-08 21:25:20 +00:00
name: 'Led Zeppelin',
album_count: 4,
play_count: 124,
song_count: 16
})
})
}
protected test () {
it('renders', () => {
const { getByText, getByTestId } = this.render(ArtistCard, {
props: {
artist
}
})
expect(getByTestId('name').textContent).toBe('Led Zeppelin')
2022-07-08 21:25:20 +00:00
getByText(/^4 albums\s+•\s+16 songs.+124 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'))
2022-07-08 21:25:20 +00:00
expect(mock).toHaveBeenCalledOnce()
})
it('does not have an option to download if downloading is disabled', async () => {
commonStore.state.allow_download = false
const { queryByTestId } = this.render(ArtistCard, {
props: {
artist
}
})
expect(queryByTestId('download-artist')).toBeNull()
})
it('shuffles', async () => {
const songs = factory<Song>('song', 16)
2022-07-08 21:25:20 +00:00
const fetchMock = this.mock(songStore, 'fetchForArtist').mockResolvedValue(songs)
const playMock = this.mock(playbackService, 'queueAndPlay')
const { getByTestId } = this.render(ArtistCard, {
props: {
artist
}
})
await fireEvent.click(getByTestId('shuffle-artist'))
await this.tick()
expect(fetchMock).toHaveBeenCalledWith(artist)
2022-09-14 16:45:08 +00:00
expect(playMock).toHaveBeenCalledWith(songs, true)
})
}
}