koel/resources/assets/js/components/ui/AlbumArtistThumbnail.spec.ts

106 lines
3.1 KiB
TypeScript
Raw Normal View History

2022-07-21 09:17:08 +00:00
import { orderBy } from 'lodash'
2022-05-13 17:58:38 +00:00
import UnitTestCase from '@/__tests__/UnitTestCase'
import { expect, it } from 'vitest'
import factory from '@/__tests__/factory'
2022-07-21 09:17:08 +00:00
import { fireEvent, waitFor } from '@testing-library/vue'
import { queueStore, songStore } from '@/stores'
import { playbackService } from '@/services'
import Thumbnail from './AlbumArtistThumbnail.vue'
let album: Album
let artist: Artist
2022-05-13 17:58:38 +00:00
new class extends UnitTestCase {
private renderForAlbum () {
album = factory<Album>('album', {
name: 'IV',
cover: 'https://localhost/album.jpg'
})
return this.render(Thumbnail, {
props: {
entity: album
}
})
}
private renderForArtist () {
artist = factory<Artist>('artist', {
name: 'Led Zeppelin',
image: 'https://localhost/blimp.jpg'
})
return this.render(Thumbnail, {
props: {
entity: artist
}
})
}
protected test () {
it('renders for album', () => {
expect(this.renderForAlbum().html()).toMatchSnapshot()
})
it('renders for artist', () => {
expect(this.renderForArtist().html()).toMatchSnapshot()
})
it('plays album', async () => {
const songs = factory<Song>('song', 10)
2022-07-21 09:17:08 +00:00
const fetchMock = this.mock(songStore, 'fetchForAlbum').mockResolvedValue(songs)
const playMock = this.mock(playbackService, 'queueAndPlay')
const { getByRole } = this.renderForAlbum()
await fireEvent.click(getByRole('button'))
await waitFor(() => {
expect(fetchMock).toHaveBeenCalledWith(album)
expect(playMock).toHaveBeenCalledWith(songs)
})
})
it('queues album', async () => {
const songs = factory<Song>('song', 10)
2022-07-21 09:17:08 +00:00
const fetchMock = this.mock(songStore, 'fetchForAlbum').mockResolvedValue(songs)
const queueMock = this.mock(queueStore, 'queue')
const { getByRole } = this.renderForAlbum()
await fireEvent.click(getByRole('button'), { altKey: true })
await waitFor(() => {
expect(fetchMock).toHaveBeenCalledWith(album)
expect(queueMock).toHaveBeenCalledWith(orderBy(songs, ['disc', 'track']))
})
})
it('plays artist', async () => {
const songs = factory<Song>('song', 10)
2022-07-21 09:17:08 +00:00
const fetchMock = this.mock(songStore, 'fetchForArtist').mockResolvedValue(songs)
const playMock = this.mock(playbackService, 'queueAndPlay')
const { getByRole } = this.renderForArtist()
await fireEvent.click(getByRole('button'))
await waitFor(() => {
expect(fetchMock).toHaveBeenCalledWith(artist)
expect(playMock).toHaveBeenCalledWith(songs)
})
})
it('queues artist', async () => {
const songs = factory<Song>('song', 10)
2022-07-21 09:17:08 +00:00
const fetchMock = this.mock(songStore, 'fetchForArtist').mockResolvedValue(songs)
const queueMock = this.mock(queueStore, 'queue')
const { getByRole } = this.renderForArtist()
await fireEvent.click(getByRole('button'), { altKey: true })
await waitFor(() => {
expect(fetchMock).toHaveBeenCalledWith(artist)
expect(queueMock).toHaveBeenCalledWith(orderBy(songs, ['album_id', 'disc', 'track']))
})
})
}
}