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

178 lines
5.1 KiB
TypeScript
Raw Normal View History

2020-11-04 14:16:57 +01:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
import 'mocha'
import * as chai from 'chai'
import { wait } from '@shared/core-utils'
2021-07-15 10:02:54 +02:00
import { VideoPrivacy } from '@shared/models'
2020-11-04 14:16:57 +01:00
import {
cleanupTests,
2021-07-07 11:51:09 +02:00
ConfigCommand,
2021-07-16 09:47:51 +02:00
createMultipleServers,
2021-07-16 14:27:30 +02:00
doubleFollow,
2021-07-16 09:47:51 +02:00
PeerTubeServer,
2020-11-04 14:16:57 +01:00
setAccessTokensToServers,
setDefaultVideoChannel,
2021-07-08 10:18:40 +02:00
waitJobs
} from '@shared/server-commands'
import { checkLiveCleanupAfterSave } from '../../shared'
2020-11-04 14:16:57 +01:00
const expect = chai.expect
describe('Test live constraints', function () {
2021-07-16 09:47:51 +02:00
let servers: PeerTubeServer[] = []
2020-11-04 14:16:57 +01:00
let userId: number
let userAccessToken: string
let userChannelId: number
async function createLiveWrapper (saveReplay: boolean) {
const liveAttributes = {
name: 'user live',
channelId: userChannelId,
privacy: VideoPrivacy.PUBLIC,
saveReplay
}
2021-07-16 09:04:35 +02:00
const { uuid } = await servers[0].live.create({ token: userAccessToken, fields: liveAttributes })
2021-07-08 10:18:40 +02:00
return uuid
2020-11-04 14:16:57 +01:00
}
async function checkSaveReplay (videoId: string, resolutions = [ 720 ]) {
for (const server of servers) {
2021-07-16 09:04:35 +02:00
const video = await server.videos.get({ id: videoId })
2020-11-04 14:16:57 +01:00
expect(video.isLive).to.be.false
expect(video.duration).to.be.greaterThan(0)
}
2021-07-23 11:20:00 +02:00
await checkLiveCleanupAfterSave(servers[0], videoId, resolutions)
2020-11-04 14:16:57 +01:00
}
2021-02-19 11:23:51 +01:00
async function waitUntilLivePublishedOnAllServers (videoId: string) {
for (const server of servers) {
2021-07-16 09:04:35 +02:00
await server.live.waitUntilPublished({ videoId })
2021-02-19 11:23:51 +01:00
}
}
2021-05-07 11:53:46 +02:00
function updateQuota (options: { total: number, daily: number }) {
2021-07-16 09:04:35 +02:00
return servers[0].users.update({
2021-05-07 11:53:46 +02:00
userId,
videoQuota: options.total,
videoQuotaDaily: options.daily
})
}
2020-11-04 14:16:57 +01:00
before(async function () {
this.timeout(120000)
2021-07-16 09:47:51 +02:00
servers = await createMultipleServers(2)
2020-11-04 14:16:57 +01:00
// Get the access tokens
await setAccessTokensToServers(servers)
await setDefaultVideoChannel(servers)
2021-07-16 09:04:35 +02:00
await servers[0].config.updateCustomSubConfig({
2021-07-07 11:51:09 +02:00
newConfig: {
live: {
enabled: true,
allowReplay: true,
transcoding: {
enabled: false
}
2020-11-04 14:16:57 +01:00
}
}
})
{
2021-07-16 09:04:35 +02:00
const res = await servers[0].users.generate('user1')
2021-05-07 11:53:46 +02:00
userId = res.userId
userChannelId = res.userChannelId
userAccessToken = res.token
await updateQuota({ total: 1, daily: -1 })
2020-11-04 14:16:57 +01:00
}
// Server 1 and server 2 follow each other
await doubleFollow(servers[0], servers[1])
})
it('Should not have size limit if save replay is disabled', async function () {
this.timeout(60000)
const userVideoLiveoId = await createLiveWrapper(false)
2021-07-16 09:04:35 +02:00
await servers[0].live.runAndTestStreamError({ token: userAccessToken, videoId: userVideoLiveoId, shouldHaveError: false })
2020-11-04 14:16:57 +01:00
})
it('Should have size limit depending on user global quota if save replay is enabled', async function () {
this.timeout(60000)
// Wait for user quota memoize cache invalidation
await wait(5000)
const userVideoLiveoId = await createLiveWrapper(true)
2021-07-16 09:04:35 +02:00
await servers[0].live.runAndTestStreamError({ token: userAccessToken, videoId: userVideoLiveoId, shouldHaveError: true })
2020-11-04 14:16:57 +01:00
2021-02-19 11:23:51 +01:00
await waitUntilLivePublishedOnAllServers(userVideoLiveoId)
2020-11-04 14:16:57 +01:00
await waitJobs(servers)
await checkSaveReplay(userVideoLiveoId)
})
it('Should have size limit depending on user daily quota if save replay is enabled', async function () {
this.timeout(60000)
// Wait for user quota memoize cache invalidation
await wait(5000)
2021-05-07 11:53:46 +02:00
await updateQuota({ total: -1, daily: 1 })
2020-11-04 14:16:57 +01:00
const userVideoLiveoId = await createLiveWrapper(true)
2021-07-16 09:04:35 +02:00
await servers[0].live.runAndTestStreamError({ token: userAccessToken, videoId: userVideoLiveoId, shouldHaveError: true })
2020-11-04 14:16:57 +01:00
2021-02-19 11:23:51 +01:00
await waitUntilLivePublishedOnAllServers(userVideoLiveoId)
2020-11-04 14:16:57 +01:00
await waitJobs(servers)
await checkSaveReplay(userVideoLiveoId)
})
it('Should succeed without quota limit', async function () {
this.timeout(60000)
// Wait for user quota memoize cache invalidation
await wait(5000)
2021-05-07 11:53:46 +02:00
await updateQuota({ total: 10 * 1000 * 1000, daily: -1 })
2020-11-04 14:16:57 +01:00
const userVideoLiveoId = await createLiveWrapper(true)
2021-07-16 09:04:35 +02:00
await servers[0].live.runAndTestStreamError({ token: userAccessToken, videoId: userVideoLiveoId, shouldHaveError: false })
2020-11-04 14:16:57 +01:00
})
it('Should have max duration limit', async function () {
2020-12-02 16:58:45 +01:00
this.timeout(60000)
2020-11-04 14:16:57 +01:00
2021-07-16 09:04:35 +02:00
await servers[0].config.updateCustomSubConfig({
2021-07-07 11:51:09 +02:00
newConfig: {
live: {
2020-11-04 14:16:57 +01:00
enabled: true,
2021-07-07 11:51:09 +02:00
allowReplay: true,
maxDuration: 1,
transcoding: {
enabled: true,
resolutions: ConfigCommand.getCustomConfigResolutions(true)
}
2020-11-04 14:16:57 +01:00
}
}
})
const userVideoLiveoId = await createLiveWrapper(true)
2021-07-16 09:04:35 +02:00
await servers[0].live.runAndTestStreamError({ token: userAccessToken, videoId: userVideoLiveoId, shouldHaveError: true })
2020-11-04 14:16:57 +01:00
2021-02-19 11:23:51 +01:00
await waitUntilLivePublishedOnAllServers(userVideoLiveoId)
2020-11-04 14:16:57 +01:00
await waitJobs(servers)
await checkSaveReplay(userVideoLiveoId, [ 720, 480, 360, 240, 144 ])
2020-11-04 14:16:57 +01:00
})
after(async function () {
await cleanupTests(servers)
})
})