aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/api/checkParams.js
blob: a06e32bbca3f4a399e3e2c76f9a703a4e5f537f9 (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
;(function () {
  'use strict'

  var request = require('supertest')
  var chai = require('chai')
  var expect = chai.expect

  var utils = require('../utils')

  describe('Test parameters validator', function () {
    var app = null
    var url = ''

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

      utils.flushTests(function () {
        utils.runServer(1, function (app1, url1) {
          app = app1
          url = url1
          done()
        })
      })
    })

    function makePostRequest (path, fields, attach, done, fail) {
      var status_code = 400
      if (fail !== undefined && fail === false) status_code = 200

      var req = request(url)
        .post(path)
        .set('Accept', 'application/json')

      Object.keys(fields).forEach(function (field) {
        var value = fields[field]
        req.field(field, value)
      })

      req.expect(status_code, done)
    }

    function makePostBodyRequest (path, fields, done, fail) {
      var status_code = 400
      if (fail !== undefined && fail === false) status_code = 200

      request(url)
        .post(path)
        .set('Accept', 'application/json')
        .send(fields)
        .expect(status_code, done)
    }

    describe('Of the pods API', function () {
      var path = '/api/v1/pods/'

      describe('When adding a pod', function () {
        it('Should fail with nothing', function (done) {
          var data = {}
          makePostBodyRequest(path, data, done)
        })

        it('Should fail without public key', function (done) {
          var data = {
            data: {
              url: 'http://coucou.com'
            }
          }
          makePostBodyRequest(path, data, done)
        })

        it('Should fail without an url', function (done) {
          var data = {
            data: {
              publicKey: 'mysuperpublickey'
            }
          }
          makePostBodyRequest(path, data, done)
        })

        it('Should fail with an incorrect url', function (done) {
          var data = {
            data: {
              url: 'coucou.com',
              publicKey: 'mysuperpublickey'
            }
          }
          makePostBodyRequest(path, data, function () {
            data.data.url = 'http://coucou'
            makePostBodyRequest(path, data, function () {
              data.data.url = 'coucou'
              makePostBodyRequest(path, data, done)
            })
          })
        })

        it('Should succeed with the correct parameters', function (done) {
          var data = {
            data: {
              url: 'http://coucou.com',
              publicKey: 'mysuperpublickey'
            }
          }
          makePostBodyRequest(path, data, done, false)
        })
      })
    })

    describe('Of the videos API', function () {
      var path = '/api/v1/videos/'

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

      describe('When adding a video', function () {
        it('Should fail with nothing', function (done) {
          var data = {}
          var attach = {}
          makePostRequest(path, data, attach, done)
        })

        it('Should fail without name', function (done) {
          var data = {
            description: 'my super description'
          }
          var attach = {
            'input_video': __dirname + '/../fixtures/video_short.webm'
          }
          makePostRequest(path, data, attach, done)
        })

        it('Should fail with a long name', function (done) {
          var 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'
          }
          var attach = {
            'input_video': __dirname + '/../fixtures/video_short.webm'
          }
          makePostRequest(path, data, attach, done)
        })

        it('Should fail without description', function (done) {
          var data = {
            name: 'my super name'
          }
          var attach = {
            'input_video': __dirname + '/../fixtures/video_short.webm'
          }
          makePostRequest(path, data, attach, done)
        })

        it('Should fail with a long description', function (done) {
          var 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'
          }
          var attach = {
            'input_video': __dirname + '/../fixtures/video_short.webm'
          }
          makePostRequest(path, data, attach, done)
        })

        it('Should fail without an input file', function (done) {
          var data = {
            name: 'my super name',
            description: 'my super description'
          }
          var attach = {}
          makePostRequest(path, data, attach, done)
        })

        it('Should fail without an incorrect input file', function (done) {
          var data = {
            name: 'my super name',
            description: 'my super description'
          }
          var attach = {
            'input_video': __dirname + '/../fixtures/video_short_fake.webm'
          }
          makePostRequest(path, data, attach, done)
        })

        it('Should succeed with the correct parameters', function (done) {
          var data = {
            name: 'my super name',
            description: 'my super description'
          }
          var attach = {
            'input_video': __dirname + '/../fixtures/video_short.webm'
          }
          makePostRequest(path, data, attach, function () {
            attach.input_video = __dirname + '/../fixtures/video_short.mp4'
            makePostRequest(path, data, attach, function () {
              attach.input_video = __dirname + '/../fixtures/video_short.ogv'
              makePostRequest(path, data, attach, done, true)
            }, true)
          }, true)
        })
      })

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

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

              done()
            })
        })

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

        it('Should return 404 with an incorrect video', function (done) {
          request(url)
            .get(path + '123456789012345678901234')
            .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(url)
          .delete(path)
          .expect(404, done)
        })

        it('Should fail without a mongodb id', function (done) {
          request(url)
            .delete(path + 'hello')
            .expect(400, done)
        })

        it('Should fail with a video which does not exist', function (done) {
          request(url)
            .delete(path + '123456789012345678901234')
            .expect(404, done)
        })

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

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

    describe('Of the remote videos API', function () {
      describe('When making a secure request', function () {
        it('Should check a secure request')
      })

      describe('When adding a video', function () {
        it('Should check when adding a video')
      })

      describe('When removing a video', function () {
        it('Should check when removing a video')
      })
    })

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

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