PeerTube/server/tests/external-plugins/auto-mute.ts

226 lines
5.5 KiB
TypeScript
Raw Normal View History

2020-05-07 16:32:54 +02:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
import 'mocha'
import { expect } from 'chai'
import { wait } from '@shared/core-utils'
import { HttpStatusCode } from '@shared/models'
2020-05-11 10:15:44 +02:00
import {
2021-07-07 10:33:49 +02:00
cleanupTests,
2021-07-16 09:47:51 +02:00
createMultipleServers,
2021-07-16 14:27:30 +02:00
doubleFollow,
2021-07-07 10:33:49 +02:00
killallServers,
2020-05-11 10:15:44 +02:00
makeGetRequest,
2021-07-16 09:47:51 +02:00
PeerTubeServer,
setAccessTokensToServers
} from '@shared/server-commands'
import { MockBlocklist } from '../shared'
2020-05-07 16:32:54 +02:00
describe('Official plugin auto-mute', function () {
2020-05-11 10:15:44 +02:00
const autoMuteListPath = '/plugins/auto-mute/router/api/v1/mute-list'
2021-07-16 09:47:51 +02:00
let servers: PeerTubeServer[]
2020-05-07 16:32:54 +02:00
let blocklistServer: MockBlocklist
let port: number
2020-05-07 16:32:54 +02:00
before(async function () {
this.timeout(30000)
2021-07-16 09:47:51 +02:00
servers = await createMultipleServers(2)
2020-05-07 16:32:54 +02:00
await setAccessTokensToServers(servers)
2020-05-11 10:15:44 +02:00
for (const server of servers) {
2021-07-16 09:04:35 +02:00
await server.plugins.install({ npmName: 'peertube-plugin-auto-mute' })
2020-05-11 10:15:44 +02:00
}
2020-05-07 16:32:54 +02:00
blocklistServer = new MockBlocklist()
port = await blocklistServer.initialize()
2020-05-07 16:32:54 +02:00
2021-07-16 10:42:24 +02:00
await servers[0].videos.quickUpload({ name: 'video server 1' })
await servers[1].videos.quickUpload({ name: 'video server 2' })
2020-05-07 16:32:54 +02:00
await doubleFollow(servers[0], servers[1])
})
it('Should update plugin settings', async function () {
2021-07-16 09:04:35 +02:00
await servers[0].plugins.updateSettings({
2020-05-07 16:32:54 +02:00
npmName: 'peertube-plugin-auto-mute',
settings: {
'blocklist-urls': `http://localhost:${port}/blocklist`,
2020-05-07 16:32:54 +02:00
'check-seconds-interval': 1
}
})
})
it('Should add a server blocklist', async function () {
this.timeout(10000)
blocklistServer.replace({
data: [
{
value: 'localhost:' + servers[1].port
}
]
})
await wait(2000)
2021-07-16 09:04:35 +02:00
const { total } = await servers[0].videos.list()
2021-07-15 10:02:54 +02:00
expect(total).to.equal(1)
2020-05-07 16:32:54 +02:00
})
it('Should remove a server blocklist', async function () {
this.timeout(10000)
blocklistServer.replace({
data: [
{
value: 'localhost:' + servers[1].port,
action: 'remove'
}
]
})
await wait(2000)
2021-07-16 09:04:35 +02:00
const { total } = await servers[0].videos.list()
2021-07-15 10:02:54 +02:00
expect(total).to.equal(2)
2020-05-07 16:32:54 +02:00
})
it('Should add an account blocklist', async function () {
this.timeout(10000)
blocklistServer.replace({
data: [
{
value: 'root@localhost:' + servers[1].port
}
]
})
await wait(2000)
2021-07-16 09:04:35 +02:00
const { total } = await servers[0].videos.list()
2021-07-15 10:02:54 +02:00
expect(total).to.equal(1)
2020-05-07 16:32:54 +02:00
})
it('Should remove an account blocklist', async function () {
this.timeout(10000)
blocklistServer.replace({
data: [
{
value: 'root@localhost:' + servers[1].port,
action: 'remove'
}
]
})
await wait(2000)
2021-07-16 09:04:35 +02:00
const { total } = await servers[0].videos.list()
2021-07-15 10:02:54 +02:00
expect(total).to.equal(2)
2020-05-07 16:32:54 +02:00
})
2020-05-07 17:08:16 +02:00
it('Should auto mute an account, manually unmute it and do not remute it automatically', async function () {
this.timeout(20000)
const account = 'root@localhost:' + servers[1].port
blocklistServer.replace({
data: [
{
value: account,
updatedAt: new Date().toISOString()
}
]
})
await wait(2000)
{
2021-07-16 09:04:35 +02:00
const { total } = await servers[0].videos.list()
2021-07-15 10:02:54 +02:00
expect(total).to.equal(1)
2020-05-07 17:08:16 +02:00
}
2021-07-16 09:04:35 +02:00
await servers[0].blocklist.removeFromServerBlocklist({ account })
2020-05-07 17:08:16 +02:00
{
2021-07-16 09:04:35 +02:00
const { total } = await servers[0].videos.list()
2021-07-15 10:02:54 +02:00
expect(total).to.equal(2)
2020-05-07 17:08:16 +02:00
}
2021-07-09 15:37:43 +02:00
await killallServers([ servers[0] ])
2021-07-16 09:47:51 +02:00
await servers[0].run()
2020-05-07 17:08:16 +02:00
await wait(2000)
{
2021-07-16 09:04:35 +02:00
const { total } = await servers[0].videos.list()
2021-07-15 10:02:54 +02:00
expect(total).to.equal(2)
2020-05-07 17:08:16 +02:00
}
})
2020-05-11 10:15:44 +02:00
it('Should not expose the auto mute list', async function () {
await makeGetRequest({
url: servers[0].url,
path: '/plugins/auto-mute/router/api/v1/mute-list',
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.FORBIDDEN_403
2020-05-11 10:15:44 +02:00
})
})
it('Should enable auto mute list', async function () {
2021-07-16 09:04:35 +02:00
await servers[0].plugins.updateSettings({
2020-05-11 10:15:44 +02:00
npmName: 'peertube-plugin-auto-mute',
settings: {
'blocklist-urls': '',
'check-seconds-interval': 1,
'expose-mute-list': true
}
})
await makeGetRequest({
url: servers[0].url,
path: '/plugins/auto-mute/router/api/v1/mute-list',
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.OK_200
2020-05-11 10:15:44 +02:00
})
})
it('Should mute an account on server 1, and server 2 auto mutes it', async function () {
this.timeout(20000)
2021-07-16 09:04:35 +02:00
await servers[1].plugins.updateSettings({
2020-05-11 10:15:44 +02:00
npmName: 'peertube-plugin-auto-mute',
settings: {
'blocklist-urls': 'http://localhost:' + servers[0].port + autoMuteListPath,
'check-seconds-interval': 1,
'expose-mute-list': false
}
})
2021-07-16 09:04:35 +02:00
await servers[0].blocklist.addToServerBlocklist({ account: 'root@localhost:' + servers[1].port })
await servers[0].blocklist.addToMyBlocklist({ server: 'localhost:' + servers[1].port })
2020-05-11 10:15:44 +02:00
const res = await makeGetRequest({
url: servers[0].url,
path: '/plugins/auto-mute/router/api/v1/mute-list',
2021-07-16 10:42:24 +02:00
expectedStatus: HttpStatusCode.OK_200
2020-05-11 10:15:44 +02:00
})
const data = res.body.data
expect(data).to.have.lengthOf(1)
expect(data[0].updatedAt).to.exist
expect(data[0].value).to.equal('root@localhost:' + servers[1].port)
await wait(2000)
for (const server of servers) {
2021-07-16 09:04:35 +02:00
const { total } = await server.videos.list()
2021-07-15 10:02:54 +02:00
expect(total).to.equal(1)
2020-05-11 10:15:44 +02:00
}
})
2020-05-07 16:32:54 +02:00
after(async function () {
await blocklistServer.terminate()
2020-05-07 16:32:54 +02:00
await cleanupTests(servers)
})
})