2020-11-04 08:16:57 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
|
|
|
|
|
|
|
import 'mocha'
|
|
|
|
import * as chai from 'chai'
|
2021-07-15 04:02:54 -04:00
|
|
|
import { VideoPrivacy } from '@shared/models'
|
2020-11-04 08:16:57 -05:00
|
|
|
import {
|
2021-07-23 05:20:00 -04:00
|
|
|
checkLiveCleanupAfterSave,
|
2020-11-04 08:16:57 -05:00
|
|
|
cleanupTests,
|
2021-07-07 05:51:09 -04:00
|
|
|
ConfigCommand,
|
2021-07-16 03:47:51 -04:00
|
|
|
createMultipleServers,
|
2021-07-16 08:27:30 -04:00
|
|
|
doubleFollow,
|
2021-07-16 03:47:51 -04:00
|
|
|
PeerTubeServer,
|
2020-11-04 08:16:57 -05:00
|
|
|
setAccessTokensToServers,
|
|
|
|
setDefaultVideoChannel,
|
|
|
|
wait,
|
2021-07-08 04:18:40 -04:00
|
|
|
waitJobs
|
2020-11-04 08:16:57 -05:00
|
|
|
} from '../../../../shared/extra-utils'
|
|
|
|
|
|
|
|
const expect = chai.expect
|
|
|
|
|
|
|
|
describe('Test live constraints', function () {
|
2021-07-16 03:47:51 -04:00
|
|
|
let servers: PeerTubeServer[] = []
|
2020-11-04 08:16:57 -05: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 03:04:35 -04:00
|
|
|
const { uuid } = await servers[0].live.create({ token: userAccessToken, fields: liveAttributes })
|
2021-07-08 04:18:40 -04:00
|
|
|
return uuid
|
2020-11-04 08:16:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
async function checkSaveReplay (videoId: string, resolutions = [ 720 ]) {
|
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
const video = await server.videos.get({ id: videoId })
|
2020-11-04 08:16:57 -05:00
|
|
|
expect(video.isLive).to.be.false
|
|
|
|
expect(video.duration).to.be.greaterThan(0)
|
|
|
|
}
|
|
|
|
|
2021-07-23 05:20:00 -04:00
|
|
|
await checkLiveCleanupAfterSave(servers[0], videoId, resolutions)
|
2020-11-04 08:16:57 -05:00
|
|
|
}
|
|
|
|
|
2021-02-19 05:23:51 -05:00
|
|
|
async function waitUntilLivePublishedOnAllServers (videoId: string) {
|
|
|
|
for (const server of servers) {
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.live.waitUntilPublished({ videoId })
|
2021-02-19 05:23:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-07 05:53:46 -04:00
|
|
|
function updateQuota (options: { total: number, daily: number }) {
|
2021-07-16 03:04:35 -04:00
|
|
|
return servers[0].users.update({
|
2021-05-07 05:53:46 -04:00
|
|
|
userId,
|
|
|
|
videoQuota: options.total,
|
|
|
|
videoQuotaDaily: options.daily
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-11-04 08:16:57 -05:00
|
|
|
before(async function () {
|
|
|
|
this.timeout(120000)
|
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
servers = await createMultipleServers(2)
|
2020-11-04 08:16:57 -05:00
|
|
|
|
|
|
|
// Get the access tokens
|
|
|
|
await setAccessTokensToServers(servers)
|
|
|
|
await setDefaultVideoChannel(servers)
|
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].config.updateCustomSubConfig({
|
2021-07-07 05:51:09 -04:00
|
|
|
newConfig: {
|
|
|
|
live: {
|
|
|
|
enabled: true,
|
|
|
|
allowReplay: true,
|
|
|
|
transcoding: {
|
|
|
|
enabled: false
|
|
|
|
}
|
2020-11-04 08:16:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
{
|
2021-07-16 03:04:35 -04:00
|
|
|
const res = await servers[0].users.generate('user1')
|
2021-05-07 05:53:46 -04:00
|
|
|
userId = res.userId
|
|
|
|
userChannelId = res.userChannelId
|
|
|
|
userAccessToken = res.token
|
|
|
|
|
|
|
|
await updateQuota({ total: 1, daily: -1 })
|
2020-11-04 08:16:57 -05: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 03:04:35 -04:00
|
|
|
await servers[0].live.runAndTestStreamError({ token: userAccessToken, videoId: userVideoLiveoId, shouldHaveError: false })
|
2020-11-04 08:16:57 -05: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 03:04:35 -04:00
|
|
|
await servers[0].live.runAndTestStreamError({ token: userAccessToken, videoId: userVideoLiveoId, shouldHaveError: true })
|
2020-11-04 08:16:57 -05:00
|
|
|
|
2021-02-19 05:23:51 -05:00
|
|
|
await waitUntilLivePublishedOnAllServers(userVideoLiveoId)
|
2020-11-04 08:16:57 -05: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 05:53:46 -04:00
|
|
|
await updateQuota({ total: -1, daily: 1 })
|
2020-11-04 08:16:57 -05:00
|
|
|
|
|
|
|
const userVideoLiveoId = await createLiveWrapper(true)
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].live.runAndTestStreamError({ token: userAccessToken, videoId: userVideoLiveoId, shouldHaveError: true })
|
2020-11-04 08:16:57 -05:00
|
|
|
|
2021-02-19 05:23:51 -05:00
|
|
|
await waitUntilLivePublishedOnAllServers(userVideoLiveoId)
|
2020-11-04 08:16:57 -05: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 05:53:46 -04:00
|
|
|
await updateQuota({ total: 10 * 1000 * 1000, daily: -1 })
|
2020-11-04 08:16:57 -05:00
|
|
|
|
|
|
|
const userVideoLiveoId = await createLiveWrapper(true)
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].live.runAndTestStreamError({ token: userAccessToken, videoId: userVideoLiveoId, shouldHaveError: false })
|
2020-11-04 08:16:57 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should have max duration limit', async function () {
|
2020-12-02 10:58:45 -05:00
|
|
|
this.timeout(60000)
|
2020-11-04 08:16:57 -05:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].config.updateCustomSubConfig({
|
2021-07-07 05:51:09 -04:00
|
|
|
newConfig: {
|
|
|
|
live: {
|
2020-11-04 08:16:57 -05:00
|
|
|
enabled: true,
|
2021-07-07 05:51:09 -04:00
|
|
|
allowReplay: true,
|
|
|
|
maxDuration: 1,
|
|
|
|
transcoding: {
|
|
|
|
enabled: true,
|
|
|
|
resolutions: ConfigCommand.getCustomConfigResolutions(true)
|
|
|
|
}
|
2020-11-04 08:16:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
const userVideoLiveoId = await createLiveWrapper(true)
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].live.runAndTestStreamError({ token: userAccessToken, videoId: userVideoLiveoId, shouldHaveError: true })
|
2020-11-04 08:16:57 -05:00
|
|
|
|
2021-02-19 05:23:51 -05:00
|
|
|
await waitUntilLivePublishedOnAllServers(userVideoLiveoId)
|
2020-11-04 08:16:57 -05:00
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
await checkSaveReplay(userVideoLiveoId, [ 720, 480, 360, 240 ])
|
|
|
|
})
|
|
|
|
|
|
|
|
after(async function () {
|
|
|
|
await cleanupTests(servers)
|
|
|
|
})
|
|
|
|
})
|