]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/single-pod.js
Server: forbid to remove the root user
[github/Chocobozzz/PeerTube.git] / server / tests / api / single-pod.js
CommitLineData
9f10b292
C
1'use strict'
2
f0f5567b 3const chai = require('chai')
1a42c9e2 4const each = require('async/each')
f0f5567b
C
5const expect = chai.expect
6const fs = require('fs')
3a8a8b51 7const keyBy = require('lodash/keyBy')
f0f5567b 8const pathUtils = require('path')
1a42c9e2 9const series = require('async/series')
bf94b6f0 10const webtorrent = new (require('webtorrent'))()
9f10b292 11
8d309058
C
12const loginUtils = require('../utils/login')
13const miscsUtils = require('../utils/miscs')
14const serversUtils = require('../utils/servers')
15const videosUtils = require('../utils/videos')
9f10b292 16
9f10b292 17describe('Test a single pod', function () {
0c1cbbfe 18 let server = null
bc503c2a 19 let videoId = -1
fbf1134e 20 let videosListBase = null
9f10b292
C
21
22 before(function (done) {
23 this.timeout(20000)
24
1a42c9e2 25 series([
9f10b292 26 function (next) {
8d309058 27 serversUtils.flushTests(next)
9f10b292
C
28 },
29 function (next) {
8d309058 30 serversUtils.runServer(1, function (server1) {
0c1cbbfe
C
31 server = server1
32 next()
33 })
34 },
35 function (next) {
8d309058 36 loginUtils.loginAndGetAccessToken(server, function (err, token) {
0c1cbbfe 37 if (err) throw err
b6c6f935 38 server.accessToken = token
9f10b292
C
39 next()
40 })
9f10b292
C
41 }
42 ], done)
43 })
8c308c2b 44
9f10b292 45 it('Should not have videos', function (done) {
8d309058 46 videosUtils.getVideosList(server.url, function (err, res) {
9f10b292 47 if (err) throw err
8c308c2b 48
68ce3ae0
C
49 expect(res.body.total).to.equal(0)
50 expect(res.body.data).to.be.an('array')
51 expect(res.body.data.length).to.equal(0)
8c308c2b 52
9f10b292 53 done()
8c308c2b 54 })
9f10b292 55 })
8c308c2b 56
9f10b292
C
57 it('Should upload the video', function (done) {
58 this.timeout(5000)
be587647
C
59 const name = 'my super name'
60 const description = 'my super description'
61 const tags = [ 'tag1', 'tag2', 'tag3' ]
62 const file = 'video_short.webm'
8d309058 63 videosUtils.uploadVideo(server.url, server.accessToken, name, description, tags, file, done)
9f10b292 64 })
8c308c2b 65
9f10b292
C
66 it('Should seed the uploaded video', function (done) {
67 // Yes, this could be long
68 this.timeout(60000)
8c308c2b 69
8d309058 70 videosUtils.getVideosList(server.url, function (err, res) {
9f10b292 71 if (err) throw err
8c308c2b 72
68ce3ae0
C
73 expect(res.body.total).to.equal(1)
74 expect(res.body.data).to.be.an('array')
75 expect(res.body.data.length).to.equal(1)
8c308c2b 76
68ce3ae0 77 const video = res.body.data[0]
9f10b292
C
78 expect(video.name).to.equal('my super name')
79 expect(video.description).to.equal('my super description')
68ce3ae0 80 expect(video.podUrl).to.equal('localhost:9001')
9f10b292 81 expect(video.magnetUri).to.exist
6d8ada5f
C
82 expect(video.author).to.equal('root')
83 expect(video.isLocal).to.be.true
be587647 84 expect(video.tags).to.deep.equal([ 'tag1', 'tag2', 'tag3' ])
8d309058 85 expect(miscsUtils.dateIsValid(video.createdDate)).to.be.true
8c308c2b 86
8d309058 87 videosUtils.testVideoImage(server.url, 'video_short.webm', video.thumbnailPath, function (err, test) {
9e5f3740
C
88 if (err) throw err
89 expect(test).to.equal(true)
2df82d42 90
bc503c2a 91 videoId = video.id
2df82d42 92
9e5f3740
C
93 webtorrent.add(video.magnetUri, function (torrent) {
94 expect(torrent.files).to.exist
95 expect(torrent.files.length).to.equal(1)
96 expect(torrent.files[0].path).to.exist.and.to.not.equal('')
97
ede4db9e 98 done()
9e5f3740 99 })
2df82d42
C
100 })
101 })
102 })
103
104 it('Should get the video', function (done) {
105 // Yes, this could be long
106 this.timeout(60000)
107
8d309058 108 videosUtils.getVideo(server.url, videoId, function (err, res) {
2df82d42
C
109 if (err) throw err
110
111 const video = res.body
112 expect(video.name).to.equal('my super name')
113 expect(video.description).to.equal('my super description')
68ce3ae0 114 expect(video.podUrl).to.equal('localhost:9001')
2df82d42 115 expect(video.magnetUri).to.exist
6d8ada5f
C
116 expect(video.author).to.equal('root')
117 expect(video.isLocal).to.be.true
be587647 118 expect(video.tags).to.deep.equal([ 'tag1', 'tag2', 'tag3' ])
8d309058 119 expect(miscsUtils.dateIsValid(video.createdDate)).to.be.true
8c308c2b 120
8d309058 121 videosUtils.testVideoImage(server.url, 'video_short.webm', video.thumbnailPath, function (err, test) {
9e5f3740
C
122 if (err) throw err
123 expect(test).to.equal(true)
8c308c2b 124
ede4db9e 125 done()
876d1bcf 126 })
8c308c2b 127 })
9f10b292 128 })
8c308c2b 129
46246b5f 130 it('Should search the video by name by default', function (done) {
8d309058 131 videosUtils.searchVideo(server.url, 'my', function (err, res) {
9f10b292 132 if (err) throw err
4d5f8138 133
68ce3ae0
C
134 expect(res.body.total).to.equal(1)
135 expect(res.body.data).to.be.an('array')
136 expect(res.body.data.length).to.equal(1)
4d5f8138 137
68ce3ae0 138 const video = res.body.data[0]
9f10b292
C
139 expect(video.name).to.equal('my super name')
140 expect(video.description).to.equal('my super description')
68ce3ae0 141 expect(video.podUrl).to.equal('localhost:9001')
6d8ada5f
C
142 expect(video.author).to.equal('root')
143 expect(video.isLocal).to.be.true
be587647 144 expect(video.tags).to.deep.equal([ 'tag1', 'tag2', 'tag3' ])
8d309058 145 expect(miscsUtils.dateIsValid(video.createdDate)).to.be.true
4d5f8138 146
8d309058 147 videosUtils.testVideoImage(server.url, 'video_short.webm', video.thumbnailPath, function (err, test) {
9e5f3740
C
148 if (err) throw err
149 expect(test).to.equal(true)
150
151 done()
152 })
4d5f8138 153 })
9f10b292 154 })
4d5f8138 155
46246b5f 156 it('Should search the video by podUrl', function (done) {
8d309058 157 videosUtils.searchVideo(server.url, '9001', 'podUrl', function (err, res) {
46246b5f
C
158 if (err) throw err
159
160 expect(res.body.total).to.equal(1)
161 expect(res.body.data).to.be.an('array')
162 expect(res.body.data.length).to.equal(1)
163
164 const video = res.body.data[0]
165 expect(video.name).to.equal('my super name')
166 expect(video.description).to.equal('my super description')
167 expect(video.podUrl).to.equal('localhost:9001')
168 expect(video.author).to.equal('root')
169 expect(video.isLocal).to.be.true
be587647 170 expect(video.tags).to.deep.equal([ 'tag1', 'tag2', 'tag3' ])
8d309058 171 expect(miscsUtils.dateIsValid(video.createdDate)).to.be.true
46246b5f 172
8d309058 173 videosUtils.testVideoImage(server.url, 'video_short.webm', video.thumbnailPath, function (err, test) {
46246b5f
C
174 if (err) throw err
175 expect(test).to.equal(true)
176
177 done()
178 })
179 })
180 })
181
8d199cb8 182 it('Should search the video by tag', function (done) {
8d309058 183 videosUtils.searchVideo(server.url, 'tag1', 'tags', function (err, res) {
8d199cb8
C
184 if (err) throw err
185
186 expect(res.body.total).to.equal(1)
187 expect(res.body.data).to.be.an('array')
188 expect(res.body.data.length).to.equal(1)
189
190 const video = res.body.data[0]
191 expect(video.name).to.equal('my super name')
192 expect(video.description).to.equal('my super description')
193 expect(video.podUrl).to.equal('localhost:9001')
194 expect(video.author).to.equal('root')
195 expect(video.isLocal).to.be.true
196 expect(video.tags).to.deep.equal([ 'tag1', 'tag2', 'tag3' ])
8d309058 197 expect(miscsUtils.dateIsValid(video.createdDate)).to.be.true
8d199cb8 198
8d309058 199 videosUtils.testVideoImage(server.url, 'video_short.webm', video.thumbnailPath, function (err, test) {
8d199cb8
C
200 if (err) throw err
201 expect(test).to.equal(true)
202
203 done()
204 })
205 })
206 })
207
46246b5f 208 it('Should not find a search by name by default', function (done) {
8d309058 209 videosUtils.searchVideo(server.url, 'hello', function (err, res) {
9f10b292 210 if (err) throw err
4d5f8138 211
68ce3ae0
C
212 expect(res.body.total).to.equal(0)
213 expect(res.body.data).to.be.an('array')
214 expect(res.body.data.length).to.equal(0)
4d5f8138 215
9f10b292 216 done()
4d5f8138 217 })
9f10b292 218 })
4d5f8138 219
46246b5f 220 it('Should not find a search by author', function (done) {
8d309058 221 videosUtils.searchVideo(server.url, 'hello', 'author', function (err, res) {
46246b5f
C
222 if (err) throw err
223
224 expect(res.body.total).to.equal(0)
225 expect(res.body.data).to.be.an('array')
226 expect(res.body.data.length).to.equal(0)
227
228 done()
229 })
230 })
231
8d199cb8 232 it('Should not find a search by tag', function (done) {
8d309058 233 videosUtils.searchVideo(server.url, 'tag', 'tags', function (err, res) {
8d199cb8
C
234 if (err) throw err
235
236 expect(res.body.total).to.equal(0)
237 expect(res.body.data).to.be.an('array')
238 expect(res.body.data.length).to.equal(0)
239
240 done()
241 })
242 })
243
9f10b292 244 it('Should remove the video', function (done) {
8d309058 245 videosUtils.removeVideo(server.url, server.accessToken, videoId, function (err) {
9f10b292 246 if (err) throw err
f5a60a51 247
3d446a26 248 fs.readdir(pathUtils.join(__dirname, '../../../test1/uploads/'), function (err, files) {
9f10b292 249 if (err) throw err
f5a60a51 250
9f10b292
C
251 expect(files.length).to.equal(0)
252 done()
876d1bcf 253 })
8c308c2b 254 })
9f10b292 255 })
8c308c2b 256
9f10b292 257 it('Should not have videos', function (done) {
8d309058 258 videosUtils.getVideosList(server.url, function (err, res) {
9f10b292 259 if (err) throw err
8c308c2b 260
68ce3ae0
C
261 expect(res.body.total).to.equal(0)
262 expect(res.body.data).to.be.an('array')
263 expect(res.body.data.length).to.equal(0)
8c308c2b 264
9f10b292 265 done()
8c308c2b 266 })
9f10b292 267 })
8c308c2b 268
3a8a8b51
C
269 it('Should upload 6 videos', function (done) {
270 this.timeout(25000)
271 const videos = [
272 'video_short.mp4', 'video_short.ogv', 'video_short.webm',
273 'video_short1.webm', 'video_short2.webm', 'video_short3.webm'
274 ]
1a42c9e2 275 each(videos, function (video, callbackEach) {
be587647
C
276 const name = video + ' name'
277 const description = video + ' description'
278 const tags = [ 'tag1', 'tag2', 'tag3' ]
279
8d309058 280 videosUtils.uploadVideo(server.url, server.accessToken, name, description, tags, video, callbackEach)
3a8a8b51
C
281 }, done)
282 })
283
284 it('Should have the correct durations', function (done) {
8d309058 285 videosUtils.getVideosList(server.url, function (err, res) {
3a8a8b51
C
286 if (err) throw err
287
68ce3ae0
C
288 expect(res.body.total).to.equal(6)
289 const videos = res.body.data
3a8a8b51
C
290 expect(videos).to.be.an('array')
291 expect(videos.length).to.equal(6)
292
bc503c2a
C
293 const videosByName = keyBy(videos, 'name')
294 expect(videosByName['video_short.mp4 name'].duration).to.equal(5)
295 expect(videosByName['video_short.ogv name'].duration).to.equal(5)
296 expect(videosByName['video_short.webm name'].duration).to.equal(5)
297 expect(videosByName['video_short1.webm name'].duration).to.equal(10)
298 expect(videosByName['video_short2.webm name'].duration).to.equal(5)
299 expect(videosByName['video_short3.webm name'].duration).to.equal(5)
3a8a8b51
C
300
301 done()
302 })
303 })
304
9e5f3740 305 it('Should have the correct thumbnails', function (done) {
8d309058 306 videosUtils.getVideosList(server.url, function (err, res) {
fbf1134e
C
307 if (err) throw err
308
68ce3ae0 309 const videos = res.body.data
fbf1134e
C
310 // For the next test
311 videosListBase = videos
9e5f3740 312
1a42c9e2 313 each(videos, function (video, callbackEach) {
9e5f3740 314 if (err) throw err
bc503c2a 315 const videoName = video.name.replace(' name', '')
9e5f3740 316
8d309058 317 videosUtils.testVideoImage(server.url, videoName, video.thumbnailPath, function (err, test) {
9e5f3740
C
318 if (err) throw err
319
320 expect(test).to.equal(true)
bc503c2a 321 callbackEach()
9e5f3740
C
322 })
323 }, done)
324 })
325 })
326
fbf1134e 327 it('Should list only the two first videos', function (done) {
8d309058 328 videosUtils.getVideosListPagination(server.url, 0, 2, function (err, res) {
fbf1134e
C
329 if (err) throw err
330
68ce3ae0
C
331 const videos = res.body.data
332 expect(res.body.total).to.equal(6)
fbf1134e
C
333 expect(videos.length).to.equal(2)
334 expect(videos[0].name === videosListBase[0].name)
335 expect(videos[1].name === videosListBase[1].name)
336
337 done()
338 })
339 })
340
341 it('Should list only the next three videos', function (done) {
8d309058 342 videosUtils.getVideosListPagination(server.url, 2, 3, function (err, res) {
fbf1134e
C
343 if (err) throw err
344
68ce3ae0
C
345 const videos = res.body.data
346 expect(res.body.total).to.equal(6)
022856f8 347 expect(videos.length).to.equal(3)
fbf1134e
C
348 expect(videos[0].name === videosListBase[2].name)
349 expect(videos[1].name === videosListBase[3].name)
350 expect(videos[2].name === videosListBase[4].name)
351
352 done()
353 })
354 })
355
356 it('Should list the last video', function (done) {
8d309058 357 videosUtils.getVideosListPagination(server.url, 5, 6, function (err, res) {
fbf1134e
C
358 if (err) throw err
359
68ce3ae0
C
360 const videos = res.body.data
361 expect(res.body.total).to.equal(6)
fbf1134e
C
362 expect(videos.length).to.equal(1)
363 expect(videos[0].name === videosListBase[5].name)
364
365 done()
366 })
367 })
368
369 it('Should search the first video', function (done) {
8d309058 370 videosUtils.searchVideoWithPagination(server.url, 'webm', 'name', 0, 1, function (err, res) {
fbf1134e
C
371 if (err) throw err
372
68ce3ae0
C
373 const videos = res.body.data
374 expect(res.body.total).to.equal(4)
fbf1134e
C
375 expect(videos.length).to.equal(1)
376 expect(videos[0].name === 'video_short.webm name')
377
378 done()
379 })
380 })
381
382 it('Should search the last two videos', function (done) {
8d309058 383 videosUtils.searchVideoWithPagination(server.url, 'webm', 'name', 2, 2, function (err, res) {
fbf1134e
C
384 if (err) throw err
385
68ce3ae0
C
386 const videos = res.body.data
387 expect(res.body.total).to.equal(4)
fbf1134e
C
388 expect(videos.length).to.equal(2)
389 expect(videos[0].name === 'video_short2.webm name')
390 expect(videos[1].name === 'video_short3.webm name')
391
392 done()
393 })
394 })
395
46246b5f 396 it('Should search all the webm videos', function (done) {
8d309058 397 videosUtils.searchVideoWithPagination(server.url, 'webm', 'name', 0, 15, function (err, res) {
fbf1134e
C
398 if (err) throw err
399
68ce3ae0
C
400 const videos = res.body.data
401 expect(res.body.total).to.equal(4)
fbf1134e
C
402 expect(videos.length).to.equal(4)
403
404 done()
405 })
406 })
407
46246b5f 408 it('Should search all the root author videos', function (done) {
8d309058 409 videosUtils.searchVideoWithPagination(server.url, 'root', 'author', 0, 15, function (err, res) {
46246b5f
C
410 if (err) throw err
411
412 const videos = res.body.data
413 expect(res.body.total).to.equal(6)
414 expect(videos.length).to.equal(6)
415
416 done()
417 })
418 })
419
420 it('Should search all the 9001 port videos', function (done) {
8d309058 421 videosUtils.searchVideoWithPagination(server.url, '9001', 'podUrl', 0, 15, function (err, res) {
46246b5f
C
422 if (err) throw err
423
424 const videos = res.body.data
425 expect(res.body.total).to.equal(6)
426 expect(videos.length).to.equal(6)
427
428 done()
429 })
430 })
431
432 it('Should search all the localhost videos', function (done) {
8d309058 433 videosUtils.searchVideoWithPagination(server.url, 'localhost', 'podUrl', 0, 15, function (err, res) {
46246b5f
C
434 if (err) throw err
435
436 const videos = res.body.data
437 expect(res.body.total).to.equal(6)
438 expect(videos.length).to.equal(6)
439
440 done()
441 })
442 })
443
444 it('Should search the good magnetUri video', function (done) {
445 const video = videosListBase[0]
8d309058 446 videosUtils.searchVideoWithPagination(server.url, encodeURIComponent(video.magnetUri), 'magnetUri', 0, 15, function (err, res) {
46246b5f
C
447 if (err) throw err
448
449 const videos = res.body.data
450 expect(res.body.total).to.equal(1)
451 expect(videos.length).to.equal(1)
452 expect(videos[0].name).to.equal(video.name)
453
454 done()
455 })
456 })
457
a877d5ac 458 it('Should list and sort by name in descending order', function (done) {
8d309058 459 videosUtils.getVideosListSort(server.url, '-name', function (err, res) {
a877d5ac
C
460 if (err) throw err
461
68ce3ae0
C
462 const videos = res.body.data
463 expect(res.body.total).to.equal(6)
a877d5ac
C
464 expect(videos.length).to.equal(6)
465 expect(videos[5].name === 'video_short.mp4 name')
466 expect(videos[4].name === 'video_short.ogv name')
467 expect(videos[3].name === 'video_short.webm name')
468 expect(videos[2].name === 'video_short1.webm name')
469 expect(videos[1].name === 'video_short2.webm name')
470 expect(videos[0].name === 'video_short3.webm name')
471
472 done()
473 })
474 })
475
476 it('Should search and sort by name in ascending order', function (done) {
8d309058 477 videosUtils.searchVideoWithSort(server.url, 'webm', 'name', function (err, res) {
a877d5ac
C
478 if (err) throw err
479
68ce3ae0
C
480 const videos = res.body.data
481 expect(res.body.total).to.equal(4)
a877d5ac
C
482 expect(videos.length).to.equal(4)
483
484 expect(videos[0].name === 'video_short.webm name')
485 expect(videos[1].name === 'video_short1.webm name')
486 expect(videos[2].name === 'video_short2.webm name')
487 expect(videos[3].name === 'video_short3.webm name')
488
489 done()
490 })
491 })
492
9f10b292 493 after(function (done) {
0c1cbbfe 494 process.kill(-server.app.pid)
8c308c2b 495
9f10b292
C
496 // Keep the logs if the test failed
497 if (this.ok) {
8d309058 498 serversUtils.flushTests(done)
9f10b292
C
499 } else {
500 done()
501 }
8c308c2b 502 })
9f10b292 503})