Add check channel update test in video update
authorChocobozzz <me@florianbigard.com>
Fri, 11 May 2018 14:17:49 +0000 (16:17 +0200)
committerChocobozzz <me@florianbigard.com>
Fri, 11 May 2018 14:17:49 +0000 (16:17 +0200)
server/tests/api/check-params/videos.ts

index 47fad7d5c1c8671fe4ddd226448b3d1b8a014aac..33e81580626c04096bec68a71b43500df8c04139 100644 (file)
@@ -483,6 +483,12 @@ describe('Test videos API validator', function () {
       await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
     })
 
+    it('Should fail with a bad channel', async function () {
+      const fields = immutableAssign(baseCorrectParams, { channelId: 545454 })
+
+      await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
+    })
+
     it('Should fail with too many tags', async function () {
       const fields = immutableAssign(baseCorrectParams, { tags: [ 'tag1', 'tag2', 'tag3', 'tag4', 'tag5', 'tag6' ] })