X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftests%2Fcli%2Fpeertube.ts;h=64a93ebb552f34028cfeca41685277f7174d5512;hb=6910f20f114b5bd020258a3a9a3f2117819a60c2;hp=45411bdbc609b636c00d386a946dafea91356478;hpb=94565d52bb2883e09f16d1363170ac9c0dccb7a1;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tests/cli/peertube.ts b/server/tests/cli/peertube.ts index 45411bdbc..64a93ebb5 100644 --- a/server/tests/cli/peertube.ts +++ b/server/tests/cli/peertube.ts @@ -1,53 +1,291 @@ +/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */ + import 'mocha' +import { expect } from 'chai' +import { Video, VideoDetails } from '../../../shared' import { - expect -} from 'chai' -import { + addVideoChannel, + areHttpImportTestsDisabled, + buildAbsoluteFixturePath, + cleanupTests, + CLICommand, createUser, - execCLI, - flushTests, - getEnvCli, - killallServers, - runServer, + doubleFollow, + flushAndRunServer, + getLocalIdByUUID, + getVideo, + getVideosList, + ImportsCommand, + removeVideo, ServerInfo, - setAccessTokensToServers + setAccessTokensToServers, + testHelloWorldRegisteredSettings, + uploadVideoAndGetId, + userLogin, + waitJobs } from '../../../shared/extra-utils' describe('Test CLI wrapper', function () { let server: ServerInfo + let userAccessToken: string + + let cliCommand: CLICommand + const cmd = 'node ./dist/server/tools/peertube.js' before(async function () { this.timeout(30000) - await flushTests() - server = await runServer(1) + server = await flushAndRunServer(1) await setAccessTokensToServers([ server ]) - await createUser({ url: server.url, accessToken: server.accessToken, username: 'user_1', password: 'super password' }) + await createUser({ url: server.url, accessToken: server.accessToken, username: 'user_1', password: 'super_password' }) + + userAccessToken = await userLogin(server, { username: 'user_1', password: 'super_password' }) + + { + const args = { name: 'user_channel', displayName: 'User channel', support: 'super support text' } + await addVideoChannel(server.url, userAccessToken, args) + } + + cliCommand = server.cliCommand + }) + + describe('Authentication and instance selection', function () { + + it('Should display no selected instance', async function () { + this.timeout(60000) + + const stdout = await cliCommand.execWithEnv(`${cmd} --help`) + expect(stdout).to.contain('no instance selected') + }) + + it('Should add a user', async function () { + this.timeout(60000) + + await cliCommand.execWithEnv(`${cmd} auth add -u ${server.url} -U user_1 -p super_password`) + }) + + 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) + + let fullServerURL = server.url + '/' + + await cliCommand.execWithEnv(`${cmd} auth add -u ${fullServerURL} -U user_1 -p super_password`) + + fullServerURL = server.url + '/asdfasdf' + await cliCommand.execWithEnv(`${cmd} auth add -u ${fullServerURL} -U user_1 -p super_password`) + }) + + it('Should default to this user', async function () { + this.timeout(60000) + + const stdout = await cliCommand.execWithEnv(`${cmd} --help`) + expect(stdout).to.contain(`instance ${server.url} selected`) + }) + + it('Should remember the user', async function () { + this.timeout(60000) + + const stdout = await cliCommand.execWithEnv(`${cmd} auth list`) + expect(stdout).to.contain(server.url) + }) + }) + + describe('Video upload/import', function () { + + it('Should upload a video', async function () { + this.timeout(60000) + + const fixture = buildAbsoluteFixturePath('60fps_720p_small.mp4') + const params = `-f ${fixture} --video-name 'test upload' --channel-name user_channel --support 'support_text'` + + await cliCommand.execWithEnv(`${cmd} upload ${params}`) + }) + + it('Should have the video uploaded', async function () { + const res = await getVideosList(server.url) + + expect(res.body.total).to.equal(1) + + const videos: Video[] = res.body.data + + const video: VideoDetails = (await getVideo(server.url, videos[0].uuid)).body + + expect(video.name).to.equal('test upload') + expect(video.support).to.equal('support_text') + expect(video.channel.name).to.equal('user_channel') + }) + + it('Should import a video', async function () { + if (areHttpImportTestsDisabled()) return + + this.timeout(60000) + + const params = `--target-url ${ImportsCommand.getYoutubeVideoUrl()} --channel-name user_channel` + await cliCommand.execWithEnv(`${cmd} import ${params}`) + }) + + it('Should have imported the video', async function () { + if (areHttpImportTestsDisabled()) return + + this.timeout(60000) + + await waitJobs([ server ]) + + const res = await getVideosList(server.url) + + expect(res.body.total).to.equal(2) + + const videos: Video[] = res.body.data + const video = videos.find(v => v.name === 'small video - youtube') + 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('super support text') + expect(videoDetails.nsfw).to.be.false + + // So we can reimport it + await removeVideo(server.url, userAccessToken, video.id) + }) + + it('Should import and override some imported attributes', async function () { + if (areHttpImportTestsDisabled()) return + + this.timeout(60000) + + const params = `--target-url ${ImportsCommand.getYoutubeVideoUrl()} ` + + `--channel-name user_channel --video-name toto --nsfw --support support` + await cliCommand.execWithEnv(`${cmd} import ${params}`) + + await waitJobs([ server ]) + + { + const res = await getVideosList(server.url) + expect(res.body.total).to.equal(2) + + 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 + } + }) }) - it('Should display no selected instance', async function () { - this.timeout(60000) + describe('Admin auth', function () { - const env = getEnvCli(server) - const stdout = await execCLI(`${env} ${cmd} --help`) + it('Should remove the auth user', async function () { + await cliCommand.execWithEnv(`${cmd} auth del ${server.url}`) - expect(stdout).to.contain('selected') + const stdout = await cliCommand.execWithEnv(`${cmd} --help`) + expect(stdout).to.contain('no instance selected') + }) + + it('Should add the admin user', async function () { + await cliCommand.execWithEnv(`${cmd} auth add -u ${server.url} -U root -p test${server.internalServerNumber}`) + }) }) - it('Should remember the authentifying material of the user', async function () { - this.timeout(60000) + describe('Manage plugins', function () { + + it('Should install a plugin', async function () { + this.timeout(60000) + + await cliCommand.execWithEnv(`${cmd} plugins install --npm-name peertube-plugin-hello-world`) + }) + + it('Should have registered settings', async function () { + await testHelloWorldRegisteredSettings(server) + }) + + it('Should list installed plugins', async function () { + const res = await cliCommand.execWithEnv(`${cmd} plugins list`) - const env = getEnvCli(server) - await execCLI(`${env} ` + cmd + ` auth add --url ${server.url} -U user_1 -p "super password"`) + expect(res).to.contain('peertube-plugin-hello-world') + }) + + it('Should uninstall the plugin', async function () { + const res = await cliCommand.execWithEnv(`${cmd} plugins uninstall --npm-name peertube-plugin-hello-world`) + + expect(res).to.not.contain('peertube-plugin-hello-world') + }) + }) + + 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}` + await cliCommand.execWithEnv(`${cmd} redundancy ${params}`) + + await waitJobs(servers) + }) + + it('Should list redundancies', async function () { + this.timeout(60000) + + { + const params = 'list-my-redundancies' + const stdout = await cliCommand.execWithEnv(`${cmd} redundancy ${params}`) + + 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}` + await cliCommand.execWithEnv(`${cmd} redundancy ${params}`) + + await waitJobs(servers) + + { + const params = 'list-my-redundancies' + const stdout = await cliCommand.execWithEnv(`${cmd} redundancy ${params}`) + + expect(stdout).to.not.contain('super video') + } + }) + + after(async function () { + this.timeout(10000) + + await cleanupTests([ anotherServer ]) + }) }) after(async function () { this.timeout(10000) - await execCLI(cmd + ` auth del ${server.url}`) - - killallServers([ server ]) + await cleanupTests([ server ]) }) })