PeerTube/server/tests/api/notifications/comments-notifications.ts

307 lines
12 KiB
TypeScript
Raw Normal View History

2020-06-16 15:52:05 +02:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2022-08-17 15:44:32 +02:00
import { expect } from 'chai'
2020-06-16 15:52:05 +02:00
import {
checkCommentMention,
CheckerBaseParams,
checkNewCommentOnMyVideo,
2021-05-11 11:27:40 +02:00
MockSmtpServer,
prepareNotificationsTest
} from '@server/tests/shared'
2021-07-09 14:15:11 +02:00
import { UserNotification } from '@shared/models'
import { cleanupTests, PeerTubeServer, waitJobs } from '@shared/server-commands'
2020-06-16 15:52:05 +02:00
describe('Test comments notifications', function () {
2021-07-16 09:47:51 +02:00
let servers: PeerTubeServer[] = []
2021-07-09 14:15:11 +02:00
let userToken: string
2020-06-16 15:52:05 +02:00
let userNotifications: UserNotification[] = []
let emails: object[] = []
2020-11-17 14:38:27 +01:00
const commentText = '**hello** <a href="https://joinpeertube.org">world</a>, <h1>what do you think about peertube?</h1>'
const expectedHtml = '<strong style="-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;">hello</strong> ' +
'<a href="https://joinpeertube.org" target="_blank" rel="noopener noreferrer" style="-ms-text-size-adjust: 100%; ' +
'-webkit-text-size-adjust: 100%; text-decoration: none; color: #f2690d;">world</a>, </p>what do you think about peertube?'
2020-06-16 15:52:05 +02:00
before(async function () {
this.timeout(120000)
const res = await prepareNotificationsTest(2)
emails = res.emails
2021-07-09 14:15:11 +02:00
userToken = res.userAccessToken
2020-06-16 15:52:05 +02:00
servers = res.servers
userNotifications = res.userNotifications
})
describe('Comment on my video notifications', function () {
let baseParams: CheckerBaseParams
before(() => {
baseParams = {
server: servers[0],
emails,
socketNotifications: userNotifications,
2021-07-09 14:15:11 +02:00
token: userToken
2020-06-16 15:52:05 +02:00
}
})
it('Should not send a new comment notification after a comment on another video', async function () {
2022-11-29 10:25:26 +01:00
this.timeout(30000)
2020-06-16 15:52:05 +02:00
const { uuid, shortUUID } = await servers[0].videos.upload({ attributes: { name: 'super video' } })
2020-06-16 15:52:05 +02:00
2021-07-16 09:04:35 +02:00
const created = await servers[0].comments.createThread({ videoId: uuid, text: 'comment' })
2021-07-09 14:15:11 +02:00
const commentId = created.id
2020-06-16 15:52:05 +02:00
2020-06-17 10:55:40 +02:00
await waitJobs(servers)
await checkNewCommentOnMyVideo({ ...baseParams, shortUUID, threadId: commentId, commentId, checkType: 'absence' })
2020-06-16 15:52:05 +02:00
})
it('Should not send a new comment notification if I comment my own video', async function () {
2022-11-29 10:25:26 +01:00
this.timeout(30000)
2020-06-16 15:52:05 +02:00
const { uuid, shortUUID } = await servers[0].videos.upload({ token: userToken, attributes: { name: 'super video' } })
2020-06-16 15:52:05 +02:00
2021-07-16 09:04:35 +02:00
const created = await servers[0].comments.createThread({ token: userToken, videoId: uuid, text: 'comment' })
2021-07-09 14:15:11 +02:00
const commentId = created.id
2020-06-16 15:52:05 +02:00
2020-06-17 10:55:40 +02:00
await waitJobs(servers)
await checkNewCommentOnMyVideo({ ...baseParams, shortUUID, threadId: commentId, commentId, checkType: 'absence' })
2020-06-16 15:52:05 +02:00
})
it('Should not send a new comment notification if the account is muted', async function () {
2022-11-29 10:25:26 +01:00
this.timeout(30000)
2020-06-16 15:52:05 +02:00
2021-07-16 09:04:35 +02:00
await servers[0].blocklist.addToMyBlocklist({ token: userToken, account: 'root' })
2020-06-16 15:52:05 +02:00
const { uuid, shortUUID } = await servers[0].videos.upload({ token: userToken, attributes: { name: 'super video' } })
2020-06-16 15:52:05 +02:00
2021-07-16 09:04:35 +02:00
const created = await servers[0].comments.createThread({ videoId: uuid, text: 'comment' })
2021-07-09 14:15:11 +02:00
const commentId = created.id
2020-06-16 15:52:05 +02:00
2020-06-17 10:55:40 +02:00
await waitJobs(servers)
await checkNewCommentOnMyVideo({ ...baseParams, shortUUID, threadId: commentId, commentId, checkType: 'absence' })
2020-06-16 15:52:05 +02:00
2021-07-16 09:04:35 +02:00
await servers[0].blocklist.removeFromMyBlocklist({ token: userToken, account: 'root' })
2020-06-16 15:52:05 +02:00
})
it('Should send a new comment notification after a local comment on my video', async function () {
2022-11-29 10:25:26 +01:00
this.timeout(30000)
2020-06-16 15:52:05 +02:00
const { uuid, shortUUID } = await servers[0].videos.upload({ token: userToken, attributes: { name: 'super video' } })
2020-06-16 15:52:05 +02:00
2021-07-16 09:04:35 +02:00
const created = await servers[0].comments.createThread({ videoId: uuid, text: 'comment' })
2021-07-09 14:15:11 +02:00
const commentId = created.id
2020-06-16 15:52:05 +02:00
2020-06-17 10:55:40 +02:00
await waitJobs(servers)
await checkNewCommentOnMyVideo({ ...baseParams, shortUUID, threadId: commentId, commentId, checkType: 'presence' })
2020-06-16 15:52:05 +02:00
})
it('Should send a new comment notification after a remote comment on my video', async function () {
2022-11-29 10:25:26 +01:00
this.timeout(30000)
2020-06-16 15:52:05 +02:00
const { uuid, shortUUID } = await servers[0].videos.upload({ token: userToken, attributes: { name: 'super video' } })
2020-06-16 15:52:05 +02:00
await waitJobs(servers)
2021-07-16 09:04:35 +02:00
await servers[1].comments.createThread({ videoId: uuid, text: 'comment' })
2020-06-16 15:52:05 +02:00
await waitJobs(servers)
2021-07-16 09:04:35 +02:00
const { data } = await servers[0].comments.listThreads({ videoId: uuid })
2021-07-09 14:15:11 +02:00
expect(data).to.have.lengthOf(1)
2020-06-16 15:52:05 +02:00
2021-07-09 14:15:11 +02:00
const commentId = data[0].id
await checkNewCommentOnMyVideo({ ...baseParams, shortUUID, threadId: commentId, commentId, checkType: 'presence' })
2020-06-16 15:52:05 +02:00
})
it('Should send a new comment notification after a local reply on my video', async function () {
2022-11-29 10:25:26 +01:00
this.timeout(30000)
2020-06-16 15:52:05 +02:00
const { uuid, shortUUID } = await servers[0].videos.upload({ token: userToken, attributes: { name: 'super video' } })
2020-06-16 15:52:05 +02:00
2021-07-16 09:04:35 +02:00
const { id: threadId } = await servers[0].comments.createThread({ videoId: uuid, text: 'comment' })
2020-06-16 15:52:05 +02:00
2021-07-16 09:04:35 +02:00
const { id: commentId } = await servers[0].comments.addReply({ videoId: uuid, toCommentId: threadId, text: 'reply' })
2020-06-16 15:52:05 +02:00
2020-06-17 10:55:40 +02:00
await waitJobs(servers)
await checkNewCommentOnMyVideo({ ...baseParams, shortUUID, threadId, commentId, checkType: 'presence' })
2020-06-16 15:52:05 +02:00
})
it('Should send a new comment notification after a remote reply on my video', async function () {
2022-11-29 10:25:26 +01:00
this.timeout(30000)
2020-06-16 15:52:05 +02:00
const { uuid, shortUUID } = await servers[0].videos.upload({ token: userToken, attributes: { name: 'super video' } })
2020-06-16 15:52:05 +02:00
await waitJobs(servers)
{
2021-07-16 09:04:35 +02:00
const created = await servers[1].comments.createThread({ videoId: uuid, text: 'comment' })
2021-07-09 14:15:11 +02:00
const threadId = created.id
2021-07-16 09:04:35 +02:00
await servers[1].comments.addReply({ videoId: uuid, toCommentId: threadId, text: 'reply' })
2020-06-16 15:52:05 +02:00
}
await waitJobs(servers)
2021-07-16 09:04:35 +02:00
const { data } = await servers[0].comments.listThreads({ videoId: uuid })
2021-07-09 14:15:11 +02:00
expect(data).to.have.lengthOf(1)
2020-06-16 15:52:05 +02:00
2021-07-09 14:15:11 +02:00
const threadId = data[0].id
2021-07-16 09:04:35 +02:00
const tree = await servers[0].comments.getThread({ videoId: uuid, threadId })
2020-06-16 15:52:05 +02:00
expect(tree.children).to.have.lengthOf(1)
const commentId = tree.children[0].comment.id
await checkNewCommentOnMyVideo({ ...baseParams, shortUUID, threadId, commentId, checkType: 'presence' })
2020-06-16 15:52:05 +02:00
})
2020-11-17 14:24:55 +01:00
it('Should convert markdown in comment to html', async function () {
2022-11-29 10:25:26 +01:00
this.timeout(30000)
2020-11-17 14:24:55 +01:00
2021-07-16 09:04:35 +02:00
const { uuid } = await servers[0].videos.upload({ token: userToken, attributes: { name: 'cool video' } })
2020-11-17 14:24:55 +01:00
2021-07-16 09:04:35 +02:00
await servers[0].comments.createThread({ videoId: uuid, text: commentText })
2020-11-17 14:24:55 +01:00
await waitJobs(servers)
const latestEmail = emails[emails.length - 1]
2020-11-17 14:38:27 +01:00
expect(latestEmail['html']).to.contain(expectedHtml)
2020-11-17 14:24:55 +01:00
})
2020-06-16 15:52:05 +02:00
})
describe('Mention notifications', function () {
let baseParams: CheckerBaseParams
const byAccountDisplayName = 'super root name'
2020-06-16 15:52:05 +02:00
before(async () => {
baseParams = {
server: servers[0],
emails,
socketNotifications: userNotifications,
2021-07-09 14:15:11 +02:00
token: userToken
2020-06-16 15:52:05 +02:00
}
2021-07-16 09:04:35 +02:00
await servers[0].users.updateMe({ displayName: 'super root name' })
await servers[1].users.updateMe({ displayName: 'super root 2 name' })
2020-06-16 15:52:05 +02:00
})
it('Should not send a new mention comment notification if I mention the video owner', async function () {
2022-11-29 10:25:26 +01:00
this.timeout(30000)
2020-06-16 15:52:05 +02:00
const { uuid, shortUUID } = await servers[0].videos.upload({ token: userToken, attributes: { name: 'super video' } })
2020-06-16 15:52:05 +02:00
2021-07-16 09:04:35 +02:00
const { id: commentId } = await servers[0].comments.createThread({ videoId: uuid, text: '@user_1 hello' })
2020-06-16 15:52:05 +02:00
2020-06-17 10:55:40 +02:00
await waitJobs(servers)
await checkCommentMention({ ...baseParams, shortUUID, threadId: commentId, commentId, byAccountDisplayName, checkType: 'absence' })
2020-06-16 15:52:05 +02:00
})
it('Should not send a new mention comment notification if I mention myself', async function () {
2022-11-29 10:25:26 +01:00
this.timeout(30000)
2020-06-16 15:52:05 +02:00
const { uuid, shortUUID } = await servers[0].videos.upload({ attributes: { name: 'super video' } })
2020-06-16 15:52:05 +02:00
2021-07-16 09:04:35 +02:00
const { id: commentId } = await servers[0].comments.createThread({ token: userToken, videoId: uuid, text: '@user_1 hello' })
2020-06-16 15:52:05 +02:00
2020-06-17 10:55:40 +02:00
await waitJobs(servers)
await checkCommentMention({ ...baseParams, shortUUID, threadId: commentId, commentId, byAccountDisplayName, checkType: 'absence' })
2020-06-16 15:52:05 +02:00
})
it('Should not send a new mention notification if the account is muted', async function () {
2022-11-29 10:25:26 +01:00
this.timeout(30000)
2020-06-16 15:52:05 +02:00
2021-07-16 09:04:35 +02:00
await servers[0].blocklist.addToMyBlocklist({ token: userToken, account: 'root' })
2020-06-16 15:52:05 +02:00
const { uuid, shortUUID } = await servers[0].videos.upload({ attributes: { name: 'super video' } })
2020-06-16 15:52:05 +02:00
2021-07-16 09:04:35 +02:00
const { id: commentId } = await servers[0].comments.createThread({ videoId: uuid, text: '@user_1 hello' })
2020-06-16 15:52:05 +02:00
2020-06-17 10:55:40 +02:00
await waitJobs(servers)
await checkCommentMention({ ...baseParams, shortUUID, threadId: commentId, commentId, byAccountDisplayName, checkType: 'absence' })
2020-06-16 15:52:05 +02:00
2021-07-16 09:04:35 +02:00
await servers[0].blocklist.removeFromMyBlocklist({ token: userToken, account: 'root' })
2020-06-16 15:52:05 +02:00
})
it('Should not send a new mention notification if the remote account mention a local account', async function () {
2022-11-29 10:25:26 +01:00
this.timeout(30000)
2020-06-16 15:52:05 +02:00
const { uuid, shortUUID } = await servers[0].videos.upload({ attributes: { name: 'super video' } })
2020-06-16 15:52:05 +02:00
await waitJobs(servers)
2021-07-16 09:04:35 +02:00
const { id: threadId } = await servers[1].comments.createThread({ videoId: uuid, text: '@user_1 hello' })
2020-06-16 15:52:05 +02:00
await waitJobs(servers)
const byAccountDisplayName = 'super root 2 name'
await checkCommentMention({ ...baseParams, shortUUID, threadId, commentId: threadId, byAccountDisplayName, checkType: 'absence' })
2020-06-16 15:52:05 +02:00
})
it('Should send a new mention notification after local comments', async function () {
2022-11-29 10:25:26 +01:00
this.timeout(30000)
2020-06-16 15:52:05 +02:00
const { uuid, shortUUID } = await servers[0].videos.upload({ attributes: { name: 'super video' } })
2020-06-16 15:52:05 +02:00
2021-07-16 09:04:35 +02:00
const { id: threadId } = await servers[0].comments.createThread({ videoId: uuid, text: '@user_1 hellotext: 1' })
2020-06-16 15:52:05 +02:00
2020-06-17 10:55:40 +02:00
await waitJobs(servers)
await checkCommentMention({ ...baseParams, shortUUID, threadId, commentId: threadId, byAccountDisplayName, checkType: 'presence' })
2020-06-16 15:52:05 +02:00
2021-07-16 09:04:35 +02:00
const { id: commentId } = await servers[0].comments.addReply({ videoId: uuid, toCommentId: threadId, text: 'hello 2 @user_1' })
2020-06-16 15:52:05 +02:00
2020-06-17 10:55:40 +02:00
await waitJobs(servers)
await checkCommentMention({ ...baseParams, shortUUID, commentId, threadId, byAccountDisplayName, checkType: 'presence' })
2020-06-16 15:52:05 +02:00
})
it('Should send a new mention notification after remote comments', async function () {
2022-11-29 10:25:26 +01:00
this.timeout(30000)
2020-06-16 15:52:05 +02:00
const { uuid, shortUUID } = await servers[0].videos.upload({ attributes: { name: 'super video' } })
2020-06-16 15:52:05 +02:00
await waitJobs(servers)
2022-12-09 11:14:47 +01:00
const text1 = `hello @user_1@${servers[0].host} 1`
2021-07-16 09:04:35 +02:00
const { id: server2ThreadId } = await servers[1].comments.createThread({ videoId: uuid, text: text1 })
2020-06-16 15:52:05 +02:00
await waitJobs(servers)
2021-07-16 09:04:35 +02:00
const { data } = await servers[0].comments.listThreads({ videoId: uuid })
2021-07-09 14:15:11 +02:00
expect(data).to.have.lengthOf(1)
const byAccountDisplayName = 'super root 2 name'
const threadId = data[0].id
await checkCommentMention({ ...baseParams, shortUUID, commentId: threadId, threadId, byAccountDisplayName, checkType: 'presence' })
2020-06-16 15:52:05 +02:00
2022-12-09 11:14:47 +01:00
const text2 = `@user_1@${servers[0].host} hello 2 @root@${servers[0].host}`
2021-07-16 09:04:35 +02:00
await servers[1].comments.addReply({ videoId: uuid, toCommentId: server2ThreadId, text: text2 })
2020-06-16 15:52:05 +02:00
await waitJobs(servers)
const tree = await servers[0].comments.getThread({ videoId: uuid, threadId })
2020-06-16 15:52:05 +02:00
expect(tree.children).to.have.lengthOf(1)
const commentId = tree.children[0].comment.id
await checkCommentMention({ ...baseParams, shortUUID, commentId, threadId, byAccountDisplayName, checkType: 'presence' })
2020-06-16 15:52:05 +02:00
})
2020-11-17 14:38:27 +01:00
it('Should convert markdown in comment to html', async function () {
2022-11-29 10:25:26 +01:00
this.timeout(30000)
2020-11-17 14:38:27 +01:00
2021-07-16 09:04:35 +02:00
const { uuid } = await servers[0].videos.upload({ attributes: { name: 'super video' } })
2020-11-17 14:38:27 +01:00
2021-07-16 09:04:35 +02:00
const { id: threadId } = await servers[0].comments.createThread({ videoId: uuid, text: '@user_1 hello 1' })
2020-11-17 14:38:27 +01:00
2021-07-16 09:04:35 +02:00
await servers[0].comments.addReply({ videoId: uuid, toCommentId: threadId, text: '@user_1 ' + commentText })
2020-11-17 14:38:27 +01:00
await waitJobs(servers)
const latestEmail = emails[emails.length - 1]
expect(latestEmail['html']).to.contain(expectedHtml)
})
2020-06-16 15:52:05 +02:00
})
after(async function () {
MockSmtpServer.Instance.kill()
await cleanupTests(servers)
})
})