mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
* email templates with pug for all possible notification emails * more information in emails * Individual email subjects to all notification emails --------- Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de> Co-authored-by: mahula <lenzmath@posteo.de>
143 lines
3.8 KiB
TypeScript
143 lines
3.8 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-unsafe-call */
|
|
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
|
|
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
|
|
/* eslint-disable @typescript-eslint/no-unsafe-return */
|
|
import { createTestClient } from 'apollo-server-testing'
|
|
import gql from 'graphql-tag'
|
|
|
|
import databaseContext from '@context/database'
|
|
import Factory, { cleanDatabase } from '@db/factories'
|
|
import CONFIG from '@src/config'
|
|
import createServer, { getContext } from '@src/server'
|
|
|
|
CONFIG.CATEGORIES_ACTIVE = false
|
|
|
|
const sendNotificationMailMock: (notification) => void = jest.fn()
|
|
jest.mock('@src/emails/sendEmail', () => ({
|
|
sendNotificationMail: (notification) => sendNotificationMailMock(notification),
|
|
}))
|
|
|
|
let isUserOnlineMock = jest.fn().mockReturnValue(false)
|
|
jest.mock('../helpers/isUserOnline', () => ({
|
|
isUserOnline: () => isUserOnlineMock(),
|
|
}))
|
|
|
|
let mutate, authenticatedUser
|
|
|
|
let postAuthor
|
|
|
|
const createPostMutation = gql`
|
|
mutation ($id: ID, $title: String!, $content: String!, $groupId: ID) {
|
|
CreatePost(id: $id, title: $title, content: $content, groupId: $groupId) {
|
|
id
|
|
title
|
|
content
|
|
}
|
|
}
|
|
`
|
|
|
|
const database = databaseContext()
|
|
|
|
beforeAll(async () => {
|
|
await cleanDatabase()
|
|
|
|
// eslint-disable-next-line @typescript-eslint/require-await
|
|
const contextUser = async (_req) => authenticatedUser
|
|
const context = getContext({ user: contextUser, database })
|
|
|
|
const { server } = createServer({ context })
|
|
|
|
const createTestClientResult = createTestClient(server)
|
|
mutate = createTestClientResult.mutate
|
|
})
|
|
|
|
afterAll(async () => {
|
|
await cleanDatabase()
|
|
await database.driver.close()
|
|
})
|
|
|
|
afterEach(async () => {
|
|
await cleanDatabase()
|
|
})
|
|
|
|
describe('online status and sending emails', () => {
|
|
beforeEach(async () => {
|
|
postAuthor = await Factory.build(
|
|
'user',
|
|
{
|
|
id: 'post-author',
|
|
name: 'Post Author',
|
|
slug: 'post-author',
|
|
},
|
|
{
|
|
email: 'test@example.org',
|
|
password: '1234',
|
|
},
|
|
)
|
|
await Factory.build(
|
|
'user',
|
|
{
|
|
id: 'other-user',
|
|
name: 'Other User',
|
|
slug: 'other-user',
|
|
},
|
|
{
|
|
email: 'test2@example.org',
|
|
password: '1234',
|
|
},
|
|
)
|
|
})
|
|
|
|
describe('user is online', () => {
|
|
beforeAll(() => {
|
|
isUserOnlineMock = jest.fn().mockReturnValue(true)
|
|
})
|
|
|
|
describe('mentioned in post', () => {
|
|
beforeEach(async () => {
|
|
jest.clearAllMocks()
|
|
authenticatedUser = await postAuthor.toJson()
|
|
await mutate({
|
|
mutation: createPostMutation,
|
|
variables: {
|
|
id: 'post-online-1',
|
|
title: 'This post mentions the other user',
|
|
content:
|
|
'Hello <a class="mention" data-mention-id="other-user" href="/profile/other-user/other-user">@other-user</a>, are you fine?',
|
|
},
|
|
})
|
|
})
|
|
|
|
it('sends NO email to the other user', () => {
|
|
expect(sendNotificationMailMock).not.toBeCalled()
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('user is offline', () => {
|
|
beforeAll(() => {
|
|
isUserOnlineMock = jest.fn().mockReturnValue(false)
|
|
})
|
|
|
|
describe('mentioned in post', () => {
|
|
beforeEach(async () => {
|
|
jest.clearAllMocks()
|
|
authenticatedUser = await postAuthor.toJson()
|
|
await mutate({
|
|
mutation: createPostMutation,
|
|
variables: {
|
|
id: 'post-offline-1',
|
|
title: 'This post mentions the other user',
|
|
content:
|
|
'Hello <a class="mention" data-mention-id="other-user" href="/profile/other-user/other-user">@other-user</a>, are you fine?',
|
|
},
|
|
})
|
|
})
|
|
|
|
it('sends email to the other user', () => {
|
|
expect(sendNotificationMailMock).toBeCalledTimes(1)
|
|
})
|
|
})
|
|
})
|
|
})
|