126 lines
3.8 KiB
TypeScript
126 lines
3.8 KiB
TypeScript
import Vue from 'vue'
|
|
import { mount } from '@vue/test-utils'
|
|
import { MessageBoxData } from 'element-ui/types/message-box'
|
|
import { flushPromises } from '../utils'
|
|
import ClosetItem from '@/components/ClosetItem.vue'
|
|
|
|
function factory(opt = {}) {
|
|
return {
|
|
tid: 1,
|
|
name: 'texture',
|
|
type: 'steve',
|
|
...opt,
|
|
}
|
|
}
|
|
|
|
test('computed values', () => {
|
|
const wrapper = mount(ClosetItem, { propsData: factory() })
|
|
expect(wrapper.find('img').attributes('src')).toBe('/preview/1.png')
|
|
expect(wrapper.find('a.more').attributes('href')).toBe('/skinlib/show/1')
|
|
})
|
|
|
|
test('selected item', () => {
|
|
const wrapper = mount(ClosetItem, { propsData: factory({ selected: true }) })
|
|
expect(wrapper.find('.item').classes('item-selected')).toBeTrue()
|
|
})
|
|
|
|
test('click item body', () => {
|
|
const wrapper = mount(ClosetItem, { propsData: factory() })
|
|
|
|
wrapper.find('.item').trigger('click')
|
|
expect(wrapper.emitted().select).toBeUndefined()
|
|
|
|
wrapper.find('.item-body').trigger('click')
|
|
expect(wrapper.emitted().select).toBeTruthy()
|
|
})
|
|
|
|
test('rename texture', async () => {
|
|
Vue.prototype.$http.post
|
|
.mockResolvedValueOnce({ code: 0 })
|
|
.mockResolvedValueOnce({ code: 1 })
|
|
Vue.prototype.$prompt.mockImplementationOnce(() => Promise.reject(new Error()))
|
|
.mockImplementation((_, options) => {
|
|
if (options.inputValidator) {
|
|
options.inputValidator('name')
|
|
options.inputValidator('')
|
|
}
|
|
return Promise.resolve({ value: 'new-name' } as MessageBoxData)
|
|
})
|
|
const wrapper = mount(ClosetItem, { propsData: factory() })
|
|
const button = wrapper.findAll('.dropdown-menu > li').at(0)
|
|
.find('a')
|
|
|
|
button.trigger('click')
|
|
await wrapper.vm.$nextTick()
|
|
expect(Vue.prototype.$http.post).not.toBeCalled()
|
|
|
|
button.trigger('click')
|
|
await wrapper.vm.$nextTick()
|
|
|
|
button.trigger('click')
|
|
await flushPromises()
|
|
expect(wrapper.find('.texture-name > span').text()).toBe('new-name (steve)')
|
|
expect(Vue.prototype.$http.post).toBeCalledWith(
|
|
'/user/closet/rename',
|
|
{ tid: 1, new_name: 'new-name' }
|
|
)
|
|
})
|
|
|
|
test('remove texture', async () => {
|
|
Vue.prototype.$http.post
|
|
.mockResolvedValueOnce({ code: 0 })
|
|
.mockResolvedValueOnce({ code: 1 })
|
|
Vue.prototype.$confirm
|
|
.mockRejectedValueOnce({})
|
|
.mockResolvedValue('confirm')
|
|
|
|
const wrapper = mount(ClosetItem, { propsData: factory() })
|
|
const button = wrapper.findAll('.dropdown-menu > li').at(1)
|
|
.find('a')
|
|
|
|
button.trigger('click')
|
|
await wrapper.vm.$nextTick()
|
|
expect(Vue.prototype.$http.post).not.toBeCalled()
|
|
|
|
button.trigger('click')
|
|
await wrapper.vm.$nextTick()
|
|
|
|
button.trigger('click')
|
|
await flushPromises()
|
|
expect(wrapper.emitted()['item-removed']).toBeTruthy()
|
|
expect(Vue.prototype.$http.post).toBeCalledWith('/user/closet/remove', { tid: 1 })
|
|
})
|
|
|
|
test('set as avatar', async () => {
|
|
Vue.prototype.$http.post
|
|
.mockResolvedValueOnce({ code: 0 })
|
|
.mockResolvedValueOnce({ code: 1 })
|
|
Vue.prototype.$confirm
|
|
.mockRejectedValueOnce({})
|
|
.mockResolvedValue('confirm')
|
|
|
|
const wrapper = mount(ClosetItem, { propsData: factory() })
|
|
const button = wrapper.findAll('.dropdown-menu > li').at(2)
|
|
.find('a')
|
|
document.body.innerHTML += '<img alt="User Image" src="a">'
|
|
|
|
button.trigger('click')
|
|
await wrapper.vm.$nextTick()
|
|
expect(Vue.prototype.$http.post).not.toBeCalled()
|
|
|
|
button.trigger('click')
|
|
await wrapper.vm.$nextTick()
|
|
|
|
button.trigger('click')
|
|
await flushPromises()
|
|
await wrapper.vm.$nextTick()
|
|
expect(Vue.prototype.$http.post).toBeCalledWith('/user/profile/avatar', { tid: 1 })
|
|
expect(document.querySelector('img')!.src).toMatch(/\d+$/)
|
|
})
|
|
|
|
test('no avatar option if texture is cape', () => {
|
|
const wrapper = mount(ClosetItem, { propsData: factory({ type: 'cape' }) })
|
|
const button = wrapper.findAll('.dropdown-menu > li').at(2)
|
|
expect(button.isEmpty()).toBeTrue()
|
|
})
|