-
Notifications
You must be signed in to change notification settings - Fork 9
/
api.multifeeds.create.js
439 lines (415 loc) · 18.9 KB
/
api.multifeeds.create.js
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
const should = require('should');
const flow = require('nimble');
const httpStatus = require('http-status');
const superagent = require('superagent-ls');
const requireNew = require('require-new');
const wipe = require('./fixture-helpers/wipe');
const setup = require('./fixture-helpers/setup');
const createAuthorizationHeader = require('./fixture-helpers/test-utils').createAuthorizationHeader;
const config = require('../config');
const ESDR_API_ROOT_URL = config.get("esdr:apiRootUrl");
const ESDR_MULTIFEEDS_API_URL = ESDR_API_ROOT_URL + "/multifeeds";
describe("REST API", function() {
const user1 = requireNew('./fixtures/user1.json');
const user2 = requireNew('./fixtures/user2.json');
const multifeed1a = requireNew('./fixtures/multifeed1.json');
const multifeed1b = requireNew('./fixtures/multifeed1.json');
const multifeed2 = requireNew('./fixtures/multifeed2.json');
before(function(initDone) {
flow.series(
[
wipe.wipeAllData,
function(done) {
setup.createUser(user1, done);
},
function(done) {
setup.verifyUser(user1, done);
},
function(done) {
setup.authenticateUser(user1, done);
},
function(done) {
setup.createUser(user2, done);
},
function(done) {
setup.verifyUser(user2, done);
},
function(done) {
setup.authenticateUser(user2, done);
}
],
initDone
);
});
describe("Multifeeds", function() {
describe("Create", function() {
const executeTest = function(test) {
it(test.description, function(done) {
superagent
.post(ESDR_MULTIFEEDS_API_URL)
.set(typeof test.headers === 'undefined' ? {} : (typeof test.headers === 'function' ? test.headers() : test.headers))
.send(test.multifeed)
.end(function(err, res) {
should.not.exist(err);
should.exist(res);
if (test.willDebug) {
console.log(JSON.stringify(test.multifeed, null, 3));
console.log(JSON.stringify(res.body, null, 3));
}
res.should.have.property('status', test.expectedHttpStatus);
if (!test.hasEmptyBody) {
res.should.have.property('body');
res.body.should.have.properties({
code : test.expectedHttpStatus,
status : test.expectedStatusText
});
if (typeof test.expectedResponseData !== 'undefined') {
if (test.expectedResponseData == null) {
res.body.should.have.property('data', null);
}
else {
res.body.should.have.property('data');
res.body.data.should.have.properties(test.expectedResponseData);
}
}
if (test.expectedHttpStatus === httpStatus.CREATED) {
res.body.data.should.have.property('id');
res.body.data.should.have.property('name');
// remember the database ID
test.multifeed.id = res.body.data.id;
// If the name is already defined, make a copy of it under the _name field. Then save
// the returned name under the name field. We do this because creating a multifeed will
// trim the name field
if (typeof test.multifeed.name !== 'undefined') {
test.multifeed._name = test.multifeed.name;
}
test.multifeed.name = res.body.data.name;
}
}
if (typeof test.additionalTests === 'function') {
test.additionalTests(err, res, done);
}
else {
done();
}
});
});
};
describe("Invalid Auth", function() {
[
{
description : "Should fail to create a multifeed if no authentication is provided",
mulitfeed : multifeed1a,
expectedHttpStatus : httpStatus.UNAUTHORIZED,
expectedStatusText : 'error',
hasEmptyBody : true
},
{
description : "Should fail to create a multifeed if invalid authentication is provided",
headers : createAuthorizationHeader("bogus"),
mulitfeed : multifeed1a,
expectedHttpStatus : httpStatus.UNAUTHORIZED,
expectedStatusText : 'error',
hasEmptyBody : true
}
].forEach(executeTest);
}); // End Invalid Auth
describe("Valid Auth", function() {
[
{
description : "Should be able to create a multifeed with no name specified",
headers : function() {
return createAuthorizationHeader(user1['accessToken']);
},
multifeed : multifeed1a,
expectedHttpStatus : httpStatus.CREATED,
expectedStatusText : 'success'
},
{
description : "Should be able to create the same multifeed again with no name specified",
headers : function() {
return createAuthorizationHeader(user1['accessToken']);
},
multifeed : multifeed1b,
expectedHttpStatus : httpStatus.CREATED,
expectedStatusText : 'success',
additionalTests : function(originalErr, originalRes, done) {
// make sure the names are different
multifeed1a['name'].should.not.equal(multifeed1b['name']);
done();
}
},
{
description : "Should be able to create a named multifeed (and the name will be trimmed)",
headers : function() {
return createAuthorizationHeader(user1['accessToken']);
},
multifeed : multifeed2,
expectedHttpStatus : httpStatus.CREATED,
expectedStatusText : 'success',
additionalTests : function(originalErr, originalRes, done) {
// make sure the name got trimmed (see note above about _name)
multifeed2._name.trim().should.equal(multifeed2['name']);
done();
}
},
{
description : "Should fail to create a named multifeed again, by the same user",
headers : function() {
return createAuthorizationHeader(user1['accessToken']);
},
multifeed : multifeed2,
expectedHttpStatus : httpStatus.CONFLICT,
expectedStatusText : 'error',
expectedResponseData : { name : multifeed2['name'].trim() }
},
{
description : "Should fail to create a named multifeed again, by a different user",
headers : function() {
return createAuthorizationHeader(user2['accessToken']);
},
multifeed : multifeed2,
expectedHttpStatus : httpStatus.CONFLICT,
expectedStatusText : 'error',
expectedResponseData : { name : multifeed2['name'].trim() }
}
].forEach(executeTest);
// validation tests
[
{
description : "Should fail to create multifeed with no spec field specified",
accessToken : function() {
return user1['accessToken']
},
multifeed : {},
getExpectedValidationItems : function() {
return [
{
"keyword" : "required",
"dataPath" : "",
"schemaPath" : "#/required",
"params" : {
"missingProperty" : "spec"
}
}
];
}
},
{
description : "Should fail to create multifeed with an empty array of specs specified",
accessToken : function() {
return user1['accessToken']
},
multifeed : { spec : [] },
getExpectedValidationItems : function() {
return [
{
"keyword" : "minItems",
"dataPath" : ".spec",
"schemaPath" : "#/properties/spec/minItems"
}
];
}
},
{
description : "Should fail to create multifeed if the spec field is not an array",
accessToken : function() {
return user1['accessToken']
},
multifeed : { spec : "bogus" },
getExpectedValidationItems : function() {
return [
{
"keyword" : "type",
"dataPath" : ".spec",
"schemaPath" : "#/properties/spec/type",
"params" : {
"type" : "array"
}
}
];
}
},
{
description : "Should fail to create multifeed with the spec array containing a single empty object",
accessToken : function() {
return user1['accessToken']
},
multifeed : { spec : [{}] },
getExpectedValidationItems : function() {
return [
{
"keyword" : "required",
"dataPath" : ".spec[0]",
"schemaPath" : "#/properties/spec/items/required",
"params" : {
"missingProperty" : "feeds"
}
},
{
"keyword" : "required",
"dataPath" : ".spec[0]",
"schemaPath" : "#/properties/spec/items/required",
"params" : {
"missingProperty" : "channels"
}
}
];
}
},
{
description : "Should fail to create multifeed with the spec array containing an object with feeds and channels fields of the wrong type",
accessToken : function() {
return user1['accessToken']
},
multifeed : { spec : [{ feeds : 4, channels : 42 }] },
getExpectedValidationItems : function() {
return [
{
"keyword" : "type",
"dataPath" : ".spec[0].feeds",
"schemaPath" : "#/properties/spec/items/properties/feeds/type",
"params" : {
"type" : "string"
}
},
{
"keyword" : "type",
"dataPath" : ".spec[0].channels",
"schemaPath" : "#/properties/spec/items/properties/channels/type",
"params" : {
"type" : "array"
}
}
];
}
},
{
description : "Should fail to create multifeed with the spec array containing an object with only the feeds field",
accessToken : function() {
return user1['accessToken']
},
multifeed : { spec : [{ feeds : "where=outdoor=1,productId=42" }] },
getExpectedValidationItems : function() {
return [
{
"keyword" : "required",
"dataPath" : ".spec[0]",
"schemaPath" : "#/properties/spec/items/required",
"params" : {
"missingProperty" : "channels"
}
}
];
}
},
{
description : "Should fail to create multifeed with the spec array containing an object with only the channels field",
accessToken : function() {
return user1['accessToken']
},
multifeed : { spec : [{ channels : ["particle_concentration", "humidity"] }] },
getExpectedValidationItems : function() {
return [
{
"keyword" : "required",
"dataPath" : ".spec[0]",
"schemaPath" : "#/properties/spec/items/required",
"params" : {
"missingProperty" : "feeds"
}
}
];
}
},
{
description : "Should fail to create multifeed with if the channels array is empty",
accessToken : function() {
return user1['accessToken']
},
multifeed : { spec : [{ feeds : "where=outdoor=1,productId=42", channels : [] }] },
getExpectedValidationItems : function() {
return [
{
"keyword" : "minItems",
"dataPath" : ".spec[0].channels",
"schemaPath" : "#/properties/spec/items/properties/channels/minItems"
}
];
}
},
{
description : "Should fail to create multifeed with if the channels array contains an empty string",
accessToken : function() {
return user1['accessToken']
},
multifeed : {
spec : [{
feeds : "where=outdoor=1,productId=42",
channels : ["humidity", ""]
}]
},
getExpectedValidationItems : function() {
return [
{
"keyword" : "minLength",
"dataPath" : ".spec[0].channels[1]",
"schemaPath" : "#/properties/spec/items/properties/channels/items/minLength"
}
];
}
},
{
description : "Should fail to create multifeed if the channels array contains multiple instances of the same string",
accessToken : function() {
return user1['accessToken']
},
multifeed : {
spec : [{
feeds : "where=outdoor=1,productId=42",
channels : ["humidity", "particle_concentration", "humidity"]
}]
},
getExpectedValidationItems : function() {
return [
{
"keyword" : "uniqueItems",
"dataPath" : ".spec[0].channels",
"schemaPath" : "#/properties/spec/items/properties/channels/uniqueItems"
}
];
}
}
].forEach(function(test) {
it(test.description, function(done) {
superagent
.post(ESDR_MULTIFEEDS_API_URL)
.set(createAuthorizationHeader(test['accessToken']))
.send(test.multifeed)
.end(function(err, res) {
should.not.exist(err);
should.exist(res);
if (test.willDebug) {
console.log(JSON.stringify(test.multifeed, null, 3));
console.log(JSON.stringify(res.body, null, 3));
}
res.should.have.property('status', httpStatus.UNPROCESSABLE_ENTITY);
res.should.have.property('body');
res.body.should.have.properties({
code : httpStatus.UNPROCESSABLE_ENTITY,
status : 'error'
});
const expectedValidationItems = test.getExpectedValidationItems();
res.body.should.have.property('data');
res.body.data.errors.should.have.length(expectedValidationItems.length);
res.body.data.errors.forEach(function(validationItem, index) {
validationItem.should.have.properties(expectedValidationItems[index]);
});
done();
});
});
});
}); // End Valid Auth
}); // End Create
}); // End Multifeeds
}); // End REST API