PeerTube/server/tests/cli/peertube.ts

336 lines
10 KiB
TypeScript
Raw Normal View History

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