import { nextTick, reactive, ref } from 'vue' import { mount } from '@vue/test-utils' import { afterEach, describe, expect, it, test, vi } from 'vitest' import { EVENT_CODE } from '@element-plus/constants' import triggerEvent from '@element-plus/test-utils/trigger-event' import { ArrowDown, Check, CircleClose } from '@element-plus/icons-vue' import { usePopperContainerId } from '@element-plus/hooks' import { hasClass } from '@element-plus/utils' import ElForm, { ElFormItem } from '@element-plus/components/form' import Cascader from '../src/cascader.vue' import type { VNode } from 'vue' vi.mock('lodash-unified', async () => { return { ...((await vi.importActual('lodash-unified')) as Record), debounce: vi.fn((fn) => { fn.cancel = vi.fn() fn.flush = vi.fn() return fn }), } }) const OPTIONS = [ { value: 'zhejiang', label: 'Zhejiang', children: [ { value: 'hangzhou', label: 'Hangzhou', }, { value: 'ningbo', label: 'Ningbo', }, { value: 'wenzhou', label: 'Wenzhou', }, ], }, ] const AXIOM = 'Rem is the best girl' const TRIGGER = '.el-cascader' const NODE = '.el-cascader-node' const TAG = '.el-tag' const SUGGESTION_ITEM = '.el-cascader__suggestion-item' const SUGGESTION_PANEL = '.el-cascader__suggestion-panel' const DROPDOWN = '.el-cascader__dropdown' const _mount = (render: () => VNode) => mount(render, { attachTo: document.body, }) afterEach(() => { document.body.innerHTML = '' }) describe('Cascader.vue', () => { test('toggle popper visible', async () => { const handleVisibleChange = vi.fn() const wrapper = _mount(() => ( )) const trigger = wrapper.find(TRIGGER) const dropdown = wrapper.findComponent(ArrowDown).element as HTMLDivElement await trigger.trigger('click') expect(dropdown.style.display).not.toBe('none') expect(handleVisibleChange).toBeCalledWith(true) await trigger.trigger('click') expect(handleVisibleChange).toBeCalledWith(false) await trigger.trigger('click') document.body.click() expect(handleVisibleChange).toBeCalledWith(false) }) test('expand and check', async () => { const handleChange = vi.fn() const handleExpandChange = vi.fn() const value = ref([]) const wrapper = _mount(() => ( )) const trigger = wrapper.find(TRIGGER) await trigger.trigger('click') ;(document.querySelector(NODE) as HTMLElement).click() await nextTick() expect(handleExpandChange).toBeCalledWith(['zhejiang']) ;(document.querySelectorAll(NODE)[1] as HTMLElement).click() await nextTick() expect(handleChange).toBeCalledWith(['zhejiang', 'hangzhou']) expect(value.value).toEqual(['zhejiang', 'hangzhou']) expect(wrapper.find('input').element.value).toBe('Zhejiang / Hangzhou') }) test('with default value', async () => { const value = ref(['zhejiang', 'hangzhou']) const wrapper = _mount(() => ( )) await nextTick() expect(wrapper.find('input').element.value).toBe('Zhejiang / Hangzhou') value.value = ['zhejiang', 'ningbo'] await nextTick() expect(wrapper.find('input').element.value).toBe('Zhejiang / Ningbo') }) test('options change', async () => { const value = ref(['zhejiang', 'hangzhou']) const options = ref(OPTIONS) const wrapper = _mount(() => ( )) options.value = [] await nextTick() expect(wrapper.find('input').element.value).toBe('') }) test('disabled', async () => { const handleVisibleChange = vi.fn() const wrapper = _mount(() => ( )) await wrapper.find(TRIGGER).trigger('click') expect(handleVisibleChange).not.toBeCalled() expect(wrapper.find('input[disabled]').exists()).toBe(true) }) test('custom placeholder', async () => { const wrapper = _mount(() => ) expect(wrapper.find('input').attributes().placeholder).toBe(AXIOM) }) test('clearable', async () => { const wrapper = _mount(() => ( )) const trigger = wrapper.find(TRIGGER) expect(wrapper.findComponent(ArrowDown).exists()).toBe(true) await trigger.trigger('mouseenter') expect(wrapper.findComponent(ArrowDown).exists()).toBe(false) await wrapper.findComponent(CircleClose).trigger('click') expect(wrapper.find('input').element.value).toBe('') expect( wrapper.findComponent(Cascader).vm.getCheckedNodes(false)?.length ).toBe(0) await trigger.trigger('mouseleave') await trigger.trigger('mouseenter') await expect(wrapper.findComponent(CircleClose).exists()).toBe(false) }) test('show last level label', async () => { const wrapper = _mount(() => ( )) await nextTick() expect(wrapper.find('input').element.value).toBe('Hangzhou') }) test('multiple mode', async () => { const value = ref([ ['zhejiang', 'hangzhou'], ['zhejiang', 'ningbo'], ]) const props = { multiple: true } const wrapper = _mount(() => ( )) await nextTick() const tags = wrapper.findAll(TAG) const [firstTag, secondTag] = tags expect(tags.length).toBe(2) expect(firstTag.text()).toBe('Zhejiang / Hangzhou') expect(secondTag.text()).toBe('Zhejiang / Ningbo') await firstTag.find('.el-tag__close').trigger('click') expect(wrapper.findAll(TAG).length).toBe(1) expect(value.value).toEqual([['zhejiang', 'ningbo']]) }) test('collapse tags', async () => { const props = { multiple: true } const wrapper = _mount(() => ( )) await nextTick() const tags = wrapper.findAll(TAG).filter((item) => { return !hasClass(item.element, 'in-tooltip') }) expect(tags[0].text()).toBe('Zhejiang / Hangzhou') expect(tags.length).toBe(2) }) test('collapse tags tooltip', async () => { const props = { multiple: true } _mount(() => ( )) await nextTick() const tooltipTags = document.querySelectorAll( `.el-cascader__collapse-tags ${TAG}` ) expect(tooltipTags.length).toBe(2) expect(tooltipTags[0].textContent).toBe('Zhejiang / Ningbo') expect(tooltipTags[1].textContent).toBe('Zhejiang / Wenzhou') }) test('tag type', async () => { const props = { multiple: true } const wrapper = _mount(() => ( )) await nextTick() expect(wrapper.find('.el-tag').classes()).toContain('el-tag--success') }) test('filterable', async () => { const value = ref([]) const wrapper = _mount(() => ( )) const input = wrapper.find('input') input.element.value = 'Ni' await input.trigger('compositionstart') await input.trigger('input') input.element.value = 'Ha' await input.trigger('compositionupdate') await input.trigger('input') await input.trigger('compositionend') const suggestions = document.querySelectorAll( SUGGESTION_ITEM ) as NodeListOf const hzSuggestion = suggestions[0] expect(suggestions.length).toBe(1) expect(hzSuggestion.textContent).toBe('Zhejiang / Hangzhou') hzSuggestion.click() await nextTick() expect(wrapper.findComponent(Check).exists()).toBeTruthy() expect(value.value).toEqual(['zhejiang', 'hangzhou']) hzSuggestion.click() await nextTick() expect(value.value).toEqual(['zhejiang', 'hangzhou']) }) test('filterable in multiple mode', async () => { const value = ref([]) const props = { multiple: true } const wrapper = _mount(() => ( )) const input = wrapper.find('.el-cascader__search-input') ;(input.element as HTMLInputElement).value = 'Ha' await input.trigger('input') await nextTick() const hzSuggestion = document.querySelector(SUGGESTION_ITEM) as HTMLElement hzSuggestion.click() await nextTick() expect(value.value).toEqual([['zhejiang', 'hangzhou']]) hzSuggestion.click() await nextTick() expect(value.value).toEqual([]) }) test('filter method', async () => { const filterMethod = vi.fn((node, keyword) => { const { text, value } = node return text.includes(keyword) || value.includes(keyword) }) const wrapper = _mount(() => ( )) const input = wrapper.find('input') input.element.value = 'ha' await input.trigger('input') const hzSuggestion = document.querySelector(SUGGESTION_ITEM) as HTMLElement expect(filterMethod).toBeCalled() expect(hzSuggestion.textContent).toBe('Zhejiang / Hangzhou') }) test('filterable keyboard selection', async () => { const value = ref([]) const wrapper = _mount(() => ( )) const input = wrapper.find('input') const dropdown = document.querySelector(DROPDOWN)! input.element.value = 'h' await input.trigger('input') const suggestionsPanel = document.querySelector( SUGGESTION_PANEL ) as HTMLDivElement const suggestions = dropdown.querySelectorAll( SUGGESTION_ITEM ) as NodeListOf const hzSuggestion = suggestions[0] triggerEvent(suggestionsPanel, 'keydown', EVENT_CODE.down) expect(document.activeElement!.textContent).toBe('Zhejiang / Hangzhou') triggerEvent(hzSuggestion, 'keydown', EVENT_CODE.down) expect(document.activeElement!.textContent).toBe('Zhejiang / Ningbo') triggerEvent(hzSuggestion, 'keydown', EVENT_CODE.enter) await nextTick() expect(value.value).toEqual(['zhejiang', 'hangzhou']) }) describe('teleported API', () => { it('should mount on popper container', async () => { expect(document.body.innerHTML).toBe('') const value = ref([]) _mount(() => ( )) await nextTick() const { selector } = usePopperContainerId() expect(document.body.querySelector(selector.value)!.innerHTML).not.toBe( '' ) }) it('should not mount on the popper container', async () => { expect(document.body.innerHTML).toBe('') const value = ref([]) _mount(() => ( )) await nextTick() const { selector } = usePopperContainerId() expect(document.body.querySelector(selector.value)!.innerHTML).toBe('') }) }) test('placeholder disappear when resetForm', async () => { const model = reactive({ name: new Array(), }) const wrapper = _mount(() => ( )) model.name = ['zhejiang', 'hangzhou'] await nextTick() expect(wrapper.find('input').element.placeholder).toBe('') wrapper.findComponent(ElForm).vm.$.exposed!.resetFields() await nextTick() expect(wrapper.find('input').element.placeholder).toBe(AXIOM) }) test('should be able to trigger togglePopperVisible outside the component', async () => { const cascaderRef = ref() const clickFn = () => { cascaderRef.value.togglePopperVisible() } const wrapper = _mount(() => (
)) const dropdown = wrapper.findComponent(ArrowDown).element as HTMLDivElement expect(dropdown.style.display).not.toBe('none') const button = wrapper.find('button') await button.trigger('click') await nextTick() expect(dropdown?.style.display).not.toBe('none') }) })