1
0
Fork 0
peertube/server/tests/api/live/live-permanent.ts

172 lines
4.5 KiB
TypeScript
Raw Normal View History

2020-12-03 13:10:54 +00:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
import 'mocha'
import * as chai from 'chai'
2021-07-15 08:02:54 +00:00
import { LiveVideoCreate, VideoPrivacy, VideoState } from '@shared/models'
2020-12-03 13:10:54 +00:00
import {
cleanupTests,
2021-07-07 09:51:09 +00:00
ConfigCommand,
2021-07-16 07:47:51 +00:00
createMultipleServers,
2021-07-16 12:27:30 +00:00
doubleFollow,
2021-07-16 07:47:51 +00:00
PeerTubeServer,
2020-12-03 13:10:54 +00:00
setAccessTokensToServers,
setDefaultVideoChannel,
stopFfmpeg,
wait,
2021-07-08 08:18:40 +00:00
waitJobs
2020-12-03 13:10:54 +00:00
} from '../../../../shared/extra-utils'
const expect = chai.expect
2021-06-11 14:02:26 +00:00
describe('Permanent live', function () {
2021-07-16 07:47:51 +00:00
let servers: PeerTubeServer[] = []
2020-12-03 13:10:54 +00:00
let videoUUID: string
async function createLiveWrapper (permanentLive: boolean) {
const attributes: LiveVideoCreate = {
2021-07-16 07:04:35 +00:00
channelId: servers[0].store.channel.id,
2020-12-03 13:10:54 +00:00
privacy: VideoPrivacy.PUBLIC,
name: 'my super live',
saveReplay: false,
permanentLive
}
2021-07-16 07:04:35 +00:00
const { uuid } = await servers[0].live.create({ fields: attributes })
2021-07-08 08:18:40 +00:00
return uuid
2020-12-03 13:10:54 +00:00
}
async function checkVideoState (videoId: string, state: VideoState) {
for (const server of servers) {
2021-07-16 07:04:35 +00:00
const video = await server.videos.get({ id: videoId })
2021-07-15 08:02:54 +00:00
expect(video.state.id).to.equal(state)
2020-12-03 13:10:54 +00:00
}
}
before(async function () {
this.timeout(120000)
2021-07-16 07:47:51 +00:00
servers = await createMultipleServers(2)
2020-12-03 13:10:54 +00:00
// Get the access tokens
await setAccessTokensToServers(servers)
await setDefaultVideoChannel(servers)
// Server 1 and server 2 follow each other
await doubleFollow(servers[0], servers[1])
2021-07-16 07:04:35 +00:00
await servers[0].config.updateCustomSubConfig({
2021-07-07 09:51:09 +00:00
newConfig: {
live: {
2020-12-03 13:10:54 +00:00
enabled: true,
2021-07-07 09:51:09 +00:00
allowReplay: true,
maxDuration: -1,
transcoding: {
enabled: true,
resolutions: ConfigCommand.getCustomConfigResolutions(true)
}
2020-12-03 13:10:54 +00:00
}
}
})
})
it('Should create a non permanent live and update it to be a permanent live', async function () {
this.timeout(20000)
const videoUUID = await createLiveWrapper(false)
{
2021-07-16 07:04:35 +00:00
const live = await servers[0].live.get({ videoId: videoUUID })
2021-07-08 08:18:40 +00:00
expect(live.permanentLive).to.be.false
2020-12-03 13:10:54 +00:00
}
2021-07-16 07:04:35 +00:00
await servers[0].live.update({ videoId: videoUUID, fields: { permanentLive: true } })
2020-12-03 13:10:54 +00:00
{
2021-07-16 07:04:35 +00:00
const live = await servers[0].live.get({ videoId: videoUUID })
2021-07-08 08:18:40 +00:00
expect(live.permanentLive).to.be.true
2020-12-03 13:10:54 +00:00
}
})
it('Should create a permanent live', async function () {
this.timeout(20000)
videoUUID = await createLiveWrapper(true)
2021-07-16 07:04:35 +00:00
const live = await servers[0].live.get({ videoId: videoUUID })
2021-07-08 08:18:40 +00:00
expect(live.permanentLive).to.be.true
2020-12-03 13:10:54 +00:00
await waitJobs(servers)
})
it('Should stream into this permanent live', async function () {
2021-06-08 16:15:25 +00:00
this.timeout(120000)
2020-12-03 13:10:54 +00:00
2021-07-16 07:04:35 +00:00
const ffmpegCommand = await servers[0].live.sendRTMPStreamInVideo({ videoId: videoUUID })
2020-12-03 13:10:54 +00:00
for (const server of servers) {
2021-07-16 07:04:35 +00:00
await server.live.waitUntilPublished({ videoId: videoUUID })
2020-12-03 13:10:54 +00:00
}
await checkVideoState(videoUUID, VideoState.PUBLISHED)
2021-07-08 08:18:40 +00:00
await stopFfmpeg(ffmpegCommand)
2021-07-16 07:04:35 +00:00
await servers[0].live.waitUntilWaiting({ videoId: videoUUID })
2020-12-03 13:10:54 +00:00
await waitJobs(servers)
})
it('Should not have cleaned up this live', async function () {
this.timeout(40000)
await wait(5000)
await waitJobs(servers)
for (const server of servers) {
2021-07-16 07:04:35 +00:00
const videoDetails = await server.videos.get({ id: videoUUID })
2020-12-03 13:10:54 +00:00
expect(videoDetails.streamingPlaylists).to.have.lengthOf(1)
}
})
it('Should have set this live to waiting for live state', async function () {
this.timeout(20000)
await checkVideoState(videoUUID, VideoState.WAITING_FOR_LIVE)
})
it('Should be able to stream again in the permanent live', async function () {
this.timeout(20000)
2021-07-16 07:04:35 +00:00
await servers[0].config.updateCustomSubConfig({
2021-07-07 09:51:09 +00:00
newConfig: {
live: {
2020-12-03 13:10:54 +00:00
enabled: true,
2021-07-07 09:51:09 +00:00
allowReplay: true,
maxDuration: -1,
transcoding: {
enabled: true,
resolutions: ConfigCommand.getCustomConfigResolutions(false)
}
2020-12-03 13:10:54 +00:00
}
}
})
2021-07-16 07:04:35 +00:00
const ffmpegCommand = await servers[0].live.sendRTMPStreamInVideo({ videoId: videoUUID })
2020-12-03 13:10:54 +00:00
for (const server of servers) {
2021-07-16 07:04:35 +00:00
await server.live.waitUntilPublished({ videoId: videoUUID })
2020-12-03 13:10:54 +00:00
}
await checkVideoState(videoUUID, VideoState.PUBLISHED)
2021-07-16 07:04:35 +00:00
const count = await servers[0].live.countPlaylists({ videoUUID })
2020-12-03 13:10:54 +00:00
// master playlist and 720p playlist
expect(count).to.equal(2)
2021-07-08 08:18:40 +00:00
await stopFfmpeg(ffmpegCommand)
2020-12-03 13:10:54 +00:00
})
after(async function () {
await cleanupTests(servers)
})
})