mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
200 lines
4.5 KiB
JavaScript
200 lines
4.5 KiB
JavaScript
import { shallowMount, mount, createLocalVue } from '@vue/test-utils'
|
|
import DisableModal from './DisableModal.vue'
|
|
import Styleguide from '@human-connection/styleguide'
|
|
|
|
const localVue = createLocalVue()
|
|
|
|
localVue.use(Styleguide)
|
|
|
|
describe('DisableModal.vue', () => {
|
|
let mocks
|
|
let propsData
|
|
let wrapper
|
|
|
|
beforeEach(() => {
|
|
propsData = {
|
|
type: 'contribution',
|
|
id: 'c42',
|
|
name: 'blah',
|
|
}
|
|
mocks = {
|
|
$filters: {
|
|
truncate: a => a,
|
|
},
|
|
$toast: {
|
|
success: jest.fn(),
|
|
error: jest.fn(),
|
|
},
|
|
$t: jest.fn(),
|
|
$apollo: {
|
|
mutate: jest
|
|
.fn()
|
|
.mockResolvedValueOnce()
|
|
.mockRejectedValue({
|
|
message: 'Not Authorised!',
|
|
}),
|
|
},
|
|
location: {
|
|
reload: jest.fn(),
|
|
},
|
|
}
|
|
})
|
|
|
|
describe('shallowMount', () => {
|
|
const Wrapper = () => {
|
|
return shallowMount(DisableModal, {
|
|
propsData,
|
|
mocks,
|
|
localVue,
|
|
})
|
|
}
|
|
|
|
describe('given a user', () => {
|
|
beforeEach(() => {
|
|
propsData = {
|
|
...propsData,
|
|
type: 'user',
|
|
name: 'Bob Ross',
|
|
id: 'u2',
|
|
}
|
|
})
|
|
|
|
it('mentions user name', () => {
|
|
Wrapper()
|
|
const calls = mocks.$t.mock.calls
|
|
const expected = [
|
|
[
|
|
'disable.user.message',
|
|
{
|
|
name: 'Bob Ross',
|
|
},
|
|
],
|
|
]
|
|
expect(calls).toEqual(expect.arrayContaining(expected))
|
|
})
|
|
})
|
|
|
|
describe('given a contribution', () => {
|
|
beforeEach(() => {
|
|
propsData = {
|
|
...propsData,
|
|
type: 'contribution',
|
|
name: 'This is some post title.',
|
|
id: 'c3',
|
|
}
|
|
})
|
|
|
|
it('mentions contribution title', () => {
|
|
Wrapper()
|
|
const calls = mocks.$t.mock.calls
|
|
const expected = [
|
|
[
|
|
'disable.contribution.message',
|
|
{
|
|
name: 'This is some post title.',
|
|
},
|
|
],
|
|
]
|
|
expect(calls).toEqual(expect.arrayContaining(expected))
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('mount', () => {
|
|
const Wrapper = () => {
|
|
return mount(DisableModal, {
|
|
propsData,
|
|
mocks,
|
|
localVue,
|
|
})
|
|
}
|
|
beforeEach(jest.useFakeTimers)
|
|
|
|
describe('given id', () => {
|
|
beforeEach(() => {
|
|
propsData = {
|
|
...propsData,
|
|
type: 'user',
|
|
id: 'u4711',
|
|
}
|
|
})
|
|
|
|
describe('click cancel button', () => {
|
|
beforeEach(async () => {
|
|
wrapper = Wrapper()
|
|
await 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('does not call mutation', () => {
|
|
expect(mocks.$apollo.mutate).not.toHaveBeenCalled()
|
|
})
|
|
|
|
it('emits close', () => {
|
|
expect(wrapper.emitted().close).toBeTruthy()
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('click confirm button', () => {
|
|
beforeEach(async () => {
|
|
wrapper = Wrapper()
|
|
await wrapper.find('button.confirm').trigger('click')
|
|
})
|
|
|
|
afterEach(() => {
|
|
jest.clearAllMocks()
|
|
})
|
|
|
|
it('calls mutation', () => {
|
|
expect(mocks.$apollo.mutate).toHaveBeenCalled()
|
|
})
|
|
|
|
it('passes parameters to mutation', () => {
|
|
const calls = mocks.$apollo.mutate.mock.calls
|
|
const [[{ variables }]] = calls
|
|
expect(variables).toMatchObject({
|
|
resourceId: 'u4711',
|
|
disable: true,
|
|
closed: false,
|
|
})
|
|
})
|
|
|
|
it('fades away', () => {
|
|
expect(wrapper.vm.isOpen).toBe(false)
|
|
})
|
|
|
|
describe('after timeout', () => {
|
|
beforeEach(jest.runAllTimers)
|
|
|
|
it('emits close', () => {
|
|
expect(wrapper.emitted().close).toBeTruthy()
|
|
})
|
|
})
|
|
|
|
describe('handles errors', () => {
|
|
beforeEach(() => {
|
|
wrapper = Wrapper()
|
|
// second submission causes mutation to reject
|
|
wrapper.find('button.confirm').trigger('click')
|
|
})
|
|
|
|
it('shows an error toaster when mutation rejects', async () => {
|
|
await expect(mocks.$toast.error).toHaveBeenCalledWith('Not Authorised!')
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|