import factory from '@/__tests__/factory' import { mockHelper } from '@/__tests__/__helpers__' import { httpService } from '@/services' import { eventBus } from '@/utils' import { it } from 'vitest' import { EventName } from '@/config' import ComponentTestCase from '@/__tests__/ComponentTestCase' import ModalWrapper from './ModalWrapper.vue' new class extends ComponentTestCase { 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 mockHelper.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) }) } }