koel/resources/assets/js/components/playlist/PlaylistSidebarItem.spec.ts

44 lines
1.4 KiB
TypeScript
Raw Normal View History

import { expect, it } from 'vitest'
import { fireEvent } from '@testing-library/vue'
import { eventBus } from '@/utils'
import factory from '@/__tests__/factory'
2022-05-13 17:58:38 +00:00
import UnitTestCase from '@/__tests__/UnitTestCase'
import PlaylistSidebarItem from './PlaylistSidebarItem.vue'
2022-05-13 17:58:38 +00:00
new class extends UnitTestCase {
renderComponent (list: PlaylistLike) {
return this.render(PlaylistSidebarItem, {
props: {
list
}
})
}
protected test () {
it('requests context menu if is playlist', async () => {
const emitMock = this.mock(eventBus, 'emit')
const playlist = factory<Playlist>('playlist')
const { getByTestId } = this.renderComponent(playlist)
await fireEvent.contextMenu(getByTestId('playlist-sidebar-item'))
expect(emitMock).toHaveBeenCalledWith('PLAYLIST_CONTEXT_MENU_REQUESTED', expect.anything(), playlist)
})
it.each<FavoriteList['name'] | RecentlyPlayedList['name']>(['Favorites', 'Recently Played'])
('does not request context menu if not playlist', async (name) => {
const list: FavoriteList | RecentlyPlayedList = {
name,
songs: []
}
const emitMock = this.mock(eventBus, 'emit')
const { getByTestId } = this.renderComponent(list)
await fireEvent.contextMenu(getByTestId('playlist-sidebar-item'))
expect(emitMock).not.toHaveBeenCalledWith('PLAYLIST_CONTEXT_MENU_REQUESTED', list)
})
}
}