mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
refresh notifications after mark all as read, fix tests
This commit is contained in:
parent
b64e35c69b
commit
c865b72fa3
@ -1,4 +1,4 @@
|
|||||||
import { shallowMount, mount } from '@vue/test-utils'
|
import { mount } from '@vue/test-utils'
|
||||||
import NotificationsPage from './index.vue'
|
import NotificationsPage from './index.vue'
|
||||||
|
|
||||||
import DropdownFilter from '~/components/DropdownFilter/DropdownFilter'
|
import DropdownFilter from '~/components/DropdownFilter/DropdownFilter'
|
||||||
@ -10,13 +10,13 @@ const localVue = global.localVue
|
|||||||
|
|
||||||
const stubs = {
|
const stubs = {
|
||||||
'client-only': true,
|
'client-only': true,
|
||||||
|
'notifications-table': true,
|
||||||
}
|
}
|
||||||
|
|
||||||
describe('PostIndex', () => {
|
describe('PostIndex', () => {
|
||||||
let wrapper, Wrapper, mocks, propsData, markAllAsReadButton
|
let wrapper, Wrapper, mocks
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
propsData = {}
|
|
||||||
mocks = {
|
mocks = {
|
||||||
$t: (string) => string,
|
$t: (string) => string,
|
||||||
$toast: {
|
$toast: {
|
||||||
@ -38,97 +38,97 @@ describe('PostIndex', () => {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('shallowMount', () => {
|
|
||||||
beforeEach(() => {
|
|
||||||
Wrapper = () => {
|
|
||||||
return shallowMount(NotificationsPage, {
|
|
||||||
mocks,
|
|
||||||
localVue,
|
|
||||||
propsData,
|
|
||||||
stubs,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
wrapper = Wrapper()
|
|
||||||
})
|
|
||||||
|
|
||||||
it('renders a Notications header', () => {
|
|
||||||
expect(wrapper.find('ds-heading-stub').exists()).toBe(true)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('renders a `dropdown-filter` component', () => {
|
|
||||||
expect(wrapper.find('dropdown-filter-stub').exists()).toBe(true)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('renders a `notifications-table` component', () => {
|
|
||||||
expect(wrapper.find('notifications-table-stub').exists()).toBe(true)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
describe('mount', () => {
|
describe('mount', () => {
|
||||||
|
jest.clearAllMocks()
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
Wrapper = () => {
|
Wrapper = () => {
|
||||||
return mount(NotificationsPage, {
|
return mount(NotificationsPage, {
|
||||||
mocks,
|
mocks,
|
||||||
localVue,
|
localVue,
|
||||||
propsData,
|
|
||||||
stubs,
|
stubs,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
wrapper = Wrapper()
|
||||||
|
wrapper.setData({
|
||||||
|
notifications: [
|
||||||
|
{
|
||||||
|
id: 'mentioned_in_comment/c4-1/u1',
|
||||||
|
read: false,
|
||||||
|
reason: 'mentioned_in_comment',
|
||||||
|
createdAt: '2023-03-06T14:32:47.924Z',
|
||||||
|
updatedAt: '2023-03-06T14:32:47.924Z',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'mentioned_in_post/p8/u1',
|
||||||
|
read: false,
|
||||||
|
reason: 'mentioned_in_post',
|
||||||
|
createdAt: '2023-03-06T14:32:47.667Z',
|
||||||
|
updatedAt: '2023-03-06T14:32:47.667Z',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
it('renders a Notications header', () => {
|
||||||
|
expect(wrapper.find('.ds-heading').exists()).toBe(true)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('renders a `dropdown-filter` component', () => {
|
||||||
|
expect(wrapper.find('.dropdown-filter').exists()).toBe(true)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('renders a `notifications-table` component', () => {
|
||||||
|
expect(wrapper.findComponent(NotificationsTable).exists()).toBe(true)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('renders a `mark-all-as-read` button', () => {
|
||||||
|
expect(wrapper.find('[data-test="markAllAsRead-button"]').exists()).toBe(true)
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('filter', () => {
|
describe('filter', () => {
|
||||||
|
it('has "All" as default', () => {
|
||||||
|
expect(wrapper.find('a.dropdown-filter').text()).toBe('notifications.filterLabel.all')
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('select Read', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
propsData.filterOptions = [
|
wrapper.findComponent(DropdownFilter).vm.$emit('filter', wrapper.vm.filterOptions[1])
|
||||||
{ label: 'All', value: null },
|
|
||||||
{ label: 'Read', value: true },
|
|
||||||
{ label: 'Unread', value: false },
|
|
||||||
]
|
|
||||||
wrapper = Wrapper()
|
|
||||||
markAllAsReadButton = wrapper.find('[data-test="markAllAsRead-button"]')
|
|
||||||
expect(markAllAsReadButton).toBeTruthy()
|
|
||||||
wrapper.findComponent(DropdownFilter).vm.$emit('filter', propsData.filterOptions[1])
|
|
||||||
})
|
})
|
||||||
|
|
||||||
it('sets `notificationRead` to value of received option', () => {
|
it('sets `notificationRead` to value of received option', () => {
|
||||||
expect(wrapper.vm.notificationRead).toEqual(propsData.filterOptions[1].value)
|
expect(wrapper.vm.notificationRead).toEqual(wrapper.vm.filterOptions[1].value)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('set label to the label of the received option', () => {
|
it('sets label to the label of the received option', () => {
|
||||||
expect(wrapper.vm.selected).toEqual(propsData.filterOptions[1].label)
|
expect(wrapper.vm.selected).toEqual(wrapper.vm.filterOptions[1].label)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('refreshes the notifications', () => {
|
it('refreshes the notifications', () => {
|
||||||
expect(mocks.$apollo.queries.notifications.refresh).toHaveBeenCalledTimes(1)
|
expect(mocks.$apollo.queries.notifications.refresh).toHaveBeenCalledTimes(1)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('click on `mark all as read` button', async () => {
|
|
||||||
await markAllAsReadButton.trigger('click')
|
|
||||||
expect(mocks.$apollo.mutate).not.toHaveBeenCalled()
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('markAllAsRead', () => {
|
describe('markNotificationAsRead', () => {
|
||||||
let expectedParams
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
wrapper = Wrapper()
|
|
||||||
wrapper
|
wrapper
|
||||||
.findComponentComponent(NotificationsTable)
|
.findComponent(NotificationsTable)
|
||||||
.vm.$emit('markNotificationAsRead', 'notificationSourceId')
|
.vm.$emit('markNotificationAsRead', 'notificationSourceId')
|
||||||
})
|
})
|
||||||
|
|
||||||
it('calls markAllAsRead mutation', () => {
|
it('calls markAllAsRead mutation', () => {
|
||||||
expectedParams = {
|
expect(mocks.$apollo.mutate).toHaveBeenCalledWith({
|
||||||
mutation: markAsReadMutation(),
|
mutation: markAsReadMutation(),
|
||||||
variables: { id: 'notificationSourceId' },
|
variables: { id: 'notificationSourceId' },
|
||||||
}
|
})
|
||||||
expect(mocks.$apollo.mutate).toHaveBeenCalledWith(expect.objectContaining(expectedParams))
|
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('error handling', () => {
|
describe('error handling', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
mocks.$apollo.mutate = jest.fn().mockRejectedValueOnce({ message: 'Some error message' })
|
mocks.$apollo.mutate = jest.fn().mockRejectedValueOnce({ message: 'Some error message' })
|
||||||
wrapper = Wrapper()
|
wrapper
|
||||||
wrapper.findComponent(NotificationsTable).vm.$emit('markAllAsRead', 'notificationSourceId')
|
.findComponent(NotificationsTable)
|
||||||
|
.vm.$emit('markNotificationAsRead', 'notificationSourceId')
|
||||||
})
|
})
|
||||||
|
|
||||||
it('shows an error message if there is an error', () => {
|
it('shows an error message if there is an error', () => {
|
||||||
@ -138,37 +138,21 @@ describe('PostIndex', () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
describe('markAllNotificationAsRead', () => {
|
describe('markAllNotificationAsRead', () => {
|
||||||
let expectedParams
|
it('calls markAllNotificationAsRead mutation and refreshes notification', async () => {
|
||||||
beforeEach(() => {
|
wrapper.find('button[data-test="markAllAsRead-button"]').trigger('click')
|
||||||
wrapper = Wrapper()
|
await expect(mocks.$apollo.mutate).toHaveBeenCalledWith({
|
||||||
// FIXME Should I remove next line?
|
|
||||||
wrapper.find(NotificationsTable).vm.$emit('markAllAsRead', 'notificationSourceId')
|
|
||||||
})
|
|
||||||
|
|
||||||
// FIXME: I need to discover why this test isn't working =(
|
|
||||||
it.skip('calls markAllNotificationAsRead mutation', async () => {
|
|
||||||
expectedParams = {
|
|
||||||
mutation: markAllAsReadMutation(),
|
mutation: markAllAsReadMutation(),
|
||||||
}
|
})
|
||||||
// expect(mocks.$apollo.mutate).toHaveBeenCalledWith(expect.objectContaining(expectedParams))
|
expect(mocks.$apollo.queries.notifications.refresh).toHaveBeenCalledTimes(1)
|
||||||
// await wrapper.find('[data-test="markAllAsRead-button"]').trigger('click')
|
|
||||||
|
|
||||||
expect(mocks.$apollo.mutate).toHaveBeenCalledWith(expect.objectContaining(expectedParams))
|
|
||||||
})
|
})
|
||||||
|
|
||||||
describe('error handling', () => {
|
describe('error handling', () => {
|
||||||
beforeEach(() => {
|
it('shows an error message if there is an error', async () => {
|
||||||
mocks.$apollo.mutate = jest.fn().mockRejectedValueOnce({ message: 'Some error message' })
|
mocks.$apollo.mutate = jest
|
||||||
wrapper = Wrapper()
|
.fn()
|
||||||
// FIXME Should I remove next line?
|
.mockRejectedValueOnce({ message: 'Another error message' })
|
||||||
wrapper.findComponent(NotificationsTable).vm.$emit('markAllAsRead', 'notificationSourceId')
|
await wrapper.find('button[data-test="markAllAsRead-button"]').trigger('click')
|
||||||
wrapper
|
expect(mocks.$toast.error).toHaveBeenCalledWith('Another error message')
|
||||||
.findComponent(NotificationsTable)
|
|
||||||
.vm.$emit('markNotificationAsRead', 'notificationSourceId')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('shows an error message if there is an error', () => {
|
|
||||||
expect(mocks.$toast.error).toHaveBeenCalledWith('Some error message')
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
@ -115,6 +115,7 @@ export default {
|
|||||||
await this.$apollo.mutate({
|
await this.$apollo.mutate({
|
||||||
mutation: markAllAsReadMutation(this.$i18n),
|
mutation: markAllAsReadMutation(this.$i18n),
|
||||||
})
|
})
|
||||||
|
this.$apollo.queries.notifications.refresh()
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this.$toast.error(error.message)
|
this.$toast.error(error.message)
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user