PeerTube/server/tests/api/check-params/live.ts

453 lines
15 KiB
TypeScript
Raw Normal View History

2020-10-30 15:09:00 +01:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
import 'mocha'
import { omit } from 'lodash'
2021-07-08 10:18:40 +02:00
import { VideoCreateResult, VideoPrivacy } from '@shared/models'
2021-06-14 16:52:22 +02:00
import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
2020-10-30 15:09:00 +01:00
import {
2021-06-14 16:52:22 +02:00
buildAbsoluteFixturePath,
2020-10-30 15:09:00 +01:00
cleanupTests,
createUser,
flushAndRunServer,
getMyUserInformation,
immutableAssign,
2021-07-08 10:18:40 +02:00
LiveCommand,
2020-10-30 15:09:00 +01:00
makePostBodyRequest,
makeUploadRequest,
sendRTMPStream,
ServerInfo,
setAccessTokensToServers,
stopFfmpeg,
uploadVideoAndGetId,
2021-07-08 10:18:40 +02:00
userLogin
2020-10-30 15:09:00 +01:00
} from '../../../../shared/extra-utils'
describe('Test video lives API validator', function () {
const path = '/api/v1/videos/live'
let server: ServerInfo
let userAccessToken = ''
let channelId: number
let video: VideoCreateResult
2020-10-30 15:09:00 +01:00
let videoIdNotLive: number
2021-07-08 10:18:40 +02:00
let command: LiveCommand
2020-10-30 15:09:00 +01:00
// ---------------------------------------------------------------
before(async function () {
this.timeout(30000)
server = await flushAndRunServer(1)
await setAccessTokensToServers([ server ])
2021-07-07 11:51:09 +02:00
await server.configCommand.updateCustomSubConfig({
newConfig: {
live: {
enabled: true,
maxInstanceLives: 20,
maxUserLives: 20,
allowReplay: true
}
2020-10-30 15:09:00 +01:00
}
})
const username = 'user1'
const password = 'my super password'
await createUser({ url: server.url, accessToken: server.accessToken, username: username, password: password })
userAccessToken = await userLogin(server, { username, password })
{
const res = await getMyUserInformation(server.url, server.accessToken)
channelId = res.body.videoChannels[0].id
}
{
videoIdNotLive = (await uploadVideoAndGetId({ server, videoName: 'not live' })).id
}
2021-07-08 10:18:40 +02:00
command = server.liveCommand
2020-10-30 15:09:00 +01:00
})
describe('When creating a live', function () {
let baseCorrectParams
before(function () {
baseCorrectParams = {
name: 'my super name',
category: 5,
licence: 1,
language: 'pt',
nsfw: false,
commentsEnabled: true,
downloadEnabled: true,
waitTranscoding: true,
description: 'my super description',
support: 'my super support text',
tags: [ 'tag1', 'tag2' ],
privacy: VideoPrivacy.PUBLIC,
channelId,
2020-12-03 14:10:54 +01:00
saveReplay: false,
permanentLive: false
2020-10-30 15:09:00 +01:00
}
})
it('Should fail with nothing', async function () {
const fields = {}
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with a long name', async function () {
const fields = immutableAssign(baseCorrectParams, { name: 'super'.repeat(65) })
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with a bad category', async function () {
const fields = immutableAssign(baseCorrectParams, { category: 125 })
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with a bad licence', async function () {
const fields = immutableAssign(baseCorrectParams, { licence: 125 })
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with a bad language', async function () {
const fields = immutableAssign(baseCorrectParams, { language: 'a'.repeat(15) })
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with a long description', async function () {
const fields = immutableAssign(baseCorrectParams, { description: 'super'.repeat(2500) })
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with a long support text', async function () {
const fields = immutableAssign(baseCorrectParams, { support: 'super'.repeat(201) })
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail without a channel', async function () {
const fields = omit(baseCorrectParams, 'channelId')
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with a bad channel', async function () {
const fields = immutableAssign(baseCorrectParams, { channelId: 545454 })
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with another user channel', async function () {
const user = {
username: 'fake',
password: 'fake_password'
}
await createUser({ url: server.url, accessToken: server.accessToken, username: user.username, password: user.password })
const accessTokenUser = await userLogin(server, user)
const res = await getMyUserInformation(server.url, accessTokenUser)
const customChannelId = res.body.videoChannels[0].id
const fields = immutableAssign(baseCorrectParams, { channelId: customChannelId })
await makePostBodyRequest({ url: server.url, path, token: userAccessToken, fields })
})
it('Should fail with too many tags', async function () {
const fields = immutableAssign(baseCorrectParams, { tags: [ 'tag1', 'tag2', 'tag3', 'tag4', 'tag5', 'tag6' ] })
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with a tag length too low', async function () {
const fields = immutableAssign(baseCorrectParams, { tags: [ 'tag1', 't' ] })
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with a tag length too big', async function () {
const fields = immutableAssign(baseCorrectParams, { tags: [ 'tag1', 'my_super_tag_too_long_long_long_long_long_long' ] })
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with an incorrect thumbnail file', async function () {
const fields = baseCorrectParams
const attaches = {
2021-06-14 16:52:22 +02:00
thumbnailfile: buildAbsoluteFixturePath('video_short.mp4')
2020-10-30 15:09:00 +01:00
}
await makeUploadRequest({ url: server.url, path, token: server.accessToken, fields, attaches })
})
it('Should fail with a big thumbnail file', async function () {
const fields = baseCorrectParams
const attaches = {
2021-06-14 16:52:22 +02:00
thumbnailfile: buildAbsoluteFixturePath('preview-big.png')
2020-10-30 15:09:00 +01:00
}
await makeUploadRequest({ url: server.url, path, token: server.accessToken, fields, attaches })
})
it('Should fail with an incorrect preview file', async function () {
const fields = baseCorrectParams
const attaches = {
2021-06-14 16:52:22 +02:00
previewfile: buildAbsoluteFixturePath('video_short.mp4')
2020-10-30 15:09:00 +01:00
}
await makeUploadRequest({ url: server.url, path, token: server.accessToken, fields, attaches })
})
it('Should fail with a big preview file', async function () {
const fields = baseCorrectParams
const attaches = {
2021-06-14 16:52:22 +02:00
previewfile: buildAbsoluteFixturePath('preview-big.png')
2020-10-30 15:09:00 +01:00
}
await makeUploadRequest({ url: server.url, path, token: server.accessToken, fields, attaches })
})
2020-12-03 14:10:54 +01:00
it('Should fail with save replay and permanent live set to true', async function () {
const fields = immutableAssign(baseCorrectParams, { saveReplay: true, permanentLive: true })
await makePostBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
2020-10-30 15:09:00 +01:00
it('Should succeed with the correct parameters', async function () {
this.timeout(30000)
const res = await makePostBodyRequest({
url: server.url,
path,
token: server.accessToken,
fields: baseCorrectParams,
statusCodeExpected: HttpStatusCode.OK_200
2020-10-30 15:09:00 +01:00
})
video = res.body.video
2020-10-30 15:09:00 +01:00
})
it('Should forbid if live is disabled', async function () {
2021-07-07 11:51:09 +02:00
await server.configCommand.updateCustomSubConfig({
newConfig: {
live: {
enabled: false
}
2020-10-30 15:09:00 +01:00
}
})
await makePostBodyRequest({
url: server.url,
path,
token: server.accessToken,
fields: baseCorrectParams,
statusCodeExpected: HttpStatusCode.FORBIDDEN_403
2020-10-30 15:09:00 +01:00
})
})
it('Should forbid to save replay if not enabled by the admin', async function () {
const fields = immutableAssign(baseCorrectParams, { saveReplay: true })
2021-07-07 11:51:09 +02:00
await server.configCommand.updateCustomSubConfig({
newConfig: {
live: {
enabled: true,
allowReplay: false
}
2020-10-30 15:09:00 +01:00
}
})
await makePostBodyRequest({
url: server.url,
path,
token: server.accessToken,
fields,
statusCodeExpected: HttpStatusCode.FORBIDDEN_403
2020-10-30 15:09:00 +01:00
})
})
it('Should allow to save replay if enabled by the admin', async function () {
const fields = immutableAssign(baseCorrectParams, { saveReplay: true })
2021-07-07 11:51:09 +02:00
await server.configCommand.updateCustomSubConfig({
newConfig: {
live: {
enabled: true,
allowReplay: true
}
2020-10-30 15:09:00 +01:00
}
})
await makePostBodyRequest({
url: server.url,
path,
token: server.accessToken,
fields,
statusCodeExpected: HttpStatusCode.OK_200
2020-10-30 15:09:00 +01:00
})
})
it('Should not allow live if max instance lives is reached', async function () {
2021-07-07 11:51:09 +02:00
await server.configCommand.updateCustomSubConfig({
newConfig: {
live: {
enabled: true,
maxInstanceLives: 1
}
2020-10-30 15:09:00 +01:00
}
})
await makePostBodyRequest({
url: server.url,
path,
token: server.accessToken,
fields: baseCorrectParams,
statusCodeExpected: HttpStatusCode.FORBIDDEN_403
2020-10-30 15:09:00 +01:00
})
})
it('Should not allow live if max user lives is reached', async function () {
2021-07-07 11:51:09 +02:00
await server.configCommand.updateCustomSubConfig({
newConfig: {
live: {
enabled: true,
maxInstanceLives: 20,
maxUserLives: 1
}
2020-10-30 15:09:00 +01:00
}
})
await makePostBodyRequest({
url: server.url,
path,
token: server.accessToken,
fields: baseCorrectParams,
statusCodeExpected: HttpStatusCode.FORBIDDEN_403
2020-10-30 15:09:00 +01:00
})
})
})
describe('When getting live information', function () {
it('Should fail without access token', async function () {
2021-07-08 10:18:40 +02:00
await command.getLive({ token: '', videoId: video.id, expectedStatus: HttpStatusCode.UNAUTHORIZED_401 })
2020-10-30 15:09:00 +01:00
})
it('Should fail with a bad access token', async function () {
2021-07-08 10:18:40 +02:00
await command.getLive({ token: 'toto', videoId: video.id, expectedStatus: HttpStatusCode.UNAUTHORIZED_401 })
2020-10-30 15:09:00 +01:00
})
it('Should fail with access token of another user', async function () {
2021-07-08 10:18:40 +02:00
await command.getLive({ token: userAccessToken, videoId: video.id, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
2020-10-30 15:09:00 +01:00
})
it('Should fail with a bad video id', async function () {
2021-07-08 10:18:40 +02:00
await command.getLive({ videoId: 'toto', expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
2020-10-30 15:09:00 +01:00
})
it('Should fail with an unknown video id', async function () {
2021-07-08 10:18:40 +02:00
await command.getLive({ videoId: 454555, expectedStatus: HttpStatusCode.NOT_FOUND_404 })
2020-10-30 15:09:00 +01:00
})
it('Should fail with a non live video', async function () {
2021-07-08 10:18:40 +02:00
await command.getLive({ videoId: videoIdNotLive, expectedStatus: HttpStatusCode.NOT_FOUND_404 })
2020-10-30 15:09:00 +01:00
})
it('Should succeed with the correct params', async function () {
2021-07-08 10:18:40 +02:00
await command.getLive({ videoId: video.id })
await command.getLive({ videoId: video.uuid })
await command.getLive({ videoId: video.shortUUID })
2020-10-30 15:09:00 +01:00
})
})
describe('When updating live information', async function () {
it('Should fail without access token', async function () {
2021-07-08 10:18:40 +02:00
await command.updateLive({ token: '', videoId: video.id, fields: {}, expectedStatus: HttpStatusCode.UNAUTHORIZED_401 })
2020-10-30 15:09:00 +01:00
})
it('Should fail with a bad access token', async function () {
2021-07-08 10:18:40 +02:00
await command.updateLive({ token: 'toto', videoId: video.id, fields: {}, expectedStatus: HttpStatusCode.UNAUTHORIZED_401 })
2020-10-30 15:09:00 +01:00
})
it('Should fail with access token of another user', async function () {
2021-07-08 10:18:40 +02:00
await command.updateLive({ token: userAccessToken, videoId: video.id, fields: {}, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
2020-10-30 15:09:00 +01:00
})
it('Should fail with a bad video id', async function () {
2021-07-08 10:18:40 +02:00
await command.updateLive({ videoId: 'toto', fields: {}, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
2020-10-30 15:09:00 +01:00
})
it('Should fail with an unknown video id', async function () {
2021-07-08 10:18:40 +02:00
await command.updateLive({ videoId: 454555, fields: {}, expectedStatus: HttpStatusCode.NOT_FOUND_404 })
2020-10-30 15:09:00 +01:00
})
it('Should fail with a non live video', async function () {
2021-07-08 10:18:40 +02:00
await command.updateLive({ videoId: videoIdNotLive, fields: {}, expectedStatus: HttpStatusCode.NOT_FOUND_404 })
2020-10-30 15:09:00 +01:00
})
2020-12-03 14:10:54 +01:00
it('Should fail with save replay and permanent live set to true', async function () {
const fields = { saveReplay: true, permanentLive: true }
2021-07-08 10:18:40 +02:00
await command.updateLive({ videoId: video.id, fields, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
2020-12-03 14:10:54 +01:00
})
2020-10-30 15:09:00 +01:00
it('Should succeed with the correct params', async function () {
2021-07-08 10:18:40 +02:00
await command.updateLive({ videoId: video.id, fields: { saveReplay: false } })
await command.updateLive({ videoId: video.uuid, fields: { saveReplay: false } })
await command.updateLive({ videoId: video.shortUUID, fields: { saveReplay: false } })
2020-10-30 15:09:00 +01:00
})
it('Should fail to update replay status if replay is not allowed on the instance', async function () {
2021-07-07 11:51:09 +02:00
await server.configCommand.updateCustomSubConfig({
newConfig: {
live: {
enabled: true,
allowReplay: false
}
2020-10-30 15:09:00 +01:00
}
})
2021-07-08 10:18:40 +02:00
await command.updateLive({ videoId: video.id, fields: { saveReplay: true }, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
2020-10-30 15:09:00 +01:00
})
it('Should fail to update a live if it has already started', async function () {
2020-12-11 10:36:05 +01:00
this.timeout(40000)
2020-10-30 15:09:00 +01:00
2021-07-08 10:18:40 +02:00
const live = await command.getLive({ videoId: video.id })
2020-10-30 15:09:00 +01:00
2021-07-08 10:18:40 +02:00
const ffmpegCommand = sendRTMPStream(live.rtmpUrl, live.streamKey)
2020-10-30 15:09:00 +01:00
2021-07-08 10:18:40 +02:00
await command.waitUntilLivePublished({ videoId: video.id })
await command.updateLive({ videoId: video.id, fields: {}, expectedStatus: HttpStatusCode.BAD_REQUEST_400 })
2020-10-30 15:09:00 +01:00
2021-07-08 10:18:40 +02:00
await stopFfmpeg(ffmpegCommand)
2020-10-30 15:09:00 +01:00
})
2020-11-03 15:33:30 +01:00
it('Should fail to stream twice in the save live', async function () {
2020-12-11 10:36:05 +01:00
this.timeout(40000)
2020-11-03 15:33:30 +01:00
2021-07-08 10:18:40 +02:00
const live = await command.getLive({ videoId: video.id })
2020-11-03 15:33:30 +01:00
2021-07-08 10:18:40 +02:00
const ffmpegCommand = sendRTMPStream(live.rtmpUrl, live.streamKey)
2020-11-03 15:33:30 +01:00
2021-07-08 10:18:40 +02:00
await command.waitUntilLivePublished({ videoId: video.id })
2020-11-03 15:33:30 +01:00
2021-07-08 10:18:40 +02:00
await command.runAndTestFfmpegStreamError({ videoId: video.id, shouldHaveError: true })
2020-11-03 15:33:30 +01:00
2021-07-08 10:18:40 +02:00
await stopFfmpeg(ffmpegCommand)
2020-11-03 15:33:30 +01:00
})
2020-10-30 15:09:00 +01:00
})
after(async function () {
await cleanupTests([ server ])
})
})