2020-11-04 08:16:57 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
|
|
|
|
|
|
|
import { expect } from 'chai'
|
2020-10-30 10:09:00 -04:00
|
|
|
import * as ffmpeg from 'fluent-ffmpeg'
|
2020-11-04 08:16:57 -05:00
|
|
|
import { pathExists, readdir } from 'fs-extra'
|
2020-11-03 09:33:30 -05:00
|
|
|
import { omit } from 'lodash'
|
2020-11-04 08:16:57 -05:00
|
|
|
import { join } from 'path'
|
2020-11-03 09:33:30 -05:00
|
|
|
import { LiveVideo, LiveVideoCreate, LiveVideoUpdate, VideoDetails, VideoState } from '@shared/models'
|
2020-12-09 08:42:42 -05:00
|
|
|
import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
|
2020-11-04 08:16:57 -05:00
|
|
|
import { buildAbsoluteFixturePath, buildServerDirectory, wait } from '../miscs/miscs'
|
2020-10-30 10:09:00 -04:00
|
|
|
import { makeGetRequest, makePutBodyRequest, makeUploadRequest } from '../requests/requests'
|
2020-12-09 08:42:42 -05:00
|
|
|
import { ServerInfo, waitUntilLog } from '../server/servers'
|
2020-11-02 09:43:44 -05:00
|
|
|
import { getVideoWithToken } from './videos'
|
2020-10-30 10:09:00 -04:00
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
function getLive (url: string, token: string, videoId: number | string, statusCodeExpected = HttpStatusCode.OK_200) {
|
2020-10-30 10:09:00 -04:00
|
|
|
const path = '/api/v1/videos/live'
|
|
|
|
|
|
|
|
return makeGetRequest({
|
|
|
|
url,
|
|
|
|
token,
|
|
|
|
path: path + '/' + videoId,
|
|
|
|
statusCodeExpected
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
function updateLive (
|
|
|
|
url: string,
|
|
|
|
token: string,
|
|
|
|
videoId: number | string,
|
|
|
|
fields: LiveVideoUpdate,
|
|
|
|
statusCodeExpected = HttpStatusCode.NO_CONTENT_204
|
|
|
|
) {
|
2020-10-30 10:09:00 -04:00
|
|
|
const path = '/api/v1/videos/live'
|
|
|
|
|
|
|
|
return makePutBodyRequest({
|
|
|
|
url,
|
|
|
|
token,
|
|
|
|
path: path + '/' + videoId,
|
|
|
|
fields,
|
|
|
|
statusCodeExpected
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
function createLive (url: string, token: string, fields: LiveVideoCreate, statusCodeExpected = HttpStatusCode.OK_200) {
|
2020-10-30 10:09:00 -04:00
|
|
|
const path = '/api/v1/videos/live'
|
|
|
|
|
2020-11-02 09:43:44 -05:00
|
|
|
const attaches: any = {}
|
|
|
|
if (fields.thumbnailfile) attaches.thumbnailfile = fields.thumbnailfile
|
|
|
|
if (fields.previewfile) attaches.previewfile = fields.previewfile
|
|
|
|
|
|
|
|
const updatedFields = omit(fields, 'thumbnailfile', 'previewfile')
|
2020-10-30 10:09:00 -04:00
|
|
|
|
|
|
|
return makeUploadRequest({
|
|
|
|
url,
|
|
|
|
path,
|
|
|
|
token,
|
|
|
|
attaches,
|
2020-11-02 09:43:44 -05:00
|
|
|
fields: updatedFields,
|
2020-10-30 10:09:00 -04:00
|
|
|
statusCodeExpected
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-11-24 09:22:56 -05:00
|
|
|
async function sendRTMPStreamInVideo (url: string, token: string, videoId: number | string, fixtureName?: string) {
|
2020-11-03 09:33:30 -05:00
|
|
|
const res = await getLive(url, token, videoId)
|
|
|
|
const videoLive = res.body as LiveVideo
|
|
|
|
|
2020-11-24 09:22:56 -05:00
|
|
|
return sendRTMPStream(videoLive.rtmpUrl, videoLive.streamKey, fixtureName)
|
2020-11-03 09:33:30 -05:00
|
|
|
}
|
|
|
|
|
2020-11-24 09:22:56 -05:00
|
|
|
function sendRTMPStream (rtmpBaseUrl: string, streamKey: string, fixtureName = 'video_short.mp4') {
|
|
|
|
const fixture = buildAbsoluteFixturePath(fixtureName)
|
2020-10-30 10:09:00 -04:00
|
|
|
|
|
|
|
const command = ffmpeg(fixture)
|
|
|
|
command.inputOption('-stream_loop -1')
|
|
|
|
command.inputOption('-re')
|
2020-11-04 08:16:57 -05:00
|
|
|
command.outputOption('-c:v libx264')
|
|
|
|
command.outputOption('-g 50')
|
|
|
|
command.outputOption('-keyint_min 2')
|
2020-11-26 05:29:50 -05:00
|
|
|
command.outputOption('-r 60')
|
2020-10-30 10:09:00 -04:00
|
|
|
command.outputOption('-f flv')
|
|
|
|
|
|
|
|
const rtmpUrl = rtmpBaseUrl + '/' + streamKey
|
|
|
|
command.output(rtmpUrl)
|
|
|
|
|
|
|
|
command.on('error', err => {
|
|
|
|
if (err?.message?.includes('Exiting normally')) return
|
|
|
|
|
2020-11-04 08:16:57 -05:00
|
|
|
if (process.env.DEBUG) console.error(err)
|
2020-10-30 10:09:00 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
if (process.env.DEBUG) {
|
|
|
|
command.on('stderr', data => console.log(data))
|
|
|
|
}
|
|
|
|
|
|
|
|
command.run()
|
|
|
|
|
|
|
|
return command
|
|
|
|
}
|
|
|
|
|
2020-11-03 09:33:30 -05:00
|
|
|
function waitFfmpegUntilError (command: ffmpeg.FfmpegCommand, successAfterMS = 10000) {
|
|
|
|
return new Promise((res, rej) => {
|
|
|
|
command.on('error', err => {
|
|
|
|
return rej(err)
|
|
|
|
})
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
res()
|
|
|
|
}, successAfterMS)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-11-04 08:16:57 -05:00
|
|
|
async function runAndTestFfmpegStreamError (url: string, token: string, videoId: number | string, shouldHaveError: boolean) {
|
2020-11-03 09:33:30 -05:00
|
|
|
const command = await sendRTMPStreamInVideo(url, token, videoId)
|
2020-11-04 08:16:57 -05:00
|
|
|
|
|
|
|
return testFfmpegStreamError(command, shouldHaveError)
|
|
|
|
}
|
|
|
|
|
|
|
|
async function testFfmpegStreamError (command: ffmpeg.FfmpegCommand, shouldHaveError: boolean) {
|
2020-11-03 09:33:30 -05:00
|
|
|
let error: Error
|
|
|
|
|
|
|
|
try {
|
2020-11-12 02:51:42 -05:00
|
|
|
await waitFfmpegUntilError(command, 15000)
|
2020-11-03 09:33:30 -05:00
|
|
|
} catch (err) {
|
|
|
|
error = err
|
|
|
|
}
|
|
|
|
|
|
|
|
await stopFfmpeg(command)
|
|
|
|
|
|
|
|
if (shouldHaveError && !error) throw new Error('Ffmpeg did not have an error')
|
|
|
|
if (!shouldHaveError && error) throw error
|
|
|
|
}
|
|
|
|
|
2020-10-30 10:09:00 -04:00
|
|
|
async function stopFfmpeg (command: ffmpeg.FfmpegCommand) {
|
|
|
|
command.kill('SIGINT')
|
|
|
|
|
|
|
|
await wait(500)
|
|
|
|
}
|
|
|
|
|
2020-11-24 10:29:39 -05:00
|
|
|
function waitUntilLivePublished (url: string, token: string, videoId: number | string) {
|
2020-12-09 08:42:42 -05:00
|
|
|
return waitUntilLiveState(url, token, videoId, VideoState.PUBLISHED)
|
2020-11-24 10:29:39 -05:00
|
|
|
}
|
|
|
|
|
2020-11-26 09:16:30 -05:00
|
|
|
function waitUntilLiveEnded (url: string, token: string, videoId: number | string) {
|
2020-12-09 08:42:42 -05:00
|
|
|
return waitUntilLiveState(url, token, videoId, VideoState.LIVE_ENDED)
|
|
|
|
}
|
|
|
|
|
|
|
|
function waitUntilLiveSegmentGeneration (server: ServerInfo, videoUUID: string, resolutionNum: number, segmentNum: number) {
|
|
|
|
const segmentName = `${resolutionNum}-00000${segmentNum}.ts`
|
|
|
|
return waitUntilLog(server, `${videoUUID}/${segmentName}`, 2, false)
|
2020-11-26 09:16:30 -05:00
|
|
|
}
|
|
|
|
|
2020-12-09 08:42:42 -05:00
|
|
|
async function waitUntilLiveState (url: string, token: string, videoId: number | string, state: VideoState) {
|
2020-10-30 10:09:00 -04:00
|
|
|
let video: VideoDetails
|
|
|
|
|
|
|
|
do {
|
|
|
|
const res = await getVideoWithToken(url, token, videoId)
|
|
|
|
video = res.body
|
|
|
|
|
|
|
|
await wait(500)
|
2020-12-09 08:42:42 -05:00
|
|
|
} while (video.state.id !== state)
|
2020-10-30 10:09:00 -04:00
|
|
|
}
|
|
|
|
|
2020-11-04 08:16:57 -05:00
|
|
|
async function checkLiveCleanup (server: ServerInfo, videoUUID: string, resolutions: number[] = []) {
|
2020-11-24 09:22:56 -05:00
|
|
|
const basePath = buildServerDirectory(server, 'streaming-playlists')
|
2020-11-04 08:16:57 -05:00
|
|
|
const hlsPath = join(basePath, 'hls', videoUUID)
|
|
|
|
|
|
|
|
if (resolutions.length === 0) {
|
|
|
|
const result = await pathExists(hlsPath)
|
|
|
|
expect(result).to.be.false
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
const files = await readdir(hlsPath)
|
|
|
|
|
|
|
|
// fragmented file and playlist per resolution + master playlist + segments sha256 json file
|
|
|
|
expect(files).to.have.lengthOf(resolutions.length * 2 + 2)
|
|
|
|
|
|
|
|
for (const resolution of resolutions) {
|
|
|
|
expect(files).to.contain(`${videoUUID}-${resolution}-fragmented.mp4`)
|
|
|
|
expect(files).to.contain(`${resolution}.m3u8`)
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(files).to.contain('master.m3u8')
|
|
|
|
expect(files).to.contain('segments-sha256.json')
|
|
|
|
}
|
|
|
|
|
2020-12-03 08:10:54 -05:00
|
|
|
async function getPlaylistsCount (server: ServerInfo, videoUUID: string) {
|
|
|
|
const basePath = buildServerDirectory(server, 'streaming-playlists')
|
|
|
|
const hlsPath = join(basePath, 'hls', videoUUID)
|
|
|
|
|
|
|
|
const files = await readdir(hlsPath)
|
|
|
|
|
|
|
|
return files.filter(f => f.endsWith('.m3u8')).length
|
|
|
|
}
|
|
|
|
|
2020-10-30 10:09:00 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
getLive,
|
2020-12-03 08:10:54 -05:00
|
|
|
getPlaylistsCount,
|
2020-11-24 10:29:39 -05:00
|
|
|
waitUntilLivePublished,
|
2020-10-30 10:09:00 -04:00
|
|
|
updateLive,
|
|
|
|
createLive,
|
2020-11-04 08:16:57 -05:00
|
|
|
runAndTestFfmpegStreamError,
|
|
|
|
checkLiveCleanup,
|
2020-12-09 08:42:42 -05:00
|
|
|
waitUntilLiveSegmentGeneration,
|
2020-10-30 10:09:00 -04:00
|
|
|
stopFfmpeg,
|
2020-11-03 09:33:30 -05:00
|
|
|
sendRTMPStreamInVideo,
|
2020-11-26 09:16:30 -05:00
|
|
|
waitUntilLiveEnded,
|
2020-11-03 09:33:30 -05:00
|
|
|
waitFfmpegUntilError,
|
2020-11-04 08:16:57 -05:00
|
|
|
sendRTMPStream,
|
|
|
|
testFfmpegStreamError
|
2020-10-30 10:09:00 -04:00
|
|
|
}
|