koel/resources/assets/js/components/layout/ModalWrapper.spec.ts

43 lines
1.7 KiB
TypeScript
Raw Normal View History

import factory from '@/__tests__/factory'
import { httpService } from '@/services'
import { eventBus } from '@/utils'
import { it } from 'vitest'
import { EventName } from '@/config'
2022-05-13 17:58:38 +00:00
import UnitTestCase from '@/__tests__/UnitTestCase'
import ModalWrapper from './ModalWrapper.vue'
2022-05-13 17:58:38 +00:00
new class extends UnitTestCase {
protected test () {
it.each<[string, EventName, User | Song | any]>([
['add-user-form', 'MODAL_SHOW_ADD_USER_FORM', undefined],
['edit-user-form', 'MODAL_SHOW_EDIT_USER_FORM', factory('user')],
['edit-song-form', 'MODAL_SHOW_EDIT_SONG_FORM', [factory('song')]],
['create-smart-playlist-form', 'MODAL_SHOW_CREATE_SMART_PLAYLIST_FORM', undefined],
['edit-smart-playlist-form', 'MODAL_SHOW_EDIT_SMART_PLAYLIST_FORM', factory('playlist')],
['about-koel', 'MODAL_SHOW_ABOUT_KOEL', undefined]
])('shows %s modal', async (modalName: string, eventName: EventName, eventParams?: any) => {
if (modalName === 'edit-song-form') {
// mocking the songInfoService.fetch() request made during edit-form modal opening
2022-05-11 15:24:28 +00:00
this.mock(httpService, 'request').mockReturnValue(Promise.resolve({ data: {} }))
}
const { findByTestId } = this.render(ModalWrapper, {
global: {
stubs: {
CreateSmartPlaylistForm: this.stub('create-smart-playlist-form'),
EditSmartPlaylistForm: this.stub('edit-smart-playlist-form'),
AddUserForm: this.stub('add-user-form'),
EditUserForm: this.stub('edit-user-form'),
EditSongForm: this.stub('edit-song-form'),
AboutKoel: this.stub('about-koel')
}
}
})
eventBus.emit(eventName, eventParams)
findByTestId(modalName)
})
}
}