2020-04-09 05:00:30 -04:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
|
|
|
|
|
|
|
import 'mocha'
|
2020-04-09 05:35:29 -04:00
|
|
|
import {
|
|
|
|
checkVideoFilesWereRemoved,
|
2020-05-07 08:58:24 -04:00
|
|
|
doubleFollow,
|
2020-04-09 05:35:29 -04:00
|
|
|
getPluginTestPath,
|
|
|
|
getVideo,
|
|
|
|
installPlugin,
|
2020-05-07 08:58:24 -04:00
|
|
|
makePostBodyRequest,
|
2020-04-09 05:35:29 -04:00
|
|
|
setAccessTokensToServers,
|
|
|
|
uploadVideoAndGetId,
|
2020-05-07 08:58:24 -04:00
|
|
|
viewVideo,
|
|
|
|
getVideosList,
|
2021-04-09 08:51:28 -04:00
|
|
|
waitJobs,
|
|
|
|
makeGetRequest
|
2020-04-09 05:35:29 -04:00
|
|
|
} from '../../../shared/extra-utils'
|
2020-05-07 08:58:24 -04:00
|
|
|
import { cleanupTests, flushAndRunMultipleServers, ServerInfo, waitUntilLog } from '../../../shared/extra-utils/server/servers'
|
|
|
|
import { expect } from 'chai'
|
2020-12-07 08:32:36 -05:00
|
|
|
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
|
2020-05-07 08:58:24 -04:00
|
|
|
|
|
|
|
function postCommand (server: ServerInfo, command: string, bodyArg?: object) {
|
|
|
|
const body = { command }
|
|
|
|
if (bodyArg) Object.assign(body, bodyArg)
|
|
|
|
|
|
|
|
return makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: '/plugins/test-four/router/commander',
|
|
|
|
fields: body,
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.NO_CONTENT_204
|
2020-05-07 08:58:24 -04:00
|
|
|
})
|
|
|
|
}
|
2020-04-09 05:00:30 -04:00
|
|
|
|
|
|
|
describe('Test plugin helpers', function () {
|
2020-05-07 08:58:24 -04:00
|
|
|
let servers: ServerInfo[]
|
2020-04-09 05:00:30 -04:00
|
|
|
|
|
|
|
before(async function () {
|
2020-05-07 08:58:24 -04:00
|
|
|
this.timeout(60000)
|
|
|
|
|
|
|
|
servers = await flushAndRunMultipleServers(2)
|
|
|
|
await setAccessTokensToServers(servers)
|
2020-04-09 05:00:30 -04:00
|
|
|
|
2020-05-07 08:58:24 -04:00
|
|
|
await doubleFollow(servers[0], servers[1])
|
2020-04-09 05:00:30 -04:00
|
|
|
|
|
|
|
await installPlugin({
|
2020-05-07 08:58:24 -04:00
|
|
|
url: servers[0].url,
|
|
|
|
accessToken: servers[0].accessToken,
|
2020-04-09 05:00:30 -04:00
|
|
|
path: getPluginTestPath('-four')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-05-07 08:58:24 -04:00
|
|
|
describe('Logger', function () {
|
|
|
|
|
|
|
|
it('Should have logged things', async function () {
|
|
|
|
await waitUntilLog(servers[0], 'localhost:' + servers[0].port + ' peertube-plugin-test-four', 1, false)
|
|
|
|
await waitUntilLog(servers[0], 'Hello world from plugin four', 1)
|
|
|
|
})
|
2020-04-09 05:00:30 -04:00
|
|
|
})
|
|
|
|
|
2020-05-07 08:58:24 -04:00
|
|
|
describe('Database', function () {
|
|
|
|
|
|
|
|
it('Should have made a query', async function () {
|
|
|
|
await waitUntilLog(servers[0], `root email is admin${servers[0].internalServerNumber}@example.com`)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('Config', function () {
|
|
|
|
|
|
|
|
it('Should have the correct webserver url', async function () {
|
|
|
|
await waitUntilLog(servers[0], `server url is http://localhost:${servers[0].port}`)
|
|
|
|
})
|
2021-04-09 08:51:28 -04:00
|
|
|
|
|
|
|
it('Should have the correct config', async function () {
|
|
|
|
const res = await makeGetRequest({
|
|
|
|
url: servers[0].url,
|
|
|
|
path: '/plugins/test-four/router/server-config',
|
|
|
|
statusCodeExpected: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
|
|
|
|
expect(res.body.serverConfig).to.exist
|
|
|
|
expect(res.body.serverConfig.instance.name).to.equal('PeerTube')
|
|
|
|
})
|
2020-05-07 08:58:24 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('Server', function () {
|
|
|
|
|
|
|
|
it('Should get the server actor', async function () {
|
|
|
|
await waitUntilLog(servers[0], 'server actor name is peertube')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-09 08:51:28 -04:00
|
|
|
describe('Plugin', function () {
|
|
|
|
|
|
|
|
it('Should get the base static route', async function () {
|
|
|
|
const res = await makeGetRequest({
|
|
|
|
url: servers[0].url,
|
|
|
|
path: '/plugins/test-four/router/static-route',
|
|
|
|
statusCodeExpected: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
|
|
|
|
expect(res.body.staticRoute).to.equal('/plugins/test-four/0.0.1/static/')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-05-07 08:58:24 -04:00
|
|
|
describe('Moderation', function () {
|
|
|
|
let videoUUIDServer1: string
|
|
|
|
|
|
|
|
before(async function () {
|
2020-11-06 10:43:43 -05:00
|
|
|
this.timeout(30000)
|
2020-05-07 08:58:24 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
const res = await uploadVideoAndGetId({ server: servers[0], videoName: 'video server 1' })
|
|
|
|
videoUUIDServer1 = res.uuid
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
await uploadVideoAndGetId({ server: servers[1], videoName: 'video server 2' })
|
|
|
|
}
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
const res = await getVideosList(servers[0].url)
|
|
|
|
const videos = res.body.data
|
|
|
|
|
|
|
|
expect(videos).to.have.lengthOf(2)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should mute server 2', async function () {
|
|
|
|
this.timeout(10000)
|
|
|
|
await postCommand(servers[0], 'blockServer', { hostToBlock: `localhost:${servers[1].port}` })
|
|
|
|
|
|
|
|
const res = await getVideosList(servers[0].url)
|
|
|
|
const videos = res.body.data
|
|
|
|
|
|
|
|
expect(videos).to.have.lengthOf(1)
|
|
|
|
expect(videos[0].name).to.equal('video server 1')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should unmute server 2', async function () {
|
|
|
|
await postCommand(servers[0], 'unblockServer', { hostToUnblock: `localhost:${servers[1].port}` })
|
|
|
|
|
|
|
|
const res = await getVideosList(servers[0].url)
|
|
|
|
const videos = res.body.data
|
|
|
|
|
|
|
|
expect(videos).to.have.lengthOf(2)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should mute account of server 2', async function () {
|
|
|
|
await postCommand(servers[0], 'blockAccount', { handleToBlock: `root@localhost:${servers[1].port}` })
|
|
|
|
|
|
|
|
const res = await getVideosList(servers[0].url)
|
|
|
|
const videos = res.body.data
|
|
|
|
|
|
|
|
expect(videos).to.have.lengthOf(1)
|
|
|
|
expect(videos[0].name).to.equal('video server 1')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should unmute account of server 2', async function () {
|
|
|
|
await postCommand(servers[0], 'unblockAccount', { handleToUnblock: `root@localhost:${servers[1].port}` })
|
|
|
|
|
|
|
|
const res = await getVideosList(servers[0].url)
|
|
|
|
const videos = res.body.data
|
|
|
|
|
|
|
|
expect(videos).to.have.lengthOf(2)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should blacklist video', async function () {
|
|
|
|
this.timeout(10000)
|
|
|
|
|
|
|
|
await postCommand(servers[0], 'blacklist', { videoUUID: videoUUIDServer1, unfederate: true })
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
for (const server of servers) {
|
|
|
|
const res = await getVideosList(server.url)
|
|
|
|
const videos = res.body.data
|
|
|
|
|
|
|
|
expect(videos).to.have.lengthOf(1)
|
|
|
|
expect(videos[0].name).to.equal('video server 2')
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should unblacklist video', async function () {
|
|
|
|
this.timeout(10000)
|
|
|
|
|
|
|
|
await postCommand(servers[0], 'unblacklist', { videoUUID: videoUUIDServer1 })
|
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
for (const server of servers) {
|
|
|
|
const res = await getVideosList(server.url)
|
|
|
|
const videos = res.body.data
|
|
|
|
|
|
|
|
expect(videos).to.have.lengthOf(2)
|
|
|
|
}
|
|
|
|
})
|
2020-04-09 05:00:30 -04:00
|
|
|
})
|
|
|
|
|
2020-05-07 08:58:24 -04:00
|
|
|
describe('Videos', function () {
|
|
|
|
let videoUUID: string
|
|
|
|
|
|
|
|
before(async () => {
|
|
|
|
const res = await uploadVideoAndGetId({ server: servers[0], videoName: 'video1' })
|
|
|
|
videoUUID = res.uuid
|
|
|
|
})
|
2020-04-09 05:35:29 -04:00
|
|
|
|
2020-05-07 08:58:24 -04:00
|
|
|
it('Should remove a video after a view', async function () {
|
2020-12-11 04:36:05 -05:00
|
|
|
this.timeout(40000)
|
2020-04-09 05:35:29 -04:00
|
|
|
|
2020-05-07 08:58:24 -04:00
|
|
|
// Should not throw -> video exists
|
|
|
|
await getVideo(servers[0].url, videoUUID)
|
|
|
|
// Should delete the video
|
|
|
|
await viewVideo(servers[0].url, videoUUID)
|
2020-04-09 05:35:29 -04:00
|
|
|
|
2020-05-07 08:58:24 -04:00
|
|
|
await waitUntilLog(servers[0], 'Video deleted by plugin four.')
|
2020-04-09 05:35:29 -04:00
|
|
|
|
2020-05-07 08:58:24 -04:00
|
|
|
try {
|
|
|
|
// Should throw because the video should have been deleted
|
|
|
|
await getVideo(servers[0].url, videoUUID)
|
|
|
|
throw new Error('Video exists')
|
|
|
|
} catch (err) {
|
|
|
|
if (err.message.includes('exists')) throw err
|
|
|
|
}
|
2020-04-09 05:35:29 -04:00
|
|
|
|
2020-05-07 08:58:24 -04:00
|
|
|
await checkVideoFilesWereRemoved(videoUUID, servers[0].internalServerNumber)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should have fetched the video by URL', async function () {
|
|
|
|
await waitUntilLog(servers[0], `video from DB uuid is ${videoUUID}`)
|
|
|
|
})
|
2020-04-09 05:35:29 -04:00
|
|
|
})
|
|
|
|
|
2020-04-09 05:00:30 -04:00
|
|
|
after(async function () {
|
2020-05-07 08:58:24 -04:00
|
|
|
await cleanupTests(servers)
|
2020-04-09 05:00:30 -04:00
|
|
|
})
|
|
|
|
})
|