import { defineComponent, markRaw, nextTick, ref } from 'vue' import { mount } from '@vue/test-utils' import { Loading, Search } from '@element-plus/icons-vue' import Button from '../src/button.vue' import ButtonGroup from '../src/button-group.vue' import type { ComponentSize } from '@element-plus/constants' const AXIOM = 'Rem is the best girl' describe('Button.vue', () => { it('create', () => { const wrapper = mount(Button, { props: { type: 'primary' }, }) expect(wrapper.classes()).toContain('el-button--primary') }) it('icon', () => { const wrapper = mount(Button, { props: { icon: markRaw(Search) }, }) expect(wrapper.findComponent(Search).exists()).toBeTruthy() }) it('nativeType', () => { const wrapper = mount(Button, { props: { nativeType: 'submit' }, }) expect(wrapper.attributes('type')).toBe('submit') }) it('loading', () => { const wrapper = mount(Button, { props: { loading: true }, }) expect(wrapper.classes()).toContain('is-loading') expect(wrapper.findComponent(Loading).exists()).toBeTruthy() }) it('size', () => { const wrapper = mount(Button, { props: { size: 'large' }, }) expect(wrapper.classes()).toContain('el-button--large') }) it('plain', () => { const wrapper = mount(Button, { props: { plain: true }, }) expect(wrapper.classes()).toContain('is-plain') }) it('round', () => { const wrapper = mount(Button, { props: { round: true }, }) expect(wrapper.classes()).toContain('is-round') }) it('circle', () => { const wrapper = mount(Button, { props: { circle: true }, }) expect(wrapper.classes()).toContain('is-circle') }) test('render text', () => { const wrapper = mount(Button, { slots: { default: AXIOM, }, }) expect(wrapper.text()).toEqual(AXIOM) }) test('handle click', async () => { const wrapper = mount(Button, { slots: { default: AXIOM, }, }) await wrapper.trigger('click') expect(wrapper.emitted()).toBeDefined() }) test('handle click inside', async () => { const wrapper = mount(Button, { slots: { default: '', }, }) wrapper.element.querySelector('.inner-slot')!.click() expect(wrapper.emitted()).toBeDefined() }) test('loading implies disabled', async () => { const wrapper = mount(Button, { slots: { default: AXIOM, }, props: { loading: true }, }) await wrapper.trigger('click') expect(wrapper.emitted('click')).toBeUndefined() }) it('disabled', async () => { const wrapper = mount(Button, { props: { disabled: true }, }) expect(wrapper.classes()).toContain('is-disabled') await wrapper.trigger('click') expect(wrapper.emitted('click')).toBeUndefined() }) it('loading icon', () => { const wrapper = mount(Button, { props: { loadingIcon: markRaw(Search), loading: true, }, }) expect(wrapper.findComponent(Search).exists()).toBeTruthy() }) it('loading slot', () => { const App = defineComponent({ setup: () => () => ( ), }) const wrapper = mount(App) expect(wrapper.find('.custom-loading').exists()).toBeTruthy() }) }) describe('Button Group', () => { it('create', () => { const wrapper = mount({ setup: () => () => ( ), }) expect(wrapper.classes()).toContain('el-button-group') expect(wrapper.findAll('button').length).toBe(2) }) it('button group reactive size', async () => { const size = ref('small') const wrapper = mount({ setup: () => () => ( ), }) expect(wrapper.classes()).toContain('el-button-group') expect( wrapper.findAll('.el-button-group button.el-button--small').length ).toBe(2) size.value = 'large' await nextTick() expect( wrapper.findAll('.el-button-group button.el-button--large').length ).toBe(2) }) it('button group type', async () => { const wrapper = mount({ setup: () => () => ( ), }) expect(wrapper.classes()).toContain('el-button-group') expect( wrapper.findAll('.el-button-group button.el-button--primary').length ).toBe(1) expect( wrapper.findAll('.el-button-group button.el-button--warning').length ).toBe(1) }) it('add space in two Chinese characters', async () => { const wrapper = mount(Button, { slots: { default: '中文', }, props: { autoInsertSpace: true, }, }) expect(wrapper.find('.el-button span').text()).toBe('中文') expect(wrapper.find('.el-button span').classes()).toContain( 'el-button__text--expand' ) }) it('add space between two Chinese characters even if there is whitespace at both ends', async () => { const wrapper = mount(Button, { slots: { default: ' 中文 ', }, props: { autoInsertSpace: true, }, }) expect(wrapper.find('.el-button span').text()).toBe('中文') expect(wrapper.find('.el-button span').classes()).toContain( 'el-button__text--expand' ) }) })