Don't replace caption on transcription

This commit is contained in:
Chocobozzz
2024-07-12 16:20:26 +02:00
parent 60a424059d
commit 300676f62b
2 changed files with 26 additions and 0 deletions

View File

@@ -146,6 +146,22 @@ describe('Test video transcription', function () {
await checkLanguage(servers, uuid, null)
})
it('Should not replace an existing caption', async function () {
const uuid = await uploadForTranscription(servers[0])
await servers[0].captions.add({
language: 'en',
videoId: uuid,
fixture: 'subtitle-good1.vtt'
})
const contentBefore = await getCaptionContent(servers[0], uuid, 'en')
await waitJobs(servers)
const contentAter = await getCaptionContent(servers[0], uuid, 'en')
expect(contentBefore).to.equal(contentAter)
})
it('Should run transcription after a video edition', async function () {
this.timeout(120000)