mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
ad3d998752
* feat: button add link type * fix: code lint * feat: button add link api * docs: edit word Co-authored-by: xiaochenchen <xiaochen.chen@igg.com>
246 lines
6.3 KiB
TypeScript
246 lines
6.3 KiB
TypeScript
import { defineComponent, markRaw, nextTick, ref } from 'vue'
|
|
import { mount } from '@vue/test-utils'
|
|
import { describe, expect, it, test } from 'vitest'
|
|
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')
|
|
})
|
|
|
|
it('text', async () => {
|
|
const wrapper = mount(Button, {
|
|
props: { text: true },
|
|
})
|
|
|
|
expect(wrapper.classes()).toContain('is-text')
|
|
await wrapper.setProps({
|
|
bg: true,
|
|
})
|
|
expect(wrapper.classes()).toContain('is-has-bg')
|
|
})
|
|
|
|
it('link', async () => {
|
|
const wrapper = mount(Button, {
|
|
props: { link: true },
|
|
})
|
|
|
|
expect(wrapper.classes()).toContain('is-link')
|
|
})
|
|
|
|
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: '<span class="inner-slot"></span>',
|
|
},
|
|
})
|
|
wrapper.element.querySelector<HTMLElement>('.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: () => () =>
|
|
(
|
|
<Button
|
|
v-slots={{ loading: () => <span class="custom-loading">111</span> }}
|
|
loading={true}
|
|
>
|
|
Loading
|
|
</Button>
|
|
),
|
|
})
|
|
const wrapper = mount(App)
|
|
expect(wrapper.find('.custom-loading').exists()).toBeTruthy()
|
|
})
|
|
})
|
|
describe('Button Group', () => {
|
|
it('create', () => {
|
|
const wrapper = mount({
|
|
setup: () => () =>
|
|
(
|
|
<ButtonGroup>
|
|
<Button type="primary">Prev</Button>
|
|
<Button type="primary">Next</Button>
|
|
</ButtonGroup>
|
|
),
|
|
})
|
|
expect(wrapper.classes()).toContain('el-button-group')
|
|
expect(wrapper.findAll('button').length).toBe(2)
|
|
})
|
|
|
|
it('button group reactive size', async () => {
|
|
const size = ref<ComponentSize>('small')
|
|
const wrapper = mount({
|
|
setup: () => () =>
|
|
(
|
|
<ButtonGroup size={size.value}>
|
|
<Button type="primary">Prev</Button>
|
|
<Button type="primary">Next</Button>
|
|
</ButtonGroup>
|
|
),
|
|
})
|
|
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: () => () =>
|
|
(
|
|
<ButtonGroup type="warning">
|
|
<Button type="primary">Prev</Button>
|
|
<Button>Next</Button>
|
|
</ButtonGroup>
|
|
),
|
|
})
|
|
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'
|
|
)
|
|
})
|
|
})
|