forked from formio/formio.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.unit.js
870 lines (772 loc) · 24.3 KB
/
utils.unit.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
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
/* eslint-disable no-irregular-whitespace */
import * as fs from 'fs';
import { expect, assert } from 'chai';
import _ from 'lodash';
import writtenNumber from 'written-number';
import utils from '.';
const components = JSON.parse(fs.readFileSync('src/utils/fixtures/components.json'));
const components2 = JSON.parse(fs.readFileSync('src/utils/fixtures/components2.json'));
const components3 = JSON.parse(fs.readFileSync('src/utils/fixtures/components3.json'));
const components4 = JSON.parse(fs.readFileSync('src/utils/fixtures/components4.json'));
const components5 = JSON.parse(fs.readFileSync('src/utils/fixtures/components5.json'));
const submission1 = JSON.parse(fs.readFileSync('src/utils/fixtures/submission1.json'));
describe('Util Tests', () => {
describe('eachComponent', () => {
it('should iterate through nested components in the right order', () => {
let n = 1;
utils.eachComponent(components, (component) => {
expect(component.order).to.equal(n);
n += 1;
});
});
it('should include layouts components if provided', () => {
let numComps = 0;
let numLayout = 0;
utils.eachComponent(components, (component) => {
if (utils.isLayoutComponent(component)) {
numLayout++;
}
else {
numComps++;
}
}, true);
expect(numLayout).to.be.equal(3);
expect(numComps).to.be.equal(8);
});
it('Should provide the paths to all of the components', () => {
const paths = [
'one',
'parent1',
'two',
'parent2',
'three',
'',
'four',
'five',
'six',
'seven',
'eight'
];
const testPaths = [];
utils.eachComponent(components, (component, path) => {
testPaths.push(path);
}, true);
expect(paths).to.deep.equal(testPaths);
});
describe('findComponent', () => {
it('should find correct component in nested structure', () => {
utils.findComponent(components4, 'four', null, (component) => {
expect(component.label).to.equal('4');
});
});
it('should find correct component in flat structure', () => {
utils.findComponent(components4, 'one', null, (component) => {
expect(component.label).to.equal('1');
});
});
});
it('Should be able to find all textfield components', () => {
const comps = utils.findComponents(components, { type: 'textfield' });
expect(comps.length).to.equal(6);
});
it('Should be able to find components with special properties.', () => {
const comps = utils.findComponents(components3, { 'properties.path': 'a' });
expect(comps.length).to.equal(4);
expect(comps[0].key).to.equal('b');
expect(comps[1].key).to.equal('e');
expect(comps[2].key).to.equal('j');
expect(comps[3].key).to.equal('m');
});
it('Should be able to generate paths based on component types', () => {
const paths = [
'a',
'b',
'c',
'd',
'f',
'f.g',
'f.h',
'f.i',
'e',
'j',
'k',
'k.n',
'k.n.o',
'k.n.p',
'k.n.q',
'k.m',
'k.l',
'r',
'submit'
];
const testPaths = [];
utils.eachComponent(components2, (component, path) => {
testPaths.push(path);
}, true);
expect(paths).to.deep.equal(testPaths);
});
it('Should still provide the correct paths when it is not recursive', () => {
const paths = [
'a',
'd',
'f',
'f.g',
'f.h',
'f.i',
'e',
'j',
'k',
'k.n',
'k.n.o',
'k.n.p',
'k.n.q',
'k.m',
'k.l',
'r',
'submit'
];
const testPaths = [];
utils.eachComponent(components2, (component, path) => {
testPaths.push(path);
});
expect(paths).to.deep.equal(testPaths);
});
it('should be able to block recursion', () => {
let numComps = 0;
let numLayout = 0;
utils.eachComponent(components, (component) => {
if (utils.isLayoutComponent(component)) {
numLayout++;
}
else {
numComps++;
}
if (component.type === 'table') {
let numInTable = 0;
[].concat.apply([], component.rows).forEach((row) => {
utils.eachComponent(row.components, () => {
numInTable++;
});
});
expect(numInTable).to.be.equal(4);
return true;
}
}, true);
expect(numLayout).to.be.equal(3);
expect(numComps).to.be.equal(4);
});
it('should not include `htmlelement` components when `includeAll` is not provided', () => {
let htmlComponentsAmount = 0;
utils.eachComponent(components5, (component) => {
if (component.type === 'htmlelement') {
htmlComponentsAmount++;
}
});
expect(htmlComponentsAmount).to.be.equal(0);
});
it('should include `htmlelement` components when `includeAll` is provided', () => {
let htmlComponentsAmount = 0;
utils.eachComponent(components5, (component) => {
if (component.type === 'htmlelement') {
htmlComponentsAmount++;
}
}, true);
expect(htmlComponentsAmount).to.be.equal(1);
});
it('should not include `content` components when `includeAll` is not provided', () => {
let contentComponentsAmount = 0;
utils.eachComponent(components5, (component) => {
if (component.type === 'content') {
contentComponentsAmount++;
}
});
expect(contentComponentsAmount).to.be.equal(0);
});
it('should include `content` components when `includeAll` is provided', () => {
let contentComponentsAmount = 0;
utils.eachComponent(components5, (component) => {
if (component.type === 'content') {
contentComponentsAmount++;
}
}, true);
expect(contentComponentsAmount).to.be.equal(1);
});
});
describe('getComponent', () => {
it('should return the correct components', () => {
for (let n = 1; n <= 8; n += 1) {
const component = utils.getComponent(components, writtenNumber(n));
expect(component).not.to.be.null;
expect(component).not.to.be.undefined;
expect(component).to.be.an('object');
expect(component.order).to.equal(n);
expect(component.key).to.equal(writtenNumber(n));
}
});
it('should work with a different this context', () => {
for (let n = 1; n <= 8; n += 1) {
const component = utils.getComponent.call({}, components, writtenNumber(n));
expect(component).not.to.be.null;
expect(component).not.to.be.undefined;
expect(component).to.be.an('object');
expect(component.order).to.equal(n);
expect(component.key).to.equal(writtenNumber(n));
}
});
});
describe('flattenComponents', () => {
it('should return an object of flattened components', () => {
const flattened = utils.flattenComponents(components);
for (let n = 1; n <= 8; n += 1) {
const component = flattened[writtenNumber(n)];
expect(component).not.to.be.undefined;
expect(component).to.be.an('object');
expect(component.order).to.equal(n);
expect(component.key).to.equal(writtenNumber(n));
}
});
it('should work with a different this context', () => {
const flattened = utils.flattenComponents.call({}, components);
for (let n = 1; n <= 8; n += 1) {
const component = flattened[writtenNumber(n)];
expect(component).not.to.be.undefined;
expect(component).to.be.an('object');
expect(component.order).to.equal(n);
expect(component.key).to.equal(writtenNumber(n));
}
});
});
describe('getValue', () => {
it('should be able to get a simple value', () => {
expect(utils.getValue(submission1, 'name')).to.be.equal(submission1.data.name);
});
it('should be able to get a value from a container', () => {
expect(utils.getValue(submission1, 'animalname')).to.be.equal(submission1.data.mycontainer.animalname);
});
});
describe('parseFloat', () => {
it('should clear input and parse value', () => {
expect(utils.parseFloatExt('12,345,678.90')).to.be.equal(12345678.90);
});
});
describe('formatAsCurrency', () => {
it('should be able to format Float value for Currency component', () => {
expect(utils.formatAsCurrency(123.4)).to.be.equal('123.40');
expect(utils.formatAsCurrency(12345678.9)).to.be.equal('12,345,678.90');
expect(utils.formatAsCurrency(12345678.915)).to.be.equal('12,345,678.92');
});
it('should be able to format String value for Currency component', () => {
expect(utils.formatAsCurrency('12345678.915')).to.be.equal('12,345,678.92');
});
});
describe('checkCalculated', () => {
it('should be able to calculate value based on javascript code', () => {
const component = {
key: 'sum',
calculateValue: 'value = 3'
};
const data = {};
utils.checkCalculated(component, null, data);
expect(data.sum).to.be.equal(3);
});
it('should be able to calculate value based on json logic', () => {
const component = {
key: 'sum',
calculateValue: {
'_sum': { var: 'data.test' }
}
};
const data = { test: [1, 2, 3] };
utils.checkCalculated(component, null, data);
expect(data.sum).to.be.equal(6);
});
it('should return undefined if no logic provided', () => {
const component = {
key: 'sum',
calculateValue: '/* do nothing */'
};
const data = {};
utils.checkCalculated(component, null, data);
expect(data.sum).to.be.undefined;
});
});
describe('checkCondition', () => {
it('should display component by default', () => {
expect(utils.checkCondition({}, null, {})).to.be.equal(true);
});
it('should calculate simple triggers', () => {
const component = {
key: 'sum',
conditional: {
when: 'test',
eq: 3,
show: true
}
};
const data1 = { test: 3 };
const data2 = { test: 5 };
expect(utils.checkCondition(component, null, data1)).to.be.equal(true);
expect(utils.checkCondition(component, null, data2)).to.be.equal(false);
});
it('should be able to calculate condition based on javascript code', () => {
const component = {
key: 'sum',
customConditional(context) {
return context.data.test === 3;
}
};
const data1 = { test: 3 };
const data2 = { test: 5 };
expect(utils.checkCondition(component, null, data1)).to.be.equal(true);
expect(utils.checkCondition(component, null, data2)).to.be.equal(false);
});
it('should be able to calculate condition based on json logic', () => {
const component = {
key: 'sum',
conditional: {
json: {
'===': [
{ '_sum': { var: 'data.test' } },
6
]
}
}
};
const data1 = { test: [1, 2, 3] };
const data2 = { test: [1, 2, 4] };
expect(utils.checkCondition(component, null, data1)).to.be.equal(true);
expect(utils.checkCondition(component, null, data2)).to.be.equal(false);
});
});
describe('getDateSetting', () => {
it('should return null if no date provided', () => {
expect(utils.getDateSetting()).to.be.equal(null);
expect(utils.getDateSetting(null)).to.be.equal(null);
expect(utils.getDateSetting(undefined)).to.be.equal(null);
expect(utils.getDateSetting(NaN)).to.be.equal(null);
expect(utils.getDateSetting('')).to.be.equal(null);
expect(utils.getDateSetting('should be invalid')).to.be.equal(null);
});
it('should return valid Date on serialized date provided', () => {
const date = new Date(0);
expect(utils.getDateSetting(date)).to.be.eql(date);
expect(utils.getDateSetting(date.valueOf())).to.be.eql(date);
expect(utils.getDateSetting(date.toString())).to.be.eql(date);
expect(utils.getDateSetting(date.toISOString())).to.be.eql(date);
});
it('should be able to get value using moment APIs', () => {
const validMomentExpression = 'moment(0)';
const validDate = new Date(0);
const invalidMomentExpression = "moment('')";
expect(utils.getDateSetting(validMomentExpression)).to.be.eql(validDate);
expect(utils.getDateSetting(invalidMomentExpression)).to.be.equal(null);
});
});
describe('checkTrigger', () => {
it('should default to false', () => {
expect(utils.checkCondition({}, { type: 'none' }, null, {})).to.be.equal(true);
});
it('should calculate simple triggers', () => {
const component = {
key: 'sum'
};
const trigger = {
type: 'simple',
simple: {
when: 'test',
eq: 3,
show: true
}
};
const data1 = { test: 3 };
const data2 = { test: 5 };
expect(utils.checkTrigger(component, trigger, null, data1)).to.be.equal(true);
expect(utils.checkTrigger(component, trigger, null, data2)).to.be.equal(false);
});
it('should be able to calculate trigger based on javascript code', () => {
const component = {
key: 'sum'
};
const trigger = {
type: 'javascript',
javascript: 'result = data.test === 3'
};
const data1 = { test: 3 };
const data2 = { test: 5 };
expect(utils.checkTrigger(component, trigger, null, data1)).to.be.equal(true);
expect(utils.checkTrigger(component, trigger, null, data2)).to.be.equal(false);
});
it('should be able to calculate trigger based on json logic', () => {
const component = {
key: 'sum'
};
const trigger = {
type: 'json',
json: {
'===': [
{ '_sum': { var: 'data.test' } },
6
]
}
};
const data1 = { test: [1, 2, 3] };
const data2 = { test: [1, 2, 4] };
expect(utils.checkTrigger(component, trigger, null, data1)).to.be.equal(true);
expect(utils.checkTrigger(component, trigger, null, data2)).to.be.equal(false);
});
});
describe('setActionProperty', () => {
it('should set a boolean action property to true', () => {
const component = {
key: 'test',
disabled: false,
};
const action = {
type: 'property',
property: {
label: 'Disabled',
value: 'disabled',
type: 'boolean',
},
state: true,
};
utils.setActionProperty(component, action);
expect(component.disabled).to.be.equal(true);
});
it('should set a boolean action property to false', () => {
const component = {
key: 'test',
disabled: true,
};
const action = {
type: 'property',
property: {
label: 'Disabled',
value: 'disabled',
type: 'boolean',
},
state: false,
};
utils.setActionProperty(component, action);
expect(component.disabled).to.be.equal(false);
});
it('should set a boolean action nested property', () => {
const component = {
key: 'test',
validate: {
required: true,
},
};
const action = {
type: 'property',
property: {
label: 'Required',
value: 'validate.required',
type: 'boolean',
},
state: false,
};
utils.setActionProperty(component, action);
expect(component.validate.required).to.be.equal(false);
});
it('should set a string action property', () => {
const component = {
key: 'test',
label: 'foo',
};
const action = {
type: 'property',
property: {
label: 'Label',
value: 'label',
type: 'string',
},
text: 'bar',
};
utils.setActionProperty(component, action);
expect(component.label).to.be.equal('bar');
});
it('should set a string action property with result templating', () => {
const component = {
key: 'test',
label: 'foo',
};
const action = {
type: 'property',
property: {
label: 'Label',
value: 'label',
type: 'string',
},
text: 'bar {{ result }}',
};
utils.setActionProperty(component, action, 'baz');
expect(component.label).to.be.equal('bar baz');
});
it('should set a string action property with row templating', () => {
const component = {
key: 'test',
label: 'foo',
};
const action = {
type: 'property',
property: {
label: 'Label',
value: 'label',
type: 'string',
},
text: 'bar {{ row.field }}',
};
utils.setActionProperty(component, action, true, { field: 'baz' });
expect(component.label).to.be.equal('bar baz');
});
it('should set a string action property with data templating', () => {
const component = {
key: 'test',
label: 'foo',
};
const action = {
type: 'property',
property: {
label: 'Label',
value: 'label',
type: 'string',
},
text: 'bar {{ data.field }}',
};
utils.setActionProperty(component, action, true, {}, { field: 'baz' });
expect(component.label).to.be.equal('bar baz');
});
it('should set a string action property with component templating', () => {
const component = {
key: 'test',
label: 'foo',
};
const action = {
type: 'property',
property: {
label: 'Label',
value: 'label',
type: 'string',
},
text: 'bar {{ component.key }}',
};
utils.setActionProperty(component, action);
expect(component.label).to.be.equal('bar test');
});
it('should do nothing with a bad request', () => {
const component = {
key: 'test',
label: 'foo',
};
const originalComponent = _.cloneDeep(component);
expect(component).to.deep.equal(originalComponent);
});
});
describe('delay', () => {
let score = 0;
function incScore(value) {
score += value || 1;
}
beforeEach(() => {
score = 0;
});
it('should act as regular setTimeout()', (done) => {
utils.delay(incScore);
utils.delay(incScore, 0);
utils.delay(incScore, 100, 2);
utils.delay(() => {
if (score === 4) {
done();
}
}, 200);
});
it('should be cancelable via direct timer access', (done) => {
const delay = utils.delay(incScore);
clearTimeout(delay.timer);
setTimeout(() => {
if (score === 0) {
done();
}
}, 100);
});
it('should be cancelable via cancel() method', (done) => {
const delay = utils.delay(incScore);
delay.cancel();
setTimeout(() => {
if (score === 0) {
done();
}
}, 100);
});
it('should be able to call passed function synchronously', (done) => {
const delay = utils.delay(incScore);
delay();
if (score === 1) {
done();
}
});
});
describe('withSwitch', () => {
it('should return Array with two functions', () => {
const fns = utils.withSwitch();
expect(fns).to.be.an('array').and.have.lengthOf(2);
expect(fns[0]).to.be.a('function');
expect(fns[1]).to.be.a('function');
});
describe('#get', () => {
it('should return one of state', () => {
const [get] = utils.withSwitch(42, 24);
expect(get()).to.be.equal(42);
});
it('should be pure', () => {
const [get] = utils.withSwitch(42, 24);
expect(get()).to.be.equal(42);
expect(get()).to.be.equal(42);
expect(get()).to.be.equal(42);
expect(get()).to.be.equal(42);
});
});
describe('#toggle', () => {
it('should cycle between states', () => {
const [get, toggle] = utils.withSwitch(42, 24);
expect(get()).to.be.equal(42);
toggle();
expect(get()).to.be.equal(24);
toggle();
expect(get()).to.be.equal(42);
});
});
});
describe('unfold', () => {
it('should return provided argument', () => {
const parameters = [{}, 1, null, 'string'];
parameters.forEach(p => {
assert(p === utils.unfold(p));
});
});
it('should call parameter, if it is function and return result', () => {
const x = Symbol('__unfold__');
assert(utils.unfold(() => x) === x);
});
});
describe('firstNonNil', () => {
it('should return first non nil value', () => {
expect(utils.firstNonNil([1])).to.equal(1);
expect(utils.firstNonNil([1, 3])).to.equal(1);
expect(utils.firstNonNil([3, 2, 1])).to.equal(3);
expect(utils.firstNonNil([undefined, undefined, 3, 1])).to.equal(3);
});
it('should unfold all functions in array', () => {
expect(utils.firstNonNil([() => 1])).to.equal(1);
expect(utils.firstNonNil([() => 1, 3])).to.equal(1);
expect(utils.firstNonNil([undefined, undefined, () => 3, 1])).to.equal(3);
});
});
describe('observeOverload', () => {
it('should invoke the callback, if there too many dispatches in a short time', done => {
try {
const dispatch = utils.observeOverload(() => true);
for (let i = 0; i < 100; i += 1) {
if (dispatch()) {
return done();
}
}
throw new Error('Callback not called');
}
catch (error) {
done(error);
}
});
it('should allow configuring the events limit', done => {
try {
for (let i = 1; i < 10; i += 1) {
const dispatch = utils.observeOverload(() => done('Limit option is ignored1'), { limit: 100 });
for (let j = 0; j < i * 10; j += 1) {
dispatch();
}
}
// exit if we done, otherwise throw
let called = false;
const dispatch = utils.observeOverload(() => {
called = true;
done();
}, { limit: 100 });
for (let i = 0; i < 110; i += 1) {
dispatch();
}
if (!called) {
throw new Error('Limit option is ignored2');
}
}
catch (error) {
done(error);
}
});
it('should not invoke callback, if time between calls longer then options.delay', done => {
try {
const dispatch = utils.observeOverload(() => done('Callback should not be called'), { delay: 100, limit: 2 });
let count = 0;
const id = setInterval(() => {
dispatch();
count += 1;
if (count >= 3) {
done();
clearInterval(id);
}
}, 110);
}
catch (error) {
done(error);
}
});
it('Should return string without HTML characters', () => {
const unescapedString = utils.unescapeHTML('<p>ampersand & "quotes" test</p>');
expect(unescapedString).to.equal('<p>ampersand & "quotes" test</p>');
});
});
describe('getCurrencyAffixes', () => {
it('USD en', (done) => {
try {
const affixes = utils.getCurrencyAffixes({
currency: 'USD',
decimalLimit: 2,
decimalSeparator: '.',
lang: 'en',
});
const expectedResult = {
prefix: '$',
suffix: '',
};
expect(affixes.prefix).to.equal(expectedResult.prefix);
expect(affixes.suffix).to.equal(expectedResult.suffix);
done();
}
catch (err) {
done(err);
}
});
/*
it('USD ar-SA', (done) => {
try {
const affixes2 = utils.getCurrencyAffixes({
currency: 'USD',
decimalLimit: 2,
decimalSeparator: '٫',
lang: 'ar-SA',
});
const expectedResult = {
prefix: '',
suffix: ' US$',
};
expect(affixes2.prefix).to.equal(expectedResult.prefix);
expect(affixes2.suffix).to.equal(expectedResult.suffix);
done();
}
catch (err) {
done(err);
}
});
*/
});
});