-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathnodes.js
542 lines (486 loc) · 20 KB
/
nodes.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
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
var should = require('chai').should(),
async = require('async'),
path = require('path');
describe('Grasshopper core - testing nodes', function(){
'use strict';
var async = require('async'),
fs = require('fs'),
grasshopper = require('./config/grasshopper'),
globalAdminToken = '',
globalReaderToken = '',
globalEditorToken = '',
nodeEditorToken = '',
restrictedEditorToken = '',
testNodeId = '5261781556c02c072a000007',
testLockedDownNodeId = '526d5179966a883540000006',
testSubSubWithLockedParent = '5320ed3fb9c9cb6364e23031',
testNodeWithNoSubNodes = '5246e73d56c02c0744000001',
testNodeIdRoot_generated = '',
testNodeIdSubNode_generated = '',
testNodeIdSubSub_generated = '',
testContentTypeID = '524362aa56c02c0703000001',
testContentTypeID_Users = '5254908d56c02c076e000001',
badTestContentTypeID = '52698a0033e248a360000006',
badTestNodeId = '526d545623c0ff9442000006';
before(function(done){
async.parallel(
[
function(cb){
grasshopper.auth('username', { username: 'apitestuseradmin', password: 'TestPassword' }).then(function(token){
globalAdminToken = token;
cb();
});
},
function(cb){
grasshopper.auth('username', { username: 'apitestuserreader', password: 'TestPassword' }).then(function(token){
globalReaderToken = token;
cb();
});
},
function(cb){
grasshopper.auth('username', { username: 'apitestusereditor', password: 'TestPassword' }).then(function(token){
globalEditorToken = token;
cb();
});
},
function(cb){
grasshopper.auth('username', { username: 'apitestuserreader_1', password: 'TestPassword' }).then(function(token){
nodeEditorToken = token;
cb();
});
},
function(cb){
grasshopper.auth('username', { username: 'apitestusereditor_restricted', password: 'TestPassword' }).then(function(token){
restrictedEditorToken = token;
cb();
});
}
],function(){
done();
}
);
});
describe('insert', function() {
it('should create a node beause I have edit permissions.', function(done){
var n = {
label : 'My Test Node',
parent: null
};
grasshopper.request(globalEditorToken).nodes.insert(n).then(
function(payload){
testNodeIdRoot_generated = payload._id.toString();
payload.label.should.equal('My Test Node');
},
function(err){
should.not.exist(err);
}
).done(done);
});
it('should create a node (sub node of root)', function(done){
var n = {
label : 'My Test Sub-Node',
parent: testNodeIdRoot_generated
};
grasshopper.request(globalEditorToken).nodes.insert(n).then(
function(payload){
var id = payload.parent._id.toString();
payload.label.should.equal('My Test Sub-Node');
id.should.equal(testNodeIdRoot_generated);
},
function(err){
should.not.exist(err);
}
).done(done);
});
it('should return an error because we are missing a "label" field.', function(done){
var n = {
parent: testNodeIdRoot_generated
};
grasshopper.request(globalEditorToken).nodes.insert(n).then(
function(payload){
should.not.exist(payload);
},
function(err){
err.code.should.equal(400);
err.message.should.equal('"label" is a required field.');
}
).done(done);
});
/* Requires Node Level Permissions
it('should create a node when a reader with editor permissions creates a node', function(done){
var n = {
label : 'Reader Created Node',
parent: testNodeId
};
grasshopper.request(nodeEditorToken).nodes.insert(n).then(
function(payload){
var id = payload.parent._id.toString();
payload.label.should.equal('Reader Created Node');
id.should.equal(testNodeId);
testNodeIdSubSub_generated = payload._id.toString();
},
function(err){
should.not.exist(err);
}
).done(done);
});*/
it('should return error when a reader tries to create a node', function(done){
var n = {
label: "Reader Created Node",
parent: testNodeIdRoot_generated
};
grasshopper.request(globalReaderToken).nodes.insert(n).then(
function(payload){
should.not.exist(payload);
},
function(err){
err.code.should.equal(403);
}
).done(done);
});
it('should return error when a reader tries to create a node', function(done){
var n = {
label: "Editor Created Node",
parent: testNodeId
};
grasshopper.request(restrictedEditorToken).nodes.insert(n).then(
function(payload){
should.not.exist(payload);
},
function(err){
err.code.should.equal(403);
}
).done(done);
});
});
describe('Add content types to a node.', function() {
it('should add a content type to an existing node as the property allowedTypes sent as a single string value.', function(done){
grasshopper.request(globalEditorToken).nodes.saveContentTypes(testNodeId, testContentTypeID).then(
function(payload){
payload.should.equal('Success');
},
function(err){
should.not.exist(err);
}
).done(done);
});
it('should add a content type to an existing node as the property allowedTypes sent as a single object value.', function(done){
var t = {
id: testContentTypeID
};
grasshopper.request(globalEditorToken).nodes.saveContentTypes(testNodeId, t).then(
function(payload){
payload.should.equal('Success');
},
function(err){
should.not.exist(err);
}
).done(done);
});
it('should add a content type to an existing node as the property allowedTypes sent as an array of objects.', function(done){
var t = [{
id: testContentTypeID
},{
id: testContentTypeID_Users
}];
grasshopper.request(globalEditorToken).nodes.saveContentTypes(testNodeId, t).then(
function(payload){
payload.should.equal('Success');
},
function(err){
should.not.exist(err);
}
).done(done);
});
it('should add a content type to an existing node as the property allowedTypes sent as an array of strings.', function(done){
var t = [testContentTypeID, testContentTypeID_Users];
grasshopper.request(globalEditorToken).nodes.saveContentTypes(testNodeId, t).then(
function(payload){
payload.should.equal('Success');
},
function(err){
should.not.exist(err);
}
).done(done);
});
it('should replace a content type in an existing node with existing contenttypes.', function(done){
grasshopper.request(globalEditorToken).nodes.saveContentTypes(testNodeId, testContentTypeID).then(
function(){
grasshopper.request(globalEditorToken).nodes.saveContentTypes(testNodeId, testContentTypeID_Users).then(
function(){
grasshopper.request(globalEditorToken).nodes.getById(testNodeId).then(
function(payload){
payload.allowedTypes[0].label.should.equal('Users');
},
function(err){
should.not.exist(err);
}
).done(done);
},function(err){
should.not.exist(err);
}
).done();
},function(err){
should.not.exist(err);
}
).done();
});
it('should fail with 401 if the user is unauthenticated.', function(done){
grasshopper.request().nodes.saveContentTypes(testNodeId, testContentTypeID).then(
function(payload){
should.not.exist(payload);
},
function(err){
err.code.should.equal(401);
}
).done(done);
});
/* Requires Node Level Permissions
it('Should fail with a 403 if a user does not have editor permissions to the parent node.', function(done){
grasshopper.request(globalReaderToken).nodes.saveContentTypes(testNodeId, testContentTypeID).then(
function(payload){
should.not.exist(payload);
},
function(err){
err.code.should.equal(403);
}
).done(done);
});*/
it('should fail with 500 if trying to save a content type to a node that doesn\'t exist.', function(done){
grasshopper.request(globalEditorToken).nodes.saveContentTypes(testNodeId, badTestContentTypeID).then(
function(payload){
should.not.exist(payload);
},
function(err){
err.code.should.equal(404);
}
).done(done);
});
});
describe('getById', function() {
it('should return 401 because trying to access unauthenticated', function(done) {
grasshopper.request().nodes.getById(testNodeId).then(
function(payload){
should.not.exist(payload);
},
function(err){
err.code.should.equal(401);
}
).done(done);
});
it('should return a node when using a id', function(done) {
grasshopper.request(globalAdminToken).nodes.getById(testNodeId).then(
function(payload){
payload._id.toString().should.equal(testNodeId);
},
function(err){
should.not.exist(err);
}
).done(done);
});
it('should return a nodes allowedTypes when using a id', function(done) {
grasshopper.request(globalAdminToken).nodes.getById(testNodeId).then(
function(payload){
payload.should.include.keys('allowedTypes');
},
function(err){
should.not.exist(err);
}
).done(done);
});
it('should return a nodes allowedTypes with the fields (id, label, helptext) when using a id', function(done) {
grasshopper.request(globalEditorToken).nodes.getById(testNodeId).then(
function(payload){
payload.should.include.keys('allowedTypes');
},
function(err){
should.not.exist(err);
}
).done(done);
});
/* Requires Node Level Permissions
it('a reader should return a 403 because user does not have permissions to access a particular node', function(done) {
grasshopper.request(nodeEditorToken).nodes.getById(testLockedDownNodeId).then(
function(payload){
should.not.exist(payload);
},
function(err){
err.code.should.equal(403);
}
).done(done);
});
it('an editor with rights restricted to a specific node should return a 403 error', function(done) {
grasshopper.request(restrictedEditorToken).nodes.getById(testLockedDownNodeId).then(
function(payload){
should.not.exist(payload);
},
function(err){
err.code.should.equal(403);
}
).done(done);
});*/
it('an editor should return an existing node object', function(done) {
grasshopper.request(globalEditorToken).nodes.getById(testNodeId).then(
function(payload){
payload._id.toString().should.equal(testNodeId);
},
function(err){
should.not.exist(err);
}
).done(done);
});
it('a reader should return an existing node object', function(done) {
grasshopper.request(globalReaderToken).nodes.getById(testNodeId).then(
function(payload){
payload._id.toString().should.equal(testNodeId);
},
function(err){
should.not.exist(err);
}
).done(done);
});
});
/* Future requirement
describe('getById hydrated.', function() {
it('a reader with all valid permissions should get a node object back with a full collection of child nodes and its content', function(done) {
grasshopper.request(globalReaderToken).nodes.getById()
request(url)
.get('/node/' + testNodeId + "/hydrate")
.set('Accept', 'application/json')
.set('Accept-Language', 'en_US')
.set('authorization', 'Token ' + globalReaderToken)
.end(function(err, res) {
if (err) { throw err; }
res.status.should.equal(200);
res.body.length.should.equal(11);
done();
});
true.should.equal(false);
done();
});
});
describe('getById - Deep load children', function() {
it('a reader with all valid permissions should get a node object back with a full collection of child nodes', function(done) {
grasshopper.request(globalReaderToken).nodes.getChildren(testSubSubWithLockedParent, true, true).then(
function(payload){
//console.log(payload);
},
function(err){
console.log(err);
should.not.exist(err);
}
).done(done);
});
it('a reader with all valid permissions should get a node object back with a full collection of child nodes including the parent node.', function(done) {
grasshopper.request(globalReaderToken).nodes.getById(testSubSubWithLockedParent, true, true).then(
function(payload){
//console.log(payload);
},
function(err){
console.log(err);
should.not.exist(err);
}
).done(done);
});
*/
/* Requires Node Level Permissions
it('a global reader with with a restriction on a child node should get a node object back with a filtered collection of child nodes', function(done) {
true.should.equal(false);
done();
});
});*/
describe('get node children', function() {
it('should return a 401 because user is not authenticated', function(done) {
grasshopper.request().nodes.getChildren(testNodeId).then(
function(payload){
should.not.exist(payload);
},
function(err){
err.code.should.equal(401);
}
).done(done);
});
it('a reader with all valid permissions should get a node object back with a full collection of child nodes', function(done) {
grasshopper.request(globalReaderToken).nodes.getChildren(testNodeId).then(
function(payload){
payload.length.should.equal(9);
},
function(err){
should.not.exist(err);
}
).done(done);
});
/* Requires Node Level Permissions
it('should return a 403 because user does not have permissions to access this node', function(done) {
true.should.equal(false);
done();
});
it('a global reader with with a restriction on a child node should get a node object back with a filtered collection of child nodes', function(done) {
true.should.equal(false);
done();
});*/
it('should return list of root level child nodes', function(done) {
grasshopper.request(globalReaderToken).nodes.getChildren(null).then(
function(payload){
payload.length.should.equal(3);
},
function(err){
should.not.exist(err);
}
).done(done);
});
});
describe('deleteById', function() {
before(function(done) {
function upload(file, next){
fs.writeFileSync(path.join(__dirname, file.replace('./fixtures/', 'public/5320ed3fb9c9cb6364e23031/')), fs.readFileSync(path.join(__dirname, file)));
next();
}
try{
fs.mkdirSync(path.join(__dirname, 'public/5320ed3fb9c9cb6364e23031/'));
}
catch (e){}
async.each([
'./fixtures/assetfordeletion.png',
'./fixtures/36.png',
'./fixtures/48.png',
'./fixtures/72.png',
'./fixtures/96.png'
], upload, done);
});
it('Should delete an node.', function(done) {
grasshopper.request(globalEditorToken).nodes.deleteById(testNodeId).then(
function(payload){
payload.should.equal('Success');
},
function(err){
should.not.exist(err);
}
).done(done);
});
/* Requires Node Level Permissions
it('Should delete a generated node.', function(done) {
grasshopper.request(globalEditorToken).nodes.deleteById(testNodeIdSubSub_generated).then(
function(payload){
console.log(payload);
},
function(err){
console.log(err);
}
).done(done);
});
*/
});
after(function(done){
function del(file, next){
fs.unlinkSync(path.join(__dirname, file));
next();
}
async.each([
'tmp/36.png',
'tmp/48.png',
'tmp/72.png',
'tmp/96.png'
], del, done);
});
});