]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/api/live/live.ts
Merge branch 'release/4.3.0' into develop
[github/Chocobozzz/PeerTube.git] / server / tests / api / live / live.ts
1 /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3 import { expect } from 'chai'
4 import { basename, join } from 'path'
5 import { ffprobePromise, getVideoStream } from '@server/helpers/ffmpeg'
6 import { testImage, testVideoResolutions } from '@server/tests/shared'
7 import { getAllFiles, wait } from '@shared/core-utils'
8 import {
9 HttpStatusCode,
10 LiveVideo,
11 LiveVideoCreate,
12 LiveVideoLatencyMode,
13 VideoDetails,
14 VideoPrivacy,
15 VideoState,
16 VideoStreamingPlaylistType
17 } from '@shared/models'
18 import {
19 cleanupTests,
20 createMultipleServers,
21 doubleFollow,
22 killallServers,
23 LiveCommand,
24 makeRawRequest,
25 PeerTubeServer,
26 sendRTMPStream,
27 setAccessTokensToServers,
28 setDefaultVideoChannel,
29 stopFfmpeg,
30 testFfmpegStreamError,
31 waitJobs,
32 waitUntilLivePublishedOnAllServers
33 } from '@shared/server-commands'
34
35 describe('Test live', function () {
36 let servers: PeerTubeServer[] = []
37 let commands: LiveCommand[]
38
39 before(async function () {
40 this.timeout(120000)
41
42 servers = await createMultipleServers(2)
43
44 // Get the access tokens
45 await setAccessTokensToServers(servers)
46 await setDefaultVideoChannel(servers)
47
48 await servers[0].config.updateCustomSubConfig({
49 newConfig: {
50 live: {
51 enabled: true,
52 allowReplay: true,
53 latencySetting: {
54 enabled: true
55 },
56 transcoding: {
57 enabled: false
58 }
59 }
60 }
61 })
62
63 // Server 1 and server 2 follow each other
64 await doubleFollow(servers[0], servers[1])
65
66 commands = servers.map(s => s.live)
67 })
68
69 describe('Live creation, update and delete', function () {
70 let liveVideoUUID: string
71
72 it('Should create a live with the appropriate parameters', async function () {
73 this.timeout(20000)
74
75 const attributes: LiveVideoCreate = {
76 category: 1,
77 licence: 2,
78 language: 'fr',
79 description: 'super live description',
80 support: 'support field',
81 channelId: servers[0].store.channel.id,
82 nsfw: false,
83 waitTranscoding: false,
84 name: 'my super live',
85 tags: [ 'tag1', 'tag2' ],
86 commentsEnabled: false,
87 downloadEnabled: false,
88 saveReplay: true,
89 latencyMode: LiveVideoLatencyMode.SMALL_LATENCY,
90 privacy: VideoPrivacy.PUBLIC,
91 previewfile: 'video_short1-preview.webm.jpg',
92 thumbnailfile: 'video_short1.webm.jpg'
93 }
94
95 const live = await commands[0].create({ fields: attributes })
96 liveVideoUUID = live.uuid
97
98 await waitJobs(servers)
99
100 for (const server of servers) {
101 const video = await server.videos.get({ id: liveVideoUUID })
102
103 expect(video.category.id).to.equal(1)
104 expect(video.licence.id).to.equal(2)
105 expect(video.language.id).to.equal('fr')
106 expect(video.description).to.equal('super live description')
107 expect(video.support).to.equal('support field')
108
109 expect(video.channel.name).to.equal(servers[0].store.channel.name)
110 expect(video.channel.host).to.equal(servers[0].store.channel.host)
111
112 expect(video.isLive).to.be.true
113
114 expect(video.nsfw).to.be.false
115 expect(video.waitTranscoding).to.be.false
116 expect(video.name).to.equal('my super live')
117 expect(video.tags).to.deep.equal([ 'tag1', 'tag2' ])
118 expect(video.commentsEnabled).to.be.false
119 expect(video.downloadEnabled).to.be.false
120 expect(video.privacy.id).to.equal(VideoPrivacy.PUBLIC)
121
122 await testImage(server.url, 'video_short1-preview.webm', video.previewPath)
123 await testImage(server.url, 'video_short1.webm', video.thumbnailPath)
124
125 const live = await server.live.get({ videoId: liveVideoUUID })
126
127 if (server.url === servers[0].url) {
128 expect(live.rtmpUrl).to.equal('rtmp://' + server.hostname + ':' + servers[0].rtmpPort + '/live')
129 expect(live.streamKey).to.not.be.empty
130 } else {
131 expect(live.rtmpUrl).to.not.exist
132 expect(live.streamKey).to.not.exist
133 }
134
135 expect(live.saveReplay).to.be.true
136 expect(live.latencyMode).to.equal(LiveVideoLatencyMode.SMALL_LATENCY)
137 }
138 })
139
140 it('Should have a default preview and thumbnail', async function () {
141 this.timeout(20000)
142
143 const attributes: LiveVideoCreate = {
144 name: 'default live thumbnail',
145 channelId: servers[0].store.channel.id,
146 privacy: VideoPrivacy.UNLISTED,
147 nsfw: true
148 }
149
150 const live = await commands[0].create({ fields: attributes })
151 const videoId = live.uuid
152
153 await waitJobs(servers)
154
155 for (const server of servers) {
156 const video = await server.videos.get({ id: videoId })
157 expect(video.privacy.id).to.equal(VideoPrivacy.UNLISTED)
158 expect(video.nsfw).to.be.true
159
160 await makeRawRequest(server.url + video.thumbnailPath, HttpStatusCode.OK_200)
161 await makeRawRequest(server.url + video.previewPath, HttpStatusCode.OK_200)
162 }
163 })
164
165 it('Should not have the live listed since nobody streams into', async function () {
166 for (const server of servers) {
167 const { total, data } = await server.videos.list()
168
169 expect(total).to.equal(0)
170 expect(data).to.have.lengthOf(0)
171 }
172 })
173
174 it('Should not be able to update a live of another server', async function () {
175 await commands[1].update({ videoId: liveVideoUUID, fields: { saveReplay: false }, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
176 })
177
178 it('Should update the live', async function () {
179 this.timeout(10000)
180
181 await commands[0].update({ videoId: liveVideoUUID, fields: { saveReplay: false, latencyMode: LiveVideoLatencyMode.DEFAULT } })
182 await waitJobs(servers)
183 })
184
185 it('Have the live updated', async function () {
186 for (const server of servers) {
187 const live = await server.live.get({ videoId: liveVideoUUID })
188
189 if (server.url === servers[0].url) {
190 expect(live.rtmpUrl).to.equal('rtmp://' + server.hostname + ':' + servers[0].rtmpPort + '/live')
191 expect(live.streamKey).to.not.be.empty
192 } else {
193 expect(live.rtmpUrl).to.not.exist
194 expect(live.streamKey).to.not.exist
195 }
196
197 expect(live.saveReplay).to.be.false
198 expect(live.latencyMode).to.equal(LiveVideoLatencyMode.DEFAULT)
199 }
200 })
201
202 it('Delete the live', async function () {
203 this.timeout(10000)
204
205 await servers[0].videos.remove({ id: liveVideoUUID })
206 await waitJobs(servers)
207 })
208
209 it('Should have the live deleted', async function () {
210 for (const server of servers) {
211 await server.videos.get({ id: liveVideoUUID, expectedStatus: HttpStatusCode.NOT_FOUND_404 })
212 await server.live.get({ videoId: liveVideoUUID, expectedStatus: HttpStatusCode.NOT_FOUND_404 })
213 }
214 })
215 })
216
217 describe('Live filters', function () {
218 let ffmpegCommand: any
219 let liveVideoId: string
220 let vodVideoId: string
221
222 before(async function () {
223 this.timeout(240000)
224
225 vodVideoId = (await servers[0].videos.quickUpload({ name: 'vod video' })).uuid
226
227 const liveOptions = { name: 'live', privacy: VideoPrivacy.PUBLIC, channelId: servers[0].store.channel.id }
228 const live = await commands[0].create({ fields: liveOptions })
229 liveVideoId = live.uuid
230
231 ffmpegCommand = await servers[0].live.sendRTMPStreamInVideo({ videoId: liveVideoId })
232 await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
233 await waitJobs(servers)
234 })
235
236 it('Should only display lives', async function () {
237 const { data, total } = await servers[0].videos.list({ isLive: true })
238
239 expect(total).to.equal(1)
240 expect(data).to.have.lengthOf(1)
241 expect(data[0].name).to.equal('live')
242 })
243
244 it('Should not display lives', async function () {
245 const { data, total } = await servers[0].videos.list({ isLive: false })
246
247 expect(total).to.equal(1)
248 expect(data).to.have.lengthOf(1)
249 expect(data[0].name).to.equal('vod video')
250 })
251
252 it('Should display my lives', async function () {
253 this.timeout(60000)
254
255 await stopFfmpeg(ffmpegCommand)
256 await waitJobs(servers)
257
258 const { data } = await servers[0].videos.listMyVideos({ isLive: true })
259
260 const result = data.every(v => v.isLive)
261 expect(result).to.be.true
262 })
263
264 it('Should not display my lives', async function () {
265 const { data } = await servers[0].videos.listMyVideos({ isLive: false })
266
267 const result = data.every(v => !v.isLive)
268 expect(result).to.be.true
269 })
270
271 after(async function () {
272 await servers[0].videos.remove({ id: vodVideoId })
273 await servers[0].videos.remove({ id: liveVideoId })
274 })
275 })
276
277 describe('Stream checks', function () {
278 let liveVideo: LiveVideo & VideoDetails
279 let rtmpUrl: string
280
281 before(function () {
282 rtmpUrl = 'rtmp://' + servers[0].hostname + ':' + servers[0].rtmpPort + ''
283 })
284
285 async function createLiveWrapper () {
286 const liveAttributes = {
287 name: 'user live',
288 channelId: servers[0].store.channel.id,
289 privacy: VideoPrivacy.PUBLIC,
290 saveReplay: false
291 }
292
293 const { uuid } = await commands[0].create({ fields: liveAttributes })
294
295 const live = await commands[0].get({ videoId: uuid })
296 const video = await servers[0].videos.get({ id: uuid })
297
298 return Object.assign(video, live)
299 }
300
301 it('Should not allow a stream without the appropriate path', async function () {
302 this.timeout(60000)
303
304 liveVideo = await createLiveWrapper()
305
306 const command = sendRTMPStream({ rtmpBaseUrl: rtmpUrl + '/bad-live', streamKey: liveVideo.streamKey })
307 await testFfmpegStreamError(command, true)
308 })
309
310 it('Should not allow a stream without the appropriate stream key', async function () {
311 this.timeout(60000)
312
313 const command = sendRTMPStream({ rtmpBaseUrl: rtmpUrl + '/live', streamKey: 'bad-stream-key' })
314 await testFfmpegStreamError(command, true)
315 })
316
317 it('Should succeed with the correct params', async function () {
318 this.timeout(60000)
319
320 const command = sendRTMPStream({ rtmpBaseUrl: rtmpUrl + '/live', streamKey: liveVideo.streamKey })
321 await testFfmpegStreamError(command, false)
322 })
323
324 it('Should list this live now someone stream into it', async function () {
325 for (const server of servers) {
326 const { total, data } = await server.videos.list()
327
328 expect(total).to.equal(1)
329 expect(data).to.have.lengthOf(1)
330
331 const video = data[0]
332 expect(video.name).to.equal('user live')
333 expect(video.isLive).to.be.true
334 }
335 })
336
337 it('Should not allow a stream on a live that was blacklisted', async function () {
338 this.timeout(60000)
339
340 liveVideo = await createLiveWrapper()
341
342 await servers[0].blacklist.add({ videoId: liveVideo.uuid })
343
344 const command = sendRTMPStream({ rtmpBaseUrl: rtmpUrl + '/live', streamKey: liveVideo.streamKey })
345 await testFfmpegStreamError(command, true)
346 })
347
348 it('Should not allow a stream on a live that was deleted', async function () {
349 this.timeout(60000)
350
351 liveVideo = await createLiveWrapper()
352
353 await servers[0].videos.remove({ id: liveVideo.uuid })
354
355 const command = sendRTMPStream({ rtmpBaseUrl: rtmpUrl + '/live', streamKey: liveVideo.streamKey })
356 await testFfmpegStreamError(command, true)
357 })
358 })
359
360 describe('Live transcoding', function () {
361 let liveVideoId: string
362
363 async function createLiveWrapper (saveReplay: boolean) {
364 const liveAttributes = {
365 name: 'live video',
366 channelId: servers[0].store.channel.id,
367 privacy: VideoPrivacy.PUBLIC,
368 saveReplay
369 }
370
371 const { uuid } = await commands[0].create({ fields: liveAttributes })
372 return uuid
373 }
374
375 function updateConf (resolutions: number[]) {
376 return servers[0].config.updateCustomSubConfig({
377 newConfig: {
378 live: {
379 enabled: true,
380 allowReplay: true,
381 maxDuration: -1,
382 transcoding: {
383 enabled: true,
384 resolutions: {
385 '144p': resolutions.includes(144),
386 '240p': resolutions.includes(240),
387 '360p': resolutions.includes(360),
388 '480p': resolutions.includes(480),
389 '720p': resolutions.includes(720),
390 '1080p': resolutions.includes(1080),
391 '2160p': resolutions.includes(2160)
392 }
393 }
394 }
395 }
396 })
397 }
398
399 before(async function () {
400 await updateConf([])
401 })
402
403 it('Should enable transcoding without additional resolutions', async function () {
404 this.timeout(120000)
405
406 liveVideoId = await createLiveWrapper(false)
407
408 const ffmpegCommand = await commands[0].sendRTMPStreamInVideo({ videoId: liveVideoId })
409 await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
410 await waitJobs(servers)
411
412 await testVideoResolutions({
413 originServer: servers[0],
414 servers,
415 liveVideoId,
416 resolutions: [ 720 ],
417 objectStorage: false,
418 transcoded: true
419 })
420
421 await stopFfmpeg(ffmpegCommand)
422 })
423
424 it('Should transcode audio only RTMP stream', async function () {
425 this.timeout(120000)
426
427 liveVideoId = await createLiveWrapper(false)
428
429 const ffmpegCommand = await commands[0].sendRTMPStreamInVideo({ videoId: liveVideoId, fixtureName: 'video_short_no_audio.mp4' })
430 await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
431 await waitJobs(servers)
432
433 await stopFfmpeg(ffmpegCommand)
434 })
435
436 it('Should enable transcoding with some resolutions', async function () {
437 this.timeout(120000)
438
439 const resolutions = [ 240, 480 ]
440 await updateConf(resolutions)
441 liveVideoId = await createLiveWrapper(false)
442
443 const ffmpegCommand = await commands[0].sendRTMPStreamInVideo({ videoId: liveVideoId })
444 await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
445 await waitJobs(servers)
446
447 await testVideoResolutions({
448 originServer: servers[0],
449 servers,
450 liveVideoId,
451 resolutions: resolutions.concat([ 720 ]),
452 objectStorage: false,
453 transcoded: true
454 })
455
456 await stopFfmpeg(ffmpegCommand)
457 })
458
459 it('Should correctly set the appropriate bitrate depending on the input', async function () {
460 this.timeout(120000)
461
462 liveVideoId = await createLiveWrapper(false)
463
464 const ffmpegCommand = await commands[0].sendRTMPStreamInVideo({
465 videoId: liveVideoId,
466 fixtureName: 'video_short.mp4',
467 copyCodecs: true
468 })
469 await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
470 await waitJobs(servers)
471
472 const video = await servers[0].videos.get({ id: liveVideoId })
473
474 const masterPlaylist = video.streamingPlaylists[0].playlistUrl
475 const probe = await ffprobePromise(masterPlaylist)
476
477 const bitrates = probe.streams.map(s => parseInt(s.tags.variant_bitrate))
478 for (const bitrate of bitrates) {
479 expect(bitrate).to.exist
480 expect(isNaN(bitrate)).to.be.false
481 expect(bitrate).to.be.below(61_000_000) // video_short.mp4 bitrate
482 }
483
484 await stopFfmpeg(ffmpegCommand)
485 })
486
487 it('Should enable transcoding with some resolutions and correctly save them', async function () {
488 this.timeout(400_000)
489
490 const resolutions = [ 240, 360, 720 ]
491
492 await updateConf(resolutions)
493 liveVideoId = await createLiveWrapper(true)
494
495 const ffmpegCommand = await commands[0].sendRTMPStreamInVideo({ videoId: liveVideoId, fixtureName: 'video_short2.webm' })
496 await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
497 await waitJobs(servers)
498
499 await testVideoResolutions({
500 originServer: servers[0],
501 servers,
502 liveVideoId,
503 resolutions,
504 objectStorage: false,
505 transcoded: true
506 })
507
508 await stopFfmpeg(ffmpegCommand)
509 await commands[0].waitUntilEnded({ videoId: liveVideoId })
510
511 await waitJobs(servers)
512
513 await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
514
515 const maxBitrateLimits = {
516 720: 6500 * 1000, // 60FPS
517 360: 1250 * 1000,
518 240: 700 * 1000
519 }
520
521 const minBitrateLimits = {
522 720: 4800 * 1000,
523 360: 1000 * 1000,
524 240: 550 * 1000
525 }
526
527 for (const server of servers) {
528 const video = await server.videos.get({ id: liveVideoId })
529
530 expect(video.state.id).to.equal(VideoState.PUBLISHED)
531 expect(video.duration).to.be.greaterThan(1)
532 expect(video.files).to.have.lengthOf(0)
533
534 const hlsPlaylist = video.streamingPlaylists.find(s => s.type === VideoStreamingPlaylistType.HLS)
535 await makeRawRequest(hlsPlaylist.playlistUrl, HttpStatusCode.OK_200)
536 await makeRawRequest(hlsPlaylist.segmentsSha256Url, HttpStatusCode.OK_200)
537
538 // We should have generated random filenames
539 expect(basename(hlsPlaylist.playlistUrl)).to.not.equal('master.m3u8')
540 expect(basename(hlsPlaylist.segmentsSha256Url)).to.not.equal('segments-sha256.json')
541
542 expect(hlsPlaylist.files).to.have.lengthOf(resolutions.length)
543
544 for (const resolution of resolutions) {
545 const file = hlsPlaylist.files.find(f => f.resolution.id === resolution)
546
547 expect(file).to.exist
548 expect(file.size).to.be.greaterThan(1)
549
550 if (resolution >= 720) {
551 expect(file.fps).to.be.approximately(60, 10)
552 } else {
553 expect(file.fps).to.be.approximately(30, 3)
554 }
555
556 const filename = basename(file.fileUrl)
557 expect(filename).to.not.contain(video.uuid)
558
559 const segmentPath = servers[0].servers.buildDirectory(join('streaming-playlists', 'hls', video.uuid, filename))
560
561 const probe = await ffprobePromise(segmentPath)
562 const videoStream = await getVideoStream(segmentPath, probe)
563
564 expect(probe.format.bit_rate).to.be.below(maxBitrateLimits[videoStream.height])
565 expect(probe.format.bit_rate).to.be.at.least(minBitrateLimits[videoStream.height])
566
567 await makeRawRequest(file.torrentUrl, HttpStatusCode.OK_200)
568 await makeRawRequest(file.fileUrl, HttpStatusCode.OK_200)
569 }
570 }
571 })
572
573 it('Should not generate an upper resolution than original file', async function () {
574 this.timeout(400_000)
575
576 const resolutions = [ 240, 480 ]
577 await updateConf(resolutions)
578
579 await servers[0].config.updateExistingSubConfig({
580 newConfig: {
581 live: {
582 transcoding: {
583 alwaysTranscodeOriginalResolution: false
584 }
585 }
586 }
587 })
588
589 liveVideoId = await createLiveWrapper(true)
590
591 const ffmpegCommand = await commands[0].sendRTMPStreamInVideo({ videoId: liveVideoId, fixtureName: 'video_short2.webm' })
592 await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
593 await waitJobs(servers)
594
595 await testVideoResolutions({
596 originServer: servers[0],
597 servers,
598 liveVideoId,
599 resolutions,
600 objectStorage: false,
601 transcoded: true
602 })
603
604 await stopFfmpeg(ffmpegCommand)
605 await commands[0].waitUntilEnded({ videoId: liveVideoId })
606
607 await waitJobs(servers)
608
609 await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
610
611 const video = await servers[0].videos.get({ id: liveVideoId })
612 const hlsFiles = video.streamingPlaylists[0].files
613
614 expect(video.files).to.have.lengthOf(0)
615 expect(hlsFiles).to.have.lengthOf(resolutions.length)
616
617 // eslint-disable-next-line @typescript-eslint/require-array-sort-compare
618 expect(getAllFiles(video).map(f => f.resolution.id).sort()).to.deep.equal(resolutions)
619 })
620
621 it('Should only keep the original resolution if all resolutions are disabled', async function () {
622 this.timeout(600_000)
623
624 await updateConf([])
625 liveVideoId = await createLiveWrapper(true)
626
627 const ffmpegCommand = await commands[0].sendRTMPStreamInVideo({ videoId: liveVideoId, fixtureName: 'video_short2.webm' })
628 await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
629 await waitJobs(servers)
630
631 await testVideoResolutions({
632 originServer: servers[0],
633 servers,
634 liveVideoId,
635 resolutions: [ 720 ],
636 objectStorage: false,
637 transcoded: true
638 })
639
640 await stopFfmpeg(ffmpegCommand)
641 await commands[0].waitUntilEnded({ videoId: liveVideoId })
642
643 await waitJobs(servers)
644
645 await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
646
647 const video = await servers[0].videos.get({ id: liveVideoId })
648 const hlsFiles = video.streamingPlaylists[0].files
649
650 expect(video.files).to.have.lengthOf(0)
651 expect(hlsFiles).to.have.lengthOf(1)
652
653 expect(hlsFiles[0].resolution.id).to.equal(720)
654 })
655 })
656
657 describe('After a server restart', function () {
658 let liveVideoId: string
659 let liveVideoReplayId: string
660 let permanentLiveVideoReplayId: string
661
662 let permanentLiveReplayName: string
663
664 let beforeServerRestart: Date
665
666 async function createLiveWrapper (options: { saveReplay: boolean, permanent: boolean }) {
667 const liveAttributes: LiveVideoCreate = {
668 name: 'live video',
669 channelId: servers[0].store.channel.id,
670 privacy: VideoPrivacy.PUBLIC,
671 saveReplay: options.saveReplay,
672 permanentLive: options.permanent
673 }
674
675 const { uuid } = await commands[0].create({ fields: liveAttributes })
676 return uuid
677 }
678
679 before(async function () {
680 this.timeout(600_000)
681
682 liveVideoId = await createLiveWrapper({ saveReplay: false, permanent: false })
683 liveVideoReplayId = await createLiveWrapper({ saveReplay: true, permanent: false })
684 permanentLiveVideoReplayId = await createLiveWrapper({ saveReplay: true, permanent: true })
685
686 await Promise.all([
687 commands[0].sendRTMPStreamInVideo({ videoId: liveVideoId }),
688 commands[0].sendRTMPStreamInVideo({ videoId: permanentLiveVideoReplayId }),
689 commands[0].sendRTMPStreamInVideo({ videoId: liveVideoReplayId })
690 ])
691
692 await Promise.all([
693 commands[0].waitUntilPublished({ videoId: liveVideoId }),
694 commands[0].waitUntilPublished({ videoId: permanentLiveVideoReplayId }),
695 commands[0].waitUntilPublished({ videoId: liveVideoReplayId })
696 ])
697
698 for (const videoUUID of [ liveVideoId, liveVideoReplayId, permanentLiveVideoReplayId ]) {
699 await commands[0].waitUntilSegmentGeneration({
700 server: servers[0],
701 videoUUID,
702 playlistNumber: 0,
703 segment: 2,
704 objectStorage: false
705 })
706 }
707
708 {
709 const video = await servers[0].videos.get({ id: permanentLiveVideoReplayId })
710 permanentLiveReplayName = video.name + ' - ' + new Date(video.publishedAt).toLocaleString()
711 }
712
713 await killallServers([ servers[0] ])
714
715 beforeServerRestart = new Date()
716 await servers[0].run()
717
718 await wait(5000)
719 await waitJobs(servers)
720 })
721
722 it('Should cleanup lives', async function () {
723 this.timeout(60000)
724
725 await commands[0].waitUntilEnded({ videoId: liveVideoId })
726 await commands[0].waitUntilWaiting({ videoId: permanentLiveVideoReplayId })
727 })
728
729 it('Should save a non permanent live replay', async function () {
730 this.timeout(240000)
731
732 await commands[0].waitUntilPublished({ videoId: liveVideoReplayId })
733
734 const session = await commands[0].getReplaySession({ videoId: liveVideoReplayId })
735 expect(session.endDate).to.exist
736 expect(new Date(session.endDate)).to.be.above(beforeServerRestart)
737 })
738
739 it('Should have saved a permanent live replay', async function () {
740 this.timeout(120000)
741
742 const { data } = await servers[0].videos.listMyVideos({ sort: '-publishedAt' })
743 expect(data.find(v => v.name === permanentLiveReplayName)).to.exist
744 })
745 })
746
747 after(async function () {
748 await cleanupTests(servers)
749 })
750 })