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