1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-06 03:50:26 +02:00

Merge branch 'release/5.0.0' into develop

This commit is contained in:
Chocobozzz 2023-01-27 08:34:16 +01:00
commit a2be43f570
No known key found for this signature in database
GPG key ID: 583A612D890159BE
7 changed files with 99 additions and 18 deletions

View file

@ -1,7 +1,7 @@
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
import { expect } from 'chai'
import { expectStartWith, testVideoResolutions } from '@server/tests/shared'
import { expectStartWith, MockObjectStorageProxy, testVideoResolutions } from '@server/tests/shared'
import { areMockObjectStorageTestsDisabled } from '@shared/core-utils'
import { HttpStatusCode, LiveVideoCreate, VideoPrivacy } from '@shared/models'
import {
@ -93,7 +93,7 @@ describe('Object storage for lives', function () {
await servers[0].config.enableTranscoding()
})
describe('Without live transcoding', async function () {
describe('Without live transcoding', function () {
let videoUUID: string
before(async function () {
@ -134,7 +134,7 @@ describe('Object storage for lives', function () {
})
})
describe('With live transcoding', async function () {
describe('With live transcoding', function () {
const resolutions = [ 720, 480, 360, 240, 144 ]
before(async function () {
@ -223,6 +223,62 @@ describe('Object storage for lives', function () {
})
})
describe('With object storage base url', function () {
const mockObjectStorageProxy = new MockObjectStorageProxy()
let baseMockUrl: string
before(async function () {
this.timeout(120000)
const port = await mockObjectStorageProxy.initialize()
baseMockUrl = `http://127.0.0.1:${port}/streaming-playlists`
await ObjectStorageCommand.createMockBucket('streaming-playlists')
const config = {
object_storage: {
enabled: true,
endpoint: 'http://' + ObjectStorageCommand.getMockEndpointHost(),
region: ObjectStorageCommand.getMockRegion(),
credentials: ObjectStorageCommand.getMockCredentialsConfig(),
streaming_playlists: {
bucket_name: 'streaming-playlists',
prefix: '',
base_url: baseMockUrl
}
}
}
await servers[0].kill()
await servers[0].run(config)
await servers[0].config.enableLive({ transcoding: true, resolutions: 'min' })
})
it('Should publish a live and replace the base url', async function () {
this.timeout(240000)
const videoUUIDPermanent = await createLive(servers[0], true)
const ffmpegCommand = await servers[0].live.sendRTMPStreamInVideo({ videoId: videoUUIDPermanent })
await waitUntilLivePublishedOnAllServers(servers, videoUUIDPermanent)
await testVideoResolutions({
originServer: servers[0],
servers,
liveVideoId: videoUUIDPermanent,
resolutions: [ 720 ],
transcoded: true,
objectStorage: true,
objectStorageBaseUrl: baseMockUrl
})
await stopFfmpeg(ffmpegCommand)
})
})
after(async function () {
await killallServers(servers)
})

View file

@ -9,7 +9,7 @@ import {
expectLogDoesNotContain,
expectStartWith,
generateHighBitrateVideo,
MockObjectStorage
MockObjectStorageProxy
} from '@server/tests/shared'
import { areMockObjectStorageTestsDisabled } from '@shared/core-utils'
import { HttpStatusCode, VideoDetails } from '@shared/models'
@ -124,7 +124,7 @@ function runTestSuite (options: {
useMockBaseUrl?: boolean
}) {
const mockObjectStorage = new MockObjectStorage()
const mockObjectStorageProxy = new MockObjectStorageProxy()
const { fixture } = options
let baseMockUrl: string
@ -138,8 +138,10 @@ function runTestSuite (options: {
before(async function () {
this.timeout(120000)
const port = await mockObjectStorage.initialize()
baseMockUrl = options.useMockBaseUrl ? `http://127.0.0.1:${port}` : undefined
const port = await mockObjectStorageProxy.initialize()
baseMockUrl = options.useMockBaseUrl
? `http://127.0.0.1:${port}`
: undefined
await ObjectStorageCommand.createMockBucket(options.playlistBucket)
await ObjectStorageCommand.createMockBucket(options.webtorrentBucket)
@ -254,7 +256,7 @@ function runTestSuite (options: {
})
after(async function () {
await mockObjectStorage.terminate()
await mockObjectStorageProxy.terminate()
await cleanupTests(servers)
})