]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/tests/api/transcoding/video-studio.ts
Fix studio tests
[github/Chocobozzz/PeerTube.git] / server / tests / api / transcoding / video-studio.ts
index d22cfff4a7d8b0a2c81425756a6917fca4c9a1ba..35efc3d4976745968707b8e8210cda49789dc498 100644 (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)
   })