Add akismet tests
This commit is contained in:
parent
255c00305c
commit
4f38148087
|
@ -1,4 +1,4 @@
|
||||||
import { VideoUploadFile } from 'express'
|
import express, { VideoUploadFile } from 'express'
|
||||||
import { PathLike } from 'fs-extra'
|
import { PathLike } from 'fs-extra'
|
||||||
import { Transaction } from 'sequelize/types'
|
import { Transaction } from 'sequelize/types'
|
||||||
import { AbuseAuditView, auditLoggerFactory } from '@server/helpers/audit-logger'
|
import { AbuseAuditView, auditLoggerFactory } from '@server/helpers/audit-logger'
|
||||||
|
@ -58,6 +58,7 @@ function isLocalLiveVideoAccepted (object: {
|
||||||
|
|
||||||
// Stub function that can be filtered by plugins
|
// Stub function that can be filtered by plugins
|
||||||
function isLocalVideoThreadAccepted (_object: {
|
function isLocalVideoThreadAccepted (_object: {
|
||||||
|
req: express.Request
|
||||||
commentBody: VideoCommentCreate
|
commentBody: VideoCommentCreate
|
||||||
video: VideoModel
|
video: VideoModel
|
||||||
user: UserModel
|
user: UserModel
|
||||||
|
@ -67,6 +68,7 @@ function isLocalVideoThreadAccepted (_object: {
|
||||||
|
|
||||||
// Stub function that can be filtered by plugins
|
// Stub function that can be filtered by plugins
|
||||||
function isLocalVideoCommentReplyAccepted (_object: {
|
function isLocalVideoCommentReplyAccepted (_object: {
|
||||||
|
req: express.Request
|
||||||
commentBody: VideoCommentCreate
|
commentBody: VideoCommentCreate
|
||||||
parentComment: VideoCommentModel
|
parentComment: VideoCommentModel
|
||||||
video: VideoModel
|
video: VideoModel
|
||||||
|
|
|
@ -208,7 +208,8 @@ async function isVideoCommentAccepted (req: express.Request, res: express.Respon
|
||||||
const acceptParameters = {
|
const acceptParameters = {
|
||||||
video,
|
video,
|
||||||
commentBody: req.body,
|
commentBody: req.body,
|
||||||
user: res.locals.oauth.token.User
|
user: res.locals.oauth.token.User,
|
||||||
|
req
|
||||||
}
|
}
|
||||||
|
|
||||||
let acceptedResult: AcceptResult
|
let acceptedResult: AcceptResult
|
||||||
|
@ -234,7 +235,7 @@ async function isVideoCommentAccepted (req: express.Request, res: express.Respon
|
||||||
|
|
||||||
res.fail({
|
res.fail({
|
||||||
status: HttpStatusCode.FORBIDDEN_403,
|
status: HttpStatusCode.FORBIDDEN_403,
|
||||||
message: acceptedResult?.errorMessage || 'Refused local comment'
|
message: acceptedResult?.errorMessage || 'Comment has been rejected.'
|
||||||
})
|
})
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,131 @@
|
||||||
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
||||||
|
|
||||||
|
import { expect } from 'chai'
|
||||||
|
import { HttpStatusCode } from '@shared/models'
|
||||||
|
import {
|
||||||
|
cleanupTests,
|
||||||
|
createMultipleServers,
|
||||||
|
doubleFollow,
|
||||||
|
PeerTubeServer,
|
||||||
|
setAccessTokensToServers,
|
||||||
|
waitJobs
|
||||||
|
} from '@shared/server-commands'
|
||||||
|
|
||||||
|
describe('Official plugin Akismet', function () {
|
||||||
|
let servers: PeerTubeServer[]
|
||||||
|
let videoUUID: string
|
||||||
|
|
||||||
|
before(async function () {
|
||||||
|
this.timeout(30000)
|
||||||
|
|
||||||
|
servers = await createMultipleServers(2)
|
||||||
|
await setAccessTokensToServers(servers)
|
||||||
|
|
||||||
|
await servers[0].plugins.install({ npmName: 'peertube-plugin-akismet' })
|
||||||
|
|
||||||
|
if (!process.env.AKISMET_KEY) throw new Error('Missing AKISMET_KEY from env')
|
||||||
|
|
||||||
|
await servers[0].plugins.updateSettings({
|
||||||
|
npmName: 'peertube-plugin-akismet',
|
||||||
|
settings: {
|
||||||
|
'akismet-api-key': process.env.AKISMET_KEY
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
await doubleFollow(servers[0], servers[1])
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('Local threads/replies', function () {
|
||||||
|
|
||||||
|
before(async function () {
|
||||||
|
const { uuid } = await servers[0].videos.quickUpload({ name: 'video 1' })
|
||||||
|
videoUUID = uuid
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Should not detect a thread as spam', async function () {
|
||||||
|
await servers[0].comments.createThread({ videoId: videoUUID, text: 'comment' })
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Should not detect a reply as spam', async function () {
|
||||||
|
await servers[0].comments.addReplyToLastThread({ text: 'reply' })
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Should detect a thread as spam', async function () {
|
||||||
|
await servers[0].comments.createThread({
|
||||||
|
videoId: videoUUID,
|
||||||
|
text: 'akismet-guaranteed-spam',
|
||||||
|
expectedStatus: HttpStatusCode.FORBIDDEN_403
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Should detect a thread as spam', async function () {
|
||||||
|
await servers[0].comments.createThread({ videoId: videoUUID, text: 'comment' })
|
||||||
|
await servers[0].comments.addReplyToLastThread({ text: 'akismet-guaranteed-spam', expectedStatus: HttpStatusCode.FORBIDDEN_403 })
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('Remote threads/replies', function () {
|
||||||
|
|
||||||
|
before(async function () {
|
||||||
|
this.timeout(60000)
|
||||||
|
|
||||||
|
const { uuid } = await servers[0].videos.quickUpload({ name: 'video 1' })
|
||||||
|
videoUUID = uuid
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Should not detect a thread as spam', async function () {
|
||||||
|
this.timeout(30000)
|
||||||
|
|
||||||
|
await servers[1].comments.createThread({ videoId: videoUUID, text: 'remote comment 1' })
|
||||||
|
await waitJobs(servers)
|
||||||
|
|
||||||
|
const { data } = await servers[0].comments.listThreads({ videoId: videoUUID })
|
||||||
|
expect(data).to.have.lengthOf(1)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Should not detect a reply as spam', async function () {
|
||||||
|
this.timeout(30000)
|
||||||
|
|
||||||
|
await servers[1].comments.addReplyToLastThread({ text: 'I agree with you' })
|
||||||
|
await waitJobs(servers)
|
||||||
|
|
||||||
|
const { data } = await servers[0].comments.listThreads({ videoId: videoUUID })
|
||||||
|
expect(data).to.have.lengthOf(1)
|
||||||
|
|
||||||
|
const tree = await servers[0].comments.getThread({ videoId: videoUUID, threadId: data[0].id })
|
||||||
|
expect(tree.children).to.have.lengthOf(1)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Should detect a thread as spam', async function () {
|
||||||
|
this.timeout(30000)
|
||||||
|
|
||||||
|
await servers[1].comments.createThread({ videoId: videoUUID, text: 'akismet-guaranteed-spam' })
|
||||||
|
await waitJobs(servers)
|
||||||
|
|
||||||
|
const { data } = await servers[0].comments.listThreads({ videoId: videoUUID })
|
||||||
|
expect(data).to.have.lengthOf(1)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('Should detect a thread as spam', async function () {
|
||||||
|
this.timeout(30000)
|
||||||
|
|
||||||
|
await servers[1].comments.createThread({ videoId: videoUUID, text: 'remote comment 2' })
|
||||||
|
await servers[1].comments.addReplyToLastThread({ text: 'akismet-guaranteed-spam' })
|
||||||
|
await waitJobs(servers)
|
||||||
|
|
||||||
|
const { data } = await servers[0].comments.listThreads({ videoId: videoUUID })
|
||||||
|
expect(data).to.have.lengthOf(2)
|
||||||
|
|
||||||
|
for (const thread of data) {
|
||||||
|
const tree = await servers[0].comments.getThread({ videoId: videoUUID, threadId: thread.id })
|
||||||
|
if (tree.comment.text === 'remote comment 1') continue
|
||||||
|
|
||||||
|
expect(tree.children).to.have.lengthOf(0)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
after(async function () {
|
||||||
|
await cleanupTests(servers)
|
||||||
|
})
|
||||||
|
})
|
|
@ -1,3 +1,4 @@
|
||||||
|
import './akismet'
|
||||||
import './auth-ldap'
|
import './auth-ldap'
|
||||||
import './auto-block-videos'
|
import './auto-block-videos'
|
||||||
import './auto-mute'
|
import './auto-mute'
|
||||||
|
|
Loading…
Reference in New Issue