1
0
Fork 0
peertube/server/tests/api/live/live.ts

607 lines
19 KiB
TypeScript
Raw Normal View History

2020-11-02 14:43:44 +00:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
import 'mocha'
import * as chai from 'chai'
2020-11-24 14:22:56 +00:00
import { join } from 'path'
import { ffprobePromise, getVideoStreamFromFile } from '@server/helpers/ffprobe-utils'
2020-11-06 09:57:40 +00:00
import { LiveVideo, LiveVideoCreate, Video, VideoDetails, VideoPrivacy, VideoState, VideoStreamingPlaylistType } from '@shared/models'
2020-12-09 13:42:42 +00:00
import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
2020-11-02 14:43:44 +00:00
import {
2020-11-24 14:22:56 +00:00
buildServerDirectory,
2020-11-04 14:31:32 +00:00
checkLiveCleanup,
2020-11-13 13:36:30 +00:00
checkLiveSegmentHash,
2020-11-04 14:31:32 +00:00
checkResolutionsInMasterPlaylist,
2020-11-02 14:43:44 +00:00
cleanupTests,
doubleFollow,
flushAndRunMultipleServers,
getMyVideosWithFilter,
2020-11-13 13:36:30 +00:00
getPlaylist,
2020-11-02 14:43:44 +00:00
getVideo,
getVideosList,
getVideosWithFilters,
2020-11-13 13:36:30 +00:00
killallServers,
2021-07-08 08:18:40 +00:00
LiveCommand,
2020-11-02 14:43:44 +00:00
makeRawRequest,
removeVideo,
2020-11-13 13:36:30 +00:00
reRunServer,
2020-11-04 13:16:57 +00:00
sendRTMPStream,
2020-11-02 14:43:44 +00:00
ServerInfo,
setAccessTokensToServers,
setDefaultVideoChannel,
2020-11-04 14:31:32 +00:00
stopFfmpeg,
2020-11-03 14:33:30 +00:00
testFfmpegStreamError,
2020-11-02 14:43:44 +00:00
testImage,
uploadVideoAndGetId,
2020-11-06 15:42:23 +00:00
wait,
2020-11-04 14:31:32 +00:00
waitJobs,
2021-07-08 08:18:40 +00:00
waitUntilLivePublishedOnAllServers
2020-11-02 14:43:44 +00:00
} from '../../../../shared/extra-utils'
const expect = chai.expect
describe('Test live', function () {
let servers: ServerInfo[] = []
2021-07-08 08:18:40 +00:00
let commands: LiveCommand[]
2020-11-02 14:43:44 +00:00
before(async function () {
this.timeout(120000)
servers = await flushAndRunMultipleServers(2)
// Get the access tokens
await setAccessTokensToServers(servers)
await setDefaultVideoChannel(servers)
2021-07-07 09:51:09 +00:00
await servers[0].configCommand.updateCustomSubConfig({
newConfig: {
live: {
enabled: true,
allowReplay: true,
transcoding: {
enabled: false
}
2020-11-04 13:16:57 +00:00
}
2020-11-02 14:43:44 +00:00
}
})
// Server 1 and server 2 follow each other
await doubleFollow(servers[0], servers[1])
2021-07-08 08:18:40 +00:00
commands = servers.map(s => s.liveCommand)
2020-11-02 14:43:44 +00:00
})
describe('Live creation, update and delete', function () {
2020-11-04 13:16:57 +00:00
let liveVideoUUID: string
2020-11-02 14:43:44 +00:00
it('Should create a live with the appropriate parameters', async function () {
this.timeout(20000)
const attributes: LiveVideoCreate = {
category: 1,
licence: 2,
language: 'fr',
description: 'super live description',
support: 'support field',
channelId: servers[0].videoChannel.id,
nsfw: false,
waitTranscoding: false,
name: 'my super live',
tags: [ 'tag1', 'tag2' ],
commentsEnabled: false,
downloadEnabled: false,
saveReplay: true,
privacy: VideoPrivacy.PUBLIC,
previewfile: 'video_short1-preview.webm.jpg',
thumbnailfile: 'video_short1.webm.jpg'
}
2021-07-08 08:25:50 +00:00
const live = await commands[0].create({ fields: attributes })
2021-07-08 08:18:40 +00:00
liveVideoUUID = live.uuid
2020-11-02 14:43:44 +00:00
await waitJobs(servers)
for (const server of servers) {
const resVideo = await getVideo(server.url, liveVideoUUID)
const video: VideoDetails = resVideo.body
expect(video.category.id).to.equal(1)
expect(video.licence.id).to.equal(2)
expect(video.language.id).to.equal('fr')
expect(video.description).to.equal('super live description')
expect(video.support).to.equal('support field')
expect(video.channel.name).to.equal(servers[0].videoChannel.name)
expect(video.channel.host).to.equal(servers[0].videoChannel.host)
2020-12-16 13:19:43 +00:00
expect(video.isLive).to.be.true
2020-11-02 14:43:44 +00:00
expect(video.nsfw).to.be.false
expect(video.waitTranscoding).to.be.false
expect(video.name).to.equal('my super live')
expect(video.tags).to.deep.equal([ 'tag1', 'tag2' ])
expect(video.commentsEnabled).to.be.false
expect(video.downloadEnabled).to.be.false
expect(video.privacy.id).to.equal(VideoPrivacy.PUBLIC)
await testImage(server.url, 'video_short1-preview.webm', video.previewPath)
await testImage(server.url, 'video_short1.webm', video.thumbnailPath)
2021-07-08 08:25:50 +00:00
const live = await server.liveCommand.get({ videoId: liveVideoUUID })
2020-11-02 14:43:44 +00:00
if (server.url === servers[0].url) {
2020-11-06 15:43:43 +00:00
expect(live.rtmpUrl).to.equal('rtmp://' + server.hostname + ':' + servers[0].rtmpPort + '/live')
2020-11-02 14:43:44 +00:00
expect(live.streamKey).to.not.be.empty
} else {
expect(live.rtmpUrl).to.be.null
expect(live.streamKey).to.be.null
}
expect(live.saveReplay).to.be.true
}
})
it('Should have a default preview and thumbnail', async function () {
this.timeout(20000)
const attributes: LiveVideoCreate = {
name: 'default live thumbnail',
channelId: servers[0].videoChannel.id,
privacy: VideoPrivacy.UNLISTED,
nsfw: true
}
2021-07-08 08:25:50 +00:00
const live = await commands[0].create({ fields: attributes })
2021-07-08 08:18:40 +00:00
const videoId = live.uuid
2020-11-02 14:43:44 +00:00
await waitJobs(servers)
for (const server of servers) {
const resVideo = await getVideo(server.url, videoId)
const video: VideoDetails = resVideo.body
expect(video.privacy.id).to.equal(VideoPrivacy.UNLISTED)
expect(video.nsfw).to.be.true
await makeRawRequest(server.url + video.thumbnailPath, HttpStatusCode.OK_200)
await makeRawRequest(server.url + video.previewPath, HttpStatusCode.OK_200)
2020-11-02 14:43:44 +00:00
}
})
it('Should not have the live listed since nobody streams into', async function () {
for (const server of servers) {
const res = await getVideosList(server.url)
expect(res.body.total).to.equal(0)
expect(res.body.data).to.have.lengthOf(0)
}
})
it('Should not be able to update a live of another server', async function () {
2021-07-08 08:25:50 +00:00
await commands[1].update({ videoId: liveVideoUUID, fields: { saveReplay: false }, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
2020-11-02 14:43:44 +00:00
})
it('Should update the live', async function () {
this.timeout(10000)
2021-07-08 08:25:50 +00:00
await commands[0].update({ videoId: liveVideoUUID, fields: { saveReplay: false } })
2020-11-02 14:43:44 +00:00
await waitJobs(servers)
})
it('Have the live updated', async function () {
for (const server of servers) {
2021-07-08 08:25:50 +00:00
const live = await server.liveCommand.get({ videoId: liveVideoUUID })
2020-11-02 14:43:44 +00:00
if (server.url === servers[0].url) {
2020-11-06 15:43:43 +00:00
expect(live.rtmpUrl).to.equal('rtmp://' + server.hostname + ':' + servers[0].rtmpPort + '/live')
2020-11-02 14:43:44 +00:00
expect(live.streamKey).to.not.be.empty
} else {
expect(live.rtmpUrl).to.be.null
expect(live.streamKey).to.be.null
}
expect(live.saveReplay).to.be.false
}
})
it('Delete the live', async function () {
this.timeout(10000)
await removeVideo(servers[0].url, servers[0].accessToken, liveVideoUUID)
await waitJobs(servers)
})
it('Should have the live deleted', async function () {
for (const server of servers) {
await getVideo(server.url, liveVideoUUID, HttpStatusCode.NOT_FOUND_404)
2021-07-08 08:25:50 +00:00
await server.liveCommand.get({ videoId: liveVideoUUID, expectedStatus: HttpStatusCode.NOT_FOUND_404 })
2020-11-02 14:43:44 +00:00
}
})
})
describe('Live filters', function () {
2021-07-08 08:18:40 +00:00
let ffmpegCommand: any
let liveVideoId: string
let vodVideoId: string
before(async function () {
this.timeout(120000)
vodVideoId = (await uploadVideoAndGetId({ server: servers[0], videoName: 'vod video' })).uuid
const liveOptions = { name: 'live', privacy: VideoPrivacy.PUBLIC, channelId: servers[0].videoChannel.id }
2021-07-08 08:25:50 +00:00
const live = await commands[0].create({ fields: liveOptions })
2021-07-08 08:18:40 +00:00
liveVideoId = live.uuid
2021-07-08 08:18:40 +00:00
ffmpegCommand = await servers[0].liveCommand.sendRTMPStreamInVideo({ videoId: liveVideoId })
2021-06-16 13:14:41 +00:00
await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
await waitJobs(servers)
})
it('Should only display lives', async function () {
const res = await getVideosWithFilters(servers[0].url, { isLive: true })
expect(res.body.total).to.equal(1)
expect(res.body.data).to.have.lengthOf(1)
expect(res.body.data[0].name).to.equal('live')
})
it('Should not display lives', async function () {
const res = await getVideosWithFilters(servers[0].url, { isLive: false })
expect(res.body.total).to.equal(1)
expect(res.body.data).to.have.lengthOf(1)
expect(res.body.data[0].name).to.equal('vod video')
})
it('Should display my lives', async function () {
this.timeout(60000)
2021-07-08 08:18:40 +00:00
await stopFfmpeg(ffmpegCommand)
await waitJobs(servers)
const res = await getMyVideosWithFilter(servers[0].url, servers[0].accessToken, { isLive: true })
const videos = res.body.data as Video[]
const result = videos.every(v => v.isLive)
expect(result).to.be.true
})
it('Should not display my lives', async function () {
const res = await getMyVideosWithFilter(servers[0].url, servers[0].accessToken, { isLive: false })
const videos = res.body.data as Video[]
const result = videos.every(v => !v.isLive)
expect(result).to.be.true
})
after(async function () {
await removeVideo(servers[0].url, servers[0].accessToken, vodVideoId)
await removeVideo(servers[0].url, servers[0].accessToken, liveVideoId)
})
})
2020-11-04 13:16:57 +00:00
describe('Stream checks', function () {
let liveVideo: LiveVideo & VideoDetails
let rtmpUrl: string
before(function () {
2020-11-06 15:43:43 +00:00
rtmpUrl = 'rtmp://' + servers[0].hostname + ':' + servers[0].rtmpPort + ''
2020-11-04 13:16:57 +00:00
})
2020-11-02 14:43:44 +00:00
2020-11-04 13:16:57 +00:00
async function createLiveWrapper () {
2020-11-03 14:33:30 +00:00
const liveAttributes = {
name: 'user live',
2020-11-04 14:31:32 +00:00
channelId: servers[0].videoChannel.id,
2020-11-03 14:33:30 +00:00
privacy: VideoPrivacy.PUBLIC,
2020-11-04 13:16:57 +00:00
saveReplay: false
2020-11-03 14:33:30 +00:00
}
2021-07-08 08:25:50 +00:00
const { uuid } = await commands[0].create({ fields: liveAttributes })
2020-11-03 14:33:30 +00:00
2021-07-08 08:25:50 +00:00
const live = await commands[0].get({ videoId: uuid })
2020-11-04 13:16:57 +00:00
const resVideo = await getVideo(servers[0].url, uuid)
2020-11-03 14:33:30 +00:00
2021-07-08 08:18:40 +00:00
return Object.assign(resVideo.body as VideoDetails, live)
2020-11-04 13:16:57 +00:00
}
2020-11-03 14:33:30 +00:00
2020-11-04 13:16:57 +00:00
it('Should not allow a stream without the appropriate path', async function () {
2021-04-15 09:31:40 +00:00
this.timeout(60000)
2020-11-03 14:33:30 +00:00
2020-11-04 13:16:57 +00:00
liveVideo = await createLiveWrapper()
2020-11-03 14:33:30 +00:00
2020-11-04 13:16:57 +00:00
const command = sendRTMPStream(rtmpUrl + '/bad-live', liveVideo.streamKey)
await testFfmpegStreamError(command, true)
2020-11-02 14:43:44 +00:00
})
2020-11-04 13:16:57 +00:00
it('Should not allow a stream without the appropriate stream key', async function () {
2021-04-15 09:31:40 +00:00
this.timeout(60000)
2020-11-03 14:33:30 +00:00
2020-11-04 13:16:57 +00:00
const command = sendRTMPStream(rtmpUrl + '/live', 'bad-stream-key')
await testFfmpegStreamError(command, true)
2020-11-03 14:33:30 +00:00
})
2020-11-04 13:16:57 +00:00
it('Should succeed with the correct params', async function () {
2021-04-15 09:31:40 +00:00
this.timeout(60000)
2020-11-03 14:33:30 +00:00
2020-11-04 13:16:57 +00:00
const command = sendRTMPStream(rtmpUrl + '/live', liveVideo.streamKey)
await testFfmpegStreamError(command, false)
2020-11-02 14:43:44 +00:00
})
2020-12-16 13:19:43 +00:00
it('Should list this live now someone stream into it', async function () {
for (const server of servers) {
const res = await getVideosList(server.url)
expect(res.body.total).to.equal(1)
expect(res.body.data).to.have.lengthOf(1)
const video: Video = res.body.data[0]
expect(video.name).to.equal('user live')
expect(video.isLive).to.be.true
}
})
2020-11-04 13:16:57 +00:00
it('Should not allow a stream on a live that was blacklisted', async function () {
2021-04-15 09:31:40 +00:00
this.timeout(60000)
2020-11-03 14:33:30 +00:00
2020-11-04 13:16:57 +00:00
liveVideo = await createLiveWrapper()
2020-11-02 14:43:44 +00:00
2021-07-08 09:17:55 +00:00
await servers[0].blacklistCommand.add({ videoId: liveVideo.uuid })
2020-11-02 14:43:44 +00:00
2020-11-04 13:16:57 +00:00
const command = sendRTMPStream(rtmpUrl + '/live', liveVideo.streamKey)
await testFfmpegStreamError(command, true)
2020-11-02 14:43:44 +00:00
})
2020-11-04 13:16:57 +00:00
it('Should not allow a stream on a live that was deleted', async function () {
2021-04-15 09:31:40 +00:00
this.timeout(60000)
2020-11-02 14:43:44 +00:00
2020-11-04 13:16:57 +00:00
liveVideo = await createLiveWrapper()
2020-11-02 14:43:44 +00:00
2020-11-04 13:16:57 +00:00
await removeVideo(servers[0].url, servers[0].accessToken, liveVideo.uuid)
2020-11-02 14:43:44 +00:00
2020-11-04 13:16:57 +00:00
const command = sendRTMPStream(rtmpUrl + '/live', liveVideo.streamKey)
await testFfmpegStreamError(command, true)
2020-11-02 14:43:44 +00:00
})
})
describe('Live transcoding', function () {
2020-11-04 14:31:32 +00:00
let liveVideoId: string
async function createLiveWrapper (saveReplay: boolean) {
const liveAttributes = {
name: 'live video',
channelId: servers[0].videoChannel.id,
privacy: VideoPrivacy.PUBLIC,
saveReplay
}
2021-07-08 08:25:50 +00:00
const { uuid } = await commands[0].create({ fields: liveAttributes })
2021-07-08 08:18:40 +00:00
return uuid
2020-11-04 14:31:32 +00:00
}
async function testVideoResolutions (liveVideoId: string, resolutions: number[]) {
for (const server of servers) {
const resList = await getVideosList(server.url)
const videos: Video[] = resList.body.data
expect(videos.find(v => v.uuid === liveVideoId)).to.exist
const resVideo = await getVideo(server.url, liveVideoId)
const video: VideoDetails = resVideo.body
expect(video.streamingPlaylists).to.have.lengthOf(1)
const hlsPlaylist = video.streamingPlaylists.find(s => s.type === VideoStreamingPlaylistType.HLS)
expect(hlsPlaylist).to.exist
// Only finite files are displayed
expect(hlsPlaylist.files).to.have.lengthOf(0)
await checkResolutionsInMasterPlaylist(hlsPlaylist.playlistUrl, resolutions)
2020-11-13 13:36:30 +00:00
for (let i = 0; i < resolutions.length; i++) {
2020-12-09 14:00:02 +00:00
const segmentNum = 3
2020-12-09 13:42:42 +00:00
const segmentName = `${i}-00000${segmentNum}.ts`
2021-07-08 08:25:50 +00:00
await commands[0].waitUntilSegmentGeneration({ videoUUID: video.uuid, resolution: i, segment: segmentNum })
2020-11-13 13:36:30 +00:00
const res = await getPlaylist(`${servers[0].url}/static/streaming-playlists/hls/${video.uuid}/${i}.m3u8`)
const subPlaylist = res.text
expect(subPlaylist).to.contain(segmentName)
const baseUrlAndPath = servers[0].url + '/static/streaming-playlists/hls'
await checkLiveSegmentHash(baseUrlAndPath, video.uuid, segmentName, hlsPlaylist)
}
2020-11-04 14:31:32 +00:00
}
}
function updateConf (resolutions: number[]) {
2021-07-07 09:51:09 +00:00
return servers[0].configCommand.updateCustomSubConfig({
newConfig: {
live: {
2020-11-04 14:31:32 +00:00
enabled: true,
2021-07-07 09:51:09 +00:00
allowReplay: true,
maxDuration: -1,
transcoding: {
enabled: true,
resolutions: {
'240p': resolutions.includes(240),
'360p': resolutions.includes(360),
'480p': resolutions.includes(480),
'720p': resolutions.includes(720),
'1080p': resolutions.includes(1080),
'2160p': resolutions.includes(2160)
}
2020-11-04 14:31:32 +00:00
}
}
}
})
}
before(async function () {
await updateConf([])
})
2020-11-02 14:43:44 +00:00
it('Should enable transcoding without additional resolutions', async function () {
2021-03-04 08:40:17 +00:00
this.timeout(60000)
2020-11-04 14:31:32 +00:00
liveVideoId = await createLiveWrapper(false)
2021-07-08 08:18:40 +00:00
const ffmpegCommand = await commands[0].sendRTMPStreamInVideo({ videoId: liveVideoId })
2021-06-16 13:14:41 +00:00
await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
2020-11-04 14:31:32 +00:00
await waitJobs(servers)
2020-11-02 14:43:44 +00:00
2020-11-04 14:31:32 +00:00
await testVideoResolutions(liveVideoId, [ 720 ])
2021-07-08 08:18:40 +00:00
await stopFfmpeg(ffmpegCommand)
2020-11-02 14:43:44 +00:00
})
it('Should enable transcoding with some resolutions', async function () {
2021-03-04 08:40:17 +00:00
this.timeout(60000)
2020-11-04 14:31:32 +00:00
const resolutions = [ 240, 480 ]
await updateConf(resolutions)
liveVideoId = await createLiveWrapper(false)
2021-07-08 08:18:40 +00:00
const ffmpegCommand = await commands[0].sendRTMPStreamInVideo({ videoId: liveVideoId })
2021-06-16 13:14:41 +00:00
await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
2020-11-04 14:31:32 +00:00
await waitJobs(servers)
await testVideoResolutions(liveVideoId, resolutions)
2021-07-08 08:18:40 +00:00
await stopFfmpeg(ffmpegCommand)
2020-11-02 14:43:44 +00:00
})
it('Should enable transcoding with some resolutions and correctly save them', async function () {
2021-01-08 11:11:45 +00:00
this.timeout(200000)
2020-11-04 14:31:32 +00:00
const resolutions = [ 240, 360, 720 ]
2020-11-24 14:22:56 +00:00
2020-11-04 14:31:32 +00:00
await updateConf(resolutions)
liveVideoId = await createLiveWrapper(true)
2021-07-08 08:18:40 +00:00
const ffmpegCommand = await commands[0].sendRTMPStreamInVideo({ videoId: liveVideoId, fixtureName: 'video_short2.webm' })
2021-06-16 13:14:41 +00:00
await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
2020-11-04 14:31:32 +00:00
await waitJobs(servers)
await testVideoResolutions(liveVideoId, resolutions)
2021-07-08 08:18:40 +00:00
await stopFfmpeg(ffmpegCommand)
2021-07-08 08:25:50 +00:00
await commands[0].waitUntilEnded({ videoId: liveVideoId })
2020-12-10 15:38:12 +00:00
2020-11-04 14:31:32 +00:00
await waitJobs(servers)
2021-06-16 13:14:41 +00:00
await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
2020-11-24 14:22:56 +00:00
const bitrateLimits = {
2020-12-04 15:41:03 +00:00
720: 5000 * 1000, // 60FPS
2020-11-24 15:29:39 +00:00
360: 1100 * 1000,
240: 600 * 1000
2020-11-24 14:22:56 +00:00
}
2020-11-04 14:31:32 +00:00
for (const server of servers) {
const resVideo = await getVideo(server.url, liveVideoId)
const video: VideoDetails = resVideo.body
expect(video.state.id).to.equal(VideoState.PUBLISHED)
2020-11-04 14:31:32 +00:00
expect(video.duration).to.be.greaterThan(1)
expect(video.files).to.have.lengthOf(0)
const hlsPlaylist = video.streamingPlaylists.find(s => s.type === VideoStreamingPlaylistType.HLS)
await makeRawRequest(hlsPlaylist.playlistUrl, HttpStatusCode.OK_200)
await makeRawRequest(hlsPlaylist.segmentsSha256Url, HttpStatusCode.OK_200)
2020-11-04 14:31:32 +00:00
expect(hlsPlaylist.files).to.have.lengthOf(resolutions.length)
for (const resolution of resolutions) {
const file = hlsPlaylist.files.find(f => f.resolution.id === resolution)
expect(file).to.exist
expect(file.size).to.be.greaterThan(1)
2020-11-26 10:29:50 +00:00
if (resolution >= 720) {
expect(file.fps).to.be.approximately(60, 2)
} else {
expect(file.fps).to.be.approximately(30, 2)
}
2020-11-24 14:22:56 +00:00
const filename = `${video.uuid}-${resolution}-fragmented.mp4`
const segmentPath = buildServerDirectory(servers[0], join('streaming-playlists', 'hls', video.uuid, filename))
const probe = await ffprobePromise(segmentPath)
const videoStream = await getVideoStreamFromFile(segmentPath, probe)
2020-11-24 15:29:39 +00:00
2020-11-24 14:22:56 +00:00
expect(probe.format.bit_rate).to.be.below(bitrateLimits[videoStream.height])
await makeRawRequest(file.torrentUrl, HttpStatusCode.OK_200)
await makeRawRequest(file.fileUrl, HttpStatusCode.OK_200)
2020-11-04 14:31:32 +00:00
}
}
2020-11-02 14:43:44 +00:00
})
it('Should correctly have cleaned up the live files', async function () {
2020-11-04 14:31:32 +00:00
this.timeout(30000)
await checkLiveCleanup(servers[0], liveVideoId, [ 240, 360, 720 ])
2020-11-02 14:43:44 +00:00
})
})
2020-11-13 13:36:30 +00:00
describe('After a server restart', function () {
let liveVideoId: string
let liveVideoReplayId: string
async function createLiveWrapper (saveReplay: boolean) {
const liveAttributes = {
name: 'live video',
channelId: servers[0].videoChannel.id,
privacy: VideoPrivacy.PUBLIC,
saveReplay
}
2021-07-08 08:25:50 +00:00
const { uuid } = await commands[0].create({ fields: liveAttributes })
2021-07-08 08:18:40 +00:00
return uuid
2020-11-13 13:36:30 +00:00
}
before(async function () {
2020-12-09 13:42:42 +00:00
this.timeout(120000)
2020-11-13 13:36:30 +00:00
liveVideoId = await createLiveWrapper(false)
liveVideoReplayId = await createLiveWrapper(true)
await Promise.all([
2021-07-08 08:18:40 +00:00
commands[0].sendRTMPStreamInVideo({ videoId: liveVideoId }),
commands[0].sendRTMPStreamInVideo({ videoId: liveVideoReplayId })
2020-11-13 13:36:30 +00:00
])
await Promise.all([
2021-07-08 08:25:50 +00:00
commands[0].waitUntilPublished({ videoId: liveVideoId }),
commands[0].waitUntilPublished({ videoId: liveVideoReplayId })
2020-11-13 13:36:30 +00:00
])
2021-07-08 08:25:50 +00:00
await commands[0].waitUntilSegmentGeneration({ videoUUID: liveVideoId, resolution: 0, segment: 2 })
await commands[0].waitUntilSegmentGeneration({ videoUUID: liveVideoReplayId, resolution: 0, segment: 2 })
2020-12-09 13:42:42 +00:00
2021-07-08 08:25:50 +00:00
killallServers([ servers[0] ])
2020-11-13 13:36:30 +00:00
await reRunServer(servers[0])
await wait(5000)
})
it('Should cleanup lives', async function () {
this.timeout(60000)
2021-07-08 08:25:50 +00:00
await commands[0].waitUntilEnded({ videoId: liveVideoId })
2020-11-13 13:36:30 +00:00
})
it('Should save a live replay', async function () {
2020-12-09 13:42:42 +00:00
this.timeout(120000)
2020-11-13 13:36:30 +00:00
2021-07-08 08:25:50 +00:00
await commands[0].waitUntilPublished({ videoId: liveVideoReplayId })
2020-11-13 13:36:30 +00:00
})
})
2020-11-02 14:43:44 +00:00
after(async function () {
await cleanupTests(servers)
})
})