123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- /* 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'
- import {
- cleanupTests,
- createMultipleServers,
- doubleFollow,
- killallServers,
- makeGetRequest,
- PeerTubeServer,
- setAccessTokensToServers
- } from '@shared/server-commands'
- import { MockBlocklist } from '../shared'
- describe('Official plugin auto-mute', function () {
- const autoMuteListPath = '/plugins/auto-mute/router/api/v1/mute-list'
- let servers: PeerTubeServer[]
- let blocklistServer: MockBlocklist
- let port: number
- before(async function () {
- this.timeout(30000)
- servers = await createMultipleServers(2)
- await setAccessTokensToServers(servers)
- for (const server of servers) {
- await server.plugins.install({ npmName: 'peertube-plugin-auto-mute' })
- }
- blocklistServer = new MockBlocklist()
- port = await blocklistServer.initialize()
- await servers[0].videos.quickUpload({ name: 'video server 1' })
- await servers[1].videos.quickUpload({ name: 'video server 2' })
- await doubleFollow(servers[0], servers[1])
- })
- it('Should update plugin settings', async function () {
- await servers[0].plugins.updateSettings({
- npmName: 'peertube-plugin-auto-mute',
- settings: {
- 'blocklist-urls': `http://localhost:${port}/blocklist`,
- '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)
- const { total } = await servers[0].videos.list()
- expect(total).to.equal(1)
- })
- it('Should remove a server blocklist', async function () {
- this.timeout(10000)
- blocklistServer.replace({
- data: [
- {
- value: 'localhost:' + servers[1].port,
- action: 'remove'
- }
- ]
- })
- await wait(2000)
- const { total } = await servers[0].videos.list()
- expect(total).to.equal(2)
- })
- it('Should add an account blocklist', async function () {
- this.timeout(10000)
- blocklistServer.replace({
- data: [
- {
- value: 'root@localhost:' + servers[1].port
- }
- ]
- })
- await wait(2000)
- const { total } = await servers[0].videos.list()
- expect(total).to.equal(1)
- })
- 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)
- const { total } = await servers[0].videos.list()
- expect(total).to.equal(2)
- })
- 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)
- {
- const { total } = await servers[0].videos.list()
- expect(total).to.equal(1)
- }
- await servers[0].blocklist.removeFromServerBlocklist({ account })
- {
- const { total } = await servers[0].videos.list()
- expect(total).to.equal(2)
- }
- await killallServers([ servers[0] ])
- await servers[0].run()
- await wait(2000)
- {
- const { total } = await servers[0].videos.list()
- expect(total).to.equal(2)
- }
- })
- 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',
- expectedStatus: HttpStatusCode.FORBIDDEN_403
- })
- })
- it('Should enable auto mute list', async function () {
- await servers[0].plugins.updateSettings({
- 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',
- expectedStatus: HttpStatusCode.OK_200
- })
- })
- it('Should mute an account on server 1, and server 2 auto mutes it', async function () {
- this.timeout(20000)
- await servers[1].plugins.updateSettings({
- npmName: 'peertube-plugin-auto-mute',
- settings: {
- 'blocklist-urls': 'http://localhost:' + servers[0].port + autoMuteListPath,
- 'check-seconds-interval': 1,
- 'expose-mute-list': false
- }
- })
- await servers[0].blocklist.addToServerBlocklist({ account: 'root@localhost:' + servers[1].port })
- await servers[0].blocklist.addToMyBlocklist({ server: 'localhost:' + servers[1].port })
- const res = await makeGetRequest({
- url: servers[0].url,
- path: '/plugins/auto-mute/router/api/v1/mute-list',
- expectedStatus: HttpStatusCode.OK_200
- })
- 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) {
- const { total } = await server.videos.list()
- expect(total).to.equal(1)
- }
- })
- after(async function () {
- await blocklistServer.terminate()
- await cleanupTests(servers)
- })
- })
|