element-plus/packages/components/popper/__tests__/trigger.spec.ts
jeremywu dd19cae2bc
refactor(components): popper composables (#5035)
* refactor(components): popper composables

- Refactor popper composables

* updates

* updates for tooltip

* Updates for popper. TODO: fix controlled tooltip animation

* Fix controlled mode popper animation issue

* Add new feature for customizing tooltip theme

* Fix popover and popconfirm error

* - Add Collection component for wrapping a collection of component
- Add FocusTrap component for trap focus for popups
- Add RovingFocus component for roving focus component type
- Adjust dropdown component based on these newly added components
- Add popper-trigger component for placing the trigger
- TODO: Finish current dropdown component, and all component's tests plus documents

* Refactor popper

* Complete organizing popper

* Almost finish dropdown

* Update popper tests

* update only-child test

* Finish focus trap component test

* Finish tooltip content test

* Finish tooltip trigger tests

* Finish tooltip tests

* finish tests for Collection and RovingFocusGroup

* Fix test cases for timeselect & select & popover

* Fix popover, popconfirm, menu bug and test cases

* Fix select-v2 test error caused by updating popper

* Fix date-picker test issue for updating popper

* fix test cases

* Fix eslint

* Rebase dev & fix tests

* Remove unused code
2022-01-04 09:15:15 +08:00

76 lines
1.9 KiB
TypeScript

import { ref, nextTick } from 'vue'
import { mount } from '@vue/test-utils'
import ElTrigger from '../src/trigger.vue'
import { POPPER_INJECTION_KEY } from '../src/tokens'
const AXIOM = 'rem is the best girl'
const popperInjection = {
triggerRef: ref(null),
popperInstanceRef: ref(null),
contentRef: ref(null),
}
const mountTrigger = (props = {}) =>
mount(ElTrigger, {
props,
slots: {
default: () => AXIOM,
},
global: {
provide: {
[POPPER_INJECTION_KEY as symbol]: popperInjection,
},
},
})
describe('<ElPopperTrigger />', () => {
let wrapper: ReturnType<typeof mountTrigger>
afterEach(() => {
popperInjection.triggerRef.value = null
})
describe('rendering', () => {
it('should be able to render with children', async () => {
wrapper = mountTrigger()
await nextTick()
expect(popperInjection.triggerRef.value).not.toBeNull()
expect(wrapper.text()).toEqual(AXIOM)
})
it('should be able to render for virtual ref', async () => {
wrapper = mountTrigger({
virtualTriggering: true,
})
await nextTick()
expect(wrapper.text()).not.toEqual(AXIOM)
const virtualRef = document.createElement('div')
await wrapper.setProps({
virtualRef,
})
expect(popperInjection.triggerRef.value).toStrictEqual
})
})
describe('can attach handlers', () => {
it('should be able to attach handlers to the trigger', async () => {
const onMousedown = jest.fn()
const virtualRef = document.createElement('div')
wrapper = mountTrigger({
onMousedown,
virtualTriggering: true,
virtualRef,
})
await nextTick()
expect(onMousedown).not.toHaveBeenCalled()
const evt = new MouseEvent('mousedown')
virtualRef.dispatchEvent(evt)
await nextTick()
expect(onMousedown).toHaveBeenCalled()
})
})
})