From d4bf24df8ed7032d6db1b04a716e3881679bbf46 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 25 Jun 2020 10:32:17 +0200 Subject: [PATCH] Add auto block videos plugin tests --- .../external-plugins/auto-block-videos.ts | 190 ++++++++++++++++++ server/tests/external-plugins/index.ts | 1 + 2 files changed, 191 insertions(+) create mode 100644 server/tests/external-plugins/auto-block-videos.ts diff --git a/server/tests/external-plugins/auto-block-videos.ts b/server/tests/external-plugins/auto-block-videos.ts new file mode 100644 index 000000000..3ec03d558 --- /dev/null +++ b/server/tests/external-plugins/auto-block-videos.ts @@ -0,0 +1,190 @@ +/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */ + +import 'mocha' +import { expect } from 'chai' +import { Video, VideoBlacklist } from '@shared/models' +import { + doubleFollow, + getBlacklistedVideosList, + getVideosList, + installPlugin, + MockBlocklist, + removeVideoFromBlacklist, + setAccessTokensToServers, + updatePluginSettings, + uploadVideoAndGetId, + wait +} from '../../../shared/extra-utils' +import { + cleanupTests, + flushAndRunMultipleServers, + killallServers, + reRunServer, + ServerInfo +} from '../../../shared/extra-utils/server/servers' + +async function check (server: ServerInfo, videoUUID: string, exists = true) { + const res = await getVideosList(server.url) + + const video = res.body.data.find(v => v.uuid === videoUUID) + + if (exists) { + expect(video).to.not.be.undefined + } else { + expect(video).to.be.undefined + } +} + +describe('Official plugin auto-block videos', function () { + let servers: ServerInfo[] + let blocklistServer: MockBlocklist + let server1Videos: Video[] = [] + let server2Videos: Video[] = [] + + before(async function () { + this.timeout(60000) + + servers = await flushAndRunMultipleServers(2) + await setAccessTokensToServers(servers) + + for (const server of servers) { + await installPlugin({ + url: server.url, + accessToken: server.accessToken, + npmName: 'peertube-plugin-auto-block-videos' + }) + } + + blocklistServer = new MockBlocklist() + await blocklistServer.initialize() + + await uploadVideoAndGetId({ server: servers[0], videoName: 'video server 1' }) + await uploadVideoAndGetId({ server: servers[1], videoName: 'video server 2' }) + await uploadVideoAndGetId({ server: servers[1], videoName: 'video 2 server 2' }) + await uploadVideoAndGetId({ server: servers[1], videoName: 'video 3 server 2' }) + + { + const res = await getVideosList(servers[0].url) + server1Videos = res.body.data.map(v => Object.assign(v, { url: servers[0].url + '/videos/watch/' + v.uuid })) + } + + { + const res = await getVideosList(servers[1].url) + server2Videos = res.body.data.map(v => Object.assign(v, { url: servers[1].url + '/videos/watch/' + v.uuid })) + } + + await doubleFollow(servers[0], servers[1]) + }) + + it('Should update plugin settings', async function () { + await updatePluginSettings({ + url: servers[0].url, + accessToken: servers[0].accessToken, + npmName: 'peertube-plugin-auto-block-videos', + settings: { + 'blocklist-urls': 'http://localhost:42100/blocklist', + 'check-seconds-interval': 1 + } + }) + }) + + it('Should auto block a video', async function () { + this.timeout(10000) + + await check(servers[0], server2Videos[0].uuid, true) + + blocklistServer.replace({ + data: [ + { + value: server2Videos[0].url + } + ] + }) + + await wait(2000) + + await check(servers[0], server2Videos[0].uuid, false) + }) + + it('Should have video in blacklists', async function () { + const res = await getBlacklistedVideosList({ url: servers[0].url, token: servers[0].accessToken }) + + const videoBlacklists = res.body.data as VideoBlacklist[] + + expect(videoBlacklists).to.have.lengthOf(1) + expect(videoBlacklists[0].reason).to.contains('Automatically blocked from auto block plugin') + expect(videoBlacklists[0].video.name).to.equal(server2Videos[0].name) + }) + + it('Should not block a local video', async function () { + this.timeout(10000) + + await check(servers[0], server1Videos[0].uuid, true) + + blocklistServer.replace({ + data: [ + { + value: server1Videos[0].url + } + ] + }) + + await wait(2000) + + await check(servers[0], server1Videos[0].uuid, true) + }) + + it('Should remove a video block', async function () { + this.timeout(10000) + + await check(servers[0], server2Videos[0].uuid, false) + + blocklistServer.replace({ + data: [ + { + value: server2Videos[0].url, + action: 'remove' + } + ] + }) + + await wait(2000) + + await check(servers[0], server2Videos[0].uuid, true) + }) + + it('Should auto block a video, manually unblock it and do not reblock it automatically', async function () { + this.timeout(20000) + + const video = server2Videos[1] + + await check(servers[0], video.uuid, true) + + blocklistServer.replace({ + data: [ + { + value: video.url, + updatedAt: new Date().toISOString() + } + ] + }) + + await wait(2000) + + await check(servers[0], video.uuid, false) + + await removeVideoFromBlacklist(servers[0].url, servers[0].accessToken, video.uuid) + + await check(servers[0], video.uuid, true) + + killallServers([ servers[0] ]) + await reRunServer(servers[0]) + await wait(2000) + + await check(servers[0], video.uuid, true) + }) + + after(async function () { + await cleanupTests(servers) + }) +}) diff --git a/server/tests/external-plugins/index.ts b/server/tests/external-plugins/index.ts index d17894c15..31d818b51 100644 --- a/server/tests/external-plugins/index.ts +++ b/server/tests/external-plugins/index.ts @@ -1,2 +1,3 @@ import './auth-ldap' +import './auto-block-videos' import './auto-mute' -- 2.25.1