2019-06-13 05:09:38 -04:00
|
|
|
/* tslint:disable:no-unused-expression */
|
|
|
|
|
2018-09-13 08:27:44 -04:00
|
|
|
import 'mocha'
|
2019-06-13 05:09:38 -04:00
|
|
|
import { expect } from 'chai'
|
2018-09-13 08:27:44 -04:00
|
|
|
import {
|
2019-06-13 05:09:38 -04:00
|
|
|
addVideoChannel,
|
|
|
|
buildAbsoluteFixturePath,
|
|
|
|
cleanupTests,
|
2018-09-13 08:27:44 -04:00
|
|
|
createUser,
|
|
|
|
execCLI,
|
2019-04-24 04:53:40 -04:00
|
|
|
flushAndRunServer,
|
2019-06-13 05:09:38 -04:00
|
|
|
getEnvCli,
|
2019-06-13 07:53:28 -04:00
|
|
|
getVideo,
|
2019-06-13 05:09:38 -04:00
|
|
|
getVideosList,
|
2019-06-13 07:53:28 -04:00
|
|
|
getVideosListWithToken, removeVideo,
|
2018-09-13 08:27:44 -04:00
|
|
|
ServerInfo,
|
2019-06-13 05:09:38 -04:00
|
|
|
setAccessTokensToServers,
|
2019-06-13 07:53:28 -04:00
|
|
|
userLogin,
|
|
|
|
waitJobs
|
2019-04-15 09:26:15 -04:00
|
|
|
} from '../../../shared/extra-utils'
|
2019-06-13 07:53:28 -04:00
|
|
|
import { Video, VideoDetails } from '../../../shared'
|
2019-06-13 05:09:38 -04:00
|
|
|
import { getYoutubeVideoUrl } from '../../../shared/extra-utils/videos/video-imports'
|
2018-09-13 08:27:44 -04:00
|
|
|
|
|
|
|
describe('Test CLI wrapper', function () {
|
|
|
|
let server: ServerInfo
|
2019-06-13 07:53:28 -04:00
|
|
|
let userAccessToken: string
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2018-09-13 08:27:44 -04:00
|
|
|
const cmd = 'node ./dist/server/tools/peertube.js'
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(30000)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-04-24 04:53:40 -04:00
|
|
|
server = await flushAndRunServer(1)
|
2018-09-13 08:27:44 -04:00
|
|
|
await setAccessTokensToServers([ server ])
|
|
|
|
|
2019-06-13 05:09:38 -04:00
|
|
|
await createUser({ url: server.url, accessToken: server.accessToken, username: 'user_1', password: 'super_password' })
|
|
|
|
|
2019-06-13 07:53:28 -04:00
|
|
|
userAccessToken = await userLogin(server, { username: 'user_1', password: 'super_password' })
|
2019-06-13 05:09:38 -04:00
|
|
|
|
|
|
|
{
|
2019-06-13 07:53:28 -04:00
|
|
|
const args = { name: 'user_channel', displayName: 'User channel', support: 'super support text' }
|
|
|
|
await addVideoChannel(server.url, userAccessToken, args)
|
2019-06-13 05:09:38 -04:00
|
|
|
}
|
2018-09-13 08:27:44 -04:00
|
|
|
})
|
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
describe('Authentication and instance selection', function () {
|
2018-09-13 08:27:44 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should display no selected instance', async function () {
|
|
|
|
this.timeout(60000)
|
2018-09-13 08:27:44 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
const env = getEnvCli(server)
|
|
|
|
const stdout = await execCLI(`${env} ${cmd} --help`)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
expect(stdout).to.contain('no instance selected')
|
|
|
|
})
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should add a user', async function () {
|
|
|
|
this.timeout(60000)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
const env = getEnvCli(server)
|
|
|
|
await execCLI(`${env} ${cmd} auth add -u ${server.url} -U user_1 -p super_password`)
|
|
|
|
})
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should default to this user', async function () {
|
|
|
|
this.timeout(60000)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
const env = getEnvCli(server)
|
|
|
|
const stdout = await execCLI(`${env} ${cmd} --help`)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
expect(stdout).to.contain(`instance ${server.url} selected`)
|
|
|
|
})
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should remember the user', async function () {
|
|
|
|
this.timeout(60000)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
const env = getEnvCli(server)
|
|
|
|
const stdout = await execCLI(`${env} ${cmd} auth list`)
|
|
|
|
|
|
|
|
expect(stdout).to.contain(server.url)
|
|
|
|
})
|
2019-06-13 05:09:38 -04:00
|
|
|
})
|
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
describe('Video upload/import', function () {
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should upload a video', async function () {
|
|
|
|
this.timeout(60000)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
const env = getEnvCli(server)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
const fixture = buildAbsoluteFixturePath('60fps_720p_small.mp4')
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
const params = `-f ${fixture} --video-name 'test upload' --channel-name user_channel --support 'support_text'`
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
await execCLI(`${env} ${cmd} upload ${params}`)
|
|
|
|
})
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should have the video uploaded', async function () {
|
|
|
|
const res = await getVideosList(server.url)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
expect(res.body.total).to.equal(1)
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
const videos: Video[] = res.body.data
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
const video: VideoDetails = (await getVideo(server.url, videos[ 0 ].uuid)).body
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04: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 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should import a video', async function () {
|
|
|
|
this.timeout(60000)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
const env = getEnvCli(server)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
const params = `--target-url ${getYoutubeVideoUrl()} --channel-name user_channel`
|
2018-09-13 08:27:44 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
await execCLI(`${env} ${cmd} import ${params}`)
|
|
|
|
})
|
2018-09-13 08:27:44 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should have imported the video', async function () {
|
|
|
|
this.timeout(60000)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
await waitJobs([ server ])
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
const res = await getVideosList(server.url)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
expect(res.body.total).to.equal(2)
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
const videos: Video[] = res.body.data
|
|
|
|
const video = videos.find(v => v.name === 'small video - youtube')
|
|
|
|
expect(video).to.not.be.undefined
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2019-07-19 04:37:35 -04: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-06-13 07:53:28 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
// So we can reimport it
|
|
|
|
await removeVideo(server.url, userAccessToken, video.id)
|
|
|
|
})
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
it('Should import and override some imported attributes', async function () {
|
|
|
|
this.timeout(60000)
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
const env = getEnvCli(server)
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
const params = `--target-url ${getYoutubeVideoUrl()} --channel-name user_channel --video-name toto --nsfw --support support`
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
await execCLI(`${env} ${cmd} import ${params}`)
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
await waitJobs([ server ])
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
{
|
|
|
|
const res = await getVideosList(server.url)
|
|
|
|
expect(res.body.total).to.equal(2)
|
2019-06-13 07:53:28 -04:00
|
|
|
|
2019-07-19 04:37:35 -04: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 05:09:38 -04:00
|
|
|
})
|
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
describe('Admin auth', function () {
|
|
|
|
|
|
|
|
it('Should remove the auth user', async function () {
|
|
|
|
const env = getEnvCli(server)
|
|
|
|
|
|
|
|
await execCLI(`${env} ${cmd} auth del ${server.url}`)
|
|
|
|
|
|
|
|
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}`)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('Manage plugins', function () {
|
|
|
|
|
|
|
|
it('Should install a plugin', async function () {
|
|
|
|
this.timeout(60000)
|
|
|
|
|
|
|
|
const env = getEnvCli(server)
|
|
|
|
await execCLI(`${env} ${cmd} plugins install --npm-name peertube-plugin-hello-world`)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should list installed plugins', async function () {
|
|
|
|
const env = getEnvCli(server)
|
|
|
|
const res = await execCLI(`${env} ${cmd} plugins list`)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
expect(res).to.contain('peertube-plugin-hello-world')
|
|
|
|
})
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
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`)
|
2019-06-13 05:09:38 -04:00
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
expect(res).to.not.contain('peertube-plugin-hello-world')
|
|
|
|
})
|
2018-09-13 08:27:44 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
after(async function () {
|
2018-11-14 09:45:50 -05:00
|
|
|
this.timeout(10000)
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
await cleanupTests([ server ])
|
2018-09-13 08:27:44 -04:00
|
|
|
})
|
|
|
|
})
|