mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 09:50:58 +08:00
4335b01d6c
* refactor(utils)!: remove global config * refactor(utils): named export PopupManager * fix tests
98 lines
2.1 KiB
TypeScript
98 lines
2.1 KiB
TypeScript
import { h, provide } from 'vue'
|
|
import { NOOP } from '@vue/shared'
|
|
import { mount } from '@vue/test-utils'
|
|
import { ElButton } from '@element-plus/components'
|
|
import {
|
|
elFormKey,
|
|
elFormItemKey,
|
|
buttonGroupContextKey,
|
|
} from '@element-plus/tokens'
|
|
|
|
import type {
|
|
ElFormContext,
|
|
ElFormItemContext,
|
|
ButtonGroupContext,
|
|
} from '@element-plus/tokens'
|
|
|
|
const AXIOM = 'Rem is the best girl'
|
|
|
|
const Component = {
|
|
render() {
|
|
return h(ElButton, this.$attrs, {
|
|
default: () => [AXIOM],
|
|
})
|
|
},
|
|
}
|
|
|
|
const mountComponent = (setup = NOOP, options = {}) => {
|
|
return mount(
|
|
{
|
|
...Component,
|
|
setup,
|
|
},
|
|
options
|
|
)
|
|
}
|
|
|
|
const getButtonVm = (wrapper: ReturnType<typeof mountComponent>) => {
|
|
return wrapper.findComponent(ElButton).vm as any as {
|
|
buttonSize: string
|
|
buttonDisabled: boolean
|
|
}
|
|
}
|
|
|
|
describe('use-form-item', () => {
|
|
it('should return local value', () => {
|
|
const wrapper = mountComponent()
|
|
expect(getButtonVm(wrapper).buttonSize).toBe('default')
|
|
})
|
|
|
|
it('should return props.size instead of injected.size', () => {
|
|
const propSize = 'small'
|
|
const wrapper = mountComponent(
|
|
() => {
|
|
provide(elFormItemKey, {
|
|
size: 'large',
|
|
} as ElFormItemContext)
|
|
},
|
|
{
|
|
props: {
|
|
size: propSize,
|
|
},
|
|
}
|
|
)
|
|
|
|
expect(getButtonVm(wrapper).buttonSize).toBe(propSize)
|
|
})
|
|
|
|
it('should return fallback.size instead inject.size', () => {
|
|
const fallbackSize = 'small'
|
|
const wrapper = mountComponent(() => {
|
|
provide(buttonGroupContextKey, {
|
|
size: fallbackSize,
|
|
} as ButtonGroupContext)
|
|
|
|
provide(elFormItemKey, {
|
|
size: 'large',
|
|
} as ElFormItemContext)
|
|
})
|
|
|
|
expect(getButtonVm(wrapper).buttonSize).toBe(fallbackSize)
|
|
})
|
|
|
|
it('should return formItem.size instead form.size', () => {
|
|
const itemSize = 'small'
|
|
const wrapper = mountComponent(() => {
|
|
provide(elFormItemKey, {
|
|
size: itemSize,
|
|
} as ElFormItemContext)
|
|
|
|
provide(elFormKey, {
|
|
size: 'large',
|
|
} as ElFormContext)
|
|
})
|
|
|
|
expect(getButtonVm(wrapper).buttonSize).toBe(itemSize)
|
|
})
|
|
})
|