aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/check-params/videos.js
blob: fac9037154a73959daec1458fb9b94ce18b36c39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
'use strict'

const chai = require('chai')
const expect = chai.expect
const pathUtils = require('path')
const request = require('supertest')
const series = require('async/series')

const loginUtils = require('../../utils/login')
const requestsUtils = require('../../utils/requests')
const serversUtils = require('../../utils/servers')
const videosUtils = require('../../utils/videos')

describe('Test videos API validator', function () {
  const path = '/api/v1/videos/'
  let server = null

  // ---------------------------------------------------------------

  before(function (done) {
    this.timeout(20000)

    series([
      function (next) {
        serversUtils.flushTests(next)
      },
      function (next) {
        serversUtils.runServer(1, function (server1) {
          server = server1

          next()
        })
      },
      function (next) {
        loginUtils.loginAndGetAccessToken(server, function (err, token) {
          if (err) throw err
          server.accessToken = token

          next()
        })
      }
    ], done)
  })

  describe('When listing a video', function () {
    it('Should fail with a bad start pagination', function (done) {
      request(server.url)
        .get(path)
        .query({ start: 'hello' })
        .set('Accept', 'application/json')
        .expect(400, done)
    })

    it('Should fail with a bad count pagination', function (done) {
      request(server.url)
        .get(path)
        .query({ count: 'hello' })
        .set('Accept', 'application/json')
        .expect(400, done)
    })

    it('Should fail with an incorrect sort', function (done) {
      request(server.url)
        .get(path)
        .query({ sort: 'hello' })
        .set('Accept', 'application/json')
        .expect(400, done)
    })
  })

  describe('When searching a video', function () {
    it('Should fail with nothing', function (done) {
      request(server.url)
        .get(pathUtils.join(path, 'search'))
        .set('Accept', 'application/json')
        .expect(400, done)
    })

    it('Should fail with a bad start pagination', function (done) {
      request(server.url)
        .get(pathUtils.join(path, 'search', 'test'))
        .query({ start: 'hello' })
        .set('Accept', 'application/json')
        .expect(400, done)
    })

    it('Should fail with a bad count pagination', function (done) {
      request(server.url)
        .get(pathUtils.join(path, 'search', 'test'))
        .query({ count: 'hello' })
        .set('Accept', 'application/json')
        .expect(400, done)
    })

    it('Should fail with an incorrect sort', function (done) {
      request(server.url)
        .get(pathUtils.join(path, 'search', 'test'))
        .query({ sort: 'hello' })
        .set('Accept', 'application/json')
        .expect(400, done)
    })
  })

  describe('When adding a video', function () {
    it('Should fail with nothing', function (done) {
      const data = {}
      const attach = {}
      requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, done)
    })

    it('Should fail without name', function (done) {
      const data = {
        description: 'my super description',
        tags: [ 'tag1', 'tag2' ]
      }
      const attach = {
        'videofile': pathUtils.join(__dirname, '..', 'fixtures', 'video_short.webm')
      }
      requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, done)
    })

    it('Should fail with a long name', function (done) {
      const data = {
        name: 'My very very very very very very very very very very very very very very very very long name',
        description: 'my super description',
        tags: [ 'tag1', 'tag2' ]
      }
      const attach = {
        'videofile': pathUtils.join(__dirname, '..', 'fixtures', 'video_short.webm')
      }
      requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, done)
    })

    it('Should fail without description', function (done) {
      const data = {
        name: 'my super name',
        tags: [ 'tag1', 'tag2' ]
      }
      const attach = {
        'videofile': pathUtils.join(__dirname, '..', 'fixtures', 'video_short.webm')
      }
      requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, done)
    })

    it('Should fail with a long description', function (done) {
      const data = {
        name: 'my super name',
        description: 'my super description which is very very very very very very very very very very very very very very' +
                     'very very very very very very very very very very very very very very very very very very very very very' +
                     'very very very very very very very very very very very very very very very long',
        tags: [ 'tag1', 'tag2' ]
      }
      const attach = {
        'videofile': pathUtils.join(__dirname, '..', 'fixtures', 'video_short.webm')
      }
      requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, done)
    })

    it('Should fail without tags', function (done) {
      const data = {
        name: 'my super name',
        description: 'my super description'
      }
      const attach = {
        'videofile': pathUtils.join(__dirname, '..', 'fixtures', 'video_short.webm')
      }
      requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, done)
    })

    it('Should fail with too many tags', function (done) {
      const data = {
        name: 'my super name',
        description: 'my super description',
        tags: [ 'tag1', 'tag2', 'tag3', 'tag4' ]
      }
      const attach = {
        'videofile': pathUtils.join(__dirname, '..', 'fixtures', 'video_short.webm')
      }
      requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, done)
    })

    it('Should fail with not enough tags', function (done) {
      const data = {
        name: 'my super name',
        description: 'my super description',
        tags: [ ]
      }
      const attach = {
        'videofile': pathUtils.join(__dirname, '..', 'fixtures', 'video_short.webm')
      }
      requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, done)
    })

    it('Should fail with a tag length too low', function (done) {
      const data = {
        name: 'my super name',
        description: 'my super description',
        tags: [ 'tag1', 't' ]
      }
      const attach = {
        'videofile': pathUtils.join(__dirname, '..', 'fixtures', 'video_short.webm')
      }
      requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, done)
    })

    it('Should fail with a tag length too big', function (done) {
      const data = {
        name: 'my super name',
        description: 'my super description',
        tags: [ 'mysupertagtoolong', 'tag1' ]
      }
      const attach = {
        'videofile': pathUtils.join(__dirname, '..', 'fixtures', 'video_short.webm')
      }
      requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, done)
    })

    it('Should fail with malformed tags', function (done) {
      const data = {
        name: 'my super name',
        description: 'my super description',
        tags: [ 'my tag' ]
      }
      const attach = {
        'videofile': pathUtils.join(__dirname, '..', 'fixtures', 'video_short.webm')
      }
      requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, done)
    })

    it('Should fail without an input file', function (done) {
      const data = {
        name: 'my super name',
        description: 'my super description',
        tags: [ 'tag1', 'tag2' ]
      }
      const attach = {}
      requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, done)
    })

    it('Should fail without an incorrect input file', function (done) {
      const data = {
        name: 'my super name',
        description: 'my super description',
        tags: [ 'tag1', 'tag2' ]
      }
      const attach = {
        'videofile': pathUtils.join(__dirname, '..', 'fixtures', 'video_short_fake.webm')
      }
      requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, done)
    })

    it('Should fail with a too big duration', function (done) {
      const data = {
        name: 'my super name',
        description: 'my super description',
        tags: [ 'tag1', 'tag2' ]
      }
      const attach = {
        'videofile': pathUtils.join(__dirname, '..', 'fixtures', 'video_too_long.webm')
      }
      requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, done)
    })

    it('Should succeed with the correct parameters', function (done) {
      const data = {
        name: 'my super name',
        description: 'my super description',
        tags: [ 'tag1', 'tag2' ]
      }
      const attach = {
        'videofile': pathUtils.join(__dirname, '..', 'fixtures', 'video_short.webm')
      }
      requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, function () {
        attach.videofile = pathUtils.join(__dirname, '..', 'fixtures', 'video_short.mp4')
        requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, function () {
          attach.videofile = pathUtils.join(__dirname, '..', 'fixtures', 'video_short.ogv')
          requestsUtils.makePostUploadRequest(server.url, path, server.accessToken, data, attach, done, 204)
        }, false)
      }, false)
    })
  })

  describe('When updating a video', function () {
    let videoId

    before(function (done) {
      videosUtils.getVideosList(server.url, function (err, res) {
        if (err) throw err

        videoId = res.body.data[0].id

        return done()
      })
    })

    it('Should fail with nothing', function (done) {
      const data = {}
      requestsUtils.makePutBodyRequest(server.url, path, server.accessToken, data, done)
    })

    it('Should fail without a valid uuid', function (done) {
      const data = {
        description: 'my super description',
        tags: [ 'tag1', 'tag2' ]
      }
      requestsUtils.makePutBodyRequest(server.url, path + 'blabla', server.accessToken, data, done)
    })

    it('Should fail with an unknown id', function (done) {
      const data = {
        description: 'my super description',
        tags: [ 'tag1', 'tag2' ]
      }
      requestsUtils.makePutBodyRequest(server.url, path + '4da6fde3-88f7-4d16-b119-108df5630b06', server.accessToken, data, done, 404)
    })

    it('Should fail with a long name', function (done) {
      const data = {
        name: 'My very very very very very very very very very very very very very very very very long name',
        description: 'my super description',
        tags: [ 'tag1', 'tag2' ]
      }
      requestsUtils.makePutBodyRequest(server.url, path + videoId, server.accessToken, data, done)
    })

    it('Should fail with a long description', function (done) {
      const data = {
        name: 'my super name',
        description: 'my super description which is very very very very very very very very very very very very very very' +
                     'very very very very very very very very very very very very very very very very very very very very very' +
                     'very very very very very very very very very very very very very very very long',
        tags: [ 'tag1', 'tag2' ]
      }
      requestsUtils.makePutBodyRequest(server.url, path + videoId, server.accessToken, data, done)
    })

    it('Should fail with too many tags', function (done) {
      const data = {
        name: 'my super name',
        description: 'my super description',
        tags: [ 'tag1', 'tag2', 'tag3', 'tag4' ]
      }
      requestsUtils.makePutBodyRequest(server.url, path + videoId, server.accessToken, data, done)
    })

    it('Should fail with not enough tags', function (done) {
      const data = {
        name: 'my super name',
        description: 'my super description',
        tags: [ ]
      }
      requestsUtils.makePutBodyRequest(server.url, path + videoId, server.accessToken, data, done)
    })

    it('Should fail with a tag length too low', function (done) {
      const data = {
        name: 'my super name',
        description: 'my super description',
        tags: [ 'tag1', 't' ]
      }
      requestsUtils.makePutBodyRequest(server.url, path + videoId, server.accessToken, data, done)
    })

    it('Should fail with a tag length too big', function (done) {
      const data = {
        name: 'my super name',
        description: 'my super description',
        tags: [ 'mysupertagtoolong', 'tag1' ]
      }
      requestsUtils.makePutBodyRequest(server.url, path + videoId, server.accessToken, data, done)
    })

    it('Should fail with malformed tags', function (done) {
      const data = {
        name: 'my super name',
        description: 'my super description',
        tags: [ 'my tag' ]
      }
      requestsUtils.makePutBodyRequest(server.url, path + videoId, server.accessToken, data, done)
    })

    it('Should fail with a video of another user')

    it('Should fail with a video of another pod')
  })

  describe('When getting a video', function () {
    it('Should return the list of the videos with nothing', function (done) {
      request(server.url)
        .get(path)
        .set('Accept', 'application/json')
        .expect(200)
        .expect('Content-Type', /json/)
        .end(function (err, res) {
          if (err) throw err

          expect(res.body.data).to.be.an('array')
          expect(res.body.data.length).to.equal(3)

          done()
        })
    })

    it('Should fail without a correct uuid', function (done) {
      request(server.url)
        .get(path + 'coucou')
        .set('Accept', 'application/json')
        .expect(400, done)
    })

    it('Should return 404 with an incorrect video', function (done) {
      request(server.url)
        .get(path + '4da6fde3-88f7-4d16-b119-108df5630b06')
        .set('Accept', 'application/json')
        .expect(404, done)
    })

    it('Should succeed with the correct parameters')
  })

  describe('When removing a video', function () {
    it('Should have 404 with nothing', function (done) {
      request(server.url)
        .delete(path)
        .set('Authorization', 'Bearer ' + server.accessToken)
        .expect(400, done)
    })

    it('Should fail without a correct uuid', function (done) {
      request(server.url)
        .delete(path + 'hello')
        .set('Authorization', 'Bearer ' + server.accessToken)
        .expect(400, done)
    })

    it('Should fail with a video which does not exist', function (done) {
      request(server.url)
        .delete(path + '4da6fde3-88f7-4d16-b119-108df5630b06')
        .set('Authorization', 'Bearer ' + server.accessToken)
        .expect(404, done)
    })

    it('Should fail with a video of another user')

    it('Should fail with a video of another pod')

    it('Should succeed with the correct parameters')
  })

  after(function (done) {
    process.kill(-server.app.pid)

    // Keep the logs if the test failed
    if (this.ok) {
      serversUtils.flushTests(done)
    } else {
      done()
    }
  })
})