-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathAPI-Spec.js
More file actions
1208 lines (1208 loc) · 53.1 KB
/
API-Spec.js
File metadata and controls
1208 lines (1208 loc) · 53.1 KB
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
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
'use strict';
import assert from 'assert';
import _ from 'lodash';
import mongoose from 'mongoose';
import dbHelpers from '../helpers/db-helpers.js';
import async from 'async';
let fngInstance;
before(function (done) {
dbHelpers.setUpDB(mongoose, function (fngRet) {
fngInstance = fngRet;
done();
});
});
after(async function () {
await dbHelpers.dropDb(mongoose);
});
describe('API tests', function () {
describe('original API', function () {
it('returns models', function () {
const mockReq = {};
const mockRes = {
send: function (models) {
assert.equal(models.length, 11);
assert(_.find(models, function (resource) {
return resource.resourceName === 'b_using_options';
}).options.hide.indexOf('login') > -1, 'must send login as a hidden field');
}
};
fngInstance.models()(mockReq, mockRes);
});
it('returns straight schema', function (done) {
const mockReq = { params: { resourceName: 'a_unadorned_mongoose' } };
const mockRes = {
send: function (schema) {
let keys = Object.keys(schema);
assert.equal(keys.length, 8);
assert.equal(schema[keys[0]].path, 'surname');
assert.equal(schema[keys[1]].path, 'forename');
assert.equal(schema[keys[2]].path, 'phone');
assert.equal(schema[keys[3]].path, 'weight');
assert.equal(schema[keys[4]].path, 'eyeColour');
assert.equal(schema[keys[5]].path, 'dateOfBirth');
assert.equal(schema[keys[6]].path, 'accepted');
assert.equal(schema[keys[7]].path, '_id');
done();
}
};
fngInstance.schema()(mockReq, mockRes);
});
it('returns nested schema', function (done) {
const mockReq = { params: { resourceName: 'f_nested_schema' } };
const mockRes = {
send: function (schema) {
let keys = Object.keys(schema);
assert.equal(keys.length, 5);
assert.equal(keys[0], 'surname');
assert.equal(schema[keys[0]].path, 'surname');
assert.equal(keys[1], 'forename');
assert.equal(schema[keys[1]].path, 'forename');
assert.equal(keys[2], 'aTest');
assert.equal(schema[keys[2]].path, 'aTest');
assert.equal(keys[3], 'exams');
keys = Object.keys(schema[keys[3]].schema);
assert.equal(keys.length, 6);
assert.equal(keys[0], 'subject');
assert.equal(schema.exams.schema[keys[0]].path, 'subject');
assert.equal(keys[3], 'result');
assert.equal(schema.exams.schema[keys[3]].path, 'result');
done();
}
};
fngInstance.schema()(mockReq, mockRes);
});
it('returns forms schema', function (done) {
const mockReq = { params: { resourceName: 'b_using_options', formName: 'justnameandpostcode' } };
const mockRes = {
send: function (schema) {
let keys = Object.keys(schema);
assert.equal(keys.length, 4);
assert.equal(schema[keys[0]].path, 'surname');
assert.equal(schema[keys[1]].path, 'address.postcode');
done();
}
};
fngInstance.schema()(mockReq, mockRes);
});
it('supports nested schemas within form schemas', function (done) {
const mockReq = { params: { resourceName: 'f_nested_schema', formName: 'EnglishAndMaths' } };
const mockRes = {
send: function (schema) {
let keys = Object.keys(schema);
assert.equal(keys.length, 3);
assert.equal(schema[keys[0]].path, 'surname');
assert.equal(keys[0], 'surname');
assert.equal(schema[keys[1]].path, 'forename');
assert.equal(keys[1], 'forename');
assert.equal(keys[2], 'exams');
keys = Object.keys(schema[keys[2]].schema);
assert.equal(keys.length, 6);
assert.equal(keys[0], 'subject');
assert.equal(schema.exams.schema[keys[0]].path, 'subject');
assert.equal(keys[3], 'result');
assert.equal(schema.exams.schema[keys[3]].path, 'result');
assert.equal(keys[4], 'grader');
assert.equal(schema.exams.schema[keys[4]].options.form.label, 'Marked by');
done();
}
};
fngInstance.schema()(mockReq, mockRes);
});
it('allows form schemas to override nested schemas', function (done) {
const mockReq = { params: { resourceName: 'f_nested_schema', formName: 'ResultsOnly' } };
const mockRes = {
send: function (schema) {
let keys = Object.keys(schema);
assert.equal(keys.length, 3);
assert.equal(schema[keys[0]].path, 'surname');
assert.equal(keys[0], 'surname');
assert.equal(schema[keys[1]].path, 'forename');
assert.equal(keys[1], 'forename');
assert.equal(keys[2], 'exams');
keys = Object.keys(schema[keys[2]].schema);
assert.equal(keys.length, 2);
assert.equal(keys[0], 'subject');
assert.equal(schema.exams.schema[keys[0]].path, 'subject');
assert.equal(keys[1], 'result');
assert.equal(schema.exams.schema[keys[1]].path, 'result');
assert.equal(schema.exams.schema[keys[1]].options.form.label, 'Outcome');
done();
}
};
fngInstance.schema()(mockReq, mockRes);
});
it('supports enums with values and labels', function (done) {
const mockReq = { params: { resourceName: 'b_using_options' } };
const mockRes = {
send: function (schema) {
assert.equal(schema['education'].enumValues[1], 'univ');
assert.equal(schema['education'].options.enum.values[1], 'univ');
assert.equal(schema['education'].options.enum.labels[1], 'University');
assert.equal(schema['education'].validators[0].enumValues[1], 'univ');
done();
}
};
fngInstance.schema()(mockReq, mockRes);
});
});
describe('API', function () {
describe('document read', function () {
let bData, status;
function getItem(id, query, cb) {
const mockReq = {
url: '/b_using_options/' + id,
params: { resourceName: 'b_using_options', id: id },
query: query
};
const mockRes = {
status: function (data) {
status = data;
return this;
},
send: function (data) {
cb(null, data);
}
};
fngInstance.entityGet()(mockReq, mockRes);
}
describe('simple', function () {
before(function (done) {
getItem('519a6075b320153869b175e0', {}, function (err, result) {
if (err) {
throw err;
}
bData = result;
done();
});
});
it('should send a record', function () {
assert(status === 200);
assert(bData);
});
it('should not send secure fields of a modified schema', function () {
assert(bData.surname, 'Must send surname');
assert(bData.forename, 'Must send forename');
assert(!bData.login, 'Must not send secure login field');
assert(!bData.passwordHash, 'Must not send secure password hash field');
assert(bData.email, 'Must send email');
assert(bData.weight, 'Must send weight');
assert(bData.accepted, 'Must send accepted');
assert(bData.interviewScore, 'Must send interview score');
assert(bData.freeText, 'Must send freetext');
});
it('should not send secure fields of a modified subschema', function () {
assert(bData.address.line1, 'Must send line1');
assert(bData.address.town, 'Must send town');
assert(bData.address.postcode, 'Must send postcode');
assert(!bData.address.surveillance, 'Must not send secure surveillance field');
});
});
describe('projection', function () {
before(function (done) {
getItem('519a6075b320153869b175e0', { p: { surname: 1, forename: 1, login: 1, 'address.line1': 1, 'address.surveillance': 1 } }, function (err, result) {
if (err) {
throw err;
}
bData = result;
done();
});
});
it('should send a record', function () {
assert(bData);
assert(status === 200);
});
it('should not send secure fields of a modified schema', function () {
assert(bData.surname, 'Must send surname');
assert(bData.forename, 'Must send forename');
assert(!bData.login, 'Must not send secure login field');
assert(!bData.passwordHash, 'Must not send secure password hash field');
assert(!bData.email, 'Must not send email');
assert(!bData.weight, 'Must not send weight');
assert(!bData.accepted, 'Must not send accepted');
assert(!bData.interviewScore, 'Must not send interview score');
assert(!bData.freeText, 'Must not send freetext');
});
it('should not send secure fields of a modified subschema', function () {
assert(bData.address.line1, 'Must send line1');
assert(!bData.address.town, 'Must not send town');
assert(!bData.address.postcode, 'Must not send postcode');
assert(!bData.address.surveillance, 'Must not send secure surveillance field');
});
});
describe('findFunc filter', function () {
before(function (done) {
getItem('519a6075b440153869b155e0', {}, function (err, result) {
if (err) {
throw err;
}
bData = result;
done();
});
});
it('should not send a record', function () {
assert(!bData || !bData.success);
assert(status === 404);
});
});
});
describe('collection read', function () {
let aData, aPtr, bData, bPtr;
function getCollection(model, cb) {
const mockReq = {
url: '/' + model,
params: { resourceName: model }
};
const mockRes = {
send: function (data) {
cb(null, data);
}
};
fngInstance.collectionGet()(mockReq, mockRes);
}
before(function (done) {
async.auto({
aData: function (cb) {
getCollection('a_unadorned_mongoose', cb);
},
bData: function (cb) {
getCollection('b_using_options', cb);
}
}, function (err, results) {
if (err) {
throw err;
}
aData = results['aData'];
aPtr = aData.find(function (obj) {
return obj.surname === 'TestPerson1';
});
bData = results['bData'];
bPtr = bData.find(function (obj) {
return obj.surname === 'IsAccepted1';
});
done();
});
});
it('should send the right number of records', function () {
assert.equal(aData.length, 2);
});
it('should send the all the fields of mongoose schema', function () {
assert(aPtr.surname, 'must send surname');
assert(aPtr.forename, 'must send forename');
assert(aPtr.weight, 'must send weight');
assert(aPtr.eyeColour, 'must send eyeColour');
assert(aPtr.dateOfBirth, 'must send dob');
assert.equal(aPtr.accepted, false, 'must send accepted');
});
it('should filter out records that do not match the find func', function () {
assert.equal(bData.length, 2);
});
it('should not send secure fields of a modified schema', function () {
assert(bPtr.surname, 'Must send surname');
assert(bPtr.forename, 'Must send forename');
assert.equal(Object.keys(bPtr).indexOf('login'), -1, 'Must not send secure login field');
assert.equal(Object.keys(bPtr).indexOf('passwordHash'), -1, 'Must not send secure password hash field');
assert(bPtr.email, 'Must send email');
assert(bPtr.weight, 'Must send weight');
assert(bPtr.accepted, 'Must send accepted');
assert(bPtr.interviewScore, 'Must send interview score');
assert(bPtr.freeText, 'Must send freetext');
});
it('should not send secure fields of a modified subschema', function () {
assert(bPtr.address.line1, 'Must send line1');
assert(bPtr.address.town, 'Must send town');
assert(bPtr.address.postcode, 'Must send postcode');
assert.equal(Object.keys(bPtr).indexOf('address.surveillance'), -1, 'Must not send secure surveillance field');
});
});
describe('collection projection', function () {
let aData, aPtr, bData, bPtr;
function getCollectionProjection(model, proj, cb) {
const mockReq = {
url: '/' + model,
query: { p: JSON.stringify(proj) },
params: { resourceName: model }
};
const mockRes = {
send: function (data) {
cb(null, data);
}
};
fngInstance.collectionGet()(mockReq, mockRes);
}
before(function (done) {
async.auto({
aData: function (cb) {
getCollectionProjection('a_unadorned_mongoose', { forename: 0, weight: 0 }, cb);
},
bData: function (cb) {
getCollectionProjection('b_using_options', { surname: 1, weight: 1, login: 1, 'address.surveillance': 1, 'address.line1': 1 }, cb);
}
}, function (err, results) {
if (err) {
throw err;
}
aData = results['aData'];
aPtr = aData.find(function (obj) {
return obj.surname === 'TestPerson1';
});
bData = results['bData'];
bPtr = bData.find(function (obj) {
return obj.surname === 'IsAccepted1';
});
done();
});
});
it('should send the right number of records', function () {
assert.strictEqual(aData.length, 2);
});
it('should suppress unselected fields', function () {
assert(aPtr.surname, 'must send surname');
assert(!aPtr.forename, 'must not send forename');
assert(!aPtr.weight, 'must not send weight');
assert(aPtr.eyeColour, 'must send eyeColour');
assert(aPtr.dateOfBirth, 'must send dob');
assert.strictEqual(aPtr.accepted, false, 'must send accepted');
});
it('should send select fields unless they are secure', function () {
assert(bPtr.surname, 'Must send surname');
assert(!bPtr.forename, 'Must not send forename');
assert(!bPtr.login, 'Must not send secure login field');
assert(!bPtr.passwordHash, 'Must not send secure password hash field');
assert(!bPtr.email, 'Must not send email');
assert(bPtr.weight, 'Must send weight');
assert(!bPtr.accepted, 'Must not send accepted');
assert(!bPtr.interviewScore, 'Must not send interview score');
assert(!bPtr.freeText, 'Must not send freetext');
});
it('should not send secure fields of a modified subschema', function () {
assert(bPtr.address.line1, 'Must send line1');
assert(!bPtr.address.town, 'Must not send town');
assert(!bPtr.address.postcode, 'Must not send postcode');
assert(!bPtr.address.surveillance, 'Must not send secure surveillance field');
});
});
describe('data update', function () {
let id;
it('should create a record', function (done) {
const mockReq = {
url: '/b_using_options',
params: { resourceName: 'b_using_options' },
body: { 'surname': 'TestCreate', 'accepted': true },
ip: '192.168.99.99'
};
const mockRes = {
send: function (data) {
assert(data._id, 'Must return the id');
id = data._id;
assert.equal(data.surname, 'TestCreate');
assert.equal(data.accepted, true);
assert.equal(data.ipAddress, '192.168.99.99');
done();
}
};
fngInstance.collectionPost()(mockReq, mockRes);
});
it('should update a record', function (done) {
const mockReq = {
url: '/b_using_options/' + id,
params: { resourceName: 'b_using_options', id: id },
body: { 'forename': 'Alfie' }
};
const mockRes = {
send: function (data) {
assert.equal(data.forename, 'Alfie');
done();
}
};
fngInstance.entityPut()(mockReq, mockRes);
});
it('should delete a record', function (done) {
const mockReq = {
url: '/b_using_options/' + id,
params: { resourceName: 'b_using_options', id: id }
};
const mockRes = {
status: function (code) {
assert.strictEqual(code, 200);
return this;
},
send: function () {
done();
}
};
fngInstance.entityDelete()(mockReq, mockRes);
});
});
describe('Secure fields', function () {
it('should not be transmitted in a listing', function (done) {
const mockReq = {
url: 'c_subdoc_example',
params: {
resourceName: 'c_subdoc_example',
id: '519aaaaab320153869b175e0'
}
};
const mockRes = {
send: function (data) {
assert.equal(data.length, 2);
const dataPtr = data.find(function (obj) {
return obj.surname === 'Anderson';
});
assert.equal(dataPtr.passwordHash, undefined);
assert.notEqual(dataPtr.interview.score, undefined);
assert.equal(dataPtr.interview.interviewHash, undefined);
done();
}
};
fngInstance.collectionGet()(mockReq, mockRes);
});
it('should not be transmitted in an entity get', function (done) {
const mockReq = {
url: 'c_subdoc_example/519aaaaab320153869b175e0',
params: {
resourceName: 'c_subdoc_example',
id: '519aaaaab320153869b175e0'
}
};
const mockRes = {
status: function (code) {
assert.strictEqual(code, 200);
return this;
},
send: function (data) {
assert.equal(data.surname, 'Anderson');
assert.equal(data.passwordHash, undefined);
assert.notEqual(data.interview.score, undefined);
assert.equal(data.interview.interviewHash, undefined);
done();
}
};
fngInstance.entityGet()(mockReq, mockRes);
});
it('should not be overwritten by nulls and should not be transmitted on update', function (done) {
const mockReq = {
url: '/c_subdoc_example/519aaaaab320153869b175e0',
params: { resourceName: 'c_subdoc_example', id: '519aaaaab320153869b175e0' },
body: {
'surname': 'Anderson',
'forename': 'John',
'weight': 124,
'hairColour': 'Brown',
'accepted': true,
'interview': { 'score': 97, 'date': '23 Mar 2013' }
}
};
const mockRes = {
send: async function (data) {
assert.equal(data.weight, 124);
assert.equal(data.passwordHash, undefined);
assert.equal(data.interview.score, 97);
assert.equal(data.interview.interviewHash, undefined);
const resource = fngInstance.getResource('c_subdoc_example');
const dataOnDisk = await resource.model.findById('519aaaaab320153869b175e0');
assert.equal(dataOnDisk.weight, 124);
assert.equal(dataOnDisk.passwordHash, 'top secret');
assert.equal(dataOnDisk.interview.score, 97);
assert.equal(dataOnDisk.interview.interviewHash, 'you think I would tell you?');
done();
}
};
fngInstance.entityPut()(mockReq, mockRes);
});
});
describe('Filtering records', function () {
let id;
it('should create a record', function (done) {
const mockReq = {
url: '/b_using_options',
params: { resourceName: 'b_using_options' },
body: { 'surname': 'TestCreate', 'forename': 'Alice', 'accepted': false },
ip: '192.168.99.99'
};
const mockRes = {
send: function (data) {
assert(data._id, 'Must return the id');
id = data._id;
assert.equal(data.surname, 'TestCreate');
assert.equal(data.accepted, false);
assert.equal(data.ipAddress, '192.168.99.99');
done();
}
};
fngInstance.collectionPost()(mockReq, mockRes);
});
it('should not update a record', function (done) {
const mockReq = {
url: '/b_using_options/' + id,
params: { resourceName: 'b_using_options', id: id },
body: { 'forename': 'Alfie' }
};
const mockRes = {
status: function (code) {
assert.strictEqual(code, 404);
return this;
},
send: function (data) {
assert.equal(data.success, false);
done();
}
};
fngInstance.entityPut()(mockReq, mockRes);
});
it('should not delete a record', function (done) {
const mockReq = {
url: '/b_using_options/' + id,
params: { resourceName: 'b_using_options', id: id }
};
const mockRes = {
status: function (code) {
assert.strictEqual(code, 404);
return this;
},
send: function (data) {
assert(!data.success, 'Was allowed to delete document');
done();
}
};
fngInstance.entityDelete()(mockReq, mockRes);
});
});
describe('Search API', function () {
it('should find a single match', function (done) {
const mockReq = {
url: '/search',
query: {
q: 'IsAccepted1'
}
};
const mockRes = {
status: function (code) {
assert.strictEqual(code, 200);
return this;
},
send: function (data) {
assert.equal(data.results.length, 1);
done();
}
};
fngInstance.searchAll()(mockReq, mockRes);
});
it('should find two matches', function (done) {
const mockReq = {
url: '/search',
query: {
q: 'Test'
}
};
const mockRes = {
status: function (code) {
assert.strictEqual(code, 200);
return this;
},
send: function (data) {
assert.equal(data.results.length, 2);
done();
}
};
fngInstance.searchAll()(mockReq, mockRes);
});
it('should not find records that do not meet find function', function (done) {
const mockReq = {
url: '/search',
query: {
q: 'Jones'
}
};
const mockRes = {
send: function (data) {
assert.equal(data.results.length, 0);
done();
}
};
fngInstance.searchAll()(mockReq, mockRes);
});
it('should not find records indexed on a no-search field', function (done) {
const mockReq = {
url: '/search',
query: {
q: 'ReportingIndex'
}
};
const mockRes = {
send: function (data) {
assert.equal(data.results.length, 0);
done();
}
};
fngInstance.searchAll()(mockReq, mockRes);
});
it('should support searchOrder option', function (done) {
const mockReq = {
url: '/search',
query: {
q: 'Smi'
}
};
const mockRes = {
status: function (code) {
assert.strictEqual(code, 200);
return this;
},
send: function (data) {
assert.equal(data.results.length, 10);
assert.equal(data.results[0].text, 'Smith00 John00');
assert.equal(data.results[9].text, 'Smith10 John10');
assert.equal(JSON.stringify(data.results).indexOf('John07'), -1);
done();
}
};
fngInstance.searchAll()(mockReq, mockRes);
});
it('should find a record from a partial initial string', function (done) {
const mockReq = {
url: '/search',
query: {
q: 'ann'
}
};
const mockRes = {
status: function (code) {
assert.strictEqual(code, 200);
return this;
},
send: function (data) {
assert.equal(data.results.length, 1);
assert.equal(data.results[0].id, '51c583d5b5c51226db418f16');
assert.equal(data.results[0].resource, 'f_nested_schema');
assert.equal(data.results[0].resourceText, 'Exams');
assert.equal(data.results[0].text, 'Smith, Anne');
done();
}
};
fngInstance.searchAll()(mockReq, mockRes);
});
it('should find a record from multiple partial initial strings', function (done) {
const mockReq = {
url: '/search',
query: {
q: 'smi john04'
},
route: { path: '/api/search' }
};
const mockRes = {
status: function (code) {
assert.strictEqual(code, 200);
return this;
},
send: function (data) {
assert.notEqual(data.moreCount, 0);
assert.equal(data.results[0].text, 'Smith04 John04'); // Double hit should come first
assert.equal(data.results[1].text, 'Smith00 John00'); // normal weighting
done();
}
};
fngInstance.searchAll()(mockReq, mockRes);
});
/*
Thought about doing this, but decided it would make it too complicated for users
*/
it.skip('should find only records that match all partial initial strings concatenated by &', function (done) {
const mockReq = {
url: '/search',
query: {
q: 'smi&john04'
},
route: { path: '/api/search' }
};
const mockRes = {
send: function (data) {
assert.notEqual(data.moreCount, 0);
assert.equal(data.results.length, 1);
assert.equal(data.results[0].text, 'Smith04 John04');
done();
}
};
fngInstance.searchAll()(mockReq, mockRes);
});
it('should not repeat a record in the results', function (done) {
const mockReq = {
url: '/search',
query: {
q: 'smith04 john04'
},
route: { path: '/api/search' }
};
const mockRes = {
status: function (code) {
assert.strictEqual(code, 200);
return this;
},
send: function (data) {
assert.equal(data.results.length, 1);
assert.equal(data.results[0].text, 'Smith04 John04');
done();
}
};
fngInstance.searchAll()(mockReq, mockRes);
});
it('should support searchResultFormat option', function (done) {
const mockReq = {
url: '/search',
query: {
q: 'Br'
},
route: { path: '/api/search' }
};
const mockRes = {
status: function (code) {
assert.strictEqual(code, 200);
return this;
},
send: function (data) {
assert.equal(data.results.length, 2);
assert.equal(data.results[0].resourceText, 'Exams');
assert.equal(data.results[0].resource, 'f_nested_schema');
assert.equal(data.results[0].text, 'Brown, John');
done();
}
};
fngInstance.searchAll()(mockReq, mockRes);
});
it('will select from a given collection if specified', (done) => {
const mockReq = {
url: '/search',
query: {
q: 'f_nested_schema:a'
},
route: { path: '/api/search' }
};
const mockRes = {
status: function (code) {
assert.strictEqual(code, 200);
return this;
},
send: function (data) {
assert.equal(data.results.length, 1);
assert.equal(data.results[0].resourceText, 'Exams');
assert.equal(data.results[0].resource, 'f_nested_schema');
assert.equal(data.results[0].text, 'Smith, Anne');
done();
}
};
fngInstance.searchAll()(mockReq, mockRes);
});
it('will select from a synonym collection if specified', (done) => {
const mockReq = {
url: '/search',
query: {
q: 'Exams:a'
},
route: { path: '/api/search' }
};
const mockRes = {
status: function (code) {
assert.strictEqual(code, 200);
return this;
},
send: function (data) {
assert.equal(data.results.length, 1);
assert.equal(data.results[0].resourceText, ' ');
assert.equal(data.results[0].resource, 'f_nested_schema');
assert.equal(data.results[0].text, 'Smith, Anne');
done();
}
};
fngInstance.searchAll()(mockReq, mockRes);
});
it('will select from a filtered synonym collection if specified', (done) => {
const mockReq = {
url: '/search',
query: {
q: 'Retakes:'
},
route: { path: '/api/search' }
};
const mockRes = {
status: function (code) {
assert.strictEqual(code, 200);
return this;
},
send: function (data) {
assert.equal(data.results.length, 1);
assert.equal(data.results[0].resource, 'f_nested_schema');
assert.equal(data.results[0].text, 'Brown, Jenny');
assert.equal(data.results[0].resourceText, 'Retakes');
done();
}
};
fngInstance.searchAll()(mockReq, mockRes);
});
});
describe('MongoDB selection', function () {
it('Should filter', function (done) {
const mockReq = {
url: '/f_nested_schema',
query: {
f: '{"exams.subject":"Physics"}'
},
params: { resourceName: 'f_nested_schema' }
};
const mockRes = {
send: function (data) {
assert.equal(data.length, 1);
done();
}
};
fngInstance.collectionGet()(mockReq, mockRes);
});
it('Should aggregate and return appropriate records', function (done) {
const mockReq = {
url: '/api/f_nested_schema',
query: {
a: '[{"$unwind":"$exams"},{"$sort":{"exams.score":1}},{"$group":{"_id":{"id":"$_id"},"bestSubject":{"$last":"$exams.subject"}}},{"$match":{"bestSubject":"English"}},{"$project":{"_id":"$_id.id"}}]'
},
params: { resourceName: 'f_nested_schema' }
};
const mockRes = {
send: function (data) {
assert.equal(data.length, 2);
assert.notEqual(null, data.find(function (obj) {
return obj.forename === 'John';
}));
assert.notEqual(null, data.find(function (obj) {
return obj.forename === 'Jenny';
}));
done();
}
};
fngInstance.collectionGet()(mockReq, mockRes);
});
it('Should combine aggregation and filtering', function (done) {
const mockReq = {
url: '/api/f_nested_schema',
query: {
f: '{"_id":"51c583d5b5c51226db418f15"}',
a: '[{"$unwind":"$exams"},{"$sort":{"exams.score":1}},' +
'{"$group":{"_id":{"id":"$_id"},"bestSubject":{"$last":"$exams.subject"}}},{"$match":{"bestSubject":"English"}},' +
'{"$project":{"_id":"$_id.id"}}]'
},
params: { resourceName: 'f_nested_schema' }
};
const mockRes = {
send: function (data) {
assert.equal(data.length, 1);
assert.equal(data[0].forename, 'John');
done();
}
};
fngInstance.collectionGet()(mockReq, mockRes);
});
});
});
describe('List API', function () {
it('returns explicit list fields', function (done) {
const mockReq = {
url: '/api/c_subdoc_example/519aaaaab320153869b175e0/list',
params: { resourceName: 'c_subdoc_example', id: '519aaaaab320153869b175e0' }
};
const mockRes = {
send: function (data) {
assert.equal(data.list, 'Anderson John');
done();
}
};
fngInstance.entityList()(mockReq, mockRes);
});
it('returns hidden list fields', function (done) {
const mockReq = {
url: '/api/b_using_options/519a6075b320153869b175e0/list',
params: { resourceName: 'b_using_options', id: '519a6075b320153869b175e0' }
};
const mockRes = {
send: function (data) {
assert.equal(data.list, 'IsAccepted1 John true 89');
done();
}
};
fngInstance.entityList()(mockReq, mockRes);
});
it('returns first string field if no explicit list fields', function (done) {
const mockReq = {
url: '/api/a_unadorned_mongoose/519a6075b320153869b17599/list',
params: { resourceName: 'a_unadorned_mongoose', id: '519a6075b320153869b17599' }
};
const mockRes = {
send: function (data) {
assert.equal(data.list, 'TestPerson1');
done();
}
};
fngInstance.entityList()(mockReq, mockRes);
});
it('returns looked up fields', function () {
});
it('handles list items in search', function () {
});
});
describe('mongoose collection name API', function () {
it('returns models', function () {
const mockReq = {};
const mockRes = {
send: function (models) {
assert.equal(models.length, 11);
assert(_.find(models, function (resource) {
return resource.resourceName === 'b_using_options';
}).options.hide.indexOf('login') > -1, 'must send login as a hidden field');
}
};
fngInstance.models()(mockReq, mockRes);
});
it('returns straight schema', function (done) {
const mockReq = { params: { resourceName: 'a_unadorned_mongoose' } };
const mockRes = {
send: function (schema) {
let keys = Object.keys(schema);
assert.equal(keys.length, 8);
assert.equal(schema[keys[0]].path, 'surname');
assert.equal(schema[keys[1]].path, 'forename');
assert.equal(schema[keys[2]].path, 'phone');
assert.equal(schema[keys[3]].path, 'weight');
assert.equal(schema[keys[4]].path, 'eyeColour');
assert.equal(schema[keys[5]].path, 'dateOfBirth');
assert.equal(schema[keys[6]].path, 'accepted');
assert.equal(schema[keys[7]].path, '_id');
done();
}
};
fngInstance.schema()(mockReq, mockRes);
});
});
describe('Report API', function () {
it('handles pipeline request', function (done) {
const mockReq = {
url: '/report/g_conditional_fields',
query: { r: '{"pipeline":{"$group":{"_id":"x","count":{"$sum":1}}}}' },
params: { resourceName: 'g_conditional_fields' }
};
const mockRes = {
send: function (data) {
assert.equal(data.report.length, 1);
assert.deepEqual(data.report[0], { _id: 'x', count: 17 });
done();
}
};
fngInstance.report()(mockReq, mockRes);
});
it('handles complex pipeline request', function (done) {
const mockReq = {
url: 'report/e_referencing_another_collection',
query: {
r: '{"pipeline":[{"$group":{"_id":"$teacher","count":{"$' +