2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2018-09-13 08:27:44 -04:00
|
|
|
import 'mocha'
|
2019-06-13 05:09:38 -04:00
|
|
|
import { expect } from 'chai'
|
2021-12-17 05:58:15 -05:00
|
|
|
import { areHttpImportTestsDisabled, buildAbsoluteFixturePath } from '@shared/core-utils'
|
2018-09-13 08:27:44 -04:00
|
|
|
import {
|
2019-06-13 05:09:38 -04:00
|
|
|
cleanupTests,
|
2021-07-05 10:37:50 -04:00
|
|
|
CLICommand,
|
2021-07-16 03:47:51 -04:00
|
|
|
createSingleServer,
|
2021-07-16 04:19:16 -04:00
|
|
|
doubleFollow,
|
2021-07-16 03:47:51 -04:00
|
|
|
PeerTubeServer,
|
2020-01-31 10:56:52 -05:00
|
|
|
setAccessTokensToServers,
|
2019-06-13 07:53:28 -04:00
|
|
|
waitJobs
|
2021-12-17 05:58:15 -05:00
|
|
|
} from '@shared/server-commands'
|
|
|
|
import { FIXTURE_URLS, testHelloWorldRegisteredSettings } from '../shared'
|
2018-09-13 08:27:44 -04:00
|
|
|
|
|
|
|
describe('Test CLI wrapper', function () {
|
2021-07-16 03:47:51 -04:00
|
|
|
let server: PeerTubeServer
|
2019-06-13 07:53:28 -04:00
|
|
|
let userAccessToken: string
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2021-07-05 10:37:50 -04:00
|
|
|
let cliCommand: CLICommand
|
|
|
|
|
2018-09-13 08:27:44 -04:00
|
|
|
const cmd = 'node ./dist/server/tools/peertube.js'
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(30000)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
server = await createSingleServer(1)
|
2018-09-13 08:27:44 -04:00
|
|
|
await setAccessTokensToServers([ server ])
|
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.users.create({ username: 'user_1', password: 'super_password' })
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
userAccessToken = await server.login.getAccessToken({ username: 'user_1', password: 'super_password' })
|
2019-06-13 05:09:38 -04:00
|
|
|
|
|
|
|
{
|
2021-07-09 05:21:30 -04:00
|
|
|
const attributes = { name: 'user_channel', displayName: 'User channel', support: 'super support text' }
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.channels.create({ token: userAccessToken, attributes })
|
2019-06-13 05:09:38 -04:00
|
|
|
}
|
2021-07-05 10:37:50 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
cliCommand = server.cli
|
2018-09-13 08:27:44 -04:00
|
|
|
})
|
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
describe('Authentication and instance selection', function () {
|
2018-09-13 08:27:44 -04:00
|
|
|
|
2021-07-09 09:03:44 -04:00
|
|
|
it('Should get an access token', async function () {
|
|
|
|
const stdout = await cliCommand.execWithEnv(`${cmd} token --url ${server.url} --username user_1 --password super_password`)
|
|
|
|
const token = stdout.trim()
|
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const body = await server.users.getMyInfo({ token })
|
2021-07-13 08:23:01 -04:00
|
|
|
expect(body.username).to.equal('user_1')
|
2021-07-09 09:03:44 -04:00
|
|
|
})
|
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should display no selected instance', async function () {
|
|
|
|
this.timeout(60000)
|
2018-09-13 08:27:44 -04:00
|
|
|
|
2021-07-05 10:37:50 -04:00
|
|
|
const stdout = await cliCommand.execWithEnv(`${cmd} --help`)
|
2019-07-19 04:37:35 -04:00
|
|
|
expect(stdout).to.contain('no instance selected')
|
|
|
|
})
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should add a user', async function () {
|
|
|
|
this.timeout(60000)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2021-07-05 10:37:50 -04:00
|
|
|
await cliCommand.execWithEnv(`${cmd} auth add -u ${server.url} -U user_1 -p super_password`)
|
2019-07-19 04:37:35 -04:00
|
|
|
})
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2020-12-27 10:13:11 -05:00
|
|
|
it('Should not fail to add a user if there is a slash at the end of the instance URL', async function () {
|
|
|
|
this.timeout(60000)
|
|
|
|
|
2021-07-05 10:37:50 -04:00
|
|
|
let fullServerURL = server.url + '/'
|
|
|
|
|
|
|
|
await cliCommand.execWithEnv(`${cmd} auth add -u ${fullServerURL} -U user_1 -p super_password`)
|
2020-12-27 10:13:11 -05:00
|
|
|
|
|
|
|
fullServerURL = server.url + '/asdfasdf'
|
2021-07-05 10:37:50 -04:00
|
|
|
await cliCommand.execWithEnv(`${cmd} auth add -u ${fullServerURL} -U user_1 -p super_password`)
|
2020-12-27 10:13:11 -05:00
|
|
|
})
|
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should default to this user', async function () {
|
|
|
|
this.timeout(60000)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2021-07-05 10:37:50 -04:00
|
|
|
const stdout = await cliCommand.execWithEnv(`${cmd} --help`)
|
2019-07-19 04:37:35 -04:00
|
|
|
expect(stdout).to.contain(`instance ${server.url} selected`)
|
|
|
|
})
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should remember the user', async function () {
|
|
|
|
this.timeout(60000)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2021-07-05 10:37:50 -04:00
|
|
|
const stdout = await cliCommand.execWithEnv(`${cmd} auth list`)
|
2019-07-19 04:37:35 -04:00
|
|
|
expect(stdout).to.contain(server.url)
|
|
|
|
})
|
2019-06-13 05:09:38 -04:00
|
|
|
})
|
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
describe('Video upload/import', function () {
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should upload a video', async function () {
|
|
|
|
this.timeout(60000)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
const fixture = buildAbsoluteFixturePath('60fps_720p_small.mp4')
|
|
|
|
const params = `-f ${fixture} --video-name 'test upload' --channel-name user_channel --support 'support_text'`
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2021-07-05 10:37:50 -04:00
|
|
|
await cliCommand.execWithEnv(`${cmd} upload ${params}`)
|
2019-07-19 04:37:35 -04:00
|
|
|
})
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should have the video uploaded', async function () {
|
2021-07-16 03:04:35 -04:00
|
|
|
const { total, data } = await server.videos.list()
|
2021-07-15 04:02:54 -04:00
|
|
|
expect(total).to.equal(1)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const video = await server.videos.get({ id: data[0].uuid })
|
2019-07-19 04:37:35 -04:00
|
|
|
expect(video.name).to.equal('test upload')
|
|
|
|
expect(video.support).to.equal('support_text')
|
|
|
|
expect(video.channel.name).to.equal('user_channel')
|
|
|
|
})
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should import a video', async function () {
|
2020-11-17 08:23:52 -05:00
|
|
|
if (areHttpImportTestsDisabled()) return
|
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
this.timeout(60000)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2021-07-16 04:19:16 -04:00
|
|
|
const params = `--target-url ${FIXTURE_URLS.youtube} --channel-name user_channel`
|
2021-07-05 10:37:50 -04:00
|
|
|
await cliCommand.execWithEnv(`${cmd} import ${params}`)
|
2019-07-19 04:37:35 -04:00
|
|
|
})
|
2018-09-13 08:27:44 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should have imported the video', async function () {
|
2020-11-17 08:23:52 -05:00
|
|
|
if (areHttpImportTestsDisabled()) return
|
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
this.timeout(60000)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
await waitJobs([ server ])
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const { total, data } = await server.videos.list()
|
2021-07-15 04:02:54 -04:00
|
|
|
expect(total).to.equal(2)
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
const video = data.find(v => v.name === 'small video - youtube')
|
2019-07-19 04:37:35 -04:00
|
|
|
expect(video).to.not.be.undefined
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const videoDetails = await server.videos.get({ id: video.id })
|
2019-07-19 04:37:35 -04:00
|
|
|
expect(videoDetails.channel.name).to.equal('user_channel')
|
|
|
|
expect(videoDetails.support).to.equal('super support text')
|
|
|
|
expect(videoDetails.nsfw).to.be.false
|
2022-01-19 08:58:16 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should not import again the same video', async function () {
|
|
|
|
if (areHttpImportTestsDisabled()) return
|
|
|
|
|
|
|
|
this.timeout(60000)
|
|
|
|
|
|
|
|
const params = `--target-url ${FIXTURE_URLS.youtube} --channel-name user_channel`
|
|
|
|
await cliCommand.execWithEnv(`${cmd} import ${params}`)
|
|
|
|
|
|
|
|
await waitJobs([ server ])
|
|
|
|
|
|
|
|
const { total, data } = await server.videos.list()
|
|
|
|
expect(total).to.equal(2)
|
|
|
|
|
|
|
|
const videos = data.filter(v => v.name === 'small video - youtube')
|
|
|
|
expect(videos).to.have.lengthOf(1)
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
// So we can reimport it
|
2022-01-19 08:58:16 -05:00
|
|
|
await server.videos.remove({ token: userAccessToken, id: videos[0].id })
|
2019-07-19 04:37:35 -04:00
|
|
|
})
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should import and override some imported attributes', async function () {
|
2020-11-17 08:23:52 -05:00
|
|
|
if (areHttpImportTestsDisabled()) return
|
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
this.timeout(60000)
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2021-07-16 04:19:16 -04:00
|
|
|
const params = `--target-url ${FIXTURE_URLS.youtube} ` +
|
2021-07-08 10:49:51 -04:00
|
|
|
`--channel-name user_channel --video-name toto --nsfw --support support`
|
2021-07-05 10:37:50 -04:00
|
|
|
await cliCommand.execWithEnv(`${cmd} import ${params}`)
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
await waitJobs([ server ])
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
{
|
2021-07-16 03:04:35 -04:00
|
|
|
const { total, data } = await server.videos.list()
|
2021-07-15 04:02:54 -04:00
|
|
|
expect(total).to.equal(2)
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
const video = data.find(v => v.name === 'toto')
|
2019-07-19 04:37:35 -04:00
|
|
|
expect(video).to.not.be.undefined
|
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const videoDetails = await server.videos.get({ id: video.id })
|
2019-07-19 04:37:35 -04:00
|
|
|
expect(videoDetails.channel.name).to.equal('user_channel')
|
|
|
|
expect(videoDetails.support).to.equal('support')
|
|
|
|
expect(videoDetails.nsfw).to.be.true
|
|
|
|
expect(videoDetails.commentsEnabled).to.be.true
|
|
|
|
}
|
|
|
|
})
|
2019-06-13 05:09:38 -04:00
|
|
|
})
|
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
describe('Admin auth', function () {
|
|
|
|
|
|
|
|
it('Should remove the auth user', async function () {
|
2021-07-05 10:37:50 -04:00
|
|
|
await cliCommand.execWithEnv(`${cmd} auth del ${server.url}`)
|
2019-07-19 04:37:35 -04:00
|
|
|
|
2021-07-05 10:37:50 -04:00
|
|
|
const stdout = await cliCommand.execWithEnv(`${cmd} --help`)
|
2019-07-19 04:37:35 -04:00
|
|
|
expect(stdout).to.contain('no instance selected')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should add the admin user', async function () {
|
2021-07-05 10:37:50 -04:00
|
|
|
await cliCommand.execWithEnv(`${cmd} auth add -u ${server.url} -U root -p test${server.internalServerNumber}`)
|
2019-07-19 04:37:35 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('Manage plugins', function () {
|
|
|
|
|
|
|
|
it('Should install a plugin', async function () {
|
|
|
|
this.timeout(60000)
|
|
|
|
|
2021-07-05 10:37:50 -04:00
|
|
|
await cliCommand.execWithEnv(`${cmd} plugins install --npm-name peertube-plugin-hello-world`)
|
2019-07-19 04:37:35 -04:00
|
|
|
})
|
|
|
|
|
2020-11-27 05:41:38 -05:00
|
|
|
it('Should have registered settings', async function () {
|
|
|
|
await testHelloWorldRegisteredSettings(server)
|
|
|
|
})
|
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should list installed plugins', async function () {
|
2021-07-05 10:37:50 -04:00
|
|
|
const res = await cliCommand.execWithEnv(`${cmd} plugins list`)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
expect(res).to.contain('peertube-plugin-hello-world')
|
|
|
|
})
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should uninstall the plugin', async function () {
|
2021-07-05 10:37:50 -04:00
|
|
|
const res = await cliCommand.execWithEnv(`${cmd} plugins uninstall --npm-name peertube-plugin-hello-world`)
|
2021-12-03 04:14:01 -05:00
|
|
|
|
|
|
|
expect(res).to.not.contain('peertube-plugin-hello-world')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should install a plugin in requested version', async function () {
|
|
|
|
this.timeout(60000)
|
|
|
|
|
|
|
|
await cliCommand.execWithEnv(`${cmd} plugins install --npm-name peertube-plugin-hello-world --plugin-version 0.0.17`)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should list installed plugins, in correct version', async function () {
|
|
|
|
const res = await cliCommand.execWithEnv(`${cmd} plugins list`)
|
|
|
|
|
|
|
|
expect(res).to.contain('peertube-plugin-hello-world')
|
|
|
|
expect(res).to.contain('0.0.17')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should uninstall the plugin again', async function () {
|
|
|
|
const res = await cliCommand.execWithEnv(`${cmd} plugins uninstall --npm-name peertube-plugin-hello-world`)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
expect(res).to.not.contain('peertube-plugin-hello-world')
|
|
|
|
})
|
2018-09-13 08:27:44 -04:00
|
|
|
})
|
|
|
|
|
2020-01-28 05:07:23 -05:00
|
|
|
describe('Manage video redundancies', function () {
|
2021-07-16 03:47:51 -04:00
|
|
|
let anotherServer: PeerTubeServer
|
2020-01-28 05:07:23 -05:00
|
|
|
let video1Server2: number
|
2021-07-16 03:47:51 -04:00
|
|
|
let servers: PeerTubeServer[]
|
2020-01-28 05:07:23 -05:00
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(120000)
|
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
anotherServer = await createSingleServer(2)
|
2020-01-28 05:07:23 -05:00
|
|
|
await setAccessTokensToServers([ anotherServer ])
|
|
|
|
|
|
|
|
await doubleFollow(server, anotherServer)
|
|
|
|
|
|
|
|
servers = [ server, anotherServer ]
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const { uuid } = await anotherServer.videos.quickUpload({ name: 'super video' })
|
2020-01-28 05:07:23 -05:00
|
|
|
await waitJobs(servers)
|
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
video1Server2 = await server.videos.getId({ uuid })
|
2020-01-28 05:07:23 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should add a redundancy', async function () {
|
|
|
|
this.timeout(60000)
|
|
|
|
|
|
|
|
const params = `add --video ${video1Server2}`
|
2021-07-05 10:37:50 -04:00
|
|
|
await cliCommand.execWithEnv(`${cmd} redundancy ${params}`)
|
2020-01-28 05:07:23 -05:00
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should list redundancies', async function () {
|
|
|
|
this.timeout(60000)
|
|
|
|
|
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const params = 'list-my-redundancies'
|
2021-07-05 10:37:50 -04:00
|
|
|
const stdout = await cliCommand.execWithEnv(`${cmd} redundancy ${params}`)
|
2020-01-28 05:07:23 -05:00
|
|
|
|
|
|
|
expect(stdout).to.contain('super video')
|
|
|
|
expect(stdout).to.contain(`localhost:${server.port}`)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should remove a redundancy', async function () {
|
|
|
|
this.timeout(60000)
|
|
|
|
|
|
|
|
const params = `remove --video ${video1Server2}`
|
2021-07-05 10:37:50 -04:00
|
|
|
await cliCommand.execWithEnv(`${cmd} redundancy ${params}`)
|
2020-01-28 05:07:23 -05:00
|
|
|
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
const params = 'list-my-redundancies'
|
2021-07-05 10:37:50 -04:00
|
|
|
const stdout = await cliCommand.execWithEnv(`${cmd} redundancy ${params}`)
|
2020-01-28 05:07:23 -05:00
|
|
|
|
|
|
|
expect(stdout).to.not.contain('super video')
|
|
|
|
}
|
|
|
|
})
|
2020-01-28 07:57:04 -05:00
|
|
|
|
|
|
|
after(async function () {
|
|
|
|
this.timeout(10000)
|
|
|
|
|
|
|
|
await cleanupTests([ anotherServer ])
|
|
|
|
})
|
2020-01-28 05:07:23 -05:00
|
|
|
})
|
|
|
|
|
2018-09-13 08:27:44 -04:00
|
|
|
after(async function () {
|
2018-11-14 09:45:50 -05:00
|
|
|
this.timeout(10000)
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
await cleanupTests([ server ])
|
2018-09-13 08:27:44 -04:00
|
|
|
})
|
|
|
|
})
|