850ad12e0188c25791892b24c17c9c7117a9f7d0
[oweals/peertube.git] / server / tests / api / check-params / videos.ts
1 /* tslint:disable:no-unused-expression */
2
3 import * as chai from 'chai'
4 import { omit } from 'lodash'
5 import 'mocha'
6 import { join } from 'path'
7 import { VideoPrivacy } from '../../../../shared/models/videos/video-privacy.enum'
8 import {
9   createUser, flushTests, getMyUserInformation, getVideo, getVideosList, immutableAssign, killallServers, makeDeleteRequest,
10   makeGetRequest, makeUploadRequest, makePutBodyRequest, removeVideo, runServer, ServerInfo, setAccessTokensToServers, userLogin
11 } from '../../utils'
12 import { checkBadCountPagination, checkBadSortPagination, checkBadStartPagination } from '../../utils/requests/check-api-params'
13 import { getAccountsList } from '../../utils/users/accounts'
14
15 const expect = chai.expect
16
17 describe('Test videos API validator', function () {
18   const path = '/api/v1/videos/'
19   let server: ServerInfo
20   let userAccessToken = ''
21   let accountUUID: string
22   let channelId: number
23   let channelUUID: string
24   let videoId
25
26   // ---------------------------------------------------------------
27
28   before(async function () {
29     this.timeout(30000)
30
31     await flushTests()
32
33     server = await runServer(1)
34
35     await setAccessTokensToServers([ server ])
36
37     const username = 'user1'
38     const password = 'my super password'
39     await createUser(server.url, server.accessToken, username, password)
40     userAccessToken = await userLogin(server, { username, password })
41
42     {
43       const res = await getMyUserInformation(server.url, server.accessToken)
44       channelId = res.body.videoChannels[ 0 ].id
45       channelUUID = res.body.videoChannels[ 0 ].uuid
46       accountUUID = res.body.account.uuid
47     }
48   })
49
50   describe('When listing a video', function () {
51     it('Should fail with a bad start pagination', async function () {
52       await checkBadStartPagination(server.url, path)
53     })
54
55     it('Should fail with a bad count pagination', async function () {
56       await checkBadCountPagination(server.url, path)
57     })
58
59     it('Should fail with an incorrect sort', async function () {
60       await checkBadSortPagination(server.url, path)
61     })
62
63     it('Should success with the correct parameters', async function () {
64       await makeGetRequest({ url: server.url, path, statusCodeExpected: 200 })
65     })
66   })
67
68   describe('When searching a video', function () {
69
70     it('Should fail with nothing', async function () {
71       await makeGetRequest({
72         url: server.url,
73         path: join(path, 'search'),
74         statusCodeExpected: 400
75       })
76     })
77
78     it('Should fail with a bad start pagination', async function () {
79       await checkBadStartPagination(server.url, join(path, 'search', 'test'))
80     })
81
82     it('Should fail with a bad count pagination', async function () {
83       await checkBadCountPagination(server.url, join(path, 'search', 'test'))
84     })
85
86     it('Should fail with an incorrect sort', async function () {
87       await checkBadSortPagination(server.url, join(path, 'search', 'test'))
88     })
89
90     it('Should success with the correct parameters', async function () {
91       await makeGetRequest({ url: server.url, path, statusCodeExpected: 200 })
92     })
93   })
94
95   describe('When listing my videos', function () {
96     const path = '/api/v1/users/me/videos'
97
98     it('Should fail with a bad start pagination', async function () {
99       await checkBadStartPagination(server.url, path, server.accessToken)
100     })
101
102     it('Should fail with a bad count pagination', async function () {
103       await checkBadCountPagination(server.url, path, server.accessToken)
104     })
105
106     it('Should fail with an incorrect sort', async function () {
107       await checkBadSortPagination(server.url, path, server.accessToken)
108     })
109
110     it('Should success with the correct parameters', async function () {
111       await makeGetRequest({ url: server.url, token: server.accessToken, path, statusCodeExpected: 200 })
112     })
113   })
114
115   describe('When listing account videos', function () {
116     let path: string
117
118     before(async function () {
119       path = '/api/v1/accounts/' + accountUUID + '/videos'
120     })
121
122     it('Should fail with a bad start pagination', async function () {
123       await checkBadStartPagination(server.url, path, server.accessToken)
124     })
125
126     it('Should fail with a bad count pagination', async function () {
127       await checkBadCountPagination(server.url, path, server.accessToken)
128     })
129
130     it('Should fail with an incorrect sort', async function () {
131       await checkBadSortPagination(server.url, path, server.accessToken)
132     })
133
134     it('Should success with the correct parameters', async function () {
135       await makeGetRequest({ url: server.url, path, statusCodeExpected: 200 })
136     })
137   })
138
139   describe('When listing video channel videos', function () {
140     let path: string
141
142     before(async function () {
143       path = '/api/v1/accounts/' + accountUUID + '/video-channels/' + channelUUID + '/videos'
144     })
145
146     it('Should fail with a bad start pagination', async function () {
147       await checkBadStartPagination(server.url, path, server.accessToken)
148     })
149
150     it('Should fail with a bad count pagination', async function () {
151       await checkBadCountPagination(server.url, path, server.accessToken)
152     })
153
154     it('Should fail with an incorrect sort', async function () {
155       await checkBadSortPagination(server.url, path, server.accessToken)
156     })
157
158     it('Should success with the correct parameters', async function () {
159       await makeGetRequest({ url: server.url, path, statusCodeExpected: 200 })
160     })
161   })
162
163   describe('When adding a video', function () {
164     let baseCorrectParams
165     const baseCorrectAttaches = {
166       'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
167     }
168
169     before(function () {
170       // Put in before to have channelId
171       baseCorrectParams = {
172         name: 'my super name',
173         category: 5,
174         licence: 1,
175         language: 'pt',
176         nsfw: false,
177         commentsEnabled: true,
178         description: 'my super description',
179         support: 'my super support text',
180         tags: [ 'tag1', 'tag2' ],
181         privacy: VideoPrivacy.PUBLIC,
182         channelId: channelId
183       }
184     })
185
186     it('Should fail with nothing', async function () {
187       const fields = {}
188       const attaches = {}
189       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
190     })
191
192     it('Should fail without name', async function () {
193       const fields = omit(baseCorrectParams, 'name')
194       const attaches = baseCorrectAttaches
195
196       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
197     })
198
199     it('Should fail with a long name', async function () {
200       const fields = immutableAssign(baseCorrectParams, { name: 'super'.repeat(65) })
201       const attaches = baseCorrectAttaches
202
203       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
204     })
205
206     it('Should fail with a bad category', async function () {
207       const fields = immutableAssign(baseCorrectParams, { category: 125 })
208       const attaches = baseCorrectAttaches
209
210       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
211     })
212
213     it('Should fail with a bad licence', async function () {
214       const fields = immutableAssign(baseCorrectParams, { licence: 125 })
215       const attaches = baseCorrectAttaches
216
217       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
218     })
219
220     it('Should fail with a bad language', async function () {
221       const fields = immutableAssign(baseCorrectParams, { language: 'a'.repeat(15) })
222       const attaches = baseCorrectAttaches
223
224       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
225     })
226
227     it('Should fail without nsfw attribute', async function () {
228       const fields = omit(baseCorrectParams, 'nsfw')
229       const attaches = baseCorrectAttaches
230
231       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
232     })
233
234     it('Should fail with a bad nsfw attribute', async function () {
235       const fields = immutableAssign(baseCorrectParams, { nsfw: 2 })
236       const attaches = baseCorrectAttaches
237
238       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
239     })
240
241     it('Should fail without commentsEnabled attribute', async function () {
242       const fields = omit(baseCorrectParams, 'commentsEnabled')
243       const attaches = baseCorrectAttaches
244
245       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
246     })
247
248     it('Should fail with a bad commentsEnabled attribute', async function () {
249       const fields = immutableAssign(baseCorrectParams, { commentsEnabled: 2 })
250       const attaches = baseCorrectAttaches
251
252       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
253     })
254
255     it('Should fail with a long description', async function () {
256       const fields = immutableAssign(baseCorrectParams, { description: 'super'.repeat(2500) })
257       const attaches = baseCorrectAttaches
258
259       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
260     })
261
262     it('Should fail with a long support text', async function () {
263       const fields = immutableAssign(baseCorrectParams, { support: 'super'.repeat(70) })
264       const attaches = baseCorrectAttaches
265
266       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
267     })
268
269     it('Should fail without a channel', async function () {
270       const fields = omit(baseCorrectParams, 'channelId')
271       const attaches = baseCorrectAttaches
272
273       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
274     })
275
276     it('Should fail with a bad channel', async function () {
277       const fields = immutableAssign(baseCorrectParams, { channelId: 545454 })
278       const attaches = baseCorrectAttaches
279
280       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
281     })
282
283     it('Should fail with another user channel', async function () {
284       const user = {
285         username: 'fake',
286         password: 'fake_password'
287       }
288       await createUser(server.url, server.accessToken, user.username, user.password)
289
290       const accessTokenUser = await userLogin(server, user)
291       const res = await getMyUserInformation(server.url, accessTokenUser)
292       const customChannelId = res.body.videoChannels[0].id
293
294       const fields = immutableAssign(baseCorrectParams, { channelId: customChannelId })
295       const attaches = baseCorrectAttaches
296
297       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
298     })
299
300     it('Should fail with too many tags', async function () {
301       const fields = immutableAssign(baseCorrectParams, { tags: [ 'tag1', 'tag2', 'tag3', 'tag4', 'tag5', 'tag6' ] })
302       const attaches = baseCorrectAttaches
303
304       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
305     })
306
307     it('Should fail with a tag length too low', async function () {
308       const fields = immutableAssign(baseCorrectParams, { tags: [ 'tag1', 't' ] })
309       const attaches = baseCorrectAttaches
310
311       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
312     })
313
314     it('Should fail with a tag length too big', async function () {
315       const fields = immutableAssign(baseCorrectParams, { tags: [ 'tag1', 'my_super_tag_too_long_long_long_long_long_long' ] })
316       const attaches = baseCorrectAttaches
317
318       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
319     })
320
321     it('Should fail without an input file', async function () {
322       const fields = baseCorrectParams
323       const attaches = {}
324       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
325     })
326
327     it('Should fail without an incorrect input file', async function () {
328       const fields = baseCorrectParams
329       const attaches = {
330         'videofile': join(__dirname, '..', 'fixtures', 'video_short_fake.webm')
331       }
332       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
333     })
334
335     it('Should fail with an incorrect thumbnail file', async function () {
336       const fields = baseCorrectParams
337       const attaches = {
338         'thumbnailfile': join(__dirname, '..', 'fixtures', 'avatar.png'),
339         'videofile': join(__dirname, '..', 'fixtures', 'video_short_fake.webm')
340       }
341
342       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
343     })
344
345     it('Should fail with a big thumbnail file', async function () {
346       const fields = baseCorrectParams
347       const attaches = {
348         'thumbnailfile': join(__dirname, '..', 'fixtures', 'avatar-big.png'),
349         'videofile': join(__dirname, '..', 'fixtures', 'video_short_fake.webm')
350       }
351
352       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
353     })
354
355     it('Should fail with an incorrect preview file', async function () {
356       const fields = baseCorrectParams
357       const attaches = {
358         'previewfile': join(__dirname, '..', 'fixtures', 'avatar.png'),
359         'videofile': join(__dirname, '..', 'fixtures', 'video_short_fake.webm')
360       }
361
362       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
363     })
364
365     it('Should fail with a big preview file', async function () {
366       const fields = baseCorrectParams
367       const attaches = {
368         'previewfile': join(__dirname, '..', 'fixtures', 'avatar-big.png'),
369         'videofile': join(__dirname, '..', 'fixtures', 'video_short_fake.webm')
370       }
371
372       await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
373     })
374
375     it('Should succeed with the correct parameters', async function () {
376       this.timeout(10000)
377
378       const fields = baseCorrectParams
379
380       {
381         const attaches = baseCorrectAttaches
382         await makeUploadRequest({
383           url: server.url,
384           path: path + '/upload',
385           token: server.accessToken,
386           fields,
387           attaches,
388           statusCodeExpected: 200
389         })
390       }
391
392       {
393         const attaches = immutableAssign(baseCorrectAttaches, {
394           videofile: join(__dirname, '..', 'fixtures', 'video_short.mp4')
395         })
396
397         await makeUploadRequest({
398           url: server.url,
399           path: path + '/upload',
400           token: server.accessToken,
401           fields,
402           attaches,
403           statusCodeExpected: 200
404         })
405       }
406
407       {
408         const attaches = immutableAssign(baseCorrectAttaches, {
409           videofile: join(__dirname, '..', 'fixtures', 'video_short.ogv')
410         })
411
412         await makeUploadRequest({
413           url: server.url,
414           path: path + '/upload',
415           token: server.accessToken,
416           fields,
417           attaches,
418           statusCodeExpected: 200
419         })
420       }
421     })
422   })
423
424   describe('When updating a video', function () {
425     const baseCorrectParams = {
426       name: 'my super name',
427       category: 5,
428       licence: 2,
429       language: 'pt',
430       nsfw: false,
431       commentsEnabled: false,
432       description: 'my super description',
433       privacy: VideoPrivacy.PUBLIC,
434       tags: [ 'tag1', 'tag2' ]
435     }
436
437     before(async function () {
438       const res = await getVideosList(server.url)
439       videoId = res.body.data[0].uuid
440     })
441
442     it('Should fail with nothing', async function () {
443       const fields = {}
444       await makePutBodyRequest({ url: server.url, path, token: server.accessToken, fields })
445     })
446
447     it('Should fail without a valid uuid', async function () {
448       const fields = baseCorrectParams
449       await makePutBodyRequest({ url: server.url, path: path + 'blabla', token: server.accessToken, fields })
450     })
451
452     it('Should fail with an unknown id', async function () {
453       const fields = baseCorrectParams
454
455       await makePutBodyRequest({
456         url: server.url,
457         path: path + '4da6fde3-88f7-4d16-b119-108df5630b06',
458         token: server.accessToken,
459         fields,
460         statusCodeExpected: 404
461       })
462     })
463
464     it('Should fail with a long name', async function () {
465       const fields = immutableAssign(baseCorrectParams, { name: 'super'.repeat(65) })
466
467       await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
468     })
469
470     it('Should fail with a bad category', async function () {
471       const fields = immutableAssign(baseCorrectParams, { category: 125 })
472
473       await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
474     })
475
476     it('Should fail with a bad licence', async function () {
477       const fields = immutableAssign(baseCorrectParams, { licence: 125 })
478
479       await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
480     })
481
482     it('Should fail with a bad language', async function () {
483       const fields = immutableAssign(baseCorrectParams, { language: 'a'.repeat(15) })
484
485       await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
486     })
487
488     it('Should fail with a bad nsfw attribute', async function () {
489       const fields = immutableAssign(baseCorrectParams, { nsfw: 2 })
490
491       await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
492     })
493
494     it('Should fail with a bad commentsEnabled attribute', async function () {
495       const fields = immutableAssign(baseCorrectParams, { commentsEnabled: 2 })
496
497       await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
498     })
499
500     it('Should fail with a long description', async function () {
501       const fields = immutableAssign(baseCorrectParams, { description: 'super'.repeat(2500) })
502
503       await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
504     })
505
506     it('Should fail with a long support text', async function () {
507       const fields = immutableAssign(baseCorrectParams, { support: 'super'.repeat(70) })
508
509       await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
510     })
511
512     it('Should fail with too many tags', async function () {
513       const fields = immutableAssign(baseCorrectParams, { tags: [ 'tag1', 'tag2', 'tag3', 'tag4', 'tag5', 'tag6' ] })
514
515       await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
516     })
517
518     it('Should fail with a tag length too low', async function () {
519       const fields = immutableAssign(baseCorrectParams, { tags: [ 'tag1', 't' ] })
520
521       await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
522     })
523
524     it('Should fail with a tag length too big', async function () {
525       const fields = immutableAssign(baseCorrectParams, { tags: [ 'tag1', 'my_super_tag_too_long_long_long_long_long_long' ] })
526
527       await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
528     })
529
530     it('Should fail with an incorrect thumbnail file', async function () {
531       const fields = baseCorrectParams
532       const attaches = {
533         'thumbnailfile': join(__dirname, '..', 'fixtures', 'avatar.png')
534       }
535
536       await makeUploadRequest({
537         url: server.url,
538         method: 'PUT',
539         path: path + videoId,
540         token: server.accessToken,
541         fields,
542         attaches
543       })
544     })
545
546     it('Should fail with a big thumbnail file', async function () {
547       const fields = baseCorrectParams
548       const attaches = {
549         'thumbnailfile': join(__dirname, '..', 'fixtures', 'avatar-big.png')
550       }
551
552       await makeUploadRequest({
553         url: server.url,
554         method: 'PUT',
555         path: path + videoId,
556         token: server.accessToken,
557         fields,
558         attaches
559       })
560     })
561
562     it('Should fail with an incorrect preview file', async function () {
563       const fields = baseCorrectParams
564       const attaches = {
565         'previewfile': join(__dirname, '..', 'fixtures', 'avatar.png')
566       }
567
568       await makeUploadRequest({
569         url: server.url,
570         method: 'PUT',
571         path: path + videoId,
572         token: server.accessToken,
573         fields,
574         attaches
575       })
576     })
577
578     it('Should fail with a big preview file', async function () {
579       const fields = baseCorrectParams
580       const attaches = {
581         'previewfile': join(__dirname, '..', 'fixtures', 'avatar-big.png')
582       }
583
584       await makeUploadRequest({
585         url: server.url,
586         method: 'PUT',
587         path: path + videoId,
588         token: server.accessToken,
589         fields,
590         attaches
591       })
592     })
593
594     it('Should fail with a video of another user without the appropriate right', async function () {
595       const fields = baseCorrectParams
596
597       await makePutBodyRequest({ url: server.url, path: path + videoId, token: userAccessToken, fields, statusCodeExpected: 403 })
598     })
599
600     it('Should fail with a video of another server')
601
602     it('Should succeed with the correct parameters', async function () {
603       const fields = baseCorrectParams
604
605       await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields, statusCodeExpected: 204 })
606     })
607   })
608
609   describe('When getting a video', function () {
610     it('Should return the list of the videos with nothing', async function () {
611       const res = await makeGetRequest({
612         url: server.url,
613         path,
614         statusCodeExpected: 200
615       })
616
617       expect(res.body.data).to.be.an('array')
618       expect(res.body.data.length).to.equal(3)
619     })
620
621     it('Should fail without a correct uuid', async function () {
622       await getVideo(server.url, 'coucou', 400)
623     })
624
625     it('Should return 404 with an incorrect video', async function () {
626       await getVideo(server.url, '4da6fde3-88f7-4d16-b119-108df5630b06', 404)
627     })
628
629     it('Should succeed with the correct parameters', async function () {
630       await getVideo(server.url, videoId)
631     })
632   })
633
634   describe('When rating a video', function () {
635     let videoId
636
637     before(async function () {
638       const res = await getVideosList(server.url)
639       videoId = res.body.data[0].id
640     })
641
642     it('Should fail without a valid uuid', async function () {
643       const fields = {
644         rating: 'like'
645       }
646       await makePutBodyRequest({ url: server.url, path: path + 'blabla/rate', token: server.accessToken, fields })
647     })
648
649     it('Should fail with an unknown id', async function () {
650       const fields = {
651         rating: 'like'
652       }
653       await makePutBodyRequest({
654         url: server.url,
655         path: path + '4da6fde3-88f7-4d16-b119-108df5630b06/rate',
656         token: server.accessToken,
657         fields,
658         statusCodeExpected: 404
659       })
660     })
661
662     it('Should fail with a wrong rating', async function () {
663       const fields = {
664         rating: 'likes'
665       }
666       await makePutBodyRequest({ url: server.url, path: path + videoId + '/rate', token: server.accessToken, fields })
667     })
668
669     it('Should succeed with the correct parameters', async function () {
670       const fields = {
671         rating: 'like'
672       }
673       await makePutBodyRequest({
674         url: server.url,
675         path: path + videoId + '/rate',
676         token: server.accessToken,
677         fields,
678         statusCodeExpected: 204
679       })
680     })
681   })
682
683   describe('When removing a video', function () {
684     it('Should have 404 with nothing', async function () {
685       await makeDeleteRequest({
686         url: server.url,
687         path,
688         statusCodeExpected: 400
689       })
690     })
691
692     it('Should fail without a correct uuid', async function () {
693       await removeVideo(server.url, server.accessToken, 'hello', 400)
694     })
695
696     it('Should fail with a video which does not exist', async function () {
697       await removeVideo(server.url, server.accessToken, '4da6fde3-88f7-4d16-b119-108df5630b06', 404)
698     })
699
700     it('Should fail with a video of another user without the appropriate right', async function () {
701       await removeVideo(server.url, userAccessToken, videoId, 403)
702     })
703
704     it('Should fail with a video of another server')
705
706     it('Should succeed with the correct parameters', async function () {
707       await removeVideo(server.url, server.accessToken, videoId)
708     })
709   })
710
711   after(async function () {
712     killallServers([ server ])
713
714     // Keep the logs if the test failed
715     if (this['ok']) {
716       await flushTests()
717     }
718   })
719 })