aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/extra-utils
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-11-03 15:33:30 +0100
committerChocobozzz <chocobozzz@cpy.re>2020-11-09 15:33:04 +0100
commit97969c4edf51b37eee691adba43368bb0fbb729b (patch)
treec1089f898fb936d75651630afcf406995eeb9fba /shared/extra-utils
parentaf4ae64f6faf38f8179f2e07d3cd4ad60006be92 (diff)
downloadPeerTube-97969c4edf51b37eee691adba43368bb0fbb729b.tar.gz
PeerTube-97969c4edf51b37eee691adba43368bb0fbb729b.tar.zst
PeerTube-97969c4edf51b37eee691adba43368bb0fbb729b.zip
Add check constraints live tests
Diffstat (limited to 'shared/extra-utils')
-rw-r--r--shared/extra-utils/videos/live.ts46
1 files changed, 42 insertions, 4 deletions
diff --git a/shared/extra-utils/videos/live.ts b/shared/extra-utils/videos/live.ts
index 65942db0a..a391565a4 100644
--- a/shared/extra-utils/videos/live.ts
+++ b/shared/extra-utils/videos/live.ts
@@ -1,9 +1,9 @@
1import * as ffmpeg from 'fluent-ffmpeg' 1import * as ffmpeg from 'fluent-ffmpeg'
2import { LiveVideoCreate, LiveVideoUpdate, VideoDetails, VideoState } from '@shared/models' 2import { omit } from 'lodash'
3import { LiveVideo, LiveVideoCreate, LiveVideoUpdate, VideoDetails, VideoState } from '@shared/models'
3import { buildAbsoluteFixturePath, wait } from '../miscs/miscs' 4import { buildAbsoluteFixturePath, wait } from '../miscs/miscs'
4import { makeGetRequest, makePutBodyRequest, makeUploadRequest } from '../requests/requests' 5import { makeGetRequest, makePutBodyRequest, makeUploadRequest } from '../requests/requests'
5import { getVideoWithToken } from './videos' 6import { getVideoWithToken } from './videos'
6import { omit } from 'lodash'
7 7
8function getLive (url: string, token: string, videoId: number | string, statusCodeExpected = 200) { 8function getLive (url: string, token: string, videoId: number | string, statusCodeExpected = 200) {
9 const path = '/api/v1/videos/live' 9 const path = '/api/v1/videos/live'
@@ -47,7 +47,14 @@ function createLive (url: string, token: string, fields: LiveVideoCreate, status
47 }) 47 })
48} 48}
49 49
50function sendRTMPStream (rtmpBaseUrl: string, streamKey: string) { 50async function sendRTMPStreamInVideo (url: string, token: string, videoId: number | string, onErrorCb?: Function) {
51 const res = await getLive(url, token, videoId)
52 const videoLive = res.body as LiveVideo
53
54 return sendRTMPStream(videoLive.rtmpUrl, videoLive.streamKey, onErrorCb)
55}
56
57function sendRTMPStream (rtmpBaseUrl: string, streamKey: string, onErrorCb?: Function) {
51 const fixture = buildAbsoluteFixturePath('video_short.mp4') 58 const fixture = buildAbsoluteFixturePath('video_short.mp4')
52 59
53 const command = ffmpeg(fixture) 60 const command = ffmpeg(fixture)
@@ -63,7 +70,7 @@ function sendRTMPStream (rtmpBaseUrl: string, streamKey: string) {
63 command.on('error', err => { 70 command.on('error', err => {
64 if (err?.message?.includes('Exiting normally')) return 71 if (err?.message?.includes('Exiting normally')) return
65 72
66 console.error('Cannot send RTMP stream.', { err }) 73 if (onErrorCb) onErrorCb(err)
67 }) 74 })
68 75
69 if (process.env.DEBUG) { 76 if (process.env.DEBUG) {
@@ -75,6 +82,34 @@ function sendRTMPStream (rtmpBaseUrl: string, streamKey: string) {
75 return command 82 return command
76} 83}
77 84
85function waitFfmpegUntilError (command: ffmpeg.FfmpegCommand, successAfterMS = 10000) {
86 return new Promise((res, rej) => {
87 command.on('error', err => {
88 return rej(err)
89 })
90
91 setTimeout(() => {
92 res()
93 }, successAfterMS)
94 })
95}
96
97async function testFfmpegStreamError (url: string, token: string, videoId: number | string, shouldHaveError: boolean) {
98 const command = await sendRTMPStreamInVideo(url, token, videoId)
99 let error: Error
100
101 try {
102 await waitFfmpegUntilError(command, 10000)
103 } catch (err) {
104 error = err
105 }
106
107 await stopFfmpeg(command)
108
109 if (shouldHaveError && !error) throw new Error('Ffmpeg did not have an error')
110 if (!shouldHaveError && error) throw error
111}
112
78async function stopFfmpeg (command: ffmpeg.FfmpegCommand) { 113async function stopFfmpeg (command: ffmpeg.FfmpegCommand) {
79 command.kill('SIGINT') 114 command.kill('SIGINT')
80 115
@@ -99,6 +134,9 @@ export {
99 updateLive, 134 updateLive,
100 waitUntilLiveStarts, 135 waitUntilLiveStarts,
101 createLive, 136 createLive,
137 testFfmpegStreamError,
102 stopFfmpeg, 138 stopFfmpeg,
139 sendRTMPStreamInVideo,
140 waitFfmpegUntilError,
103 sendRTMPStream 141 sendRTMPStream
104} 142}