]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/cli/peertube.ts
Update translations
[github/Chocobozzz/PeerTube.git] / server / tests / cli / peertube.ts
CommitLineData
a1587156 1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
1a12f66d 2
8704acf4 3import 'mocha'
1a12f66d 4import { expect } from 'chai'
c55e3d72 5import { areHttpImportTestsDisabled, buildAbsoluteFixturePath } from '@shared/core-utils'
8704acf4 6import {
1a12f66d 7 cleanupTests,
329619b3 8 CLICommand,
254d3579 9 createSingleServer,
59bbcced 10 doubleFollow,
254d3579 11 PeerTubeServer,
a1587156 12 setAccessTokensToServers,
1205823f 13 waitJobs
c55e3d72
C
14} from '@shared/server-commands'
15import { FIXTURE_URLS, testHelloWorldRegisteredSettings } from '../shared'
8704acf4
RK
16
17describe('Test CLI wrapper', function () {
254d3579 18 let server: PeerTubeServer
1205823f 19 let userAccessToken: string
1a12f66d 20
329619b3
C
21 let cliCommand: CLICommand
22
8704acf4
RK
23 const cmd = 'node ./dist/server/tools/peertube.js'
24
25 before(async function () {
26 this.timeout(30000)
1a12f66d 27
254d3579 28 server = await createSingleServer(1)
8704acf4
RK
29 await setAccessTokensToServers([ server ])
30
89d241a7 31 await server.users.create({ username: 'user_1', password: 'super_password' })
1a12f66d 32
89d241a7 33 userAccessToken = await server.login.getAccessToken({ username: 'user_1', password: 'super_password' })
1a12f66d
C
34
35 {
a5461888 36 const attributes = { name: 'user_channel', displayName: 'User channel', support: 'super support text' }
89d241a7 37 await server.channels.create({ token: userAccessToken, attributes })
1a12f66d 38 }
329619b3 39
89d241a7 40 cliCommand = server.cli
8704acf4
RK
41 })
42
9b474844 43 describe('Authentication and instance selection', function () {
8704acf4 44
078f17e6
C
45 it('Should get an access token', async function () {
46 const stdout = await cliCommand.execWithEnv(`${cmd} token --url ${server.url} --username user_1 --password super_password`)
47 const token = stdout.trim()
48
89d241a7 49 const body = await server.users.getMyInfo({ token })
7926c5f9 50 expect(body.username).to.equal('user_1')
078f17e6
C
51 })
52
9b474844
C
53 it('Should display no selected instance', async function () {
54 this.timeout(60000)
8704acf4 55
329619b3 56 const stdout = await cliCommand.execWithEnv(`${cmd} --help`)
9b474844
C
57 expect(stdout).to.contain('no instance selected')
58 })
1a12f66d 59
9b474844
C
60 it('Should add a user', async function () {
61 this.timeout(60000)
1a12f66d 62
329619b3 63 await cliCommand.execWithEnv(`${cmd} auth add -u ${server.url} -U user_1 -p super_password`)
9b474844 64 })
1a12f66d 65
8e76aa1d
TS
66 it('Should not fail to add a user if there is a slash at the end of the instance URL', async function () {
67 this.timeout(60000)
68
329619b3
C
69 let fullServerURL = server.url + '/'
70
71 await cliCommand.execWithEnv(`${cmd} auth add -u ${fullServerURL} -U user_1 -p super_password`)
8e76aa1d
TS
72
73 fullServerURL = server.url + '/asdfasdf'
329619b3 74 await cliCommand.execWithEnv(`${cmd} auth add -u ${fullServerURL} -U user_1 -p super_password`)
8e76aa1d
TS
75 })
76
9b474844
C
77 it('Should default to this user', async function () {
78 this.timeout(60000)
1a12f66d 79
329619b3 80 const stdout = await cliCommand.execWithEnv(`${cmd} --help`)
9b474844
C
81 expect(stdout).to.contain(`instance ${server.url} selected`)
82 })
1a12f66d 83
9b474844
C
84 it('Should remember the user', async function () {
85 this.timeout(60000)
1a12f66d 86
329619b3 87 const stdout = await cliCommand.execWithEnv(`${cmd} auth list`)
9b474844
C
88 expect(stdout).to.contain(server.url)
89 })
1a12f66d
C
90 })
91
9b474844 92 describe('Video upload/import', function () {
1a12f66d 93
9b474844
C
94 it('Should upload a video', async function () {
95 this.timeout(60000)
1a12f66d 96
9b474844 97 const fixture = buildAbsoluteFixturePath('60fps_720p_small.mp4')
9b474844 98 const params = `-f ${fixture} --video-name 'test upload' --channel-name user_channel --support 'support_text'`
1a12f66d 99
329619b3 100 await cliCommand.execWithEnv(`${cmd} upload ${params}`)
9b474844 101 })
1a12f66d 102
9b474844 103 it('Should have the video uploaded', async function () {
89d241a7 104 const { total, data } = await server.videos.list()
d23dd9fb 105 expect(total).to.equal(1)
1a12f66d 106
89d241a7 107 const video = await server.videos.get({ id: data[0].uuid })
9b474844
C
108 expect(video.name).to.equal('test upload')
109 expect(video.support).to.equal('support_text')
110 expect(video.channel.name).to.equal('user_channel')
111 })
1a12f66d 112
9b474844 113 it('Should import a video', async function () {
5c0ecc34
C
114 if (areHttpImportTestsDisabled()) return
115
9b474844 116 this.timeout(60000)
1a12f66d 117
59bbcced 118 const params = `--target-url ${FIXTURE_URLS.youtube} --channel-name user_channel`
329619b3 119 await cliCommand.execWithEnv(`${cmd} import ${params}`)
9b474844 120 })
8704acf4 121
9b474844 122 it('Should have imported the video', async function () {
5c0ecc34
C
123 if (areHttpImportTestsDisabled()) return
124
9b474844 125 this.timeout(60000)
1a12f66d 126
9b474844 127 await waitJobs([ server ])
1a12f66d 128
89d241a7 129 const { total, data } = await server.videos.list()
d23dd9fb 130 expect(total).to.equal(2)
1205823f 131
d23dd9fb 132 const video = data.find(v => v.name === 'small video - youtube')
9b474844 133 expect(video).to.not.be.undefined
1205823f 134
89d241a7 135 const videoDetails = await server.videos.get({ id: video.id })
9b474844
C
136 expect(videoDetails.channel.name).to.equal('user_channel')
137 expect(videoDetails.support).to.equal('super support text')
138 expect(videoDetails.nsfw).to.be.false
d511df28
C
139 })
140
141 it('Should not import again the same video', async function () {
142 if (areHttpImportTestsDisabled()) return
143
144 this.timeout(60000)
145
146 const params = `--target-url ${FIXTURE_URLS.youtube} --channel-name user_channel`
147 await cliCommand.execWithEnv(`${cmd} import ${params}`)
148
149 await waitJobs([ server ])
150
151 const { total, data } = await server.videos.list()
152 expect(total).to.equal(2)
153
154 const videos = data.filter(v => v.name === 'small video - youtube')
155 expect(videos).to.have.lengthOf(1)
1205823f 156
9b474844 157 // So we can reimport it
d511df28 158 await server.videos.remove({ token: userAccessToken, id: videos[0].id })
9b474844 159 })
1205823f 160
9b474844 161 it('Should import and override some imported attributes', async function () {
5c0ecc34
C
162 if (areHttpImportTestsDisabled()) return
163
9b474844 164 this.timeout(60000)
1205823f 165
59bbcced 166 const params = `--target-url ${FIXTURE_URLS.youtube} ` +
6910f20f 167 `--channel-name user_channel --video-name toto --nsfw --support support`
329619b3 168 await cliCommand.execWithEnv(`${cmd} import ${params}`)
1205823f 169
9b474844 170 await waitJobs([ server ])
1205823f 171
9b474844 172 {
89d241a7 173 const { total, data } = await server.videos.list()
d23dd9fb 174 expect(total).to.equal(2)
1205823f 175
d23dd9fb 176 const video = data.find(v => v.name === 'toto')
9b474844
C
177 expect(video).to.not.be.undefined
178
89d241a7 179 const videoDetails = await server.videos.get({ id: video.id })
9b474844
C
180 expect(videoDetails.channel.name).to.equal('user_channel')
181 expect(videoDetails.support).to.equal('support')
182 expect(videoDetails.nsfw).to.be.true
183 expect(videoDetails.commentsEnabled).to.be.true
184 }
185 })
1a12f66d
C
186 })
187
9b474844
C
188 describe('Admin auth', function () {
189
190 it('Should remove the auth user', async function () {
329619b3 191 await cliCommand.execWithEnv(`${cmd} auth del ${server.url}`)
9b474844 192
329619b3 193 const stdout = await cliCommand.execWithEnv(`${cmd} --help`)
9b474844
C
194 expect(stdout).to.contain('no instance selected')
195 })
196
197 it('Should add the admin user', async function () {
329619b3 198 await cliCommand.execWithEnv(`${cmd} auth add -u ${server.url} -U root -p test${server.internalServerNumber}`)
9b474844
C
199 })
200 })
201
202 describe('Manage plugins', function () {
203
204 it('Should install a plugin', async function () {
205 this.timeout(60000)
206
329619b3 207 await cliCommand.execWithEnv(`${cmd} plugins install --npm-name peertube-plugin-hello-world`)
9b474844
C
208 })
209
353f8bc0
C
210 it('Should have registered settings', async function () {
211 await testHelloWorldRegisteredSettings(server)
212 })
213
9b474844 214 it('Should list installed plugins', async function () {
329619b3 215 const res = await cliCommand.execWithEnv(`${cmd} plugins list`)
1a12f66d 216
9b474844
C
217 expect(res).to.contain('peertube-plugin-hello-world')
218 })
1a12f66d 219
9b474844 220 it('Should uninstall the plugin', async function () {
329619b3 221 const res = await cliCommand.execWithEnv(`${cmd} plugins uninstall --npm-name peertube-plugin-hello-world`)
3a1157a6
JL
222
223 expect(res).to.not.contain('peertube-plugin-hello-world')
224 })
225
226 it('Should install a plugin in requested version', async function () {
227 this.timeout(60000)
228
229 await cliCommand.execWithEnv(`${cmd} plugins install --npm-name peertube-plugin-hello-world --plugin-version 0.0.17`)
230 })
231
232 it('Should list installed plugins, in correct version', async function () {
233 const res = await cliCommand.execWithEnv(`${cmd} plugins list`)
234
235 expect(res).to.contain('peertube-plugin-hello-world')
236 expect(res).to.contain('0.0.17')
237 })
238
239 it('Should uninstall the plugin again', async function () {
240 const res = await cliCommand.execWithEnv(`${cmd} plugins uninstall --npm-name peertube-plugin-hello-world`)
1a12f66d 241
9b474844
C
242 expect(res).to.not.contain('peertube-plugin-hello-world')
243 })
8704acf4
RK
244 })
245
26fcf2ef 246 describe('Manage video redundancies', function () {
254d3579 247 let anotherServer: PeerTubeServer
26fcf2ef 248 let video1Server2: number
254d3579 249 let servers: PeerTubeServer[]
26fcf2ef
C
250
251 before(async function () {
252 this.timeout(120000)
253
254d3579 254 anotherServer = await createSingleServer(2)
26fcf2ef
C
255 await setAccessTokensToServers([ anotherServer ])
256
257 await doubleFollow(server, anotherServer)
258
259 servers = [ server, anotherServer ]
260 await waitJobs(servers)
261
89d241a7 262 const { uuid } = await anotherServer.videos.quickUpload({ name: 'super video' })
26fcf2ef
C
263 await waitJobs(servers)
264
89d241a7 265 video1Server2 = await server.videos.getId({ uuid })
26fcf2ef
C
266 })
267
268 it('Should add a redundancy', async function () {
269 this.timeout(60000)
270
26fcf2ef 271 const params = `add --video ${video1Server2}`
329619b3 272 await cliCommand.execWithEnv(`${cmd} redundancy ${params}`)
26fcf2ef
C
273
274 await waitJobs(servers)
275 })
276
277 it('Should list redundancies', async function () {
278 this.timeout(60000)
279
280 {
a1587156 281 const params = 'list-my-redundancies'
329619b3 282 const stdout = await cliCommand.execWithEnv(`${cmd} redundancy ${params}`)
26fcf2ef
C
283
284 expect(stdout).to.contain('super video')
285 expect(stdout).to.contain(`localhost:${server.port}`)
286 }
287 })
288
289 it('Should remove a redundancy', async function () {
290 this.timeout(60000)
291
26fcf2ef 292 const params = `remove --video ${video1Server2}`
329619b3 293 await cliCommand.execWithEnv(`${cmd} redundancy ${params}`)
26fcf2ef
C
294
295 await waitJobs(servers)
296
297 {
a1587156 298 const params = 'list-my-redundancies'
329619b3 299 const stdout = await cliCommand.execWithEnv(`${cmd} redundancy ${params}`)
26fcf2ef
C
300
301 expect(stdout).to.not.contain('super video')
302 }
303 })
e669ff58
C
304
305 after(async function () {
306 this.timeout(10000)
307
308 await cleanupTests([ anotherServer ])
309 })
26fcf2ef
C
310 })
311
8704acf4 312 after(async function () {
e5cb43e0
C
313 this.timeout(10000)
314
7c3b7976 315 await cleanupTests([ server ])
8704acf4
RK
316 })
317})