Fix videos tests
authorChocobozzz <me@florianbigard.com>
Thu, 28 Dec 2017 16:25:10 +0000 (17:25 +0100)
committerChocobozzz <me@florianbigard.com>
Thu, 28 Dec 2017 16:25:10 +0000 (17:25 +0100)
server/tests/api/videos/multiple-servers.ts
server/tests/api/videos/single-server.ts
server/tests/utils/videos/videos.ts

index 0c6508e71dbfd9a08112d3379696cbb00ae2b30b..2a943fe45633781a09fa492408c3d3e7d7ae68e5 100644 (file)
@@ -822,7 +822,7 @@ describe('Test multiple servers', function () {
         .field('nsfw', 'false')
         .field('channelId', '1')
 
-      const filePath = join(__dirname, '..', 'api', 'fixtures', 'video_short.webm')
+      const filePath = join(__dirname, '..', '..', 'api', 'fixtures', 'video_short.webm')
 
       await req.attach('videofile', filePath)
         .expect(200)
index 02723654dc8af35298bf6dc57fc66c26aed79d3c..c503ec0e773e020378e399f95f0f9544c2213933 100644 (file)
@@ -337,10 +337,10 @@ describe('Test a single server', function () {
   it('Should remove the video', async function () {
     await removeVideo(server.url, server.accessToken, videoId)
 
-    const files1 = await readdirPromise(join(__dirname, '..', '..', '..', 'test1/videos/'))
+    const files1 = await readdirPromise(join(__dirname, '..', '..', '..', '..', 'test1/videos/'))
     expect(files1).to.have.lengthOf(0)
 
-    const files2 = await readdirPromise(join(__dirname, '..', '..', '..', 'test1/thumbnails/'))
+    const files2 = await readdirPromise(join(__dirname, '..', '..', '..', '..', 'test1/thumbnails/'))
     expect(files2).to.have.lengthOf(0)
   })
 
index 166253ffc971c8de774beb476cc42b324f31f7bb..7393942534b831be1da5fa0b5a5edb050ef2eedf 100644 (file)
@@ -23,7 +23,8 @@ function getVideoCategories (url: string) {
 
   return makeGetRequest({
     url,
-    path
+    path,
+    statusCodeExpected: 200
   })
 }
 
@@ -32,7 +33,8 @@ function getVideoLicences (url: string) {
 
   return makeGetRequest({
     url,
-    path
+    path,
+    statusCodeExpected: 200
   })
 }
 
@@ -41,7 +43,8 @@ function getVideoLanguages (url: string) {
 
   return makeGetRequest({
     url,
-    path
+    path,
+    statusCodeExpected: 200
   })
 }
 
@@ -50,7 +53,8 @@ function getVideoPrivacies (url: string) {
 
   return makeGetRequest({
     url,
-    path
+    path,
+    statusCodeExpected: 200
   })
 }