mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
124 lines
2.4 KiB
JavaScript
124 lines
2.4 KiB
JavaScript
import { mount, shallowMount } from '@vue/test-utils'
|
|
import Vuex from 'vuex'
|
|
import DeleteUserModal from './DeleteUserModal.vue'
|
|
const localVue = global.localVue
|
|
|
|
const stubs = {
|
|
'sweetalert-icon': true,
|
|
'nuxt-link': true,
|
|
'client-only': true,
|
|
}
|
|
|
|
localVue.use(DeleteUserModal)
|
|
|
|
const getters = {
|
|
'auth/isAdmin': () => true,
|
|
'auth/isModerator': () => false,
|
|
}
|
|
|
|
describe('DeleteUserModal.vue', () => {
|
|
const store = new Vuex.Store({ getters })
|
|
let wrapper
|
|
let propsData = {
|
|
userdata: {
|
|
name: 'another-user',
|
|
slug: 'another-user',
|
|
createdAt: '2020-08-12T08:34:05.803Z',
|
|
contributionsCount: '4',
|
|
commentedCount: '2',
|
|
},
|
|
}
|
|
const mocks = {
|
|
$t: jest.fn(),
|
|
$filters: {
|
|
truncate: (a) => a,
|
|
},
|
|
$toast: {
|
|
success: jest.fn(),
|
|
error: jest.fn(),
|
|
},
|
|
$i18n: {
|
|
locale: () => 'en',
|
|
},
|
|
}
|
|
|
|
afterEach(() => {
|
|
jest.clearAllMocks()
|
|
})
|
|
|
|
describe('shallowMount', () => {
|
|
const Wrapper = () => {
|
|
return shallowMount(DeleteUserModal, {
|
|
propsData,
|
|
mocks,
|
|
store,
|
|
localVue,
|
|
stubs,
|
|
})
|
|
}
|
|
|
|
describe('defaults', () => {
|
|
beforeEach(() => {
|
|
wrapper = Wrapper()
|
|
})
|
|
|
|
it('success false', () => {
|
|
expect(wrapper.vm.success).toBe(false)
|
|
})
|
|
|
|
it('loading false', () => {
|
|
expect(wrapper.vm.loading).toBe(false)
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('mount', () => {
|
|
const Wrapper = () => {
|
|
return mount(DeleteUserModal, {
|
|
propsData,
|
|
mocks,
|
|
store,
|
|
localVue,
|
|
stubs,
|
|
})
|
|
}
|
|
beforeEach(() => {
|
|
jest.useFakeTimers()
|
|
})
|
|
|
|
describe('given another user', () => {
|
|
beforeEach(() => {
|
|
propsData = {
|
|
...propsData,
|
|
type: 'user',
|
|
id: 'u4711',
|
|
}
|
|
wrapper = Wrapper()
|
|
})
|
|
|
|
describe('click cancel button', () => {
|
|
beforeEach(() => {
|
|
wrapper = Wrapper()
|
|
wrapper.find('button.cancel').trigger('click')
|
|
})
|
|
|
|
it('does not emit "close" yet', () => {
|
|
expect(wrapper.emitted().close).toBeFalsy()
|
|
})
|
|
|
|
it('fades away', () => {
|
|
expect(wrapper.vm.isOpen).toBe(false)
|
|
})
|
|
|
|
describe('after timeout', () => {
|
|
beforeEach(jest.runAllTimers)
|
|
|
|
it('emits "close"', () => {
|
|
expect(wrapper.emitted().close).toBeTruthy()
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|