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