Files
PeerTube/packages/tests/src/api/runners/runner-socket.ts
Chocobozzz 816f346a60 Separate HLS audio and video streams
Allows:
  * The HLS player to propose an "Audio only" resolution
  * The live to output an "Audio only" resolution
  * The live to ingest and output an "Audio only" stream

 This feature is under a config for VOD videos and is enabled by default for lives

 In the future we can imagine:
  * To propose multiple audio streams for a specific video
  * To ingest an audio only VOD and just output an audio only "video"
    (the player would play the audio file and PeerTube would not
    generate additional resolutions)

This commit introduce a new way to download videos:
 * Add "/download/videos/generate/:videoId" endpoint where PeerTube can
   mux an audio only and a video only file to a mp4 container
 * The download client modal introduces a new default panel where the
   user can choose resolutions it wants to download
2024-08-05 08:31:59 +02:00

121 lines
3.6 KiB
TypeScript

/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
import { expect } from 'chai'
import { wait } from '@peertube/peertube-core-utils'
import {
cleanupTests,
createSingleServer,
PeerTubeServer,
setAccessTokensToServers,
setDefaultVideoChannel,
waitJobs
} from '@peertube/peertube-server-commands'
describe('Test runner socket', function () {
let server: PeerTubeServer
let runnerToken: string
before(async function () {
this.timeout(120_000)
server = await createSingleServer(1)
await setAccessTokensToServers([ server ])
await setDefaultVideoChannel([ server ])
await server.config.enableTranscoding({ hls: false, webVideo: true })
await server.config.enableRemoteTranscoding()
runnerToken = await server.runners.autoRegisterRunner()
})
it('Should throw an error without runner token', function (done) {
const localSocket = server.socketIO.getRunnersSocket({ runnerToken: null })
localSocket.on('connect_error', err => {
expect(err.message).to.contain('No runner token provided')
done()
})
})
it('Should throw an error with a bad runner token', function (done) {
const localSocket = server.socketIO.getRunnersSocket({ runnerToken: 'ergag' })
localSocket.on('connect_error', err => {
expect(err.message).to.contain('Invalid runner token')
done()
})
})
it('Should not send ping if there is no available jobs', async function () {
let pings = 0
const localSocket = server.socketIO.getRunnersSocket({ runnerToken })
localSocket.on('available-jobs', () => pings++)
expect(pings).to.equal(0)
})
it('Should send a ping on available job', async function () {
let pings = 0
const localSocket = server.socketIO.getRunnersSocket({ runnerToken })
localSocket.on('available-jobs', () => pings++)
await server.videos.quickUpload({ name: 'video1' })
await waitJobs([ server ])
// eslint-disable-next-line no-unmodified-loop-condition
while (pings !== 1) {
await wait(500)
}
await server.videos.quickUpload({ name: 'video2' })
await waitJobs([ server ])
// eslint-disable-next-line no-unmodified-loop-condition
while ((pings as number) !== 2) {
await wait(500)
}
await server.runnerJobs.cancelAllJobs()
})
it('Should send a ping when a child is ready', async function () {
let pings = 0
const localSocket = server.socketIO.getRunnersSocket({ runnerToken })
localSocket.on('available-jobs', () => pings++)
await server.videos.quickUpload({ name: 'video3' })
await waitJobs([ server ])
// eslint-disable-next-line no-unmodified-loop-condition
while (pings !== 1) {
await wait(500)
}
await server.runnerJobs.autoProcessWebVideoJob(runnerToken)
await waitJobs([ server ])
// eslint-disable-next-line no-unmodified-loop-condition
while ((pings as number) !== 2) {
await wait(500)
}
})
it('Should not send a ping if the ended job does not have a child', async function () {
let pings = 0
const localSocket = server.socketIO.getRunnersSocket({ runnerToken })
localSocket.on('available-jobs', () => pings++)
const { availableJobs } = await server.runnerJobs.request({ runnerToken })
const job = availableJobs.find(j => j.type === 'vod-web-video-transcoding')
await server.runnerJobs.autoProcessWebVideoJob(runnerToken, job.uuid)
// Wait for debounce
await wait(1000)
await waitJobs([ server ])
expect(pings).to.equal(0)
})
after(async function () {
await cleanupTests([ server ])
})
})