]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/tests/cli/peertube.ts
Move test functions outside extra-utils
[github/Chocobozzz/PeerTube.git] / server / tests / cli / peertube.ts
index d73e275640bb18a99ec61085879c87fd47e78add..034d216e36784adc1fd0130c783dc40ab86844ed 100644 (file)
-/* tslint:disable:no-unused-expression */
+/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
 
 import 'mocha'
 import { expect } from 'chai'
+import { areHttpImportTestsDisabled, buildAbsoluteFixturePath } from '@shared/core-utils'
 import {
-  addVideoChannel,
-  buildAbsoluteFixturePath,
   cleanupTests,
-  createUser,
-  execCLI,
-  flushAndRunServer,
-  getEnvCli,
-  getVideo,
-  getVideosList,
-  getVideosListWithToken, removeVideo,
-  ServerInfo,
+  CLICommand,
+  createSingleServer,
+  doubleFollow,
+  PeerTubeServer,
   setAccessTokensToServers,
-  userLogin,
   waitJobs
-} from '../../../shared/extra-utils'
-import { Video, VideoDetails } from '../../../shared'
-import { getYoutubeVideoUrl } from '../../../shared/extra-utils/videos/video-imports'
+} from '@shared/server-commands'
+import { FIXTURE_URLS, testHelloWorldRegisteredSettings } from '../shared'
 
 describe('Test CLI wrapper', function () {
-  let server: ServerInfo
+  let server: PeerTubeServer
   let userAccessToken: string
 
+  let cliCommand: CLICommand
+
   const cmd = 'node ./dist/server/tools/peertube.js'
 
   before(async function () {
     this.timeout(30000)
 
-    server = await flushAndRunServer(1)
+    server = await createSingleServer(1)
     await setAccessTokensToServers([ server ])
 
-    await createUser({ url: server.url, accessToken: server.accessToken, username: 'user_1', password: 'super_password' })
+    await server.users.create({ username: 'user_1', password: 'super_password' })
 
-    userAccessToken = await userLogin(server, { username: 'user_1', password: 'super_password' })
+    userAccessToken = await server.login.getAccessToken({ username: 'user_1', password: 'super_password' })
 
     {
-      const args = { name: 'user_channel', displayName: 'User channel', support: 'super support text' }
-      await addVideoChannel(server.url, userAccessToken, args)
+      const attributes = { name: 'user_channel', displayName: 'User channel', support: 'super support text' }
+      await server.channels.create({ token: userAccessToken, attributes })
     }
+
+    cliCommand = server.cli
   })
 
-  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 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()
 
-    expect(stdout).to.contain('no instance selected')
-  })
+      const body = await server.users.getMyInfo({ token })
+      expect(body.username).to.equal('user_1')
+    })
 
-  it('Should add a user', async function () {
-    this.timeout(60000)
+    it('Should display no selected instance', 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 stdout = await cliCommand.execWithEnv(`${cmd} --help`)
+      expect(stdout).to.contain('no instance selected')
+    })
 
-  it('Should default to this user', async function () {
-    this.timeout(60000)
+    it('Should add a user', async function () {
+      this.timeout(60000)
 
-    const env = getEnvCli(server)
-    const stdout = await execCLI(`${env} ${cmd} --help`)
+      await cliCommand.execWithEnv(`${cmd} auth add -u ${server.url} -U user_1 -p super_password`)
+    })
 
-    expect(stdout).to.contain(`instance ${server.url} selected`)
-  })
+    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 + '/'
 
-  it('Should remember the user', async function () {
-    this.timeout(60000)
+      await cliCommand.execWithEnv(`${cmd} auth add -u ${fullServerURL} -U user_1 -p super_password`)
 
-    const env = getEnvCli(server)
-    const stdout = await execCLI(`${env} ${cmd} auth list`)
+      fullServerURL = server.url + '/asdfasdf'
+      await cliCommand.execWithEnv(`${cmd} auth add -u ${fullServerURL} -U user_1 -p super_password`)
+    })
 
-    expect(stdout).to.contain(server.url)
+    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)
+    })
   })
 
