Fix transcription tests

This commit is contained in:
Chocobozzz 2024-07-03 16:14:54 +02:00
parent af11f812ac
commit efa58350eb
No known key found for this signature in database
GPG Key ID: 583A612D890159BE

View File

@ -14,6 +14,7 @@ import {
} from '@peertube/peertube-server-commands' } from '@peertube/peertube-server-commands'
import { FIXTURE_URLS } from '@tests/shared/fixture-urls.js' import { FIXTURE_URLS } from '@tests/shared/fixture-urls.js'
import { checkAutoCaption, checkLanguage, checkNoCaption, uploadForTranscription } from '@tests/shared/transcription.js' import { checkAutoCaption, checkLanguage, checkNoCaption, uploadForTranscription } from '@tests/shared/transcription.js'
import { join } from 'path'
describe('Test video transcription', function () { describe('Test video transcription', function () {
let servers: PeerTubeServer[] let servers: PeerTubeServer[]
@ -89,14 +90,18 @@ describe('Test video transcription', function () {
privacy: VideoPrivacy.PUBLIC privacy: VideoPrivacy.PUBLIC
}) })
const ffmpegCommand = sendRTMPStream({ rtmpBaseUrl: live.rtmpUrl, streamKey: live.streamKey }) const ffmpegCommand = sendRTMPStream({
rtmpBaseUrl: live.rtmpUrl,
streamKey: live.streamKey,
fixtureName: join('transcription', 'videos', 'the_last_man_on_earth.mp4')
})
await servers[0].live.waitUntilPublished({ videoId: video.id }) await servers[0].live.waitUntilPublished({ videoId: video.id })
await stopFfmpeg(ffmpegCommand) await stopFfmpeg(ffmpegCommand)
await servers[0].live.waitUntilReplacedByReplay({ videoId: video.id }) await servers[0].live.waitUntilReplacedByReplay({ videoId: video.id })
await waitJobs(servers) await waitJobs(servers)
await checkAutoCaption(servers, video.uuid, 'WEBVTT\n\n00:') await checkAutoCaption(servers, video.uuid, new RegExp('^WEBVTT\\n\\n00:\\d{2}.\\d{3} --> 00:'))
await checkLanguage(servers, video.uuid, 'en') await checkLanguage(servers, video.uuid, 'en')
await servers[0].config.enableLive({ allowReplay: false }) await servers[0].config.enableLive({ allowReplay: false })