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

126 lines
3.0 KiB
TypeScript
Raw Normal View History

2021-06-16 15:14:41 +02:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
import 'mocha'
import * as chai from 'chai'
import { FfmpegCommand } from 'fluent-ffmpeg'
2021-07-15 10:02:54 +02:00
import { VideoPrivacy } from '@shared/models'
2021-06-16 15:14:41 +02:00
import {
cleanupTests,
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,
2021-06-16 15:14:41 +02:00
setAccessTokensToServers,
setDefaultVideoChannel,
stopFfmpeg,
wait,
waitJobs,
waitUntilLivePublishedOnAllServers
} from '../../../../shared/extra-utils'
const expect = chai.expect
describe('Test live', function () {
2021-07-16 09:47:51 +02:00
let servers: PeerTubeServer[] = []
2021-06-16 15:14:41 +02:00
before(async function () {
this.timeout(120000)
2021-07-16 09:47:51 +02:00
servers = await createMultipleServers(2)
2021-06-16 15:14:41 +02: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
}
2021-06-16 15:14:41 +02:00
}
}
})
// Server 1 and server 2 follow each other
await doubleFollow(servers[0], servers[1])
})
describe('Live views', function () {
let liveVideoId: string
let command: FfmpegCommand
async function countViews (expected: number) {
for (const server of servers) {
2021-07-16 09:04:35 +02:00
const video = await server.videos.get({ id: liveVideoId })
2021-06-16 15:14:41 +02:00
expect(video.views).to.equal(expected)
}
}
before(async function () {
this.timeout(30000)
const liveAttributes = {
name: 'live video',
2021-07-16 09:04:35 +02:00
channelId: servers[0].store.channel.id,
2021-06-16 15:14:41 +02:00
privacy: VideoPrivacy.PUBLIC
}
2021-07-16 09:04:35 +02:00
const live = await servers[0].live.create({ fields: liveAttributes })
2021-07-08 10:18:40 +02:00
liveVideoId = live.uuid
2021-06-16 15:14:41 +02:00
2021-07-16 09:04:35 +02:00
command = await servers[0].live.sendRTMPStreamInVideo({ videoId: liveVideoId })
2021-06-16 15:14:41 +02:00
await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
await waitJobs(servers)
})
it('Should display no views for a live', async function () {
await countViews(0)
})
it('Should view a live twice and display 1 view', async function () {
this.timeout(30000)
2021-07-16 09:04:35 +02:00
await servers[0].videos.view({ id: liveVideoId })
await servers[0].videos.view({ id: liveVideoId })
2021-06-16 15:14:41 +02:00
await wait(7000)
await waitJobs(servers)
await countViews(1)
})
it('Should wait and display 0 views', async function () {
this.timeout(30000)
await wait(12000)
await waitJobs(servers)
await countViews(0)
})
it('Should view a live on a remote and on local and display 2 views', async function () {
this.timeout(30000)
2021-07-16 09:04:35 +02:00
await servers[0].videos.view({ id: liveVideoId })
await servers[1].videos.view({ id: liveVideoId })
await servers[1].videos.view({ id: liveVideoId })
2021-06-16 15:14:41 +02:00
await wait(7000)
await waitJobs(servers)
await countViews(2)
})
after(async function () {
await stopFfmpeg(command)
})
})
after(async function () {
await cleanupTests(servers)
})
})