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