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