2021-06-16 09:14:41 -04: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 04:02:54 -04:00
|
|
|
import { VideoPrivacy } from '@shared/models'
|
2021-06-16 09:14:41 -04:00
|
|
|
import {
|
|
|
|
cleanupTests,
|
|
|
|
doubleFollow,
|
|
|
|
flushAndRunMultipleServers,
|
|
|
|
ServerInfo,
|
|
|
|
setAccessTokensToServers,
|
|
|
|
setDefaultVideoChannel,
|
|
|
|
stopFfmpeg,
|
|
|
|
wait,
|
|
|
|
waitJobs,
|
|
|
|
waitUntilLivePublishedOnAllServers
|
|
|
|
} from '../../../../shared/extra-utils'
|
|
|
|
|
|
|
|
const expect = chai.expect
|
|
|
|
|
|
|
|
describe('Test live', function () {
|
|
|
|
let servers: ServerInfo[] = []
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(120000)
|
|
|
|
|
|
|
|
servers = await flushAndRunMultipleServers(2)
|
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|
2021-06-16 09:14:41 -04: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 03:04:35 -04:00
|
|
|
const video = await server.videos.get({ id: liveVideoId })
|
2021-06-16 09:14:41 -04:00
|
|
|
expect(video.views).to.equal(expected)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(30000)
|
|
|
|
|
|
|
|
const liveAttributes = {
|
|
|
|
name: 'live video',
|
2021-07-16 03:04:35 -04:00
|
|
|
channelId: servers[0].store.channel.id,
|
2021-06-16 09:14:41 -04:00
|
|
|
privacy: VideoPrivacy.PUBLIC
|
|
|
|
}
|
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const live = await servers[0].live.create({ fields: liveAttributes })
|
2021-07-08 04:18:40 -04:00
|
|
|
liveVideoId = live.uuid
|
2021-06-16 09:14:41 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
command = await servers[0].live.sendRTMPStreamInVideo({ videoId: liveVideoId })
|
2021-06-16 09:14:41 -04: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 03:04:35 -04:00
|
|
|
await servers[0].videos.view({ id: liveVideoId })
|
|
|
|
await servers[0].videos.view({ id: liveVideoId })
|
2021-06-16 09:14:41 -04: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 03:04:35 -04: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 09:14:41 -04:00
|
|
|
|
|
|
|
await wait(7000)
|
|
|
|
await waitJobs(servers)
|
|
|
|
|
|
|
|
await countViews(2)
|
|
|
|
})
|
|
|
|
|
|
|
|
after(async function () {
|
|
|
|
await stopFfmpeg(command)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
after(async function () {
|
|
|
|
await cleanupTests(servers)
|
|
|
|
})
|
|
|
|
})
|