]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/api/videos/multiple-servers.ts
Hide video abuses from muted accounts
[github/Chocobozzz/PeerTube.git] / server / tests / api / videos / multiple-servers.ts
1 /* tslint:disable:no-unused-expression */
2
3 import * as chai from 'chai'
4 import 'mocha'
5 import { join } from 'path'
6 import * as request from 'supertest'
7 import { VideoPrivacy } from '../../../../shared/models/videos'
8 import { VideoComment, VideoCommentThreadTree } from '../../../../shared/models/videos/video-comment.model'
9 import {
10 addVideoChannel,
11 checkTmpIsEmpty,
12 checkVideoFilesWereRemoved,
13 cleanupTests,
14 completeVideoCheck,
15 createUser,
16 dateIsValid,
17 doubleFollow,
18 flushAndRunMultipleServers,
19 getLocalVideos,
20 getVideo,
21 getVideoChannelsList,
22 getVideosList,
23 rateVideo,
24 removeVideo,
25 ServerInfo,
26 setAccessTokensToServers,
27 testImage,
28 updateVideo,
29 uploadVideo,
30 userLogin,
31 viewVideo,
32 wait,
33 webtorrentAdd
34 } from '../../../../shared/extra-utils'
35 import {
36 addVideoCommentReply,
37 addVideoCommentThread,
38 deleteVideoComment,
39 getVideoCommentThreads,
40 getVideoThreadComments
41 } from '../../../../shared/extra-utils/videos/video-comments'
42 import { waitJobs } from '../../../../shared/extra-utils/server/jobs'
43
44 const expect = chai.expect
45
46 describe('Test multiple servers', function () {
47 let servers: ServerInfo[] = []
48 const toRemove = []
49 let videoUUID = ''
50 let videoChannelId: number
51
52 before(async function () {
53 this.timeout(120000)
54
55 servers = await flushAndRunMultipleServers(3)
56
57 // Get the access tokens
58 await setAccessTokensToServers(servers)
59
60 {
61 const videoChannel = {
62 name: 'super_channel_name',
63 displayName: 'my channel',
64 description: 'super channel'
65 }
66 await addVideoChannel(servers[ 0 ].url, servers[ 0 ].accessToken, videoChannel)
67 const channelRes = await getVideoChannelsList(servers[ 0 ].url, 0, 1)
68 videoChannelId = channelRes.body.data[ 0 ].id
69 }
70
71 // Server 1 and server 2 follow each other
72 await doubleFollow(servers[0], servers[1])
73 // Server 1 and server 3 follow each other
74 await doubleFollow(servers[0], servers[2])
75 // Server 2 and server 3 follow each other
76 await doubleFollow(servers[1], servers[2])
77 })
78
79 it('Should not have videos for all servers', async function () {
80 for (const server of servers) {
81 const res = await getVideosList(server.url)
82 const videos = res.body.data
83 expect(videos).to.be.an('array')
84 expect(videos.length).to.equal(0)
85 }
86 })
87
88 describe('Should upload the video and propagate on each server', function () {
89 it('Should upload the video on server 1 and propagate on each server', async function () {
90 this.timeout(25000)
91
92 const videoAttributes = {
93 name: 'my super name for server 1',
94 category: 5,
95 licence: 4,
96 language: 'ja',
97 nsfw: true,
98 description: 'my super description for server 1',
99 support: 'my super support text for server 1',
100 originallyPublishedAt: '2019-02-10T13:38:14.449Z',
101 tags: [ 'tag1p1', 'tag2p1' ],
102 channelId: videoChannelId,
103 fixture: 'video_short1.webm'
104 }
105 await uploadVideo(servers[0].url, servers[0].accessToken, videoAttributes)
106
107 await waitJobs(servers)
108
109 // All servers should have this video
110 let publishedAt: string = null
111 for (const server of servers) {
112 const isLocal = server.port === servers[0].port
113 const checkAttributes = {
114 name: 'my super name for server 1',
115 category: 5,
116 licence: 4,
117 language: 'ja',
118 nsfw: true,
119 description: 'my super description for server 1',
120 support: 'my super support text for server 1',
121 originallyPublishedAt: '2019-02-10T13:38:14.449Z',
122 account: {
123 name: 'root',
124 host: 'localhost:' + servers[0].port
125 },
126 isLocal,
127 publishedAt,
128 duration: 10,
129 tags: [ 'tag1p1', 'tag2p1' ],
130 privacy: VideoPrivacy.PUBLIC,
131 commentsEnabled: true,
132 downloadEnabled: true,
133 channel: {
134 displayName: 'my channel',
135 name: 'super_channel_name',
136 description: 'super channel',
137 isLocal
138 },
139 fixture: 'video_short1.webm',
140 files: [
141 {
142 resolution: 720,
143 size: 572456
144 }
145 ]
146 }
147
148 const res = await getVideosList(server.url)
149 const videos = res.body.data
150 expect(videos).to.be.an('array')
151 expect(videos.length).to.equal(1)
152 const video = videos[0]
153
154 await completeVideoCheck(server.url, video, checkAttributes)
155 publishedAt = video.publishedAt
156 }
157 })
158
159 it('Should upload the video on server 2 and propagate on each server', async function () {
160 this.timeout(50000)
161
162 const user = {
163 username: 'user1',
164 password: 'super_password'
165 }
166 await createUser({ url: servers[ 1 ].url, accessToken: servers[ 1 ].accessToken, username: user.username, password: user.password })
167 const userAccessToken = await userLogin(servers[1], user)
168
169 const videoAttributes = {
170 name: 'my super name for server 2',
171 category: 4,
172 licence: 3,
173 language: 'de',
174 nsfw: true,
175 description: 'my super description for server 2',
176 support: 'my super support text for server 2',
177 tags: [ 'tag1p2', 'tag2p2', 'tag3p2' ],
178 fixture: 'video_short2.webm',
179 thumbnailfile: 'thumbnail.jpg',
180 previewfile: 'preview.jpg'
181 }
182 await uploadVideo(servers[1].url, userAccessToken, videoAttributes)
183
184 // Transcoding
185 await waitJobs(servers)
186
187 // All servers should have this video
188 for (const server of servers) {
189 const isLocal = server.url === 'http://localhost:' + servers[1].port
190 const checkAttributes = {
191 name: 'my super name for server 2',
192 category: 4,
193 licence: 3,
194 language: 'de',
195 nsfw: true,
196 description: 'my super description for server 2',
197 support: 'my super support text for server 2',
198 account: {
199 name: 'user1',
200 host: 'localhost:' + servers[1].port
201 },
202 isLocal,
203 commentsEnabled: true,
204 downloadEnabled: true,
205 duration: 5,
206 tags: [ 'tag1p2', 'tag2p2', 'tag3p2' ],
207 privacy: VideoPrivacy.PUBLIC,
208 channel: {
209 displayName: 'Main user1 channel',
210 name: 'user1_channel',
211 description: 'super channel',
212 isLocal
213 },
214 fixture: 'video_short2.webm',
215 files: [
216 {
217 resolution: 240,
218 size: 189000
219 },
220 {
221 resolution: 360,
222 size: 278000
223 },
224 {
225 resolution: 480,
226 size: 384000
227 },
228 {
229 resolution: 720,
230 size: 706000
231 }
232 ],
233 thumbnailfile: 'thumbnail',
234 previewfile: 'preview'
235 }
236
237 const res = await getVideosList(server.url)
238 const videos = res.body.data
239 expect(videos).to.be.an('array')
240 expect(videos.length).to.equal(2)
241 const video = videos[1]
242
243 await completeVideoCheck(server.url, video, checkAttributes)
244 }
245 })
246
247 it('Should upload two videos on server 3 and propagate on each server', async function () {
248 this.timeout(45000)
249
250 const videoAttributes1 = {
251 name: 'my super name for server 3',
252 category: 6,
253 licence: 5,
254 language: 'de',
255 nsfw: true,
256 description: 'my super description for server 3',
257 support: 'my super support text for server 3',
258 tags: [ 'tag1p3' ],
259 fixture: 'video_short3.webm'
260 }
261 await uploadVideo(servers[2].url, servers[2].accessToken, videoAttributes1)
262
263 const videoAttributes2 = {
264 name: 'my super name for server 3-2',
265 category: 7,
266 licence: 6,
267 language: 'ko',
268 nsfw: false,
269 description: 'my super description for server 3-2',
270 support: 'my super support text for server 3-2',
271 tags: [ 'tag2p3', 'tag3p3', 'tag4p3' ],
272 fixture: 'video_short.webm'
273 }
274 await uploadVideo(servers[2].url, servers[2].accessToken, videoAttributes2)
275
276 await waitJobs(servers)
277
278 // All servers should have this video
279 for (const server of servers) {
280 const isLocal = server.url === 'http://localhost:' + servers[2].port
281 const res = await getVideosList(server.url)
282
283 const videos = res.body.data
284 expect(videos).to.be.an('array')
285 expect(videos.length).to.equal(4)
286
287 // We not sure about the order of the two last uploads
288 let video1 = null
289 let video2 = null
290 if (videos[2].name === 'my super name for server 3') {
291 video1 = videos[2]
292 video2 = videos[3]
293 } else {
294 video1 = videos[3]
295 video2 = videos[2]
296 }
297
298 const checkAttributesVideo1 = {
299 name: 'my super name for server 3',
300 category: 6,
301 licence: 5,
302 language: 'de',
303 nsfw: true,
304 description: 'my super description for server 3',
305 support: 'my super support text for server 3',
306 account: {
307 name: 'root',
308 host: 'localhost:' + servers[2].port
309 },
310 isLocal,
311 duration: 5,
312 commentsEnabled: true,
313 downloadEnabled: true,
314 tags: [ 'tag1p3' ],
315 privacy: VideoPrivacy.PUBLIC,
316 channel: {
317 displayName: 'Main root channel',
318 name: 'root_channel',
319 description: '',
320 isLocal
321 },
322 fixture: 'video_short3.webm',
323 files: [
324 {
325 resolution: 720,
326 size: 292677
327 }
328 ]
329 }
330 await completeVideoCheck(server.url, video1, checkAttributesVideo1)
331
332 const checkAttributesVideo2 = {
333 name: 'my super name for server 3-2',
334 category: 7,
335 licence: 6,
336 language: 'ko',
337 nsfw: false,
338 description: 'my super description for server 3-2',
339 support: 'my super support text for server 3-2',
340 account: {
341 name: 'root',
342 host: 'localhost:' + servers[2].port
343 },
344 commentsEnabled: true,
345 downloadEnabled: true,
346 isLocal,
347 duration: 5,
348 tags: [ 'tag2p3', 'tag3p3', 'tag4p3' ],
349 privacy: VideoPrivacy.PUBLIC,
350 channel: {
351 displayName: 'Main root channel',
352 name: 'root_channel',
353 description: '',
354 isLocal
355 },
356 fixture: 'video_short.webm',
357 files: [
358 {
359 resolution: 720,
360 size: 218910
361 }
362 ]
363 }
364 await completeVideoCheck(server.url, video2, checkAttributesVideo2)
365 }
366 })
367 })
368
369 describe('It should list local videos', function () {
370 it('Should list only local videos on server 1', async function () {
371 const { body } = await getLocalVideos(servers[0].url)
372
373 expect(body.total).to.equal(1)
374 expect(body.data).to.be.an('array')
375 expect(body.data.length).to.equal(1)
376 expect(body.data[0].name).to.equal('my super name for server 1')
377 })
378
379 it('Should list only local videos on server 2', async function () {
380 const { body } = await getLocalVideos(servers[1].url)
381
382 expect(body.total).to.equal(1)
383 expect(body.data).to.be.an('array')
384 expect(body.data.length).to.equal(1)
385 expect(body.data[0].name).to.equal('my super name for server 2')
386 })
387
388 it('Should list only local videos on server 3', async function () {
389 const { body } = await getLocalVideos(servers[2].url)
390
391 expect(body.total).to.equal(2)
392 expect(body.data).to.be.an('array')
393 expect(body.data.length).to.equal(2)
394 expect(body.data[0].name).to.equal('my super name for server 3')
395 expect(body.data[1].name).to.equal('my super name for server 3-2')
396 })
397 })
398
399 describe('Should seed the uploaded video', function () {
400 it('Should add the file 1 by asking server 3', async function () {
401 this.timeout(10000)
402
403 const res = await getVideosList(servers[2].url)
404
405 const video = res.body.data[0]
406 toRemove.push(res.body.data[2])
407 toRemove.push(res.body.data[3])
408
409 const res2 = await getVideo(servers[2].url, video.id)
410 const videoDetails = res2.body
411
412 const torrent = await webtorrentAdd(videoDetails.files[0].magnetUri, true)
413 expect(torrent.files).to.be.an('array')
414 expect(torrent.files.length).to.equal(1)
415 expect(torrent.files[0].path).to.exist.and.to.not.equal('')
416 })
417
418 it('Should add the file 2 by asking server 1', async function () {
419 this.timeout(10000)
420
421 const res = await getVideosList(servers[0].url)
422
423 const video = res.body.data[1]
424 const res2 = await getVideo(servers[0].url, video.id)
425 const videoDetails = res2.body
426
427 const torrent = await webtorrentAdd(videoDetails.files[0].magnetUri, true)
428 expect(torrent.files).to.be.an('array')
429 expect(torrent.files.length).to.equal(1)
430 expect(torrent.files[0].path).to.exist.and.to.not.equal('')
431 })
432
433 it('Should add the file 3 by asking server 2', async function () {
434 this.timeout(10000)
435
436 const res = await getVideosList(servers[1].url)
437
438 const video = res.body.data[2]
439 const res2 = await getVideo(servers[1].url, video.id)
440 const videoDetails = res2.body
441
442 const torrent = await webtorrentAdd(videoDetails.files[0].magnetUri, true)
443 expect(torrent.files).to.be.an('array')
444 expect(torrent.files.length).to.equal(1)
445 expect(torrent.files[0].path).to.exist.and.to.not.equal('')
446 })
447
448 it('Should add the file 3-2 by asking server 1', async function () {
449 this.timeout(10000)
450
451 const res = await getVideosList(servers[0].url)
452
453 const video = res.body.data[3]
454 const res2 = await getVideo(servers[0].url, video.id)
455 const videoDetails = res2.body
456
457 const torrent = await webtorrentAdd(videoDetails.files[0].magnetUri)
458 expect(torrent.files).to.be.an('array')
459 expect(torrent.files.length).to.equal(1)
460 expect(torrent.files[0].path).to.exist.and.to.not.equal('')
461 })
462
463 it('Should add the file 2 in 360p by asking server 1', async function () {
464 this.timeout(10000)
465
466 const res = await getVideosList(servers[0].url)
467
468 const video = res.body.data.find(v => v.name === 'my super name for server 2')
469 const res2 = await getVideo(servers[0].url, video.id)
470 const videoDetails = res2.body
471
472 const file = videoDetails.files.find(f => f.resolution.id === 360)
473 expect(file).not.to.be.undefined
474
475 const torrent = await webtorrentAdd(file.magnetUri)
476 expect(torrent.files).to.be.an('array')
477 expect(torrent.files.length).to.equal(1)
478 expect(torrent.files[0].path).to.exist.and.to.not.equal('')
479 })
480 })
481
482 describe('Should update video views, likes and dislikes', function () {
483 let localVideosServer3 = []
484 let remoteVideosServer1 = []
485 let remoteVideosServer2 = []
486 let remoteVideosServer3 = []
487
488 before(async function () {
489 const res1 = await getVideosList(servers[0].url)
490 remoteVideosServer1 = res1.body.data.filter(video => video.isLocal === false).map(video => video.uuid)
491
492 const res2 = await getVideosList(servers[1].url)
493 remoteVideosServer2 = res2.body.data.filter(video => video.isLocal === false).map(video => video.uuid)
494
495 const res3 = await getVideosList(servers[2].url)
496 localVideosServer3 = res3.body.data.filter(video => video.isLocal === true).map(video => video.uuid)
497 remoteVideosServer3 = res3.body.data.filter(video => video.isLocal === false).map(video => video.uuid)
498 })
499
500 it('Should view multiple videos on owned servers', async function () {
501 this.timeout(30000)
502
503 await viewVideo(servers[2].url, localVideosServer3[0])
504 await wait(1000)
505
506 await viewVideo(servers[2].url, localVideosServer3[0])
507 await viewVideo(servers[2].url, localVideosServer3[1])
508
509 await wait(1000)
510
511 await viewVideo(servers[2].url, localVideosServer3[0])
512 await viewVideo(servers[2].url, localVideosServer3[0])
513
514 await waitJobs(servers)
515
516 // Wait the repeatable job
517 await wait(6000)
518
519 for (const server of servers) {
520 const res = await getVideosList(server.url)
521
522 const videos = res.body.data
523 const video0 = videos.find(v => v.uuid === localVideosServer3[0])
524 const video1 = videos.find(v => v.uuid === localVideosServer3[1])
525
526 expect(video0.views).to.equal(3)
527 expect(video1.views).to.equal(1)
528 }
529 })
530
531 it('Should view multiple videos on each servers', async function () {
532 this.timeout(45000)
533
534 const tasks: Promise<any>[] = []
535 tasks.push(viewVideo(servers[0].url, remoteVideosServer1[0]))
536 tasks.push(viewVideo(servers[1].url, remoteVideosServer2[0]))
537 tasks.push(viewVideo(servers[1].url, remoteVideosServer2[0]))
538 tasks.push(viewVideo(servers[2].url, remoteVideosServer3[0]))
539 tasks.push(viewVideo(servers[2].url, remoteVideosServer3[1]))
540 tasks.push(viewVideo(servers[2].url, remoteVideosServer3[1]))
541 tasks.push(viewVideo(servers[2].url, remoteVideosServer3[1]))
542 tasks.push(viewVideo(servers[2].url, localVideosServer3[1]))
543 tasks.push(viewVideo(servers[2].url, localVideosServer3[1]))
544 tasks.push(viewVideo(servers[2].url, localVideosServer3[1]))
545
546 await Promise.all(tasks)
547
548 await waitJobs(servers)
549
550 // Wait the repeatable job
551 await wait(16000)
552
553 let baseVideos = null
554
555 for (const server of servers) {
556 const res = await getVideosList(server.url)
557
558 const videos = res.body.data
559
560 // Initialize base videos for future comparisons
561 if (baseVideos === null) {
562 baseVideos = videos
563 continue
564 }
565
566 for (const baseVideo of baseVideos) {
567 const sameVideo = videos.find(video => video.name === baseVideo.name)
568 expect(baseVideo.views).to.equal(sameVideo.views)
569 }
570 }
571 })
572
573 it('Should like and dislikes videos on different services', async function () {
574 this.timeout(20000)
575
576 await rateVideo(servers[0].url, servers[0].accessToken, remoteVideosServer1[0], 'like')
577 await wait(500)
578 await rateVideo(servers[0].url, servers[0].accessToken, remoteVideosServer1[0], 'dislike')
579 await wait(500)
580 await rateVideo(servers[0].url, servers[0].accessToken, remoteVideosServer1[0], 'like')
581 await rateVideo(servers[2].url, servers[2].accessToken, localVideosServer3[1], 'like')
582 await wait(500)
583 await rateVideo(servers[2].url, servers[2].accessToken, localVideosServer3[1], 'dislike')
584 await rateVideo(servers[2].url, servers[2].accessToken, remoteVideosServer3[1], 'dislike')
585 await wait(500)
586 await rateVideo(servers[2].url, servers[2].accessToken, remoteVideosServer3[0], 'like')
587
588 await waitJobs(servers)
589
590 let baseVideos = null
591 for (const server of servers) {
592 const res = await getVideosList(server.url)
593
594 const videos = res.body.data
595
596 // Initialize base videos for future comparisons
597 if (baseVideos === null) {
598 baseVideos = videos
599 continue
600 }
601
602 for (const baseVideo of baseVideos) {
603 const sameVideo = videos.find(video => video.name === baseVideo.name)
604 expect(baseVideo.likes).to.equal(sameVideo.likes)
605 expect(baseVideo.dislikes).to.equal(sameVideo.dislikes)
606 }
607 }
608 })
609 })
610
611 describe('Should manipulate these videos', function () {
612 it('Should update the video 3 by asking server 3', async function () {
613 this.timeout(10000)
614
615 const attributes = {
616 name: 'my super video updated',
617 category: 10,
618 licence: 7,
619 language: 'fr',
620 nsfw: true,
621 description: 'my super description updated',
622 support: 'my super support text updated',
623 tags: [ 'tag_up_1', 'tag_up_2' ],
624 thumbnailfile: 'thumbnail.jpg',
625 originallyPublishedAt: '2019-02-11T13:38:14.449Z',
626 previewfile: 'preview.jpg'
627 }
628
629 await updateVideo(servers[2].url, servers[2].accessToken, toRemove[0].id, attributes)
630
631 await waitJobs(servers)
632 })
633
634 it('Should have the video 3 updated on each server', async function () {
635 this.timeout(10000)
636
637 for (const server of servers) {
638 const res = await getVideosList(server.url)
639
640 const videos = res.body.data
641 const videoUpdated = videos.find(video => video.name === 'my super video updated')
642 expect(!!videoUpdated).to.be.true
643
644 const isLocal = server.url === 'http://localhost:' + servers[2].port
645 const checkAttributes = {
646 name: 'my super video updated',
647 category: 10,
648 licence: 7,
649 language: 'fr',
650 nsfw: true,
651 description: 'my super description updated',
652 support: 'my super support text updated',
653 originallyPublishedAt: '2019-02-11T13:38:14.449Z',
654 account: {
655 name: 'root',
656 host: 'localhost:' + servers[2].port
657 },
658 isLocal,
659 duration: 5,
660 commentsEnabled: true,
661 downloadEnabled: true,
662 tags: [ 'tag_up_1', 'tag_up_2' ],
663 privacy: VideoPrivacy.PUBLIC,
664 channel: {
665 displayName: 'Main root channel',
666 name: 'root_channel',
667 description: '',
668 isLocal
669 },
670 fixture: 'video_short3.webm',
671 files: [
672 {
673 resolution: 720,
674 size: 292677
675 }
676 ],
677 thumbnailfile: 'thumbnail',
678 previewfile: 'preview'
679 }
680 await completeVideoCheck(server.url, videoUpdated, checkAttributes)
681 }
682 })
683
684 it('Should remove the videos 3 and 3-2 by asking server 3', async function () {
685 this.timeout(10000)
686
687 await removeVideo(servers[2].url, servers[2].accessToken, toRemove[0].id)
688 await removeVideo(servers[2].url, servers[2].accessToken, toRemove[1].id)
689
690 await waitJobs(servers)
691 })
692
693 it('Should not have files of videos 3 and 3-2 on each server', async function () {
694 for (const server of servers) {
695 await checkVideoFilesWereRemoved(toRemove[0].uuid, server.serverNumber)
696 await checkVideoFilesWereRemoved(toRemove[1].uuid, server.serverNumber)
697 }
698 })
699
700 it('Should have videos 1 and 3 on each server', async function () {
701 for (const server of servers) {
702 const res = await getVideosList(server.url)
703
704 const videos = res.body.data
705 expect(videos).to.be.an('array')
706 expect(videos.length).to.equal(2)
707 expect(videos[0].name).not.to.equal(videos[1].name)
708 expect(videos[0].name).not.to.equal(toRemove[0].name)
709 expect(videos[1].name).not.to.equal(toRemove[0].name)
710 expect(videos[0].name).not.to.equal(toRemove[1].name)
711 expect(videos[1].name).not.to.equal(toRemove[1].name)
712
713 videoUUID = videos.find(video => video.name === 'my super name for server 1').uuid
714 }
715 })
716
717 it('Should get the same video by UUID on each server', async function () {
718 let baseVideo = null
719 for (const server of servers) {
720 const res = await getVideo(server.url, videoUUID)
721
722 const video = res.body
723
724 if (baseVideo === null) {
725 baseVideo = video
726 continue
727 }
728
729 expect(baseVideo.name).to.equal(video.name)
730 expect(baseVideo.uuid).to.equal(video.uuid)
731 expect(baseVideo.category.id).to.equal(video.category.id)
732 expect(baseVideo.language.id).to.equal(video.language.id)
733 expect(baseVideo.licence.id).to.equal(video.licence.id)
734 expect(baseVideo.nsfw).to.equal(video.nsfw)
735 expect(baseVideo.account.name).to.equal(video.account.name)
736 expect(baseVideo.account.displayName).to.equal(video.account.displayName)
737 expect(baseVideo.account.url).to.equal(video.account.url)
738 expect(baseVideo.account.host).to.equal(video.account.host)
739 expect(baseVideo.tags).to.deep.equal(video.tags)
740 }
741 })
742
743 it('Should get the preview from each server', async function () {
744 for (const server of servers) {
745 const res = await getVideo(server.url, videoUUID)
746 const video = res.body
747
748 await testImage(server.url, 'video_short1-preview.webm', video.previewPath)
749 }
750 })
751 })
752
753 describe('Should comment these videos', function () {
754 let childOfFirstChild: VideoCommentThreadTree
755
756 it('Should add comment (threads and replies)', async function () {
757 this.timeout(25000)
758
759 {
760 const text = 'my super first comment'
761 await addVideoCommentThread(servers[ 0 ].url, servers[ 0 ].accessToken, videoUUID, text)
762 }
763
764 {
765 const text = 'my super second comment'
766 await addVideoCommentThread(servers[ 2 ].url, servers[ 2 ].accessToken, videoUUID, text)
767 }
768
769 await waitJobs(servers)
770
771 {
772 const res = await getVideoCommentThreads(servers[1].url, videoUUID, 0, 5)
773 const threadId = res.body.data.find(c => c.text === 'my super first comment').id
774
775 const text = 'my super answer to thread 1'
776 await addVideoCommentReply(servers[ 1 ].url, servers[ 1 ].accessToken, videoUUID, threadId, text)
777 }
778
779 await waitJobs(servers)
780
781 {
782 const res1 = await getVideoCommentThreads(servers[2].url, videoUUID, 0, 5)
783 const threadId = res1.body.data.find(c => c.text === 'my super first comment').id
784
785 const res2 = await getVideoThreadComments(servers[2].url, videoUUID, threadId)
786 const childCommentId = res2.body.children[0].comment.id
787
788 const text3 = 'my second answer to thread 1'
789 await addVideoCommentReply(servers[ 2 ].url, servers[ 2 ].accessToken, videoUUID, threadId, text3)
790
791 const text2 = 'my super answer to answer of thread 1'
792 await addVideoCommentReply(servers[ 2 ].url, servers[ 2 ].accessToken, videoUUID, childCommentId, text2)
793 }
794
795 await waitJobs(servers)
796 })
797
798 it('Should have these threads', async function () {
799 for (const server of servers) {
800 const res = await getVideoCommentThreads(server.url, videoUUID, 0, 5)
801
802 expect(res.body.total).to.equal(2)
803 expect(res.body.data).to.be.an('array')
804 expect(res.body.data).to.have.lengthOf(2)
805
806 {
807 const comment: VideoComment = res.body.data.find(c => c.text === 'my super first comment')
808 expect(comment).to.not.be.undefined
809 expect(comment.inReplyToCommentId).to.be.null
810 expect(comment.account.name).to.equal('root')
811 expect(comment.account.host).to.equal('localhost:' + servers[0].port)
812 expect(comment.totalReplies).to.equal(3)
813 expect(dateIsValid(comment.createdAt as string)).to.be.true
814 expect(dateIsValid(comment.updatedAt as string)).to.be.true
815 }
816
817 {
818 const comment: VideoComment = res.body.data.find(c => c.text === 'my super second comment')
819 expect(comment).to.not.be.undefined
820 expect(comment.inReplyToCommentId).to.be.null
821 expect(comment.account.name).to.equal('root')
822 expect(comment.account.host).to.equal('localhost:' + servers[2].port)
823 expect(comment.totalReplies).to.equal(0)
824 expect(dateIsValid(comment.createdAt as string)).to.be.true
825 expect(dateIsValid(comment.updatedAt as string)).to.be.true
826 }
827 }
828 })
829
830 it('Should have these comments', async function () {
831 for (const server of servers) {
832 const res1 = await getVideoCommentThreads(server.url, videoUUID, 0, 5)
833 const threadId = res1.body.data.find(c => c.text === 'my super first comment').id
834
835 const res2 = await getVideoThreadComments(server.url, videoUUID, threadId)
836
837 const tree: VideoCommentThreadTree = res2.body
838 expect(tree.comment.text).equal('my super first comment')
839 expect(tree.comment.account.name).equal('root')
840 expect(tree.comment.account.host).equal('localhost:' + servers[0].port)
841 expect(tree.children).to.have.lengthOf(2)
842
843 const firstChild = tree.children[0]
844 expect(firstChild.comment.text).to.equal('my super answer to thread 1')
845 expect(firstChild.comment.account.name).equal('root')
846 expect(firstChild.comment.account.host).equal('localhost:' + servers[1].port)
847 expect(firstChild.children).to.have.lengthOf(1)
848
849 childOfFirstChild = firstChild.children[0]
850 expect(childOfFirstChild.comment.text).to.equal('my super answer to answer of thread 1')
851 expect(childOfFirstChild.comment.account.name).equal('root')
852 expect(childOfFirstChild.comment.account.host).equal('localhost:' + servers[2].port)
853 expect(childOfFirstChild.children).to.have.lengthOf(0)
854
855 const secondChild = tree.children[1]
856 expect(secondChild.comment.text).to.equal('my second answer to thread 1')
857 expect(secondChild.comment.account.name).equal('root')
858 expect(secondChild.comment.account.host).equal('localhost:' + servers[2].port)
859 expect(secondChild.children).to.have.lengthOf(0)
860 }
861 })
862
863 it('Should delete a reply', async function () {
864 this.timeout(10000)
865
866 await deleteVideoComment(servers[2].url, servers[2].accessToken, videoUUID, childOfFirstChild.comment.id)
867
868 await waitJobs(servers)
869 })
870
871 it('Should not have this comment anymore', async function () {
872 for (const server of servers) {
873 const res1 = await getVideoCommentThreads(server.url, videoUUID, 0, 5)
874 const threadId = res1.body.data.find(c => c.text === 'my super first comment').id
875
876 const res2 = await getVideoThreadComments(server.url, videoUUID, threadId)
877
878 const tree: VideoCommentThreadTree = res2.body
879 expect(tree.comment.text).equal('my super first comment')
880
881 const firstChild = tree.children[0]
882 expect(firstChild.comment.text).to.equal('my super answer to thread 1')
883 expect(firstChild.children).to.have.lengthOf(0)
884
885 const secondChild = tree.children[1]
886 expect(secondChild.comment.text).to.equal('my second answer to thread 1')
887 }
888 })
889
890 it('Should delete the thread comments', async function () {
891 this.timeout(10000)
892
893 const res = await getVideoCommentThreads(servers[ 0 ].url, videoUUID, 0, 5)
894 const threadId = res.body.data.find(c => c.text === 'my super first comment').id
895 await deleteVideoComment(servers[ 0 ].url, servers[ 0 ].accessToken, videoUUID, threadId)
896
897 await waitJobs(servers)
898 })
899
900 it('Should have the threads deleted on other servers too', async function () {
901 for (const server of servers) {
902 const res = await getVideoCommentThreads(server.url, videoUUID, 0, 5)
903
904 expect(res.body.total).to.equal(1)
905 expect(res.body.data).to.be.an('array')
906 expect(res.body.data).to.have.lengthOf(1)
907
908 {
909 const comment: VideoComment = res.body.data[0]
910 expect(comment).to.not.be.undefined
911 expect(comment.inReplyToCommentId).to.be.null
912 expect(comment.account.name).to.equal('root')
913 expect(comment.account.host).to.equal('localhost:' + servers[2].port)
914 expect(comment.totalReplies).to.equal(0)
915 expect(dateIsValid(comment.createdAt as string)).to.be.true
916 expect(dateIsValid(comment.updatedAt as string)).to.be.true
917 }
918 }
919 })
920
921 it('Should delete a remote thread by the origin server', async function () {
922 const res = await getVideoCommentThreads(servers[ 0 ].url, videoUUID, 0, 5)
923 const threadId = res.body.data.find(c => c.text === 'my super second comment').id
924 await deleteVideoComment(servers[ 0 ].url, servers[ 0 ].accessToken, videoUUID, threadId)
925
926 await waitJobs(servers)
927 })
928
929 it('Should have the threads deleted on other servers too', async function () {
930 for (const server of servers) {
931 const res = await getVideoCommentThreads(server.url, videoUUID, 0, 5)
932
933 expect(res.body.total).to.equal(0)
934 expect(res.body.data).to.have.lengthOf(0)
935 }
936 })
937
938 it('Should disable comments and download', async function () {
939 this.timeout(20000)
940
941 const attributes = {
942 commentsEnabled: false,
943 downloadEnabled: false
944 }
945
946 await updateVideo(servers[0].url, servers[0].accessToken, videoUUID, attributes)
947
948 await waitJobs(servers)
949
950 for (const server of servers) {
951 const res = await getVideo(server.url, videoUUID)
952 expect(res.body.commentsEnabled).to.be.false
953 expect(res.body.downloadEnabled).to.be.false
954
955 const text = 'my super forbidden comment'
956 await addVideoCommentThread(server.url, server.accessToken, videoUUID, text, 409)
957 }
958 })
959 })
960
961 describe('With minimum parameters', function () {
962 it('Should upload and propagate the video', async function () {
963 this.timeout(60000)
964
965 const path = '/api/v1/videos/upload'
966
967 const req = request(servers[1].url)
968 .post(path)
969 .set('Accept', 'application/json')
970 .set('Authorization', 'Bearer ' + servers[1].accessToken)
971 .field('name', 'minimum parameters')
972 .field('privacy', '1')
973 .field('channelId', '1')
974
975 const filePath = join(__dirname, '..', '..', 'fixtures', 'video_short.webm')
976
977 await req.attach('videofile', filePath)
978 .expect(200)
979
980 await waitJobs(servers)
981
982 for (const server of servers) {
983 const res = await getVideosList(server.url)
984 const video = res.body.data.find(v => v.name === 'minimum parameters')
985
986 const isLocal = server.url === 'http://localhost:' + servers[1].port
987 const checkAttributes = {
988 name: 'minimum parameters',
989 category: null,
990 licence: null,
991 language: null,
992 nsfw: false,
993 description: null,
994 support: null,
995 account: {
996 name: 'root',
997 host: 'localhost:' + servers[1].port
998 },
999 isLocal,
1000 duration: 5,
1001 commentsEnabled: false,
1002 downloadEnabled: true,
1003 tags: [ ],
1004 privacy: VideoPrivacy.PUBLIC,
1005 channel: {
1006 displayName: 'Main root channel',
1007 name: 'root_channel',
1008 description: '',
1009 isLocal
1010 },
1011 fixture: 'video_short.webm',
1012 files: [
1013 {
1014 resolution: 720,
1015 size: 72000
1016 },
1017 {
1018 resolution: 480,
1019 size: 45000
1020 },
1021 {
1022 resolution: 360,
1023 size: 34600
1024 },
1025 {
1026 resolution: 240,
1027 size: 24770
1028 }
1029 ]
1030 }
1031 await completeVideoCheck(server.url, video, checkAttributes)
1032 }
1033 })
1034 })
1035
1036 describe('TMP directory', function () {
1037 it('Should have an empty tmp directory', async function () {
1038 for (const server of servers) {
1039 await checkTmpIsEmpty(server)
1040 }
1041 })
1042 })
1043
1044 after(async function () {
1045 await cleanupTests(servers)
1046 })
1047 })