X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftests%2Fcli%2Fpeertube.ts;h=15b6755f22d1338622944afcd77fd3d5abc75f6c;hb=e669ff58736e919cbc300e1880d995006592fa0c;hp=d73e275640bb18a99ec61085879c87fd47e78add;hpb=b6a1dd4d1b3b0032f8b968e72cbd074f646e8827;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tests/cli/peertube.ts b/server/tests/cli/peertube.ts index d73e27564..15b6755f2 100644 --- a/server/tests/cli/peertube.ts +++ b/server/tests/cli/peertube.ts @@ -6,15 +6,15 @@ import { addVideoChannel, buildAbsoluteFixturePath, cleanupTests, - createUser, + createUser, doubleFollow, execCLI, flushAndRunServer, - getEnvCli, + getEnvCli, getLocalIdByUUID, getVideo, getVideosList, getVideosListWithToken, removeVideo, ServerInfo, - setAccessTokensToServers, + setAccessTokensToServers, uploadVideo, uploadVideoAndGetId, userLogin, waitJobs } from '../../../shared/extra-utils' @@ -43,133 +43,246 @@ describe('Test CLI wrapper', function () { } }) - it('Should display no selected instance', async function () { - this.timeout(60000) + describe('Authentication and instance selection', function () { - const env = getEnvCli(server) - const stdout = await execCLI(`${env} ${cmd} --help`) + it('Should display no selected instance', async function () { + this.timeout(60000) - expect(stdout).to.contain('no instance selected') - }) + const env = getEnvCli(server) + const stdout = await execCLI(`${env} ${cmd} --help`) - it('Should add a user', async function () { - this.timeout(60000) + expect(stdout).to.contain('no instance selected') + }) - const env = getEnvCli(server) - await execCLI(`${env} ${cmd} auth add -u ${server.url} -U user_1 -p super_password`) - }) + it('Should add a user', async function () { + this.timeout(60000) - it('Should default to this user', async function () { - this.timeout(60000) + const env = getEnvCli(server) + await execCLI(`${env} ${cmd} auth add -u ${server.url} -U user_1 -p super_password`) + }) - const env = getEnvCli(server) - const stdout = await execCLI(`${env} ${cmd} --help`) + it('Should default to this user', async function () { + this.timeout(60000) - expect(stdout).to.contain(`instance ${server.url} selected`) - }) + const env = getEnvCli(server) + const stdout = await execCLI(`${env} ${cmd} --help`) + + expect(stdout).to.contain(`instance ${server.url} selected`) + }) - it('Should remember the user', async function () { - this.timeout(60000) + it('Should remember the user', async function () { + this.timeout(60000) - const env = getEnvCli(server) - const stdout = await execCLI(`${env} ${cmd} auth list`) + const env = getEnvCli(server) + const stdout = await execCLI(`${env} ${cmd} auth list`) - expect(stdout).to.contain(server.url) + expect(stdout).to.contain(server.url) + }) }) - it('Should upload a video', async function () { - this.timeout(60000) + describe('Video upload/import', function () { - const env = getEnvCli(server) + it('Should upload a video', async function () { + this.timeout(60000) - const fixture = buildAbsoluteFixturePath('60fps_720p_small.mp4') + const env = getEnvCli(server) - const params = `-f ${fixture} --video-name 'test upload' --channel-name user_channel --support 'support_text'` + const fixture = buildAbsoluteFixturePath('60fps_720p_small.mp4') - await execCLI(`${env} ${cmd} upload ${params}`) - }) + const params = `-f ${fixture} --video-name 'test upload' --channel-name user_channel --support 'support_text'` + + await execCLI(`${env} ${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 () { + this.timeout(60000) + + const env = getEnvCli(server) + + const params = `--target-url ${getYoutubeVideoUrl()} --channel-name user_channel` + + await execCLI(`${env} ${cmd} import ${params}`) + }) + + it('Should have imported the video', async function () { + 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 - it('Should have the video uploaded', async function () { - const res = await getVideosList(server.url) + // So we can reimport it + await removeVideo(server.url, userAccessToken, video.id) + }) - expect(res.body.total).to.equal(1) + it('Should import and override some imported attributes', async function () { + this.timeout(60000) - const videos: Video[] = res.body.data + const env = getEnvCli(server) - const video: VideoDetails = (await getVideo(server.url, videos[0].uuid)).body + const params = `--target-url ${getYoutubeVideoUrl()} --channel-name user_channel --video-name toto --nsfw --support support` - expect(video.name).to.equal('test upload') - expect(video.support).to.equal('support_text') - expect(video.channel.name).to.equal('user_channel') + await execCLI(`${env} ${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 import a video', async function () { - this.timeout(60000) + describe('Admin auth', function () { - const env = getEnvCli(server) + it('Should remove the auth user', async function () { + const env = getEnvCli(server) - const params = `--target-url ${getYoutubeVideoUrl()} --channel-name user_channel` + await execCLI(`${env} ${cmd} auth del ${server.url}`) - await execCLI(`${env} ${cmd} import ${params}`) + const stdout = await execCLI(`${env} ${cmd} --help`) + + expect(stdout).to.contain('no instance selected') + }) + + it('Should add the admin user', async function () { + const env = getEnvCli(server) + await execCLI(`${env} ${cmd} auth add -u ${server.url} -U root -p test${server.internalServerNumber}`) + }) }) - it('Should have imported the video', async function () { - this.timeout(60000) + describe('Manage plugins', function () { - await waitJobs([ server ]) + it('Should install a plugin', async function () { + this.timeout(60000) - const res = await getVideosList(server.url) + const env = getEnvCli(server) + await execCLI(`${env} ${cmd} plugins install --npm-name peertube-plugin-hello-world`) + }) - expect(res.body.total).to.equal(2) + it('Should list installed plugins', async function () { + const env = getEnvCli(server) + const res = await execCLI(`${env} ${cmd} plugins list`) - const videos: Video[] = res.body.data - const video = videos.find(v => v.name === 'small video - youtube') - expect(video).to.not.be.undefined + expect(res).to.contain('peertube-plugin-hello-world') + }) - 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 + it('Should uninstall the plugin', async function () { + const env = getEnvCli(server) + const res = await execCLI(`${env} ${cmd} plugins uninstall --npm-name peertube-plugin-hello-world`) - // So we can reimport it - await removeVideo(server.url, userAccessToken, video.id) + expect(res).to.not.contain('peertube-plugin-hello-world') + }) }) - it('Should import and override some imported attributes', async function () { - this.timeout(60000) + describe('Manage video redundancies', function () { + let anotherServer: ServerInfo + let video1Server2: number + let servers: ServerInfo[] - const env = getEnvCli(server) + before(async function () { + this.timeout(120000) - const params = `--target-url ${getYoutubeVideoUrl()} --channel-name user_channel --video-name toto --nsfw --support support` + anotherServer = await flushAndRunServer(2) + await setAccessTokensToServers([ anotherServer ]) - await execCLI(`${env} ${cmd} import ${params}`) + await doubleFollow(server, anotherServer) - await waitJobs([ server ]) + servers = [ server, anotherServer ] + await waitJobs(servers) - { - const res = await getVideosList(server.url) - expect(res.body.total).to.equal(2) + const uuid = (await uploadVideoAndGetId({ server: anotherServer, videoName: 'super video' })).uuid + await waitJobs(servers) - const videos: Video[] = res.body.data - const video = videos.find(v => v.name === 'toto') - expect(video).to.not.be.undefined + video1Server2 = await getLocalIdByUUID(server.url, uuid) + }) - 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 add a redundancy', async function () { + this.timeout(60000) + + const env = getEnvCli(server) + + const params = `add --video ${video1Server2}` + + await execCLI(`${env} ${cmd} redundancy ${params}`) + + await waitJobs(servers) + }) + + it('Should list redundancies', async function () { + this.timeout(60000) + + { + const env = getEnvCli(server) + + const params = `list-my-redundancies` + const stdout = await execCLI(`${env} ${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 env = getEnvCli(server) + + const params = `remove --video ${video1Server2}` + + await execCLI(`${env} ${cmd} redundancy ${params}`) + + await waitJobs(servers) - it('Should remove the auth user', async function () { - const env = getEnvCli(server) + { + const env = getEnvCli(server) + const params = `list-my-redundancies` + const stdout = await execCLI(`${env} ${cmd} redundancy ${params}`) - await execCLI(`${env} ${cmd} auth del ${server.url}`) + expect(stdout).to.not.contain('super video') + } + }) - const stdout = await execCLI(`${env} ${cmd} --help`) + after(async function () { + this.timeout(10000) - expect(stdout).to.contain('no instance selected') + await cleanupTests([ anotherServer ]) + }) }) after(async function () {