mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
Created a folder `utils` for PostHelpers.js. Fixed a new incoming problem of the master with deleting Posts on the User Profile. Co-Authored-By: mattwr18 <mattwr18@gmail.com>
140 lines
3.4 KiB
JavaScript
140 lines
3.4 KiB
JavaScript
import { config, shallowMount, createLocalVue } from '@vue/test-utils'
|
|
import Comment from './Comment.vue'
|
|
import Vuex from 'vuex'
|
|
import Styleguide from '@human-connection/styleguide'
|
|
|
|
const localVue = createLocalVue()
|
|
|
|
localVue.use(Vuex)
|
|
localVue.use(Styleguide)
|
|
|
|
config.stubs['no-ssr'] = '<span><slot /></span>'
|
|
|
|
describe('Comment.vue', () => {
|
|
let propsData
|
|
let mocks
|
|
let getters
|
|
let wrapper
|
|
let Wrapper
|
|
|
|
beforeEach(() => {
|
|
propsData = {}
|
|
mocks = {
|
|
$t: jest.fn(),
|
|
$toast: {
|
|
success: jest.fn(),
|
|
error: jest.fn(),
|
|
},
|
|
$filters: {
|
|
truncate: a => a,
|
|
},
|
|
$apollo: {
|
|
mutate: jest.fn().mockResolvedValue(),
|
|
},
|
|
}
|
|
getters = {
|
|
'auth/user': () => {
|
|
return {}
|
|
},
|
|
'auth/isModerator': () => false,
|
|
}
|
|
})
|
|
|
|
describe('shallowMount', () => {
|
|
Wrapper = () => {
|
|
const store = new Vuex.Store({
|
|
getters,
|
|
})
|
|
return shallowMount(Comment, {
|
|
store,
|
|
propsData,
|
|
mocks,
|
|
localVue,
|
|
})
|
|
}
|
|
|
|
describe('given a comment', () => {
|
|
beforeEach(() => {
|
|
propsData.comment = {
|
|
id: '2',
|
|
contentExcerpt: 'Hello I am a comment content',
|
|
}
|
|
})
|
|
|
|
it('renders content', () => {
|
|
wrapper = Wrapper()
|
|
expect(wrapper.text()).toMatch('Hello I am a comment content')
|
|
})
|
|
|
|
describe('which is disabled', () => {
|
|
beforeEach(() => {
|
|
propsData.comment.disabled = true
|
|
})
|
|
|
|
it('renders no comment data', () => {
|
|
wrapper = Wrapper()
|
|
expect(wrapper.text()).not.toMatch('comment content')
|
|
})
|
|
|
|
it('has no "disabled-content" css class', () => {
|
|
wrapper = Wrapper()
|
|
expect(wrapper.classes()).not.toContain('disabled-content')
|
|
})
|
|
|
|
it('translates a placeholder', () => {
|
|
wrapper = Wrapper()
|
|
const calls = mocks.$t.mock.calls
|
|
const expected = [['comment.content.unavailable-placeholder']]
|
|
expect(calls).toEqual(expect.arrayContaining(expected))
|
|
})
|
|
|
|
describe('for a moderator', () => {
|
|
beforeEach(() => {
|
|
getters['auth/isModerator'] = () => true
|
|
})
|
|
|
|
it('renders comment data', () => {
|
|
wrapper = Wrapper()
|
|
expect(wrapper.text()).toMatch('comment content')
|
|
})
|
|
|
|
it('has a "disabled-content" css class', () => {
|
|
wrapper = Wrapper()
|
|
expect(wrapper.classes()).toContain('disabled-content')
|
|
})
|
|
})
|
|
})
|
|
|
|
beforeEach(jest.useFakeTimers)
|
|
|
|
describe('test callbacks', () => {
|
|
beforeEach(() => {
|
|
wrapper = Wrapper()
|
|
})
|
|
|
|
describe('deletion of Comment from List by invoking "deleteCommentCallback()"', () => {
|
|
beforeEach(() => {
|
|
wrapper.vm.deleteCommentCallback()
|
|
})
|
|
|
|
describe('after timeout', () => {
|
|
beforeEach(jest.runAllTimers)
|
|
|
|
it('emits "deleteComment"', () => {
|
|
expect(wrapper.emitted().deleteComment.length).toBe(1)
|
|
})
|
|
|
|
it('does call mutation', () => {
|
|
expect(mocks.$apollo.mutate).toHaveBeenCalledTimes(1)
|
|
})
|
|
|
|
it('mutation is successful', () => {
|
|
expect(mocks.$toast.success).toHaveBeenCalledTimes(1)
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|