element-plus/packages/components/collection/__tests__/collection-item.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

82 lines
2.2 KiB
TypeScript

import { h, nextTick } from 'vue'
import { mount } from '@vue/test-utils'
import TestCollection, {
CollectionChildComponent,
CollectionItemChildComponent,
} from '../test-helper'
import type { ComponentPublicInstance } from 'vue'
import type { ElCollectionInjectionContext } from '../src/tokens'
const { ElCollection, ElCollectionItem } = TestCollection
const AXIOM = 'rem is the best girl'
describe('<ElCollectionItem />', () => {
const createComponent = (props = {}, count = 3) =>
mount(ElCollection as any, {
props,
slots: {
default: () => {
return h(
CollectionChildComponent as any,
{},
{
default: () =>
Array.from({ length: count }).map((idx) => {
return h(
ElCollectionItem as any,
{},
{
default: () => [
h(
CollectionItemChildComponent,
{},
{ default: () => `${AXIOM} ${idx}` }
),
],
}
)
}),
}
)
},
},
})
let wrapper: ReturnType<typeof createComponent>
afterEach(() => {
wrapper.unmount()
})
describe('render', () => {
it('should be able to render correctly', async () => {
wrapper = createComponent()
await nextTick()
expect(wrapper.findAllComponents(ElCollectionItem as any)).toHaveLength(3)
expect(wrapper.findComponent(ElCollectionItem as any).text()).toContain(
AXIOM
)
})
})
describe('register child instance', () => {
wrapper = createComponent()
const childItemComponent = wrapper.findComponent(
CollectionChildComponent as any
)
const childVm =
childItemComponent.vm as ComponentPublicInstance<ElCollectionInjectionContext>
const collectionItems = wrapper.findAllComponents(
CollectionItemChildComponent as any
)
expect(childVm.itemMap.size).toBe(3)
const items = childVm.getItems()
expect(childVm.getItems()).toHaveLength(3)
expect(items[0].ref).toBe(collectionItems.at(0).element)
})
})