]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/api/videos/single-server.ts
8f55075fb67d519904179f71008e6537f50ead74
[github/Chocobozzz/PeerTube.git] / server / tests / api / videos / single-server.ts
1 /* tslint:disable:no-unused-expression */
2
3 import * as chai from 'chai'
4 import { keyBy } from 'lodash'
5 import 'mocha'
6 import { VideoPrivacy } from '../../../../shared/models/videos'
7 import {
8 checkVideoFilesWereRemoved, completeVideoCheck, flushTests, getVideo, getVideoCategories, getVideoLanguages, getVideoLicences,
9 getVideoPrivacies, getVideosList, getVideosListPagination, getVideosListSort, killallServers, rateVideo, removeVideo, runServer,
10 searchVideo, searchVideoWithPagination, searchVideoWithSort, ServerInfo, setAccessTokensToServers, testImage, updateVideo, uploadVideo,
11 viewVideo
12 } from '../../utils'
13
14 const expect = chai.expect
15
16 describe('Test a single server', function () {
17 let server: ServerInfo = null
18 let videoId = -1
19 let videoUUID = ''
20 let videosListBase: any[] = null
21
22 const getCheckAttributes = {
23 name: 'my super name',
24 category: 2,
25 licence: 6,
26 language: 3,
27 nsfw: true,
28 description: 'my super description',
29 host: 'localhost:9001',
30 account: 'root',
31 isLocal: true,
32 duration: 5,
33 tags: [ 'tag1', 'tag2', 'tag3' ],
34 privacy: VideoPrivacy.PUBLIC,
35 commentsEnabled: true,
36 channel: {
37 name: 'Default root channel',
38 description: '',
39 isLocal: true
40 },
41 fixture: 'video_short.webm',
42 files: [
43 {
44 resolution: 720,
45 size: 218910
46 }
47 ]
48 }
49
50 const updateCheckAttributes = {
51 name: 'my super video updated',
52 category: 4,
53 licence: 2,
54 language: 5,
55 nsfw: false,
56 description: 'my super description updated',
57 host: 'localhost:9001',
58 account: 'root',
59 isLocal: true,
60 tags: [ 'tagup1', 'tagup2' ],
61 privacy: VideoPrivacy.PUBLIC,
62 duration: 5,
63 commentsEnabled: false,
64 channel: {
65 name: 'Default root channel',
66 description: '',
67 isLocal: true
68 },
69 fixture: 'video_short3.webm',
70 files: [
71 {
72 resolution: 720,
73 size: 292677
74 }
75 ]
76 }
77
78 before(async function () {
79 this.timeout(30000)
80
81 await flushTests()
82
83 server = await runServer(1)
84
85 await setAccessTokensToServers([ server ])
86 })
87
88 it('Should list video categories', async function () {
89 const res = await getVideoCategories(server.url)
90
91 const categories = res.body
92 expect(Object.keys(categories)).to.have.length.above(10)
93
94 expect(categories[11]).to.equal('News')
95 })
96
97 it('Should list video licences', async function () {
98 const res = await getVideoLicences(server.url)
99
100 const licences = res.body
101 expect(Object.keys(licences)).to.have.length.above(5)
102
103 expect(licences[3]).to.equal('Attribution - No Derivatives')
104 })
105
106 it('Should list video languages', async function () {
107 const res = await getVideoLanguages(server.url)
108
109 const languages = res.body
110 expect(Object.keys(languages)).to.have.length.above(5)
111
112 expect(languages[3]).to.equal('Mandarin')
113 })
114
115 it('Should list video privacies', async function () {
116 const res = await getVideoPrivacies(server.url)
117
118 const privacies = res.body
119 expect(Object.keys(privacies)).to.have.length.at.least(3)
120
121 expect(privacies[3]).to.equal('Private')
122 })
123
124 it('Should not have videos', async function () {
125 const res = await getVideosList(server.url)
126
127 expect(res.body.total).to.equal(0)
128 expect(res.body.data).to.be.an('array')
129 expect(res.body.data.length).to.equal(0)
130 })
131
132 it('Should upload the video', async function () {
133 const videoAttributes = {
134 name: 'my super name',
135 category: 2,
136 nsfw: true,
137 licence: 6,
138 tags: [ 'tag1', 'tag2', 'tag3' ]
139 }
140 const res = await uploadVideo(server.url, server.accessToken, videoAttributes)
141 expect(res.body.video).to.not.be.undefined
142 expect(res.body.video.id).to.equal(1)
143 expect(res.body.video.uuid).to.have.length.above(5)
144
145 videoId = res.body.video.id
146 videoUUID = res.body.video.uuid
147 })
148
149 it('Should get and seed the uploaded video', async function () {
150 // Yes, this could be long
151 this.timeout(60000)
152
153 const res = await getVideosList(server.url)
154
155 expect(res.body.total).to.equal(1)
156 expect(res.body.data).to.be.an('array')
157 expect(res.body.data.length).to.equal(1)
158
159 const video = res.body.data[0]
160 await completeVideoCheck(server.url, video, getCheckAttributes)
161 })
162
163 it('Should get the video by UUID', async function () {
164 // Yes, this could be long
165 this.timeout(60000)
166
167 const res = await getVideo(server.url, videoUUID)
168
169 const video = res.body
170 await completeVideoCheck(server.url, video, getCheckAttributes)
171 })
172
173 it('Should have the views updated', async function () {
174 await viewVideo(server.url, videoId)
175 await viewVideo(server.url, videoId)
176 await viewVideo(server.url, videoId)
177
178 const res = await getVideo(server.url, videoId)
179
180 const video = res.body
181 expect(video.views).to.equal(3)
182 })
183
184 it('Should search the video by name', async function () {
185 const res = await searchVideo(server.url, 'my')
186
187 expect(res.body.total).to.equal(1)
188 expect(res.body.data).to.be.an('array')
189 expect(res.body.data.length).to.equal(1)
190
191 const video = res.body.data[0]
192 await completeVideoCheck(server.url, video, getCheckAttributes)
193 })
194
195 // Not implemented yet
196 // it('Should search the video by serverHost', async function () {
197 // const res = await videosUtils.searchVideo(server.url, '9001', 'host')
198
199 // expect(res.body.total).to.equal(1)
200 // expect(res.body.data).to.be.an('array')
201 // expect(res.body.data.length).to.equal(1)
202
203 // const video = res.body.data[0]
204 // expect(video.name).to.equal('my super name')
205 // expect(video.description).to.equal('my super description')
206 // expect(video.serverHost).to.equal('localhost:9001')
207 // expect(video.author).to.equal('root')
208 // expect(video.isLocal).to.be.true
209 // expect(video.tags).to.deep.equal([ 'tag1', 'tag2', 'tag3' ])
210 // expect(dateIsValid(video.createdAt)).to.be.true
211 // expect(dateIsValid(video.updatedAt)).to.be.true
212
213 // const test = await testVideoImage(server.url, 'video_short.webm', video.thumbnailPath)
214 // expect(test).to.equal(true)
215
216 // done()
217 // })
218 // })
219 // })
220
221 // Not implemented yet
222 // it('Should search the video by tag', async function () {
223 // const res = await searchVideo(server.url, 'tag1')
224 //
225 // expect(res.body.total).to.equal(1)
226 // expect(res.body.data).to.be.an('array')
227 // expect(res.body.data.length).to.equal(1)
228 //
229 // const video = res.body.data[0]
230 // expect(video.name).to.equal('my super name')
231 // expect(video.category).to.equal(2)
232 // expect(video.categoryLabel).to.equal('Films')
233 // expect(video.licence).to.equal(6)
234 // expect(video.licenceLabel).to.equal('Attribution - Non Commercial - No Derivatives')
235 // expect(video.language).to.equal(3)
236 // expect(video.languageLabel).to.equal('Mandarin')
237 // expect(video.nsfw).to.be.ok
238 // expect(video.description).to.equal('my super description')
239 // expect(video.serverHost).to.equal('localhost:9001')
240 // expect(video.accountName).to.equal('root')
241 // expect(video.isLocal).to.be.true
242 // expect(video.tags).to.deep.equal([ 'tag1', 'tag2', 'tag3' ])
243 // expect(dateIsValid(video.createdAt)).to.be.true
244 // expect(dateIsValid(video.updatedAt)).to.be.true
245 //
246 // const test = await testVideoImage(server.url, 'video_short.webm', video.thumbnailPath)
247 // expect(test).to.equal(true)
248 // })
249
250 it('Should not find a search by name', async function () {
251 const res = await searchVideo(server.url, 'hello')
252
253 expect(res.body.total).to.equal(0)
254 expect(res.body.data).to.be.an('array')
255 expect(res.body.data.length).to.equal(0)
256 })
257
258 // Not implemented yet
259 // it('Should not find a search by author', async function () {
260 // const res = await searchVideo(server.url, 'hello')
261 //
262 // expect(res.body.total).to.equal(0)
263 // expect(res.body.data).to.be.an('array')
264 // expect(res.body.data.length).to.equal(0)
265 // })
266 //
267 // Not implemented yet
268 // it('Should not find a search by tag', async function () {
269 // const res = await searchVideo(server.url, 'hello')
270 //
271 // expect(res.body.total).to.equal(0)
272 // expect(res.body.data).to.be.an('array')
273 // expect(res.body.data.length).to.equal(0)
274 // })
275
276 it('Should remove the video', async function () {
277 await removeVideo(server.url, server.accessToken, videoId)
278
279 await checkVideoFilesWereRemoved(videoUUID, 1)
280 })
281
282 it('Should not have videos', async function () {
283 const res = await getVideosList(server.url)
284
285 expect(res.body.total).to.equal(0)
286 expect(res.body.data).to.be.an('array')
287 expect(res.body.data).to.have.lengthOf(0)
288 })
289
290 it('Should upload 6 videos', async function () {
291 this.timeout(25000)
292
293 const videos = [
294 'video_short.mp4', 'video_short.ogv', 'video_short.webm',
295 'video_short1.webm', 'video_short2.webm', 'video_short3.webm'
296 ]
297
298 const tasks: Promise<any>[] = []
299 for (const video of videos) {
300 const videoAttributes = {
301 name: video + ' name',
302 description: video + ' description',
303 category: 2,
304 licence: 1,
305 language: 1,
306 nsfw: true,
307 tags: [ 'tag1', 'tag2', 'tag3' ],
308 fixture: video
309 }
310
311 const p = uploadVideo(server.url, server.accessToken, videoAttributes)
312 tasks.push(p)
313 }
314
315 await Promise.all(tasks)
316 })
317
318 it('Should have the correct durations', async function () {
319 const res = await getVideosList(server.url)
320
321 expect(res.body.total).to.equal(6)
322 const videos = res.body.data
323 expect(videos).to.be.an('array')
324 expect(videos).to.have.lengthOf(6)
325
326 const videosByName = keyBy<{ duration: number }>(videos, 'name')
327 expect(videosByName['video_short.mp4 name'].duration).to.equal(5)
328 expect(videosByName['video_short.ogv name'].duration).to.equal(5)
329 expect(videosByName['video_short.webm name'].duration).to.equal(5)
330 expect(videosByName['video_short1.webm name'].duration).to.equal(10)
331 expect(videosByName['video_short2.webm name'].duration).to.equal(5)
332 expect(videosByName['video_short3.webm name'].duration).to.equal(5)
333 })
334
335 it('Should have the correct thumbnails', async function () {
336 const res = await getVideosList(server.url)
337
338 const videos = res.body.data
339 // For the next test
340 videosListBase = videos
341
342 for (const video of videos) {
343 const videoName = video.name.replace(' name', '')
344 await testImage(server.url, videoName, video.thumbnailPath)
345 }
346 })
347
348 it('Should list only the two first videos', async function () {
349 const res = await getVideosListPagination(server.url, 0, 2, 'name')
350
351 const videos = res.body.data
352 expect(res.body.total).to.equal(6)
353 expect(videos.length).to.equal(2)
354 expect(videos[0].name).to.equal(videosListBase[0].name)
355 expect(videos[1].name).to.equal(videosListBase[1].name)
356 })
357
358 it('Should list only the next three videos', async function () {
359 const res = await getVideosListPagination(server.url, 2, 3, 'name')
360
361 const videos = res.body.data
362 expect(res.body.total).to.equal(6)
363 expect(videos.length).to.equal(3)
364 expect(videos[0].name).to.equal(videosListBase[2].name)
365 expect(videos[1].name).to.equal(videosListBase[3].name)
366 expect(videos[2].name).to.equal(videosListBase[4].name)
367 })
368
369 it('Should list the last video', async function () {
370 const res = await getVideosListPagination(server.url, 5, 6, 'name')
371
372 const videos = res.body.data
373 expect(res.body.total).to.equal(6)
374 expect(videos.length).to.equal(1)
375 expect(videos[0].name).to.equal(videosListBase[5].name)
376 })
377
378 it('Should search the first video', async function () {
379 const res = await searchVideoWithPagination(server.url, 'webm', 0, 1, 'name')
380
381 const videos = res.body.data
382 expect(res.body.total).to.equal(4)
383 expect(videos.length).to.equal(1)
384 expect(videos[0].name).to.equal('video_short1.webm name')
385 })
386
387 it('Should search the last two videos', async function () {
388 const res = await searchVideoWithPagination(server.url, 'webm', 2, 2, 'name')
389
390 const videos = res.body.data
391 expect(res.body.total).to.equal(4)
392 expect(videos.length).to.equal(2)
393 expect(videos[0].name).to.equal('video_short3.webm name')
394 expect(videos[1].name).to.equal('video_short.webm name')
395 })
396
397 it('Should search all the webm videos', async function () {
398 const res = await searchVideoWithPagination(server.url, 'webm', 0, 15)
399
400 const videos = res.body.data
401 expect(res.body.total).to.equal(4)
402 expect(videos.length).to.equal(4)
403 })
404
405 // Not implemented yet
406 // it('Should search all the root author videos', async function () {
407 // const res = await searchVideoWithPagination(server.url, 'root', 0, 15)
408 //
409 // const videos = res.body.data
410 // expect(res.body.total).to.equal(6)
411 // expect(videos.length).to.equal(6)
412 // })
413
414 // Not implemented yet
415 // it('Should search all the 9001 port videos', async function () {
416 // const res = await videosUtils.searchVideoWithPagination(server.url, '9001', 'host', 0, 15)
417
418 // const videos = res.body.data
419 // expect(res.body.total).to.equal(6)
420 // expect(videos.length).to.equal(6)
421
422 // done()
423 // })
424 // })
425
426 // it('Should search all the localhost videos', async function () {
427 // const res = await videosUtils.searchVideoWithPagination(server.url, 'localhost', 'host', 0, 15)
428
429 // const videos = res.body.data
430 // expect(res.body.total).to.equal(6)
431 // expect(videos.length).to.equal(6)
432
433 // done()
434 // })
435 // })
436
437 it('Should list and sort by name in descending order', async function () {
438 const res = await getVideosListSort(server.url, '-name')
439
440 const videos = res.body.data
441 expect(res.body.total).to.equal(6)
442 expect(videos.length).to.equal(6)
443 expect(videos[0].name).to.equal('video_short.webm name')
444 expect(videos[1].name).to.equal('video_short.ogv name')
445 expect(videos[2].name).to.equal('video_short.mp4 name')
446 expect(videos[3].name).to.equal('video_short3.webm name')
447 expect(videos[4].name).to.equal('video_short2.webm name')
448 expect(videos[5].name).to.equal('video_short1.webm name')
449 })
450
451 it('Should search and sort by name in ascending order', async function () {
452 const res = await searchVideoWithSort(server.url, 'webm', 'name')
453
454 const videos = res.body.data
455 expect(res.body.total).to.equal(4)
456 expect(videos.length).to.equal(4)
457
458 expect(videos[0].name).to.equal('video_short1.webm name')
459 expect(videos[1].name).to.equal('video_short2.webm name')
460 expect(videos[2].name).to.equal('video_short3.webm name')
461 expect(videos[3].name).to.equal('video_short.webm name')
462
463 videoId = videos[2].id
464 })
465
466 it('Should update a video', async function () {
467 const attributes = {
468 name: 'my super video updated',
469 category: 4,
470 licence: 2,
471 language: 5,
472 nsfw: false,
473 description: 'my super description updated',
474 commentsEnabled: false,
475 tags: [ 'tagup1', 'tagup2' ]
476 }
477 await updateVideo(server.url, server.accessToken, videoId, attributes)
478 })
479
480 it('Should have the video updated', async function () {
481 this.timeout(60000)
482
483 const res = await getVideo(server.url, videoId)
484 const video = res.body
485
486 await completeVideoCheck(server.url, video, updateCheckAttributes)
487 })
488
489 it('Should update only the tags of a video', async function () {
490 const attributes = {
491 tags: [ 'supertag', 'tag1', 'tag2' ]
492 }
493 await updateVideo(server.url, server.accessToken, videoId, attributes)
494
495 const res = await getVideo(server.url, videoId)
496 const video = res.body
497
498 await completeVideoCheck(server.url, video, Object.assign(updateCheckAttributes, attributes))
499 })
500
501 it('Should update only the description of a video', async function () {
502 const attributes = {
503 description: 'hello everybody'
504 }
505 await updateVideo(server.url, server.accessToken, videoId, attributes)
506
507 const res = await getVideo(server.url, videoId)
508 const video = res.body
509
510 await completeVideoCheck(server.url, video, Object.assign(updateCheckAttributes, attributes))
511 })
512
513 it('Should like a video', async function () {
514 await rateVideo(server.url, server.accessToken, videoId, 'like')
515
516 const res = await getVideo(server.url, videoId)
517 const video = res.body
518
519 expect(video.likes).to.equal(1)
520 expect(video.dislikes).to.equal(0)
521 })
522
523 it('Should dislike the same video', async function () {
524 await rateVideo(server.url, server.accessToken, videoId, 'dislike')
525
526 const res = await getVideo(server.url, videoId)
527 const video = res.body
528
529 expect(video.likes).to.equal(0)
530 expect(video.dislikes).to.equal(1)
531 })
532
533 after(async function () {
534 killallServers([ server ])
535
536 // Keep the logs if the test failed
537 if (this['ok']) {
538 await flushTests()
539 }
540 })
541 })