1
0
Fork 0
peertube/packages/tests/src/cli/peertube.ts

258 lines
7.9 KiB
TypeScript
Raw Normal View History

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