Fix studio tests

pull/5593/head
Chocobozzz 2023-05-05 10:25:18 +02:00 committed by Chocobozzz
parent ab14f0e0dc
commit dd3f99434c
1 changed files with 23 additions and 23 deletions

View File

@ -300,6 +300,29 @@ describe('Test video studio', function () {
})
})
describe('Server restart', function () {
it('Should still be able to run video edition after a server restart', async function () {
this.timeout(240_000)
await renewVideo()
await servers[0].videoStudio.createEditionTasks({ videoId: videoUUID, tasks: VideoStudioCommand.getComplexTask() })
await servers[0].kill()
await servers[0].run()
await waitJobs(servers)
for (const server of servers) {
await checkVideoDuration(server, videoUUID, 9)
}
})
it('Should have an empty persistent tmp directory', async function () {
await checkPersistentTmpIsEmpty(servers[0])
})
})
describe('Object storage studio edition', function () {
if (areMockObjectStorageTestsDisabled()) return
@ -342,29 +365,6 @@ describe('Test video studio', function () {
})
})
describe('Server restart', function () {
it('Should still be able to run video edition after a server restart', async function () {
this.timeout(240_000)
await renewVideo()
await servers[0].videoStudio.createEditionTasks({ videoId: videoUUID, tasks: VideoStudioCommand.getComplexTask() })
await servers[0].kill()
await servers[0].run()
await waitJobs(servers)
for (const server of servers) {
await checkVideoDuration(server, videoUUID, 9)
}
})
it('Should have an empty persistent tmp directory', async function () {
await checkPersistentTmpIsEmpty(servers[0])
})
})
after(async function () {
await cleanupTests(servers)
})