-  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 fixture = buildAbsoluteFixturePath('60fps_720p_small.mp4')
+      const params = `-f ${fixture} --video-name 'test upload' --channel-name user_channel --support 'support_text'`
 
-    const params = `-f ${fixture} --video-name 'test upload' --channel-name user_channel --support 'support_text'`
+      await cliCommand.execWithEnv(`${cmd} upload ${params}`)
+    })
 
-    await execCLI(`${env} ${cmd} upload ${params}`)
-  })
+    it('Should have the video uploaded', async function () {
+      const { total, data } = await server.videos.list()
+      expect(total).to.equal(1)
+
+      const video = await server.videos.get({ id: data[0].uuid })
+      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 ${FIXTURE_URLS.youtube} --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 { total, data } = await server.videos.list()
+      expect(total).to.equal(2)
+
+      const video = data.find(v => v.name === 'small video - youtube')
+      expect(video).to.not.be.undefined
+
+      const videoDetails = await server.videos.get({ id: video.id })
+      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 server.videos.remove({ token: userAccessToken, id: video.id })
+    })
 
-  it('Should have the video uploaded', async function () {
-    const res = await getVideosList(server.url)
+    it('Should import and override some imported attributes', async function () {
+      if (areHttpImportTestsDisabled()) return
 
-    expect(res.body.total).to.equal(1)
+      this.timeout(60000)
 
-    const videos: Video[] = res.body.data
+      const params = `--target-url ${FIXTURE_URLS.youtube} ` +
+                     `--channel-name user_channel --video-name toto --nsfw --support support`
+      await cliCommand.execWithEnv(`${cmd} import ${params}`)
 
-    const video: VideoDetails = (await getVideo(server.url, videos[0].uuid)).body
+      await waitJobs([ server ])
 
-    expect(video.name).to.equal('test upload')
-    expect(video.support).to.equal('support_text')
-    expect(video.channel.name).to.equal('user_channel')
+      {
+        const { total, data } = await server.videos.list()
+        expect(total).to.equal(2)
+
+        const video = data.find(v => v.name === 'toto')
+        expect(video).to.not.be.undefined
+
+        const videoDetails = await server.videos.get({ id: video.id })
+        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 () {
+      await cliCommand.execWithEnv(`${cmd} auth del ${server.url}`)
 
-    const params = `--target-url ${getYoutubeVideoUrl()} --channel-name user_channel`
+      const stdout = await cliCommand.execWithEnv(`${cmd} --help`)
+      expect(stdout).to.contain('no instance selected')
+    })
 
-    await execCLI(`${env} ${cmd} import ${params}`)
+    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 have imported the video', 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`)
 
-    await waitJobs([ server ])
+      expect(res).to.contain('peertube-plugin-hello-world')
+    })
 
-    const res = await getVideosList(server.url)
+    it('Should uninstall the plugin', async function () {
+      const res = await cliCommand.execWithEnv(`${cmd} plugins uninstall --npm-name peertube-plugin-hello-world`)
 
-    expect(res.body.total).to.equal(2)
+      expect(res).to.not.contain('peertube-plugin-hello-world')
+    })
 
-    const videos: Video[] = res.body.data
-    const video = videos.find(v => v.name === 'small video - youtube')
-    expect(video).to.not.be.undefined
+    it('Should install a plugin in requested version', async function () {
+      this.timeout(60000)
 
-    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
+      await cliCommand.execWithEnv(`${cmd} plugins install --npm-name peertube-plugin-hello-world --plugin-version 0.0.17`)
+    })
 
-    // So we can reimport it
-    await removeVideo(server.url, userAccessToken, video.id)
+    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`)
+
+      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: PeerTubeServer
+    let video1Server2: number
+    let servers: PeerTubeServer[]
 
-    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 createSingleServer(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 anotherServer.videos.quickUpload({ name: 'super video' })
+      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 server.videos.getId({ 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 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)
 
-  it('Should remove the auth user', async function () {
-    const env = getEnvCli(server)
+      {
+        const params = 'list-my-redundancies'
+        const stdout = await cliCommand.execWithEnv(`${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 () {