Files
dopamine 0ca1570aa1 chore: upgrade to Vue 3.5 (#22096)
* chore: upgrade deps

* chore: replace __ExtractPublicPropTypes with ExtractPublicPropTypes

* fix: get rid of type errors

* fix: resolve test errors with @vue/test-utils v2.4.6

* fix: resolve test errors with Vue 3.5.22

* ci: set pnpm flag

* chore: update the Vue peer dependency version

* Apply suggestion from @tolking

Co-authored-by: qiang <qw13131wang@gmail.com>

* docs: update example code

Co-authored-by: warmthsea <2586244885@qq.com>

* chore: remove csstype (#22487)

* chore: fix merge code type error

* chore: fix test:ssr error

- Cannot read properties of undefined (reading 'getSSRProps')

* chore: fix typecheck:vitest error

* chore: update pnpm yaml file

* test: fix collapse accordion error

* chore: update deps

* chore: fix type error

* chore: lock file

* chore: sync change

sync with the remove of vue macro

* refactor: use computed instead of eagerComputed

* fix: timeline.test.tsx typecheck

* chore: clean lock file

try dont throw CodeFactor issues in ci

did:
- rm pnpm-lock.yaml
- rm -rf ./**/node_modules
- pnpm store prune
- pnpm cache delete
- pnpm install

Also stay in 3.1.0 for vue-tsc in order to avoid the warnings of
template refs, see https://github.com/vuejs/language-tools/issues/5815

* chore: format code

---------

Co-authored-by: Dsaquel <291874700n@gmail.com>
Co-authored-by: qiang <qw13131wang@gmail.com>
Co-authored-by: warmthsea <2586244885@qq.com>
Co-authored-by: Noblet Ouways <91417411+Dsaquel@users.noreply.github.com>
Co-authored-by: sea <45450994+warmthsea@users.noreply.github.com>
Co-authored-by: btea <2356281422@qq.com>
2025-12-16 09:34:03 +08:00

171 lines
4.6 KiB
TypeScript

import { computed, defineComponent, nextTick, ref } from 'vue'
import { mount } from '@vue/test-utils'
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest'
import { POPPER_INJECTION_KEY } from '@element-plus/components/popper'
import ElContent from '../src/content.vue'
import type { VueWrapper } from '@vue/test-utils'
import type { PopperContentInstance } from '../src/content'
const AXIOM = 'rem is the best girl'
const popperInjection = {
triggerRef: ref(),
popperInstanceRef: ref(),
contentRef: ref(),
role: computed(() => 'test-role'),
}
const TestComponent = defineComponent({
setup() {
return {
contentRef: ref<PopperContentInstance>(),
}
},
render() {
return (
<ElContent ref="contentRef" {...this.$attrs}>
{AXIOM}
</ElContent>
)
},
})
const mountContent = (props = {}) =>
mount(<ElContent {...props}>{AXIOM}</ElContent>, {
global: {
provide: {
[POPPER_INJECTION_KEY as symbol]: popperInjection,
},
},
}) as unknown as VueWrapper<PopperContentInstance>
const mountWrappedContent = (props = {}) =>
mount(<TestComponent {...props} />, {
global: {
provide: {
[POPPER_INJECTION_KEY as symbol]: popperInjection,
},
},
}) as unknown as VueWrapper<InstanceType<typeof TestComponent>>
describe('<ElPopperContent />', () => {
describe('with triggerRef provided', () => {
const triggerKls = 'el-popper__trigger'
let wrapper: VueWrapper<PopperContentInstance>
beforeEach(() => {
const trigger = document.createElement('div')
trigger.className = triggerKls
popperInjection.triggerRef.value = trigger
})
afterEach(() => {
popperInjection.triggerRef.value = null
wrapper?.unmount()
})
it('should mount the component correctly and set popperInstance correctly', async () => {
wrapper = mountContent()
await nextTick()
expect(popperInjection.triggerRef).toBeDefined()
expect(wrapper.html()).toContain(AXIOM)
expect(popperInjection.popperInstanceRef.value).toBeDefined()
expect(wrapper.classes()).toEqual(['el-popper', 'is-dark'])
expect(wrapper.vm.contentStyle).toHaveLength(3)
expect(wrapper.vm.contentStyle[0]).toHaveProperty('zIndex')
expect(wrapper.vm.contentStyle[1]).toEqual(
expect.objectContaining({
position: 'absolute',
top: '0',
left: '0',
})
)
expect(wrapper.vm.contentStyle[2]).toEqual({})
})
it('should be able to be pure and themed', async () => {
wrapper = mountContent()
await nextTick()
await wrapper.setProps({
pure: true,
effect: 'custom',
})
expect(wrapper.classes()).toEqual(['el-popper', 'is-pure', 'is-custom'])
})
it('should be able to set customized styles', async () => {
wrapper = mountContent()
await nextTick()
const style = {
position: 'absolute' as const,
}
await wrapper.setProps({
popperStyle: style,
})
expect(wrapper.vm.contentStyle[2]).toEqual(style)
})
it('should be able to emit events', async () => {
wrapper = mountContent()
await nextTick()
expect(wrapper.emitted()).not.toHaveProperty('mouseenter')
expect(wrapper.emitted()).not.toHaveProperty('mouseleave')
await wrapper.trigger('mouseenter')
expect(wrapper.emitted()).toHaveProperty('mouseenter')
await wrapper.trigger('mouseleave')
expect(wrapper.emitted()).toHaveProperty('mouseleave')
})
describe('instantiate popper instance', () => {
it('should be able to update the current instance', async () => {
await nextTick()
vi.spyOn(
popperInjection.triggerRef.value,
'getBoundingClientRect'
).mockImplementation(() => ({
bottom: 1,
height: 0,
left: 0,
right: 0,
top: 0,
width: 0,
}))
wrapper.vm.$forceUpdate()
})
it('should be able to update the reference node', async () => {
const w = mountWrappedContent()
await nextTick()
const { contentRef } = w.vm
const oldInstance = contentRef!.popperInstanceRef
const newRef = document.createElement('div')
newRef.classList.add('new-ref')
popperInjection.triggerRef.value = newRef
await nextTick()
expect(contentRef!.popperInstanceRef).not.toStrictEqual(oldInstance)
popperInjection.triggerRef.value = undefined
await nextTick()
expect(contentRef!.popperInstanceRef).toBeUndefined()
})
})
})
})