2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2018-12-26 04:36:24 -05:00
|
|
|
|
|
|
|
import { expect } from 'chai'
|
2019-01-02 10:37:43 -05:00
|
|
|
import { inspect } from 'util'
|
2021-12-17 05:58:15 -05:00
|
|
|
import {
|
|
|
|
AbuseState,
|
|
|
|
PluginType,
|
|
|
|
UserNotification,
|
|
|
|
UserNotificationSetting,
|
|
|
|
UserNotificationSettingValue,
|
|
|
|
UserNotificationType
|
|
|
|
} from '@shared/models'
|
2022-02-28 02:34:43 -05:00
|
|
|
import {
|
|
|
|
createMultipleServers,
|
|
|
|
doubleFollow,
|
|
|
|
PeerTubeServer,
|
|
|
|
setAccessTokensToServers,
|
|
|
|
setDefaultAccountAvatar,
|
2022-05-03 05:38:07 -04:00
|
|
|
setDefaultChannelAvatar,
|
|
|
|
setDefaultVideoChannel
|
2022-02-28 02:34:43 -05:00
|
|
|
} from '@shared/server-commands'
|
2021-12-17 05:58:15 -05:00
|
|
|
import { MockSmtpServer } from './mock-servers'
|
2018-12-26 04:36:24 -05:00
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
type CheckerBaseParams = {
|
|
|
|
server: PeerTubeServer
|
|
|
|
emails: any[]
|
|
|
|
socketNotifications: UserNotification[]
|
|
|
|
token: string
|
|
|
|
check?: { web: boolean, mail: boolean }
|
|
|
|
}
|
|
|
|
|
|
|
|
type CheckerType = 'presence' | 'absence'
|
|
|
|
|
2021-07-09 10:23:01 -04:00
|
|
|
function getAllNotificationsSettings (): UserNotificationSetting {
|
|
|
|
return {
|
|
|
|
newVideoFromSubscription: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
|
|
|
newCommentOnMyVideo: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
|
|
|
abuseAsModerator: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
|
|
|
videoAutoBlacklistAsModerator: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
|
|
|
blacklistOnMyVideo: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
|
|
|
myVideoImportFinished: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
|
|
|
myVideoPublished: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
|
|
|
commentMention: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
|
|
|
newFollow: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
|
|
|
newUserRegistration: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
|
|
|
newInstanceFollower: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
|
|
|
abuseNewMessage: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
|
|
|
abuseStateChange: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
|
|
|
autoInstanceFollowing: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
|
|
|
newPeerTubeVersion: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
2022-03-22 11:58:49 -04:00
|
|
|
myVideoStudioEditionFinished: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL,
|
2021-07-09 10:23:01 -04:00
|
|
|
newPluginVersion: UserNotificationSettingValue.WEB | UserNotificationSettingValue.EMAIL
|
|
|
|
}
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
async function checkNewVideoFromSubscription (options: CheckerBaseParams & {
|
|
|
|
videoName: string
|
|
|
|
shortUUID: string
|
2019-01-02 10:37:43 -05:00
|
|
|
checkType: CheckerType
|
2021-07-27 03:07:38 -04:00
|
|
|
}) {
|
|
|
|
const { videoName, shortUUID } = options
|
2018-12-26 04:36:24 -05:00
|
|
|
const notificationType = UserNotificationType.NEW_VIDEO_FROM_SUBSCRIPTION
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
function notificationChecker (notification: UserNotification, checkType: CheckerType) {
|
|
|
|
if (checkType === 'presence') {
|
2018-12-26 04:36:24 -05:00
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
2019-01-02 10:37:43 -05:00
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
checkVideo(notification.video, videoName, shortUUID)
|
2019-01-02 10:37:43 -05:00
|
|
|
checkActor(notification.video.channel)
|
2018-12-26 04:36:24 -05:00
|
|
|
} else {
|
2019-04-02 05:26:47 -04:00
|
|
|
expect(notification).to.satisfy((n: UserNotification) => {
|
|
|
|
return n === undefined || n.type !== UserNotificationType.NEW_VIDEO_FROM_SUBSCRIPTION || n.video.name !== videoName
|
|
|
|
})
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-05 14:22:22 -04:00
|
|
|
function emailNotificationFinder (email: object) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const text = email['text']
|
2021-07-27 03:07:38 -04:00
|
|
|
return text.indexOf(shortUUID) !== -1 && text.indexOf('Your subscription') !== -1
|
2019-01-02 10:37:43 -05:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder })
|
2019-01-02 10:37:43 -05:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
async function checkVideoIsPublished (options: CheckerBaseParams & {
|
|
|
|
videoName: string
|
|
|
|
shortUUID: string
|
|
|
|
checkType: CheckerType
|
|
|
|
}) {
|
|
|
|
const { videoName, shortUUID } = options
|
2019-01-02 10:37:43 -05:00
|
|
|
const notificationType = UserNotificationType.MY_VIDEO_PUBLISHED
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
function notificationChecker (notification: UserNotification, checkType: CheckerType) {
|
|
|
|
if (checkType === 'presence') {
|
2019-01-02 10:37:43 -05:00
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
checkVideo(notification.video, videoName, shortUUID)
|
2019-01-02 10:37:43 -05:00
|
|
|
checkActor(notification.video.channel)
|
|
|
|
} else {
|
|
|
|
expect(notification.video).to.satisfy(v => v === undefined || v.name !== videoName)
|
|
|
|
}
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
|
2020-05-05 14:22:22 -04:00
|
|
|
function emailNotificationFinder (email: object) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const text: string = email['text']
|
2021-07-27 03:07:38 -04:00
|
|
|
return text.includes(shortUUID) && text.includes('Your video')
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder })
|
2019-01-02 10:37:43 -05:00
|
|
|
}
|
|
|
|
|
2022-03-22 11:58:49 -04:00
|
|
|
async function checkVideoStudioEditionIsFinished (options: CheckerBaseParams & {
|
2022-03-22 09:35:04 -04:00
|
|
|
videoName: string
|
|
|
|
shortUUID: string
|
|
|
|
checkType: CheckerType
|
|
|
|
}) {
|
|
|
|
const { videoName, shortUUID } = options
|
2022-03-22 11:58:49 -04:00
|
|
|
const notificationType = UserNotificationType.MY_VIDEO_STUDIO_EDITION_FINISHED
|
2022-03-22 09:35:04 -04:00
|
|
|
|
|
|
|
function notificationChecker (notification: UserNotification, checkType: CheckerType) {
|
|
|
|
if (checkType === 'presence') {
|
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
|
|
|
|
|
|
|
checkVideo(notification.video, videoName, shortUUID)
|
|
|
|
checkActor(notification.video.channel)
|
|
|
|
} else {
|
|
|
|
expect(notification.video).to.satisfy(v => v === undefined || v.name !== videoName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function emailNotificationFinder (email: object) {
|
|
|
|
const text: string = email['text']
|
|
|
|
return text.includes(shortUUID) && text.includes('Edition of your video')
|
|
|
|
}
|
|
|
|
|
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder })
|
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
async function checkMyVideoImportIsFinished (options: CheckerBaseParams & {
|
|
|
|
videoName: string
|
|
|
|
shortUUID: string
|
|
|
|
url: string
|
|
|
|
success: boolean
|
|
|
|
checkType: CheckerType
|
|
|
|
}) {
|
|
|
|
const { videoName, shortUUID, url, success } = options
|
|
|
|
|
2019-01-02 10:37:43 -05:00
|
|
|
const notificationType = success ? UserNotificationType.MY_VIDEO_IMPORT_SUCCESS : UserNotificationType.MY_VIDEO_IMPORT_ERROR
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
function notificationChecker (notification: UserNotification, checkType: CheckerType) {
|
|
|
|
if (checkType === 'presence') {
|
2019-01-02 10:37:43 -05:00
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
|
|
|
|
|
|
|
expect(notification.videoImport.targetUrl).to.equal(url)
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
if (success) checkVideo(notification.videoImport.video, videoName, shortUUID)
|
2019-01-02 10:37:43 -05:00
|
|
|
} else {
|
|
|
|
expect(notification.videoImport).to.satisfy(i => i === undefined || i.targetUrl !== url)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-05 14:22:22 -04:00
|
|
|
function emailNotificationFinder (email: object) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const text: string = email['text']
|
2019-01-02 10:37:43 -05:00
|
|
|
const toFind = success ? ' finished' : ' error'
|
|
|
|
|
|
|
|
return text.includes(url) && text.includes(toFind)
|
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder })
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
async function checkUserRegistered (options: CheckerBaseParams & {
|
|
|
|
username: string
|
|
|
|
checkType: CheckerType
|
|
|
|
}) {
|
|
|
|
const { username } = options
|
2019-01-04 02:56:20 -05:00
|
|
|
const notificationType = UserNotificationType.NEW_USER_REGISTRATION
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
function notificationChecker (notification: UserNotification, checkType: CheckerType) {
|
|
|
|
if (checkType === 'presence') {
|
2019-01-04 02:56:20 -05:00
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
|
|
|
|
2022-05-25 03:10:20 -04:00
|
|
|
checkActor(notification.account, { withAvatar: false })
|
2019-01-04 02:56:20 -05:00
|
|
|
expect(notification.account.name).to.equal(username)
|
|
|
|
} else {
|
|
|
|
expect(notification).to.satisfy(n => n.type !== notificationType || n.account.name !== username)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-05 14:22:22 -04:00
|
|
|
function emailNotificationFinder (email: object) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const text: string = email['text']
|
2019-01-04 02:56:20 -05:00
|
|
|
|
2020-05-05 14:22:22 -04:00
|
|
|
return text.includes(' registered.') && text.includes(username)
|
2019-01-04 02:56:20 -05:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder })
|
2019-01-04 02:56:20 -05:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
async function checkNewActorFollow (options: CheckerBaseParams & {
|
|
|
|
followType: 'channel' | 'account'
|
|
|
|
followerName: string
|
|
|
|
followerDisplayName: string
|
|
|
|
followingDisplayName: string
|
|
|
|
checkType: CheckerType
|
|
|
|
}) {
|
|
|
|
const { followType, followerName, followerDisplayName, followingDisplayName } = options
|
2019-01-04 02:56:20 -05:00
|
|
|
const notificationType = UserNotificationType.NEW_FOLLOW
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
function notificationChecker (notification: UserNotification, checkType: CheckerType) {
|
|
|
|
if (checkType === 'presence') {
|
2019-01-04 02:56:20 -05:00
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
|
|
|
|
|
|
|
checkActor(notification.actorFollow.follower)
|
|
|
|
expect(notification.actorFollow.follower.displayName).to.equal(followerDisplayName)
|
|
|
|
expect(notification.actorFollow.follower.name).to.equal(followerName)
|
2019-01-21 09:58:07 -05:00
|
|
|
expect(notification.actorFollow.follower.host).to.not.be.undefined
|
2019-01-04 02:56:20 -05:00
|
|
|
|
2019-08-30 10:50:12 -04:00
|
|
|
const following = notification.actorFollow.following
|
|
|
|
expect(following.displayName).to.equal(followingDisplayName)
|
|
|
|
expect(following.type).to.equal(followType)
|
2019-01-04 02:56:20 -05:00
|
|
|
} else {
|
|
|
|
expect(notification).to.satisfy(n => {
|
|
|
|
return n.type !== notificationType ||
|
|
|
|
(n.actorFollow.follower.name !== followerName && n.actorFollow.following !== followingDisplayName)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-05 14:22:22 -04:00
|
|
|
function emailNotificationFinder (email: object) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const text: string = email['text']
|
2019-01-04 02:56:20 -05:00
|
|
|
|
2020-05-05 14:22:22 -04:00
|
|
|
return text.includes(followType) && text.includes(followingDisplayName) && text.includes(followerDisplayName)
|
2019-01-04 02:56:20 -05:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder })
|
2019-01-04 02:56:20 -05:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
async function checkNewInstanceFollower (options: CheckerBaseParams & {
|
|
|
|
followerHost: string
|
|
|
|
checkType: CheckerType
|
|
|
|
}) {
|
|
|
|
const { followerHost } = options
|
2019-04-08 11:26:01 -04:00
|
|
|
const notificationType = UserNotificationType.NEW_INSTANCE_FOLLOWER
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
function notificationChecker (notification: UserNotification, checkType: CheckerType) {
|
|
|
|
if (checkType === 'presence') {
|
2019-04-08 11:26:01 -04:00
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
|
|
|
|
2022-05-25 03:10:20 -04:00
|
|
|
checkActor(notification.actorFollow.follower, { withAvatar: false })
|
2019-04-08 11:26:01 -04:00
|
|
|
expect(notification.actorFollow.follower.name).to.equal('peertube')
|
|
|
|
expect(notification.actorFollow.follower.host).to.equal(followerHost)
|
|
|
|
|
|
|
|
expect(notification.actorFollow.following.name).to.equal('peertube')
|
|
|
|
} else {
|
|
|
|
expect(notification).to.satisfy(n => {
|
|
|
|
return n.type !== notificationType || n.actorFollow.follower.host !== followerHost
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-05 14:22:22 -04:00
|
|
|
function emailNotificationFinder (email: object) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const text: string = email['text']
|
2019-04-08 11:26:01 -04:00
|
|
|
|
|
|
|
return text.includes('instance has a new follower') && text.includes(followerHost)
|
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder })
|
2019-04-08 11:26:01 -04:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
async function checkAutoInstanceFollowing (options: CheckerBaseParams & {
|
|
|
|
followerHost: string
|
|
|
|
followingHost: string
|
|
|
|
checkType: CheckerType
|
|
|
|
}) {
|
|
|
|
const { followerHost, followingHost } = options
|
2019-08-30 10:50:12 -04:00
|
|
|
const notificationType = UserNotificationType.AUTO_INSTANCE_FOLLOWING
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
function notificationChecker (notification: UserNotification, checkType: CheckerType) {
|
|
|
|
if (checkType === 'presence') {
|
2019-08-30 10:50:12 -04:00
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
|
|
|
|
|
|
|
const following = notification.actorFollow.following
|
2022-05-25 03:10:20 -04:00
|
|
|
|
|
|
|
checkActor(following, { withAvatar: false })
|
2019-08-30 10:50:12 -04:00
|
|
|
expect(following.name).to.equal('peertube')
|
|
|
|
expect(following.host).to.equal(followingHost)
|
|
|
|
|
|
|
|
expect(notification.actorFollow.follower.name).to.equal('peertube')
|
|
|
|
expect(notification.actorFollow.follower.host).to.equal(followerHost)
|
|
|
|
} else {
|
|
|
|
expect(notification).to.satisfy(n => {
|
|
|
|
return n.type !== notificationType || n.actorFollow.following.host !== followingHost
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-05 14:22:22 -04:00
|
|
|
function emailNotificationFinder (email: object) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const text: string = email['text']
|
2019-08-30 10:50:12 -04:00
|
|
|
|
|
|
|
return text.includes(' automatically followed a new instance') && text.includes(followingHost)
|
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder })
|
2019-08-30 10:50:12 -04:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
async function checkCommentMention (options: CheckerBaseParams & {
|
|
|
|
shortUUID: string
|
|
|
|
commentId: number
|
|
|
|
threadId: number
|
|
|
|
byAccountDisplayName: string
|
|
|
|
checkType: CheckerType
|
|
|
|
}) {
|
|
|
|
const { shortUUID, commentId, threadId, byAccountDisplayName } = options
|
2019-01-04 02:56:20 -05:00
|
|
|
const notificationType = UserNotificationType.COMMENT_MENTION
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
function notificationChecker (notification: UserNotification, checkType: CheckerType) {
|
|
|
|
if (checkType === 'presence') {
|
2019-01-04 02:56:20 -05:00
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
|
|
|
|
|
|
|
checkComment(notification.comment, commentId, threadId)
|
|
|
|
checkActor(notification.comment.account)
|
|
|
|
expect(notification.comment.account.displayName).to.equal(byAccountDisplayName)
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
checkVideo(notification.comment.video, undefined, shortUUID)
|
2019-01-04 02:56:20 -05:00
|
|
|
} else {
|
|
|
|
expect(notification).to.satisfy(n => n.type !== notificationType || n.comment.id !== commentId)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-05 14:22:22 -04:00
|
|
|
function emailNotificationFinder (email: object) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const text: string = email['text']
|
2019-01-04 02:56:20 -05:00
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
return text.includes(' mentioned ') && text.includes(shortUUID) && text.includes(byAccountDisplayName)
|
2019-01-04 02:56:20 -05:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder })
|
2019-01-04 02:56:20 -05:00
|
|
|
}
|
|
|
|
|
2018-12-26 04:36:24 -05:00
|
|
|
let lastEmailCount = 0
|
2020-01-31 10:56:52 -05:00
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
async function checkNewCommentOnMyVideo (options: CheckerBaseParams & {
|
|
|
|
shortUUID: string
|
|
|
|
commentId: number
|
|
|
|
threadId: number
|
|
|
|
checkType: CheckerType
|
|
|
|
}) {
|
|
|
|
const { server, shortUUID, commentId, threadId, checkType, emails } = options
|
2018-12-26 04:36:24 -05:00
|
|
|
const notificationType = UserNotificationType.NEW_COMMENT_ON_MY_VIDEO
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
function notificationChecker (notification: UserNotification, checkType: CheckerType) {
|
|
|
|
if (checkType === 'presence') {
|
2018-12-26 04:36:24 -05:00
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
2019-01-02 10:37:43 -05:00
|
|
|
|
|
|
|
checkComment(notification.comment, commentId, threadId)
|
|
|
|
checkActor(notification.comment.account)
|
2021-07-27 03:07:38 -04:00
|
|
|
checkVideo(notification.comment.video, undefined, shortUUID)
|
2018-12-26 04:36:24 -05:00
|
|
|
} else {
|
|
|
|
expect(notification).to.satisfy((n: UserNotification) => {
|
|
|
|
return n === undefined || n.comment === undefined || n.comment.id !== commentId
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
const commentUrl = `http://localhost:${server.port}/w/${shortUUID};threadId=${threadId}`
|
2020-01-31 10:56:52 -05:00
|
|
|
|
2020-05-05 14:22:22 -04:00
|
|
|
function emailNotificationFinder (email: object) {
|
2020-01-31 10:56:52 -05:00
|
|
|
return email['text'].indexOf(commentUrl) !== -1
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder })
|
2018-12-26 04:36:24 -05:00
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
if (checkType === 'presence') {
|
2018-12-26 04:36:24 -05:00
|
|
|
// We cannot detect email duplicates, so check we received another email
|
2021-07-27 03:07:38 -04:00
|
|
|
expect(emails).to.have.length.above(lastEmailCount)
|
|
|
|
lastEmailCount = emails.length
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
async function checkNewVideoAbuseForModerators (options: CheckerBaseParams & {
|
|
|
|
shortUUID: string
|
|
|
|
videoName: string
|
|
|
|
checkType: CheckerType
|
|
|
|
}) {
|
|
|
|
const { shortUUID, videoName } = options
|
2020-07-08 09:51:46 -04:00
|
|
|
const notificationType = UserNotificationType.NEW_ABUSE_FOR_MODERATORS
|
2018-12-26 04:36:24 -05:00
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
function notificationChecker (notification: UserNotification, checkType: CheckerType) {
|
|
|
|
if (checkType === 'presence') {
|
2018-12-26 04:36:24 -05:00
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
2019-01-02 10:37:43 -05:00
|
|
|
|
2020-07-01 10:05:30 -04:00
|
|
|
expect(notification.abuse.id).to.be.a('number')
|
2021-07-27 03:07:38 -04:00
|
|
|
checkVideo(notification.abuse.video, videoName, shortUUID)
|
2018-12-26 04:36:24 -05:00
|
|
|
} else {
|
|
|
|
expect(notification).to.satisfy((n: UserNotification) => {
|
2021-07-27 03:07:38 -04:00
|
|
|
return n === undefined || n.abuse === undefined || n.abuse.video.shortUUID !== shortUUID
|
2018-12-26 04:36:24 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-05 14:22:22 -04:00
|
|
|
function emailNotificationFinder (email: object) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const text = email['text']
|
2021-07-27 03:07:38 -04:00
|
|
|
return text.indexOf(shortUUID) !== -1 && text.indexOf('abuse') !== -1
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder })
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
async function checkNewAbuseMessage (options: CheckerBaseParams & {
|
|
|
|
abuseId: number
|
|
|
|
message: string
|
|
|
|
toEmail: string
|
|
|
|
checkType: CheckerType
|
|
|
|
}) {
|
|
|
|
const { abuseId, message, toEmail } = options
|
2020-07-27 10:26:25 -04:00
|
|
|
const notificationType = UserNotificationType.ABUSE_NEW_MESSAGE
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
function notificationChecker (notification: UserNotification, checkType: CheckerType) {
|
|
|
|
if (checkType === 'presence') {
|
2020-07-27 10:26:25 -04:00
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
|
|
|
|
|
|
|
expect(notification.abuse.id).to.equal(abuseId)
|
|
|
|
} else {
|
|
|
|
expect(notification).to.satisfy((n: UserNotification) => {
|
|
|
|
return n === undefined || n.type !== notificationType || n.abuse === undefined || n.abuse.id !== abuseId
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function emailNotificationFinder (email: object) {
|
|
|
|
const text = email['text']
|
|
|
|
const to = email['to'].filter(t => t.address === toEmail)
|
|
|
|
|
|
|
|
return text.indexOf(message) !== -1 && to.length !== 0
|
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder })
|
2020-07-27 10:26:25 -04:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
async function checkAbuseStateChange (options: CheckerBaseParams & {
|
|
|
|
abuseId: number
|
|
|
|
state: AbuseState
|
|
|
|
checkType: CheckerType
|
|
|
|
}) {
|
|
|
|
const { abuseId, state } = options
|
2020-07-27 10:26:25 -04:00
|
|
|
const notificationType = UserNotificationType.ABUSE_STATE_CHANGE
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
function notificationChecker (notification: UserNotification, checkType: CheckerType) {
|
|
|
|
if (checkType === 'presence') {
|
2020-07-27 10:26:25 -04:00
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
|
|
|
|
|
|
|
expect(notification.abuse.id).to.equal(abuseId)
|
|
|
|
expect(notification.abuse.state).to.equal(state)
|
|
|
|
} else {
|
|
|
|
expect(notification).to.satisfy((n: UserNotification) => {
|
|
|
|
return n === undefined || n.abuse === undefined || n.abuse.id !== abuseId
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function emailNotificationFinder (email: object) {
|
|
|
|
const text = email['text']
|
|
|
|
|
|
|
|
const contains = state === AbuseState.ACCEPTED
|
|
|
|
? ' accepted'
|
|
|
|
: ' rejected'
|
|
|
|
|
|
|
|
return text.indexOf(contains) !== -1
|
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder })
|
2020-07-27 10:26:25 -04:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
async function checkNewCommentAbuseForModerators (options: CheckerBaseParams & {
|
|
|
|
shortUUID: string
|
|
|
|
videoName: string
|
|
|
|
checkType: CheckerType
|
|
|
|
}) {
|
|
|
|
const { shortUUID, videoName } = options
|
2020-07-08 09:51:46 -04:00
|
|
|
const notificationType = UserNotificationType.NEW_ABUSE_FOR_MODERATORS
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
function notificationChecker (notification: UserNotification, checkType: CheckerType) {
|
|
|
|
if (checkType === 'presence') {
|
2020-07-08 09:51:46 -04:00
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
|
|
|
|
|
|
|
expect(notification.abuse.id).to.be.a('number')
|
2021-07-27 03:07:38 -04:00
|
|
|
checkVideo(notification.abuse.comment.video, videoName, shortUUID)
|
2020-07-08 09:51:46 -04:00
|
|
|
} else {
|
|
|
|
expect(notification).to.satisfy((n: UserNotification) => {
|
2021-07-27 03:07:38 -04:00
|
|
|
return n === undefined || n.abuse === undefined || n.abuse.comment.video.shortUUID !== shortUUID
|
2020-07-08 09:51:46 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function emailNotificationFinder (email: object) {
|
|
|
|
const text = email['text']
|
2021-07-27 03:07:38 -04:00
|
|
|
return text.indexOf(shortUUID) !== -1 && text.indexOf('abuse') !== -1
|
2020-07-08 09:51:46 -04:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder })
|
2020-07-08 09:51:46 -04:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
async function checkNewAccountAbuseForModerators (options: CheckerBaseParams & {
|
|
|
|
displayName: string
|
|
|
|
checkType: CheckerType
|
|
|
|
}) {
|
|
|
|
const { displayName } = options
|
2020-07-08 09:51:46 -04:00
|
|
|
const notificationType = UserNotificationType.NEW_ABUSE_FOR_MODERATORS
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
function notificationChecker (notification: UserNotification, checkType: CheckerType) {
|
|
|
|
if (checkType === 'presence') {
|
2020-07-08 09:51:46 -04:00
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
|
|
|
|
|
|
|
expect(notification.abuse.id).to.be.a('number')
|
|
|
|
expect(notification.abuse.account.displayName).to.equal(displayName)
|
|
|
|
} else {
|
|
|
|
expect(notification).to.satisfy((n: UserNotification) => {
|
|
|
|
return n === undefined || n.abuse === undefined || n.abuse.account.displayName !== displayName
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function emailNotificationFinder (email: object) {
|
|
|
|
const text = email['text']
|
|
|
|
return text.indexOf(displayName) !== -1 && text.indexOf('abuse') !== -1
|
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder })
|
2020-07-08 09:51:46 -04:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
async function checkVideoAutoBlacklistForModerators (options: CheckerBaseParams & {
|
|
|
|
shortUUID: string
|
|
|
|
videoName: string
|
|
|
|
checkType: CheckerType
|
|
|
|
}) {
|
|
|
|
const { shortUUID, videoName } = options
|
2019-04-02 05:26:47 -04:00
|
|
|
const notificationType = UserNotificationType.VIDEO_AUTO_BLACKLIST_FOR_MODERATORS
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
function notificationChecker (notification: UserNotification, checkType: CheckerType) {
|
|
|
|
if (checkType === 'presence') {
|
2019-04-02 05:26:47 -04:00
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
|
|
|
|
2019-08-30 10:50:12 -04:00
|
|
|
expect(notification.videoBlacklist.video.id).to.be.a('number')
|
2021-07-27 03:07:38 -04:00
|
|
|
checkVideo(notification.videoBlacklist.video, videoName, shortUUID)
|
2019-04-02 05:26:47 -04:00
|
|
|
} else {
|
|
|
|
expect(notification).to.satisfy((n: UserNotification) => {
|
2021-07-27 03:07:38 -04:00
|
|
|
return n === undefined || n.video === undefined || n.video.shortUUID !== shortUUID
|
2019-04-02 05:26:47 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-05 14:22:22 -04:00
|
|
|
function emailNotificationFinder (email: object) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const text = email['text']
|
2021-07-27 03:07:38 -04:00
|
|
|
return text.indexOf(shortUUID) !== -1 && email['text'].indexOf('video-auto-blacklist/list') !== -1
|
2019-04-02 05:26:47 -04:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder })
|
2019-04-02 05:26:47 -04:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
async function checkNewBlacklistOnMyVideo (options: CheckerBaseParams & {
|
|
|
|
shortUUID: string
|
|
|
|
videoName: string
|
2018-12-26 04:36:24 -05:00
|
|
|
blacklistType: 'blacklist' | 'unblacklist'
|
2021-07-27 03:07:38 -04:00
|
|
|
}) {
|
|
|
|
const { videoName, shortUUID, blacklistType } = options
|
2018-12-26 04:36:24 -05:00
|
|
|
const notificationType = blacklistType === 'blacklist'
|
|
|
|
? UserNotificationType.BLACKLIST_ON_MY_VIDEO
|
|
|
|
: UserNotificationType.UNBLACKLIST_ON_MY_VIDEO
|
|
|
|
|
2019-01-02 10:37:43 -05:00
|
|
|
function notificationChecker (notification: UserNotification) {
|
2018-12-26 04:36:24 -05:00
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
|
|
|
|
|
|
|
const video = blacklistType === 'blacklist' ? notification.videoBlacklist.video : notification.video
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
checkVideo(video, videoName, shortUUID)
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
|
2020-05-05 14:22:22 -04:00
|
|
|
function emailNotificationFinder (email: object) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const text = email['text']
|
2021-07-27 03:07:38 -04:00
|
|
|
const blacklistText = blacklistType === 'blacklist'
|
|
|
|
? 'blacklisted'
|
|
|
|
: 'unblacklisted'
|
|
|
|
|
|
|
|
return text.includes(shortUUID) && text.includes(blacklistText)
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder, checkType: 'presence' })
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
async function checkNewPeerTubeVersion (options: CheckerBaseParams & {
|
|
|
|
latestVersion: string
|
|
|
|
checkType: CheckerType
|
|
|
|
}) {
|
|
|
|
const { latestVersion } = options
|
2021-03-11 10:54:52 -05:00
|
|
|
const notificationType = UserNotificationType.NEW_PEERTUBE_VERSION
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
function notificationChecker (notification: UserNotification, checkType: CheckerType) {
|
|
|
|
if (checkType === 'presence') {
|
2021-03-11 10:54:52 -05:00
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
|
|
|
|
|
|
|
expect(notification.peertube).to.exist
|
|
|
|
expect(notification.peertube.latestVersion).to.equal(latestVersion)
|
|
|
|
} else {
|
|
|
|
expect(notification).to.satisfy((n: UserNotification) => {
|
|
|
|
return n === undefined || n.peertube === undefined || n.peertube.latestVersion !== latestVersion
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function emailNotificationFinder (email: object) {
|
|
|
|
const text = email['text']
|
|
|
|
|
|
|
|
return text.includes(latestVersion)
|
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder })
|
2021-03-11 10:54:52 -05:00
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
async function checkNewPluginVersion (options: CheckerBaseParams & {
|
|
|
|
pluginType: PluginType
|
|
|
|
pluginName: string
|
|
|
|
checkType: CheckerType
|
|
|
|
}) {
|
|
|
|
const { pluginName, pluginType } = options
|
2021-03-11 10:54:52 -05:00
|
|
|
const notificationType = UserNotificationType.NEW_PLUGIN_VERSION
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
function notificationChecker (notification: UserNotification, checkType: CheckerType) {
|
|
|
|
if (checkType === 'presence') {
|
2021-03-11 10:54:52 -05:00
|
|
|
expect(notification).to.not.be.undefined
|
|
|
|
expect(notification.type).to.equal(notificationType)
|
|
|
|
|
|
|
|
expect(notification.plugin.name).to.equal(pluginName)
|
|
|
|
expect(notification.plugin.type).to.equal(pluginType)
|
|
|
|
} else {
|
|
|
|
expect(notification).to.satisfy((n: UserNotification) => {
|
|
|
|
return n === undefined || n.plugin === undefined || n.plugin.name !== pluginName
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function emailNotificationFinder (email: object) {
|
|
|
|
const text = email['text']
|
|
|
|
|
|
|
|
return text.includes(pluginName)
|
|
|
|
}
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
await checkNotification({ ...options, notificationChecker, emailNotificationFinder })
|
2021-03-11 10:54:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
async function prepareNotificationsTest (serversCount = 3, overrideConfigArg: any = {}) {
|
2020-06-16 09:52:05 -04:00
|
|
|
const userNotifications: UserNotification[] = []
|
|
|
|
const adminNotifications: UserNotification[] = []
|
|
|
|
const adminNotificationsServer2: UserNotification[] = []
|
|
|
|
const emails: object[] = []
|
|
|
|
|
|
|
|
const port = await MockSmtpServer.Instance.collectEmails(emails)
|
|
|
|
|
|
|
|
const overrideConfig = {
|
|
|
|
smtp: {
|
|
|
|
hostname: 'localhost',
|
|
|
|
port
|
2020-07-08 09:51:46 -04:00
|
|
|
},
|
|
|
|
signup: {
|
|
|
|
limit: 20
|
2020-06-16 09:52:05 -04:00
|
|
|
}
|
|
|
|
}
|
2021-07-16 03:47:51 -04:00
|
|
|
const servers = await createMultipleServers(serversCount, Object.assign(overrideConfig, overrideConfigArg))
|
2020-06-16 09:52:05 -04:00
|
|
|
|
|
|
|
await setAccessTokensToServers(servers)
|
2022-05-03 05:38:07 -04:00
|
|
|
await setDefaultVideoChannel(servers)
|
2022-02-28 02:34:43 -05:00
|
|
|
await setDefaultChannelAvatar(servers)
|
|
|
|
await setDefaultAccountAvatar(servers)
|
2020-06-16 10:36:02 -04:00
|
|
|
|
2022-05-03 05:38:07 -04:00
|
|
|
if (servers[1]) {
|
|
|
|
await servers[1].config.enableStudio()
|
|
|
|
await servers[1].config.enableLive({ allowReplay: true, transcoding: false })
|
|
|
|
}
|
2022-03-22 09:35:04 -04:00
|
|
|
|
2020-06-16 10:36:02 -04:00
|
|
|
if (serversCount > 1) {
|
|
|
|
await doubleFollow(servers[0], servers[1])
|
|
|
|
}
|
2020-06-16 09:52:05 -04:00
|
|
|
|
2021-07-13 08:23:01 -04:00
|
|
|
const user = { username: 'user_1', password: 'super password' }
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].users.create({ ...user, videoQuota: 10 * 1000 * 1000 })
|
|
|
|
const userAccessToken = await servers[0].login.getAccessToken(user)
|
2020-06-16 09:52:05 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].notifications.updateMySettings({ token: userAccessToken, settings: getAllNotificationsSettings() })
|
2022-05-25 03:10:20 -04:00
|
|
|
await servers[0].users.updateMyAvatar({ token: userAccessToken, fixture: 'avatar.png' })
|
|
|
|
await servers[0].channels.updateImage({ channelName: 'user_1_channel', token: userAccessToken, fixture: 'avatar.png', type: 'avatar' })
|
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].notifications.updateMySettings({ settings: getAllNotificationsSettings() })
|
2020-06-16 09:52:05 -04:00
|
|
|
|
|
|
|
if (serversCount > 1) {
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[1].notifications.updateMySettings({ settings: getAllNotificationsSettings() })
|
2020-06-16 09:52:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2021-07-16 03:04:35 -04:00
|
|
|
const socket = servers[0].socketIO.getUserNotificationSocket({ token: userAccessToken })
|
2020-06-16 09:52:05 -04:00
|
|
|
socket.on('new-notification', n => userNotifications.push(n))
|
|
|
|
}
|
|
|
|
{
|
2021-07-16 03:04:35 -04:00
|
|
|
const socket = servers[0].socketIO.getUserNotificationSocket()
|
2020-06-16 09:52:05 -04:00
|
|
|
socket.on('new-notification', n => adminNotifications.push(n))
|
|
|
|
}
|
|
|
|
|
|
|
|
if (serversCount > 1) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const socket = servers[1].socketIO.getUserNotificationSocket()
|
2020-06-16 09:52:05 -04:00
|
|
|
socket.on('new-notification', n => adminNotificationsServer2.push(n))
|
|
|
|
}
|
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const { videoChannels } = await servers[0].users.getMyInfo()
|
2021-07-13 08:23:01 -04:00
|
|
|
const channelId = videoChannels[0].id
|
2020-06-16 09:52:05 -04:00
|
|
|
|
|
|
|
return {
|
|
|
|
userNotifications,
|
|
|
|
adminNotifications,
|
|
|
|
adminNotificationsServer2,
|
|
|
|
userAccessToken,
|
|
|
|
emails,
|
|
|
|
servers,
|
|
|
|
channelId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-26 04:36:24 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2021-07-09 10:23:01 -04:00
|
|
|
getAllNotificationsSettings,
|
|
|
|
|
2018-12-26 04:36:24 -05:00
|
|
|
CheckerBaseParams,
|
|
|
|
CheckerType,
|
2019-01-02 10:37:43 -05:00
|
|
|
checkMyVideoImportIsFinished,
|
2019-01-04 02:56:20 -05:00
|
|
|
checkUserRegistered,
|
2019-08-30 10:50:12 -04:00
|
|
|
checkAutoInstanceFollowing,
|
2019-01-02 10:37:43 -05:00
|
|
|
checkVideoIsPublished,
|
2018-12-26 04:36:24 -05:00
|
|
|
checkNewVideoFromSubscription,
|
2019-01-04 02:56:20 -05:00
|
|
|
checkNewActorFollow,
|
2018-12-26 04:36:24 -05:00
|
|
|
checkNewCommentOnMyVideo,
|
|
|
|
checkNewBlacklistOnMyVideo,
|
2019-01-04 02:56:20 -05:00
|
|
|
checkCommentMention,
|
2018-12-26 04:36:24 -05:00
|
|
|
checkNewVideoAbuseForModerators,
|
2019-04-02 05:26:47 -04:00
|
|
|
checkVideoAutoBlacklistForModerators,
|
2020-07-27 10:26:25 -04:00
|
|
|
checkNewAbuseMessage,
|
|
|
|
checkAbuseStateChange,
|
2020-06-16 09:52:05 -04:00
|
|
|
checkNewInstanceFollower,
|
2020-07-08 09:51:46 -04:00
|
|
|
prepareNotificationsTest,
|
|
|
|
checkNewCommentAbuseForModerators,
|
2021-03-11 10:54:52 -05:00
|
|
|
checkNewAccountAbuseForModerators,
|
|
|
|
checkNewPeerTubeVersion,
|
2022-03-22 09:35:04 -04:00
|
|
|
checkNewPluginVersion,
|
2022-03-22 11:58:49 -04:00
|
|
|
checkVideoStudioEditionIsFinished
|
2018-12-26 04:36:24 -05:00
|
|
|
}
|
2021-07-27 03:07:38 -04:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
async function checkNotification (options: CheckerBaseParams & {
|
|
|
|
notificationChecker: (notification: UserNotification, checkType: CheckerType) => void
|
|
|
|
emailNotificationFinder: (email: object) => boolean
|
|
|
|
checkType: CheckerType
|
|
|
|
}) {
|
|
|
|
const { server, token, checkType, notificationChecker, emailNotificationFinder, socketNotifications, emails } = options
|
|
|
|
|
|
|
|
const check = options.check || { web: true, mail: true }
|
|
|
|
|
|
|
|
if (check.web) {
|
2021-11-19 02:25:07 -05:00
|
|
|
const notification = await server.notifications.getLatest({ token: token })
|
2021-07-27 03:07:38 -04:00
|
|
|
|
|
|
|
if (notification || checkType !== 'absence') {
|
|
|
|
notificationChecker(notification, checkType)
|
|
|
|
}
|
|
|
|
|
|
|
|
const socketNotification = socketNotifications.find(n => {
|
|
|
|
try {
|
|
|
|
notificationChecker(n, 'presence')
|
|
|
|
return true
|
|
|
|
} catch {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
if (checkType === 'presence') {
|
|
|
|
const obj = inspect(socketNotifications, { depth: 5 })
|
|
|
|
expect(socketNotification, 'The socket notification is absent when it should be present. ' + obj).to.not.be.undefined
|
|
|
|
} else {
|
|
|
|
const obj = inspect(socketNotification, { depth: 5 })
|
|
|
|
expect(socketNotification, 'The socket notification is present when it should not be present. ' + obj).to.be.undefined
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (check.mail) {
|
|
|
|
// Last email
|
|
|
|
const email = emails
|
|
|
|
.slice()
|
|
|
|
.reverse()
|
|
|
|
.find(e => emailNotificationFinder(e))
|
|
|
|
|
|
|
|
if (checkType === 'presence') {
|
|
|
|
const texts = emails.map(e => e.text)
|
|
|
|
expect(email, 'The email is absent when is should be present. ' + inspect(texts)).to.not.be.undefined
|
|
|
|
} else {
|
|
|
|
expect(email, 'The email is present when is should not be present. ' + inspect(email)).to.be.undefined
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkVideo (video: any, videoName?: string, shortUUID?: string) {
|
|
|
|
if (videoName) {
|
|
|
|
expect(video.name).to.be.a('string')
|
|
|
|
expect(video.name).to.not.be.empty
|
|
|
|
expect(video.name).to.equal(videoName)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (shortUUID) {
|
|
|
|
expect(video.shortUUID).to.be.a('string')
|
|
|
|
expect(video.shortUUID).to.not.be.empty
|
|
|
|
expect(video.shortUUID).to.equal(shortUUID)
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(video.id).to.be.a('number')
|
|
|
|
}
|
|
|
|
|
2022-05-25 03:10:20 -04:00
|
|
|
function checkActor (actor: any, options: { withAvatar?: boolean } = {}) {
|
|
|
|
const { withAvatar = true } = options
|
|
|
|
|
2021-07-27 03:07:38 -04:00
|
|
|
expect(actor.displayName).to.be.a('string')
|
|
|
|
expect(actor.displayName).to.not.be.empty
|
|
|
|
expect(actor.host).to.not.be.undefined
|
2022-05-25 03:10:20 -04:00
|
|
|
|
|
|
|
if (withAvatar) {
|
|
|
|
expect(actor.avatars).to.be.an('array')
|
|
|
|
expect(actor.avatars).to.have.lengthOf(2)
|
|
|
|
expect(actor.avatars[0].path).to.exist.and.not.empty
|
|
|
|
}
|
2021-07-27 03:07:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function checkComment (comment: any, commentId: number, threadId: number) {
|
|
|
|
expect(comment.id).to.equal(commentId)
|
|
|
|
expect(comment.threadId).to.equal(threadId)
|
|
|
|
}
|