element-plus/packages/components/time-select/__tests__/time-select.spec.ts

174 lines
4.7 KiB
TypeScript

import { nextTick } from 'vue'
import { mount } from '@vue/test-utils'
import Select from '@element-plus/components/select'
import { sleep } from '@element-plus/test-utils'
import TimeSelect from '../src/time-select.vue'
const { Option } = Select
const _mount = (template: string, data, otherObj?) =>
mount(
{
components: {
'el-time-select': TimeSelect,
},
template,
data,
...otherObj,
},
{
attachTo: 'body',
},
)
afterEach(() => {
document.documentElement.innerHTML = ''
})
describe('TimeSelect', () => {
it('create', async () => {
const wrapper = _mount(
`<el-time-select :style="{color:'red'}" class="customClass" />`,
() => ({
readonly: true,
}),
)
const outerInput = wrapper.find('.el-select')
expect(outerInput.classes()).toContain('customClass')
expect(outerInput.attributes().style).toBeDefined()
})
it('set default value', async () => {
const wrapper = _mount(`<el-time-select v-model="value" />`, () => ({
value: '14:30',
}))
const input = wrapper.find('input')
input.trigger('blur')
input.trigger('focus')
await nextTick()
expect(document.querySelector('.selected')).toBeDefined()
expect(document.querySelector('.selected').textContent).toBe('14:30')
})
it('set minTime', async () => {
const wrapper = _mount(`<el-time-select minTime="14:30" />`, () => ({}))
const input = wrapper.find('input')
input.trigger('blur')
input.trigger('focus')
await nextTick()
const elms = document.querySelectorAll('.is-disabled')
const elm = elms[elms.length - 1]
expect(elm.textContent).toBe('14:30')
})
it('set maxTime', async () => {
const wrapper = _mount(`<el-time-select maxTime="14:30" />`, () => ({}))
const input = wrapper.find('input')
input.trigger('blur')
input.trigger('focus')
await nextTick()
const elm = document.querySelector('.is-disabled')
expect(elm.textContent).toBe('14:30')
})
it('set value update', async () => {
const wrapper = _mount(`<el-time-select v-model="value" />`, () => ({
value: '10:00',
}))
await nextTick()
const input = wrapper.find('input')
expect(input.exists()).toBe(true)
expect(input.element.value).toBe('10:00')
// wrapper.setData is not supported until version 2.0.0-beta.8
// change value directly on `wrapper.vm`
const vm = wrapper.vm as any
vm.value = '10:30'
await nextTick()
expect(vm.value).toBe('10:30')
expect(input.element.value).toBe('10:30')
})
it('update value', async () => {
const wrapper = _mount(`<el-time-select v-model="value" />`, () => ({
value: '10:00',
}))
await nextTick()
const vm = wrapper.vm as any
const input = wrapper.find('input')
expect(vm.value).toBe('10:00')
expect(input.element.value).toBe('10:00')
const option = wrapper
.findAllComponents(Option)
.filter(w => w.text().trim() === '11:00')[0]
expect(option.exists()).toBe(true)
option.trigger('click')
await nextTick()
expect(vm.value).toBe('11:00')
expect(input.element.value).toBe('11:00')
})
it('set disabled', async () => {
const wrapper = _mount(
`<el-time-select v-model="value" :disabled="disabled" />`,
() => ({
value: '10:00',
disabled: false,
}),
)
const vm = wrapper.vm as any
const select = wrapper.findComponent({ name: 'ElSelect' })
expect(select.props().disabled).toBe(false)
vm.disabled = true
await nextTick()
expect(select.props().disabled).toBe(true)
})
it('set editable', async () => {
const wrapper = _mount(
`<el-time-select v-model="value" :editable="editable" />`,
() => ({
value: '10:00',
editable: false,
}),
)
const vm = wrapper.vm as any
const select = wrapper.findComponent({ name: 'ElSelect' })
expect(select.props().filterable).toBe(false)
vm.editable = true
await nextTick()
expect(select.props().filterable).toBe(true)
})
it('ref focus', async () => {
_mount(`<el-time-select ref="input" />`, () => ({}), {
mounted() {
this.$refs.input.focus()
},
})
await sleep(50)
const popperEl = document.querySelector('.el-select__popper')
const attr = popperEl.getAttribute('aria-hidden')
expect(attr).toEqual('false')
})
it('ref blur', async () => {
_mount(`<el-time-select ref="input" />`, () => ({}), {
async mounted() {
this.$refs.input.focus()
await nextTick()
this.$refs.input.blur()
},
})
await sleep(50)
const popperEl = document.querySelector('.el-select__popper')
const attr = popperEl.getAttribute('aria-hidden')
expect(attr).toEqual('true')
})
})