koel/resources/assets/js/components/song/SongListItem.spec.ts

56 lines
1.4 KiB
TypeScript
Raw Normal View History

import { expect, it } from 'vitest'
import factory from '@/__tests__/factory'
import { queueStore } from '@/stores'
import { playbackService } from '@/services'
import { fireEvent } from '@testing-library/vue'
2022-05-13 17:58:38 +00:00
import UnitTestCase from '@/__tests__/UnitTestCase'
import SongListItem from './SongListItem.vue'
let row: SongRow
2022-05-13 17:58:38 +00:00
new class extends UnitTestCase {
private renderComponent (song?: Song) {
song = song ?? factory<Song>('song')
row = {
song,
selected: false
}
return this.render(SongListItem, {
props: {
item: row
}
})
}
protected test () {
it('renders', async () => {
const song = factory<Song>('song', {
title: 'Test Song',
album_name: 'Test Album',
artist_name: 'Test Artist',
length: 1000,
playback_state: 'Playing',
track: 12,
album_cover: 'https://example.com/cover.jpg',
liked: true
})
const { html } = await this.renderComponent(song)
expect(html()).toMatchSnapshot()
})
it('plays on double click', async () => {
const queueMock = this.mock(queueStore, 'queueIfNotQueued')
const playMock = this.mock(playbackService, 'play')
const { getByTestId } = this.renderComponent()
await fireEvent.dblClick(getByTestId('song-item'))
expect(queueMock).toHaveBeenCalledWith(row.song)
expect(playMock).toHaveBeenCalledWith(row.song)
})
}
}