element-plus/packages/avatar/__tests__/avatar.spec.ts

82 lines
2.2 KiB
TypeScript
Raw Normal View History

2020-08-02 18:27:46 +08:00
import { mount } from '@vue/test-utils'
2020-08-02 21:22:39 +08:00
import { nextTick } from 'vue'
2020-08-02 18:27:46 +08:00
import Avatar from '../src/index.vue'
2020-09-02 17:44:14 +08:00
import { IMAGE_SUCCESS, IMAGE_FAIL } from '@element-plus/test-utils'
2020-08-02 18:27:46 +08:00
2020-08-02 21:22:39 +08:00
beforeAll(() => {
Object.defineProperty(global.Image.prototype, 'src', {
set(src) {
const event = new Event(
2020-08-02 21:29:35 +08:00
src === IMAGE_FAIL ? 'error' : 'load',
2020-08-02 21:22:39 +08:00
)
nextTick(() => this.dispatchEvent(event))
},
})
})
2020-08-02 18:27:46 +08:00
describe('Avatar.vue', () => {
test('render test', () => {
2020-08-02 21:22:39 +08:00
const wrapper = mount(Avatar)
expect(wrapper.find('.el-avatar').exists()).toBe(true)
})
test('size is number', () => {
const wrapper = mount(Avatar, {
2020-08-02 21:29:35 +08:00
props: { size: 50 },
2020-08-02 21:22:39 +08:00
})
expect(wrapper.attributes('style')).toContain('height: 50px')
})
test('size is string', () => {
const wrapper = mount(Avatar, {
2020-08-02 21:29:35 +08:00
props: { size: 'small' },
2020-08-02 21:22:39 +08:00
})
expect(wrapper.classes()).toContain('el-avatar--small')
})
test('shape', () => {
const wrapper = mount(Avatar, {
2020-08-02 21:29:35 +08:00
props: { size: 'small', shape: 'square' },
2020-08-02 21:22:39 +08:00
})
expect(wrapper.classes()).toContain('el-avatar--square')
})
test('icon avatar', () => {
const wrapper = mount(Avatar, {
2020-08-02 21:29:35 +08:00
props: { icon: 'el-icon-user-solid' },
2020-08-02 21:22:39 +08:00
})
expect(wrapper.classes()).toContain('el-avatar--icon')
expect(wrapper.find('i').classes()).toContain('el-icon-user-solid')
})
test('image avatar', () => {
2020-08-02 18:27:46 +08:00
const wrapper = mount(Avatar, {
2020-08-02 21:29:35 +08:00
props: { src: IMAGE_SUCCESS },
2020-08-02 18:27:46 +08:00
})
2020-08-02 21:22:39 +08:00
expect(wrapper.find('img').exists()).toBe(true)
})
test('image fallback', async () => {
const wrapper = mount(Avatar, {
2020-08-02 21:29:35 +08:00
props: { src: IMAGE_FAIL },
slots: { default: 'fallback' },
2020-08-02 21:22:39 +08:00
})
await nextTick()
expect(wrapper.emitted('error')).toBeDefined()
await nextTick()
expect(wrapper.text()).toBe('fallback')
expect(wrapper.find('img').exists()).toBe(false)
})
test('image fit', () => {
const fits = ['fill', 'contain', 'cover', 'none', 'scale-down']
2020-08-02 21:29:35 +08:00
for (const fit of fits) {
2020-08-02 21:22:39 +08:00
const wrapper = mount(Avatar, {
props: { fit, src: IMAGE_SUCCESS },
})
expect(wrapper.find('img').attributes('style')).toContain(`object-fit: ${fit};`)
}
2020-08-02 18:27:46 +08:00
})
})
2020-08-27 21:22:32 +08:00