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