1
0
Fork 0
peertube/server/tests/cli/peertube.ts

291 lines
8.6 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 'mocha'
2019-06-13 09:09:38 +00:00
import { expect } from 'chai'
2020-11-17 13:23:52 +00:00
import { Video, VideoDetails } from '../../../shared'
import {
2020-11-17 13:23:52 +00:00
areHttpImportTestsDisabled,
2019-06-13 09:09:38 +00:00
buildAbsoluteFixturePath,
cleanupTests,
2021-07-05 14:37:50 +00:00
CLICommand,
2020-01-31 15:56:52 +00:00
createUser,
doubleFollow,
2019-04-24 08:53:40 +00:00
flushAndRunServer,
2020-01-31 15:56:52 +00:00
getLocalIdByUUID,
getVideo,
2019-06-13 09:09:38 +00:00
getVideosList,
2021-07-08 14:49:51 +00:00
ImportsCommand,
2020-01-31 15:56:52 +00:00
removeVideo,
ServerInfo,
2020-01-31 15:56:52 +00:00
setAccessTokensToServers,
testHelloWorldRegisteredSettings,
2020-01-31 15:56:52 +00:00
uploadVideoAndGetId,
userLogin,
waitJobs
} from '../../../shared/extra-utils'
describe('Test CLI wrapper', function () {
let server: ServerInfo
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 ./dist/server/tools/peertube.js'
before(async function () {
this.timeout(30000)
2019-06-13 09:09:38 +00:00
2019-04-24 08:53:40 +00:00
server = await flushAndRunServer(1)
await setAccessTokensToServers([ server ])
2019-06-13 09:09:38 +00:00
await createUser({ url: server.url, accessToken: server.accessToken, username: 'user_1', password: 'super_password' })
userAccessToken = await userLogin(server, { 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' }
await server.channelsCommand.create({ token: userAccessToken, attributes })
2019-06-13 09:09:38 +00:00
}
2021-07-05 14:37:50 +00:00
cliCommand = server.cliCommand
})
2019-07-19 08:37:35 +00:00
describe('Authentication and instance selection', function () {
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
})
2019-07-19 08:37:35 +00:00
describe('Video upload/import', 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 () {
const res = await getVideosList(server.url)
2019-06-13 09:09:38 +00:00
2019-07-19 08:37:35 +00:00
expect(res.body.total).to.equal(1)
2019-07-19 08:37:35 +00:00
const videos: Video[] = res.body.data
2020-01-31 15:56:52 +00:00
const video: VideoDetails = (await getVideo(server.url, videos[0].uuid)).body
2019-06-13 09:09:38 +00:00
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
it('Should import a video', async function () {
2020-11-17 13:23:52 +00:00
if (areHttpImportTestsDisabled()) return
2019-07-19 08:37:35 +00:00
this.timeout(60000)
2019-06-13 09:09:38 +00:00
2021-07-08 14:49:51 +00:00
const params = `--target-url ${ImportsCommand.getYoutubeVideoUrl()} --channel-name user_channel`
2021-07-05 14:37:50 +00:00
await cliCommand.execWithEnv(`${cmd} import ${params}`)
2019-07-19 08:37:35 +00:00
})
2019-07-19 08:37:35 +00:00
it('Should have imported the video', async function () {
2020-11-17 13:23:52 +00:00
if (areHttpImportTestsDisabled()) return
2019-07-19 08:37:35 +00:00
this.timeout(60000)
2019-06-13 09:09:38 +00:00
2019-07-19 08:37:35 +00:00
await waitJobs([ server ])
2019-06-13 09:09:38 +00:00
2019-07-19 08:37:35 +00:00
const res = await getVideosList(server.url)
2019-06-13 09:09:38 +00:00
2019-07-19 08:37:35 +00:00
expect(res.body.total).to.equal(2)
2019-07-19 08:37:35 +00:00
const videos: Video[] = res.body.data
const video = videos.find(v => v.name === 'small video - youtube')
expect(video).to.not.be.undefined
2019-07-19 08:37:35 +00:00
const videoDetails: VideoDetails = (await getVideo(server.url, video.id)).body
expect(videoDetails.channel.name).to.equal('user_channel')
expect(videoDetails.support).to.equal('super support text')
expect(videoDetails.nsfw).to.be.false
2019-07-19 08:37:35 +00:00
// So we can reimport it
await removeVideo(server.url, userAccessToken, video.id)
})
2019-07-19 08:37:35 +00:00
it('Should import and override some imported attributes', async function () {
2020-11-17 13:23:52 +00:00
if (areHttpImportTestsDisabled()) return
2019-07-19 08:37:35 +00:00
this.timeout(60000)
2021-07-08 14:49:51 +00:00
const params = `--target-url ${ImportsCommand.getYoutubeVideoUrl()} ` +
`--channel-name user_channel --video-name toto --nsfw --support support`
2021-07-05 14:37:50 +00:00
await cliCommand.execWithEnv(`${cmd} import ${params}`)
2019-07-19 08:37:35 +00:00
await waitJobs([ server ])
2019-07-19 08:37:35 +00:00
{
const res = await getVideosList(server.url)
expect(res.body.total).to.equal(2)
2019-07-19 08:37:35 +00:00
const videos: Video[] = res.body.data
const video = videos.find(v => v.name === 'toto')
expect(video).to.not.be.undefined
const videoDetails: VideoDetails = (await getVideo(server.url, video.id)).body
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 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`)
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')
})
})
2020-01-28 10:07:23 +00:00
describe('Manage video redundancies', function () {
let anotherServer: ServerInfo
let video1Server2: number
let servers: ServerInfo[]
before(async function () {
this.timeout(120000)
anotherServer = await flushAndRunServer(2)
await setAccessTokensToServers([ anotherServer ])
await doubleFollow(server, anotherServer)
servers = [ server, anotherServer ]
await waitJobs(servers)
const uuid = (await uploadVideoAndGetId({ server: anotherServer, videoName: 'super video' })).uuid
await waitJobs(servers)
video1Server2 = await getLocalIdByUUID(server.url, uuid)
})
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')
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 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 () {
this.timeout(10000)
await cleanupTests([ anotherServer ])
})
2020-01-28 10:07:23 +00:00
})
after(async function () {
2018-11-14 14:45:50 +00:00
this.timeout(10000)
2019-04-24 13:10:37 +00:00
await cleanupTests([ server ])
})
})