koel/resources/assets/js/__tests__/UnitTestCase.ts

198 lines
5.3 KiB
TypeScript
Raw Normal View History

import isMobile from 'ismobilejs'
import { isObject, mergeWith } from 'lodash'
import { cleanup, createEvent, fireEvent, render, RenderOptions } from '@testing-library/vue'
import { afterEach, beforeEach, vi } from 'vitest'
import { defineComponent, nextTick } from 'vue'
import { commonStore, userStore } from '@/stores'
import { http } from '@/services'
import factory from '@/__tests__/factory'
import { DialogBoxKey, MessageToasterKey, OverlayKey, RouterKey } from '@/symbols'
import { DialogBoxStub, MessageToasterStub, OverlayStub } from '@/__tests__/stubs'
import { routes } from '@/config'
import Router from '@/router'
import userEvent from '@testing-library/user-event'
import { UserEvent } from '@testing-library/user-event/dist/types/setup/setup'
import { EventType } from '@testing-library/dom/types/events'
// A deep-merge function that
// - supports symbols as keys (_.merge doesn't)
// - supports Vue's Ref type without losing reactivity (deepmerge doesn't)
// Credit: https://stackoverflow.com/a/60598589/794641
const deepMerge = (first: object, second: object) => {
return mergeWith(first, second, (a, b) => {
if (!isObject(b)) return b
// @ts-ignore
return Array.isArray(a) ? [...a, ...b] : { ...a, ...b }
})
}
2022-05-13 17:58:38 +00:00
export default abstract class UnitTestCase {
private backupMethods = new Map()
protected router: Router
protected user: UserEvent
public constructor () {
this.router = new Router(routes)
this.mock(http, 'request') // prevent actual HTTP requests from being made
this.user = userEvent.setup({ delay: null }) // @see https://github.com/testing-library/user-event/issues/833
this.beforeEach()
this.afterEach()
this.test()
}
protected beforeEach (cb?: Closure) {
beforeEach(() => {
commonStore.state.song_length = 10
2024-01-04 11:35:36 +00:00
commonStore.state.allows_download = true
commonStore.state.uses_i_tunes = true
cb && cb()
})
}
protected afterEach (cb?: Closure) {
afterEach(() => {
isMobile.any = false
commonStore.state.song_length = 10
cleanup()
this.restoreAllMocks()
this.disablePlusEdition()
cb && cb()
})
}
protected be (user?: User) {
2022-07-19 08:19:57 +00:00
userStore.state.current = user || factory<User>('user')
return this
}
protected beAdmin () {
return this.be(factory.states('admin')<User>('user'))
}
2022-05-14 14:45:48 +00:00
protected mock<T, M extends MethodOf<Required<T>>> (obj: T, methodName: M, implementation?: any) {
const mock = vi.fn()
if (implementation !== undefined) {
mock.mockImplementation(implementation instanceof Function ? implementation : () => implementation)
}
this.backupMethods.set([obj, methodName], obj[methodName])
// @ts-ignore
obj[methodName] = mock
return mock
}
protected restoreAllMocks () {
this.backupMethods.forEach((fn, [obj, methodName]) => (obj[methodName] = fn))
this.backupMethods = new Map()
}
protected render (component: any, options: RenderOptions = {}) {
return render(component, deepMerge({
global: {
directives: {
'koel-clickaway': {},
'koel-focus': {},
'koel-tooltip': {},
'koel-hide-broken-icon': {},
'koel-overflow-fade': {}
2022-07-16 09:52:39 +00:00
},
components: {
2023-11-10 15:21:36 +00:00
Icon: this.stub('Icon')
}
}
}, this.supplyRequiredProvides(options)))
}
private supplyRequiredProvides (options: RenderOptions) {
options.global = options.global || {}
options.global.provide = options.global.provide || {}
// @ts-ignore
if (!options.global.provide?.hasOwnProperty(DialogBoxKey)) {
// @ts-ignore
options.global.provide[DialogBoxKey] = DialogBoxStub
}
// @ts-ignore
if (!options.global.provide?.hasOwnProperty(MessageToasterKey)) {
// @ts-ignore
options.global.provide[MessageToasterKey] = MessageToasterStub
}
// @ts-ignore
if (!options.global.provide.hasOwnProperty(OverlayKey)) {
// @ts-ignore
options.global.provide[OverlayKey] = OverlayStub
}
// @ts-ignore
if (!options.global.provide.hasOwnProperty(RouterKey)) {
// @ts-ignore
options.global.provide[RouterKey] = this.router
}
return options
}
protected enablePlusEdition () {
commonStore.state.koel_plus = {
active: true,
short_key: '****-XXXX',
customer_name: 'John Doe',
customer_email: 'Koel Plus',
product_id: 'koel-plus',
}
2024-04-23 15:20:40 +00:00
return this
}
protected disablePlusEdition () {
commonStore.state.koel_plus = {
active: false,
short_key: '',
customer_name: '',
customer_email: '',
product_id: '',
}
2024-04-23 15:20:40 +00:00
return this
}
protected stub (testId = 'stub') {
return defineComponent({
template: `<br data-testid="${testId}"/>`
})
}
protected async tick (count = 1) {
for (let i = 0; i < count; ++i) {
await nextTick()
}
}
2022-05-14 14:45:48 +00:00
protected setReadOnlyProperty<T> (obj: T, prop: keyof T, value: any) {
2022-07-25 18:23:30 +00:00
return Object.defineProperties(obj, {
[prop]: {
value,
configurable: true
}
2022-05-14 14:45:48 +00:00
})
}
protected async type (element: HTMLElement, value: string) {
await this.user.clear(element)
await this.user.type(element, value)
}
protected async trigger(element: HTMLElement, key: EventType | string, options?: {}) {
await fireEvent(element, createEvent[key](element, options))
}
protected abstract test ()
}