]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - server/tests/api/live/live.ts
Add transcoding module comments
[github/Chocobozzz/PeerTube.git] / server / tests / api / live / live.ts
... / ...
CommitLineData
1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3import 'mocha'
4import * as chai from 'chai'
5import { FfmpegCommand } from 'fluent-ffmpeg'
6import { join } from 'path'
7import { ffprobePromise, getVideoStreamFromFile } from '@server/helpers/ffprobe-utils'
8import { getLiveNotificationSocket } from '@shared/extra-utils/socket/socket-io'
9import { LiveVideo, LiveVideoCreate, Video, VideoDetails, VideoPrivacy, VideoState, VideoStreamingPlaylistType } from '@shared/models'
10import {
11 addVideoToBlacklist,
12 buildServerDirectory,
13 checkLiveCleanup,
14 checkLiveSegmentHash,
15 checkResolutionsInMasterPlaylist,
16 cleanupTests,
17 createLive,
18 doubleFollow,
19 flushAndRunMultipleServers,
20 getLive,
21 getPlaylist,
22 getVideo,
23 getVideoIdFromUUID,
24 getVideosList,
25 killallServers,
26 makeRawRequest,
27 removeVideo,
28 reRunServer,
29 sendRTMPStream,
30 sendRTMPStreamInVideo,
31 ServerInfo,
32 setAccessTokensToServers,
33 setDefaultVideoChannel,
34 stopFfmpeg,
35 testFfmpegStreamError,
36 testImage,
37 updateCustomSubConfig,
38 updateLive,
39 viewVideo,
40 wait,
41 waitJobs,
42 waitUntilLivePublished,
43 waitUntilLiveStarts,
44 waitUntilLog
45} from '../../../../shared/extra-utils'
46
47const expect = chai.expect
48
49describe('Test live', function () {
50 let servers: ServerInfo[] = []
51
52 before(async function () {
53 this.timeout(120000)
54
55 servers = await flushAndRunMultipleServers(2)
56
57 // Get the access tokens
58 await setAccessTokensToServers(servers)
59 await setDefaultVideoChannel(servers)
60
61 await updateCustomSubConfig(servers[0].url, servers[0].accessToken, {
62 live: {
63 enabled: true,
64 allowReplay: true,
65 transcoding: {
66 enabled: false
67 }
68 }
69 })
70
71 // Server 1 and server 2 follow each other
72 await doubleFollow(servers[0], servers[1])
73 })
74
75 describe('Live creation, update and delete', function () {
76 let liveVideoUUID: string
77
78 it('Should create a live with the appropriate parameters', async function () {
79 this.timeout(20000)
80
81 const attributes: LiveVideoCreate = {
82 category: 1,
83 licence: 2,
84 language: 'fr',
85 description: 'super live description',
86 support: 'support field',
87 channelId: servers[0].videoChannel.id,
88 nsfw: false,
89 waitTranscoding: false,
90 name: 'my super live',
91 tags: [ 'tag1', 'tag2' ],
92 commentsEnabled: false,
93 downloadEnabled: false,
94 saveReplay: true,
95 privacy: VideoPrivacy.PUBLIC,
96 previewfile: 'video_short1-preview.webm.jpg',
97 thumbnailfile: 'video_short1.webm.jpg'
98 }
99
100 const res = await createLive(servers[0].url, servers[0].accessToken, attributes)
101 liveVideoUUID = res.body.video.uuid
102
103 await waitJobs(servers)
104
105 for (const server of servers) {
106 const resVideo = await getVideo(server.url, liveVideoUUID)
107 const video: VideoDetails = resVideo.body
108
109 expect(video.category.id).to.equal(1)
110 expect(video.licence.id).to.equal(2)
111 expect(video.language.id).to.equal('fr')
112 expect(video.description).to.equal('super live description')
113 expect(video.support).to.equal('support field')
114
115 expect(video.channel.name).to.equal(servers[0].videoChannel.name)
116 expect(video.channel.host).to.equal(servers[0].videoChannel.host)
117
118 expect(video.nsfw).to.be.false
119 expect(video.waitTranscoding).to.be.false
120 expect(video.name).to.equal('my super live')
121 expect(video.tags).to.deep.equal([ 'tag1', 'tag2' ])
122 expect(video.commentsEnabled).to.be.false
123 expect(video.downloadEnabled).to.be.false
124 expect(video.privacy.id).to.equal(VideoPrivacy.PUBLIC)
125
126 await testImage(server.url, 'video_short1-preview.webm', video.previewPath)
127 await testImage(server.url, 'video_short1.webm', video.thumbnailPath)
128
129 const resLive = await getLive(server.url, server.accessToken, liveVideoUUID)
130 const live: LiveVideo = resLive.body
131
132 if (server.url === servers[0].url) {
133 expect(live.rtmpUrl).to.equal('rtmp://' + server.hostname + ':' + servers[0].rtmpPort + '/live')
134 expect(live.streamKey).to.not.be.empty
135 } else {
136 expect(live.rtmpUrl).to.be.null
137 expect(live.streamKey).to.be.null
138 }
139
140 expect(live.saveReplay).to.be.true
141 }
142 })
143
144 it('Should have a default preview and thumbnail', async function () {
145 this.timeout(20000)
146
147 const attributes: LiveVideoCreate = {
148 name: 'default live thumbnail',
149 channelId: servers[0].videoChannel.id,
150 privacy: VideoPrivacy.UNLISTED,
151 nsfw: true
152 }
153
154 const res = await createLive(servers[0].url, servers[0].accessToken, attributes)
155 const videoId = res.body.video.uuid
156
157 await waitJobs(servers)
158
159 for (const server of servers) {
160 const resVideo = await getVideo(server.url, videoId)
161 const video: VideoDetails = resVideo.body
162
163 expect(video.privacy.id).to.equal(VideoPrivacy.UNLISTED)
164 expect(video.nsfw).to.be.true
165
166 await makeRawRequest(server.url + video.thumbnailPath, 200)
167 await makeRawRequest(server.url + video.previewPath, 200)
168 }
169 })
170
171 it('Should not have the live listed since nobody streams into', async function () {
172 for (const server of servers) {
173 const res = await getVideosList(server.url)
174
175 expect(res.body.total).to.equal(0)
176 expect(res.body.data).to.have.lengthOf(0)
177 }
178 })
179
180 it('Should not be able to update a live of another server', async function () {
181 await updateLive(servers[1].url, servers[1].accessToken, liveVideoUUID, { saveReplay: false }, 403)
182 })
183
184 it('Should update the live', async function () {
185 this.timeout(10000)
186
187 await updateLive(servers[0].url, servers[0].accessToken, liveVideoUUID, { saveReplay: false })
188 await waitJobs(servers)
189 })
190
191 it('Have the live updated', async function () {
192 for (const server of servers) {
193 const res = await getLive(server.url, server.accessToken, liveVideoUUID)
194 const live: LiveVideo = res.body
195
196 if (server.url === servers[0].url) {
197 expect(live.rtmpUrl).to.equal('rtmp://' + server.hostname + ':' + servers[0].rtmpPort + '/live')
198 expect(live.streamKey).to.not.be.empty
199 } else {
200 expect(live.rtmpUrl).to.be.null
201 expect(live.streamKey).to.be.null
202 }
203
204 expect(live.saveReplay).to.be.false
205 }
206 })
207
208 it('Delete the live', async function () {
209 this.timeout(10000)
210
211 await removeVideo(servers[0].url, servers[0].accessToken, liveVideoUUID)
212 await waitJobs(servers)
213 })
214
215 it('Should have the live deleted', async function () {
216 for (const server of servers) {
217 await getVideo(server.url, liveVideoUUID, 404)
218 await getLive(server.url, server.accessToken, liveVideoUUID, 404)
219 }
220 })
221 })
222
223 describe('Stream checks', function () {
224 let liveVideo: LiveVideo & VideoDetails
225 let rtmpUrl: string
226
227 before(function () {
228 rtmpUrl = 'rtmp://' + servers[0].hostname + ':' + servers[0].rtmpPort + ''
229 })
230
231 async function createLiveWrapper () {
232 const liveAttributes = {
233 name: 'user live',
234 channelId: servers[0].videoChannel.id,
235 privacy: VideoPrivacy.PUBLIC,
236 saveReplay: false
237 }
238
239 const res = await createLive(servers[0].url, servers[0].accessToken, liveAttributes)
240 const uuid = res.body.video.uuid
241
242 const resLive = await getLive(servers[0].url, servers[0].accessToken, uuid)
243 const resVideo = await getVideo(servers[0].url, uuid)
244
245 return Object.assign(resVideo.body, resLive.body) as LiveVideo & VideoDetails
246 }
247
248 it('Should not allow a stream without the appropriate path', async function () {
249 this.timeout(30000)
250
251 liveVideo = await createLiveWrapper()
252
253 const command = sendRTMPStream(rtmpUrl + '/bad-live', liveVideo.streamKey)
254 await testFfmpegStreamError(command, true)
255 })
256
257 it('Should not allow a stream without the appropriate stream key', async function () {
258 this.timeout(30000)
259
260 const command = sendRTMPStream(rtmpUrl + '/live', 'bad-stream-key')
261 await testFfmpegStreamError(command, true)
262 })
263
264 it('Should succeed with the correct params', async function () {
265 this.timeout(30000)
266
267 const command = sendRTMPStream(rtmpUrl + '/live', liveVideo.streamKey)
268 await testFfmpegStreamError(command, false)
269 })
270
271 it('Should not allow a stream on a live that was blacklisted', async function () {
272 this.timeout(30000)
273
274 liveVideo = await createLiveWrapper()
275
276 await addVideoToBlacklist(servers[0].url, servers[0].accessToken, liveVideo.uuid)
277
278 const command = sendRTMPStream(rtmpUrl + '/live', liveVideo.streamKey)
279 await testFfmpegStreamError(command, true)
280 })
281
282 it('Should not allow a stream on a live that was deleted', async function () {
283 this.timeout(30000)
284
285 liveVideo = await createLiveWrapper()
286
287 await removeVideo(servers[0].url, servers[0].accessToken, liveVideo.uuid)
288
289 const command = sendRTMPStream(rtmpUrl + '/live', liveVideo.streamKey)
290 await testFfmpegStreamError(command, true)
291 })
292 })
293
294 describe('Live transcoding', function () {
295 let liveVideoId: string
296
297 async function createLiveWrapper (saveReplay: boolean) {
298 const liveAttributes = {
299 name: 'live video',
300 channelId: servers[0].videoChannel.id,
301 privacy: VideoPrivacy.PUBLIC,
302 saveReplay
303 }
304
305 const res = await createLive(servers[0].url, servers[0].accessToken, liveAttributes)
306 return res.body.video.uuid
307 }
308
309 async function testVideoResolutions (liveVideoId: string, resolutions: number[]) {
310 for (const server of servers) {
311 const resList = await getVideosList(server.url)
312 const videos: Video[] = resList.body.data
313
314 expect(videos.find(v => v.uuid === liveVideoId)).to.exist
315
316 const resVideo = await getVideo(server.url, liveVideoId)
317 const video: VideoDetails = resVideo.body
318
319 expect(video.streamingPlaylists).to.have.lengthOf(1)
320
321 const hlsPlaylist = video.streamingPlaylists.find(s => s.type === VideoStreamingPlaylistType.HLS)
322 expect(hlsPlaylist).to.exist
323
324 // Only finite files are displayed
325 expect(hlsPlaylist.files).to.have.lengthOf(0)
326
327 await checkResolutionsInMasterPlaylist(hlsPlaylist.playlistUrl, resolutions)
328
329 for (let i = 0; i < resolutions.length; i++) {
330 const segmentName = `${i}-000001.ts`
331 await waitUntilLog(servers[0], `${video.uuid}/${segmentName}`, 2, false)
332
333 const res = await getPlaylist(`${servers[0].url}/static/streaming-playlists/hls/${video.uuid}/${i}.m3u8`)
334 const subPlaylist = res.text
335
336 expect(subPlaylist).to.contain(segmentName)
337
338 const baseUrlAndPath = servers[0].url + '/static/streaming-playlists/hls'
339 await checkLiveSegmentHash(baseUrlAndPath, video.uuid, segmentName, hlsPlaylist)
340 }
341 }
342 }
343
344 function updateConf (resolutions: number[]) {
345 return updateCustomSubConfig(servers[0].url, servers[0].accessToken, {
346 live: {
347 enabled: true,
348 allowReplay: true,
349 maxDuration: null,
350 transcoding: {
351 enabled: true,
352 resolutions: {
353 '240p': resolutions.includes(240),
354 '360p': resolutions.includes(360),
355 '480p': resolutions.includes(480),
356 '720p': resolutions.includes(720),
357 '1080p': resolutions.includes(1080),
358 '2160p': resolutions.includes(2160)
359 }
360 }
361 }
362 })
363 }
364
365 before(async function () {
366 await updateConf([])
367 })
368
369 it('Should enable transcoding without additional resolutions', async function () {
370 this.timeout(30000)
371
372 liveVideoId = await createLiveWrapper(false)
373
374 const command = await sendRTMPStreamInVideo(servers[0].url, servers[0].accessToken, liveVideoId)
375 await waitUntilLiveStarts(servers[0].url, servers[0].accessToken, liveVideoId)
376 await waitJobs(servers)
377
378 await testVideoResolutions(liveVideoId, [ 720 ])
379
380 await stopFfmpeg(command)
381 })
382
383 it('Should enable transcoding with some resolutions', async function () {
384 this.timeout(30000)
385
386 const resolutions = [ 240, 480 ]
387 await updateConf(resolutions)
388 liveVideoId = await createLiveWrapper(false)
389
390 const command = await sendRTMPStreamInVideo(servers[0].url, servers[0].accessToken, liveVideoId)
391 await waitUntilLiveStarts(servers[0].url, servers[0].accessToken, liveVideoId)
392 await waitJobs(servers)
393
394 await testVideoResolutions(liveVideoId, resolutions)
395
396 await stopFfmpeg(command)
397 })
398
399 it('Should enable transcoding with some resolutions and correctly save them', async function () {
400 this.timeout(120000)
401
402 const resolutions = [ 240, 360, 720 ]
403
404 await updateConf(resolutions)
405 liveVideoId = await createLiveWrapper(true)
406
407 const command = await sendRTMPStreamInVideo(servers[0].url, servers[0].accessToken, liveVideoId, 'video_short2.webm')
408 await waitUntilLiveStarts(servers[0].url, servers[0].accessToken, liveVideoId)
409 await waitJobs(servers)
410
411 await testVideoResolutions(liveVideoId, resolutions)
412
413 await stopFfmpeg(command)
414 await waitUntilLivePublished(servers[0].url, servers[0].accessToken, liveVideoId)
415
416 await waitJobs(servers)
417
418 const bitrateLimits = {
419 720: 3000 * 1000,
420 360: 1100 * 1000,
421 240: 600 * 1000
422 }
423
424 for (const server of servers) {
425 const resVideo = await getVideo(server.url, liveVideoId)
426 const video: VideoDetails = resVideo.body
427
428 expect(video.duration).to.be.greaterThan(1)
429 expect(video.files).to.have.lengthOf(0)
430
431 const hlsPlaylist = video.streamingPlaylists.find(s => s.type === VideoStreamingPlaylistType.HLS)
432
433 expect(hlsPlaylist.files).to.have.lengthOf(resolutions.length)
434
435 for (const resolution of resolutions) {
436 const file = hlsPlaylist.files.find(f => f.resolution.id === resolution)
437
438 expect(file).to.exist
439 expect(file.fps).to.be.approximately(30, 5)
440 expect(file.size).to.be.greaterThan(1)
441
442 const filename = `${video.uuid}-${resolution}-fragmented.mp4`
443 const segmentPath = buildServerDirectory(servers[0], join('streaming-playlists', 'hls', video.uuid, filename))
444
445 const probe = await ffprobePromise(segmentPath)
446 const videoStream = await getVideoStreamFromFile(segmentPath, probe)
447
448 expect(probe.format.bit_rate).to.be.below(bitrateLimits[videoStream.height])
449
450 await makeRawRequest(file.torrentUrl, 200)
451 await makeRawRequest(file.fileUrl, 200)
452 }
453 }
454 })
455
456 it('Should correctly have cleaned up the live files', async function () {
457 this.timeout(30000)
458
459 await checkLiveCleanup(servers[0], liveVideoId, [ 240, 360, 720 ])
460 })
461 })
462
463 describe('Live views', function () {
464 let liveVideoId: string
465 let command: FfmpegCommand
466
467 async function countViews (expected: number) {
468 for (const server of servers) {
469 const res = await getVideo(server.url, liveVideoId)
470 const video: VideoDetails = res.body
471
472 expect(video.views).to.equal(expected)
473 }
474 }
475
476 before(async function () {
477 this.timeout(30000)
478
479 const liveAttributes = {
480 name: 'live video',
481 channelId: servers[0].videoChannel.id,
482 privacy: VideoPrivacy.PUBLIC
483 }
484
485 const res = await createLive(servers[0].url, servers[0].accessToken, liveAttributes)
486 liveVideoId = res.body.video.uuid
487
488 command = await sendRTMPStreamInVideo(servers[0].url, servers[0].accessToken, liveVideoId)
489 await waitUntilLiveStarts(servers[0].url, servers[0].accessToken, liveVideoId)
490 await waitJobs(servers)
491 })
492
493 it('Should display no views for a live', async function () {
494 await countViews(0)
495 })
496
497 it('Should view a live twice and display 1 view', async function () {
498 this.timeout(30000)
499
500 await viewVideo(servers[0].url, liveVideoId)
501 await viewVideo(servers[0].url, liveVideoId)
502
503 await wait(7000)
504
505 await waitJobs(servers)
506
507 await countViews(1)
508 })
509
510 it('Should wait and display 0 views', async function () {
511 this.timeout(30000)
512
513 await wait(7000)
514 await waitJobs(servers)
515
516 await countViews(0)
517 })
518
519 it('Should view a live on a remote and on local and display 2 views', async function () {
520 this.timeout(30000)
521
522 await viewVideo(servers[0].url, liveVideoId)
523 await viewVideo(servers[1].url, liveVideoId)
524 await viewVideo(servers[1].url, liveVideoId)
525
526 await wait(7000)
527 await waitJobs(servers)
528
529 await countViews(2)
530 })
531
532 after(async function () {
533 await stopFfmpeg(command)
534 })
535 })
536
537 describe('Live socket messages', function () {
538
539 async function createLiveWrapper () {
540 const liveAttributes = {
541 name: 'live video',
542 channelId: servers[0].videoChannel.id,
543 privacy: VideoPrivacy.PUBLIC
544 }
545
546 const res = await createLive(servers[0].url, servers[0].accessToken, liveAttributes)
547 return res.body.video.uuid
548 }
549
550 it('Should correctly send a message when the live starts and ends', async function () {
551 this.timeout(60000)
552
553 const localStateChanges: VideoState[] = []
554 const remoteStateChanges: VideoState[] = []
555
556 const liveVideoUUID = await createLiveWrapper()
557 await waitJobs(servers)
558
559 {
560 const videoId = await getVideoIdFromUUID(servers[0].url, liveVideoUUID)
561
562 const localSocket = getLiveNotificationSocket(servers[0].url)
563 localSocket.on('state-change', data => localStateChanges.push(data.state))
564 localSocket.emit('subscribe', { videoId })
565 }
566
567 {
568 const videoId = await getVideoIdFromUUID(servers[1].url, liveVideoUUID)
569
570 const remoteSocket = getLiveNotificationSocket(servers[1].url)
571 remoteSocket.on('state-change', data => remoteStateChanges.push(data.state))
572 remoteSocket.emit('subscribe', { videoId })
573 }
574
575 const command = await sendRTMPStreamInVideo(servers[0].url, servers[0].accessToken, liveVideoUUID)
576 await waitUntilLiveStarts(servers[0].url, servers[0].accessToken, liveVideoUUID)
577 await waitJobs(servers)
578
579 for (const stateChanges of [ localStateChanges, remoteStateChanges ]) {
580 expect(stateChanges).to.have.lengthOf(1)
581 expect(stateChanges[0]).to.equal(VideoState.PUBLISHED)
582 }
583
584 await stopFfmpeg(command)
585 await waitJobs(servers)
586
587 for (const stateChanges of [ localStateChanges, remoteStateChanges ]) {
588 expect(stateChanges).to.have.lengthOf(2)
589 expect(stateChanges[1]).to.equal(VideoState.LIVE_ENDED)
590 }
591 })
592
593 it('Should not receive a notification after unsubscribe', async function () {
594 this.timeout(60000)
595
596 const stateChanges: VideoState[] = []
597
598 const liveVideoUUID = await createLiveWrapper()
599 await waitJobs(servers)
600
601 const videoId = await getVideoIdFromUUID(servers[0].url, liveVideoUUID)
602
603 const socket = getLiveNotificationSocket(servers[0].url)
604 socket.on('state-change', data => stateChanges.push(data.state))
605 socket.emit('subscribe', { videoId })
606
607 const command = await sendRTMPStreamInVideo(servers[0].url, servers[0].accessToken, liveVideoUUID)
608 await waitUntilLiveStarts(servers[0].url, servers[0].accessToken, liveVideoUUID)
609 await waitJobs(servers)
610
611 expect(stateChanges).to.have.lengthOf(1)
612 socket.emit('unsubscribe', { videoId })
613
614 await stopFfmpeg(command)
615 await waitJobs(servers)
616
617 expect(stateChanges).to.have.lengthOf(1)
618 })
619 })
620
621 describe('After a server restart', function () {
622 let liveVideoId: string
623 let liveVideoReplayId: string
624
625 async function createLiveWrapper (saveReplay: boolean) {
626 const liveAttributes = {
627 name: 'live video',
628 channelId: servers[0].videoChannel.id,
629 privacy: VideoPrivacy.PUBLIC,
630 saveReplay
631 }
632
633 const res = await createLive(servers[0].url, servers[0].accessToken, liveAttributes)
634 return res.body.video.uuid
635 }
636
637 before(async function () {
638 this.timeout(60000)
639
640 liveVideoId = await createLiveWrapper(false)
641 liveVideoReplayId = await createLiveWrapper(true)
642
643 await Promise.all([
644 sendRTMPStreamInVideo(servers[0].url, servers[0].accessToken, liveVideoId),
645 sendRTMPStreamInVideo(servers[0].url, servers[0].accessToken, liveVideoReplayId)
646 ])
647
648 await Promise.all([
649 waitUntilLiveStarts(servers[0].url, servers[0].accessToken, liveVideoId),
650 waitUntilLiveStarts(servers[0].url, servers[0].accessToken, liveVideoReplayId)
651 ])
652
653 await killallServers([ servers[0] ])
654 await reRunServer(servers[0])
655
656 await wait(5000)
657 })
658
659 it('Should cleanup lives', async function () {
660 this.timeout(60000)
661
662 const res = await getVideo(servers[0].url, liveVideoId)
663 const video: VideoDetails = res.body
664
665 expect(video.state.id).to.equal(VideoState.LIVE_ENDED)
666 })
667
668 it('Should save a live replay', async function () {
669 this.timeout(60000)
670
671 await waitJobs(servers)
672
673 const res = await getVideo(servers[0].url, liveVideoReplayId)
674 const video: VideoDetails = res.body
675
676 expect(video.state.id).to.equal(VideoState.PUBLISHED)
677 })
678 })
679
680 after(async function () {
681 await cleanupTests(servers)
682 })
683})