import { fireEvent } from '@testing-library/vue' import { expect, it } from 'vitest' import factory from '@/__tests__/factory' import { queueStore, songStore } from '@/stores' import { playbackService } from '@/services' import UnitTestCase from '@/__tests__/UnitTestCase' import AlbumTrackListItem from './AlbumTrackListItem.vue' import { SongsKey } from '@/symbols' import { ref } from 'vue' new class extends UnitTestCase { private renderComponent (matchedSong?: Song) { const songsToMatchAgainst = factory('song', 10) const album = factory('album') const track = factory('album-track', { title: 'Fahrstuhl to Heaven', length: 280 }) const matchMock = this.mock(songStore, 'match', matchedSong) const rendered = this.render(AlbumTrackListItem, { props: { album, track }, global: { provide: { [SongsKey]: [ref(songsToMatchAgainst)] } } }) expect(matchMock).toHaveBeenCalledWith('Fahrstuhl to Heaven', songsToMatchAgainst) return rendered } protected test () { it('renders', () => expect(this.renderComponent().html()).toMatchSnapshot()) it('plays', async () => { const matchedSong = factory('song') const queueMock = this.mock(queueStore, 'queueIfNotQueued') const playMock = this.mock(playbackService, 'play') const { getByTitle } = this.renderComponent(matchedSong) await fireEvent.click(getByTitle('Click to play')) expect(queueMock).toHaveBeenNthCalledWith(1, matchedSong) expect(playMock).toHaveBeenNthCalledWith(1, matchedSong) }) } }