PeerTube/server/tests/api/live/live.ts

341 lines
10 KiB
TypeScript
Raw Normal View History

2020-11-02 15:43:44 +01:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
import 'mocha'
import * as chai from 'chai'
2020-11-03 15:33:30 +01:00
import { LiveVideo, LiveVideoCreate, User, VideoDetails, VideoPrivacy } from '@shared/models'
2020-11-02 15:43:44 +01:00
import {
2020-11-04 14:16:57 +01:00
addVideoToBlacklist,
2020-11-02 15:43:44 +01:00
cleanupTests,
createLive,
2020-11-03 15:33:30 +01:00
createUser,
2020-11-02 15:43:44 +01:00
doubleFollow,
flushAndRunMultipleServers,
getLive,
2020-11-03 15:33:30 +01:00
getMyUserInformation,
2020-11-02 15:43:44 +01:00
getVideo,
getVideosList,
makeRawRequest,
removeVideo,
2020-11-04 14:16:57 +01:00
sendRTMPStream,
2020-11-02 15:43:44 +01:00
ServerInfo,
setAccessTokensToServers,
setDefaultVideoChannel,
2020-11-03 15:33:30 +01:00
testFfmpegStreamError,
2020-11-02 15:43:44 +01:00
testImage,
updateCustomSubConfig,
updateLive,
2020-11-03 15:33:30 +01:00
userLogin,
2020-11-02 15:43:44 +01:00
waitJobs
} from '../../../../shared/extra-utils'
const expect = chai.expect
describe('Test live', function () {
let servers: ServerInfo[] = []
2020-11-03 15:33:30 +01:00
let userId: number
let userAccessToken: string
let userChannelId: number
2020-11-02 15:43:44 +01:00
before(async function () {
this.timeout(120000)
servers = await flushAndRunMultipleServers(2)
// Get the access tokens
await setAccessTokensToServers(servers)
await setDefaultVideoChannel(servers)
await updateCustomSubConfig(servers[0].url, servers[0].accessToken, {
live: {
enabled: true,
2020-11-04 14:16:57 +01:00
allowReplay: true,
transcoding: {
enabled: false
}
2020-11-02 15:43:44 +01:00
}
})
2020-11-03 15:33:30 +01:00
{
const user = { username: 'user1', password: 'superpassword' }
const res = await createUser({
url: servers[0].url,
accessToken: servers[0].accessToken,
username: user.username,
password: user.password
})
userId = res.body.user.id
userAccessToken = await userLogin(servers[0], user)
const resMe = await getMyUserInformation(servers[0].url, userAccessToken)
userChannelId = (resMe.body as User).videoChannels[0].id
}
2020-11-02 15:43:44 +01:00
// Server 1 and server 2 follow each other
await doubleFollow(servers[0], servers[1])
})
describe('Live creation, update and delete', function () {
2020-11-04 14:16:57 +01:00
let liveVideoUUID: string
2020-11-02 15:43:44 +01: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'
}
const res = await createLive(servers[0].url, servers[0].accessToken, attributes)
liveVideoUUID = res.body.video.uuid
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)
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)
const resLive = await getLive(server.url, server.accessToken, liveVideoUUID)
const live: LiveVideo = resLive.body
if (server.url === servers[0].url) {
expect(live.rtmpUrl).to.equal('rtmp://' + server.hostname + ':1936/live')
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
}
const res = await createLive(servers[0].url, servers[0].accessToken, attributes)
const videoId = res.body.video.uuid
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, 200)
await makeRawRequest(server.url + video.previewPath, 200)
}
})
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 () {
await updateLive(servers[1].url, servers[1].accessToken, liveVideoUUID, { saveReplay: false }, 403)
})
it('Should update the live', async function () {
this.timeout(10000)
await updateLive(servers[0].url, servers[0].accessToken, liveVideoUUID, { saveReplay: false })
await waitJobs(servers)
})
it('Have the live updated', async function () {
for (const server of servers) {
const res = await getLive(server.url, server.accessToken, liveVideoUUID)
const live: LiveVideo = res.body
if (server.url === servers[0].url) {
expect(live.rtmpUrl).to.equal('rtmp://' + server.hostname + ':1936/live')
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, 404)
await getLive(server.url, server.accessToken, liveVideoUUID, 404)
}
})
})
2020-11-04 14:16:57 +01:00
describe('Stream checks', function () {
let liveVideo: LiveVideo & VideoDetails
let rtmpUrl: string
before(function () {
rtmpUrl = 'rtmp://' + servers[0].hostname + ':1936'
})
2020-11-02 15:43:44 +01:00
2020-11-04 14:16:57 +01:00
async function createLiveWrapper () {
2020-11-03 15:33:30 +01:00
const liveAttributes = {
name: 'user live',
channelId: userChannelId,
privacy: VideoPrivacy.PUBLIC,
2020-11-04 14:16:57 +01:00
saveReplay: false
2020-11-03 15:33:30 +01:00
}
const res = await createLive(servers[0].url, userAccessToken, liveAttributes)
2020-11-04 14:16:57 +01:00
const uuid = res.body.video.uuid
2020-11-03 15:33:30 +01:00
2020-11-04 14:16:57 +01:00
const resLive = await getLive(servers[0].url, servers[0].accessToken, uuid)
const resVideo = await getVideo(servers[0].url, uuid)
2020-11-03 15:33:30 +01:00
2020-11-04 14:16:57 +01:00
return Object.assign(resVideo.body, resLive.body) as LiveVideo & VideoDetails
}
2020-11-03 15:33:30 +01:00
2020-11-04 14:16:57 +01:00
it('Should not allow a stream without the appropriate path', async function () {
2020-11-03 15:33:30 +01:00
this.timeout(30000)
2020-11-04 14:16:57 +01:00
liveVideo = await createLiveWrapper()
2020-11-03 15:33:30 +01:00
2020-11-04 14:16:57 +01:00
const command = sendRTMPStream(rtmpUrl + '/bad-live', liveVideo.streamKey)
await testFfmpegStreamError(command, true)
2020-11-02 15:43:44 +01:00
})
2020-11-04 14:16:57 +01:00
it('Should not allow a stream without the appropriate stream key', async function () {
2020-11-03 15:33:30 +01:00
this.timeout(30000)
2020-11-04 14:16:57 +01:00
const command = sendRTMPStream(rtmpUrl + '/live', 'bad-stream-key')
await testFfmpegStreamError(command, true)
2020-11-03 15:33:30 +01:00
})
2020-11-04 14:16:57 +01:00
it('Should succeed with the correct params', async function () {
2020-11-03 15:33:30 +01:00
this.timeout(30000)
2020-11-04 14:16:57 +01:00
const command = sendRTMPStream(rtmpUrl + '/live', liveVideo.streamKey)
await testFfmpegStreamError(command, false)
2020-11-02 15:43:44 +01:00
})
2020-11-04 14:16:57 +01:00
it('Should not allow a stream on a live that was blacklisted', async function () {
2020-11-03 15:33:30 +01:00
this.timeout(30000)
2020-11-04 14:16:57 +01:00
liveVideo = await createLiveWrapper()
2020-11-02 15:43:44 +01:00
2020-11-04 14:16:57 +01:00
await addVideoToBlacklist(servers[0].url, servers[0].accessToken, liveVideo.uuid)
2020-11-02 15:43:44 +01:00
2020-11-04 14:16:57 +01:00
const command = sendRTMPStream(rtmpUrl + '/live', liveVideo.streamKey)
await testFfmpegStreamError(command, true)
2020-11-02 15:43:44 +01:00
})
2020-11-04 14:16:57 +01:00
it('Should not allow a stream on a live that was deleted', async function () {
this.timeout(30000)
2020-11-02 15:43:44 +01:00
2020-11-04 14:16:57 +01:00
liveVideo = await createLiveWrapper()
2020-11-02 15:43:44 +01:00
2020-11-04 14:16:57 +01:00
await removeVideo(servers[0].url, servers[0].accessToken, liveVideo.uuid)
2020-11-02 15:43:44 +01:00
2020-11-04 14:16:57 +01:00
const command = sendRTMPStream(rtmpUrl + '/live', liveVideo.streamKey)
await testFfmpegStreamError(command, true)
2020-11-02 15:43:44 +01:00
})
})
describe('Live transcoding', function () {
it('Should enable transcoding without additional resolutions', async function () {
// enable
// stream
// wait federation + test
})
it('Should enable transcoding with some resolutions', async function () {
// enable
// stream
// wait federation + test
})
it('Should enable transcoding with some resolutions and correctly save them', async function () {
// enable
// stream
// end stream
// wait federation + test
})
it('Should correctly have cleaned up the live files', async function () {
// check files
})
})
describe('Live socket messages', function () {
it('Should correctly send a message when the live starts', async function () {
// local
// federation
})
it('Should correctly send a message when the live ends', async function () {
// local
// federation
})
})
after(async function () {
await cleanupTests(servers)
})
})