-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm.specs.js
1312 lines (1210 loc) · 38.5 KB
/
m.specs.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
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
// let Qunit = require('qunitjs');
import * as QUnit from 'qunitjs';
import { always, clone, flatten } from 'ramda';
import * as Rx from 'rx';
import h from 'snabbdom/h';
import { div } from 'cycle-snabbdom';
import {
getSlotHoles, m, mergeChildrenIntoParentDOM, rankChildrenBySlot
} from '../src/components/m/m';
import { makeDivVNode, projectSinksOn } from "../utils/src/index"
import { runTestScenario } from '../testing/src/runTestScenario';
let $ = Rx.Observable;
// Fixtures
const PROVIDERS = {
google: 'google',
facebook: 'facebook',
};
QUnit.module("Testing m(component_def, settings, children)", {});
// NOTE
// skipping more edge cases where arguments are of the wrong type
// there are too many of them and they do not add so much value
// As much as possible, the helper is written so it fails early with a
// reasonably descriptive error message when it detects invalid arguments
QUnit.test("edge cases - no arguments", function exec_test(assert) {
assert.throws(function () {
m()
}, /fails/,
'it throws an exception if it is called with an invalid ' +
'combination of arguments')
});
// NOTE
// skipping also a number of main cases corresponding to combination of inputs
// which are deem to be tested
// Inputs : component_def x settings x children
// - component_def: 7 classes of values for properties
// - settings: two classes of values (null, {...})
// - children: three classes of values ([], [component], [component, component])
// That makes for 7x2x3 = 42 tests
// We assume that those inputs are 'independent', so the number of cases
// gets down to 7 + 2 + 3 = 12
// We assume that case children : [component, component] takes care of [component]
// and we test several conditions in the same test case
// which brings down the number of tests to 4
QUnit.test(
"main cases - only children components",
function exec_test(assert) {
let done = assert.async(4);
// Test case 2
// 2 children: [component (sink DOM, a, c), component(sink DOM, a, d)], settings : {...}, no
// component_def, no local sources + sources : DOM, a, b, c, d, e + output.sinks = children
// component sinks merged with default values of the component_def + i.e. sinkNames = [DOM,
// auth, route, queue], DOM is merged with default, auth is merged with both, queue, route
// merged with 1 + settings are taken into account (have all of the sinks depend on settings
// differently)
const testSettings = { main: 'parent settings' };
const childComponent1 = function childComponent1(sources, settings) {
return {
DOM: $.combineLatest(sources.a, user => h('div', {}, [
h('span', { style: { fontWeight: 'bold' } }, settings.main),
])),
a: sources.b.map(x => 'child1-a-' + x),
c: sources.c.map(x => 'child1-c-' + x),
}
};
const childComponent2 = function childComponent1(sources, settings) {
return {
DOM: $.combineLatest(sources.a, user => h('div', {}, [
h('span', { style: { fontWeight: 'italic' } }, settings.local),
])),
a: sources.d.map(x => 'child2-a-' + x),
d: sources.e.map(x => 'child2-e-' + x),
}
};
const mComponent = m({
makeLocalSettings: settings => ({ local: 'local setting' }),
}, testSettings, [childComponent1, childComponent2])
const inputs = [
{ a: { diagram: 'ab|', values: { a: 'a-0', b: 'a-1' } } },
{ b: { diagram: 'abc|', values: { a: 'b-0', b: 'b-1', c: 'b-2' } } },
{ c: { diagram: 'abc|', values: { a: 'c-0', b: 'c-1', c: 'c-2' } } },
{ d: { diagram: 'a-b|', values: { a: 'd-0', b: 'd-2' } } },
{ e: { diagram: 'a|', values: { a: 'e-0' } } }
];
const vNodes = [
// 1
div([
h('div', {}, [
h('span', { style: { fontWeight: 'bold' } }, testSettings.main),
]),
h('div', {}, [
h('span', { style: { fontWeight: 'italic' } }, 'local setting'),
]),
]),
// 2
div([
h('div', {}, [
h('span', { style: { fontWeight: 'bold' } }, testSettings.main),
]),
h('div', {}, [
h('span', { style: { fontWeight: 'italic' } }, 'local setting'),
]),
]),// 3
div([
h('div', {}, [
h('span', { style: { fontWeight: 'bold' } }, testSettings.main),
]),
h('div', {}, [
h('span', { style: { fontWeight: 'italic' } }, 'local setting'),
]),
]),
];
function analyzeTestResults(actual, expected, message) {
assert.deepEqual(actual, expected, message);
done()
}
/** @type TestResults */
const testResults = {
DOM: {
outputs: vNodes,
successMessage: 'sink DOM produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
a: {
outputs: [
"child1-a-b-0",
"child2-a-d-0",
"child1-a-b-1",
"child1-a-b-2",
"child2-a-d-2"
],
successMessage: 'sink a produces the expected values',
analyzeTestResults: analyzeTestResults,
},
c: {
outputs: ["child1-c-c-0", "child1-c-c-1", "child1-c-c-2"],
successMessage: 'sink c produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
d: {
outputs: ["child2-e-e-0"],
successMessage: 'sink d produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
};
const testFn = mComponent;
runTestScenario(inputs, testResults, testFn, {
tickDuration: 5,
waitForFinishDelay: 10
})
});
QUnit.test("main cases - parent - no children", function exec_test(assert) {
let done = assert.async(5);
// Test input 4
// No children, settings : ?, full component def(sink DOM, auth,
// queue, extra source user$) using the extra sources created
const vNode = {
"children": [
{
"children": undefined,
"data": {
"style": {
"fontWeight": "bold"
}
},
"elm": undefined,
"key": undefined,
"sel": "span",
"text": "parent settings"
},
{
"children": undefined,
"data": undefined,
"elm": undefined,
"key": undefined,
"sel": undefined,
"text": " and this is local settings"
},
{
"children": undefined,
"data": {
"style": {
"fontWeight": "italic"
}
},
"elm": undefined,
"key": undefined,
"sel": "span",
"text": "local setting"
}
],
"data": {},
"elm": undefined,
"key": undefined,
"sel": "div#container.two.classes",
"text": undefined
};
const testSettings = { key: 'parent settings' };
const ParentComponent = function (sources, settings) {
return {
DOM: $.combineLatest(sources.user$, user => h('div#container.two.classes', {}, [
h('span', { style: { fontWeight: 'bold' } }, user.key),
' and this is local settings',
h('span', { style: { fontWeight: 'italic' } }, settings.localSetting),
])),
auth$: sources.auth$.startWith(PROVIDERS.google),
}
}
const mComponent = m({
makeLocalSources: (sources, settings) => {
return {
user$: $.of(settings),
}
},
makeLocalSettings: settings => ({ localSetting: 'local setting' }),
mergeSinks: (parentSinks, childrenSinks, settings) => ({
DOM: parentSinks.DOM,
auth$: parentSinks.auth$,
user$: parentSinks.user$,
childrenSinks$: $.of(childrenSinks),
settings$: $.of(settings),
}),
checkPostConditions: function checkMSinksContracts() {
return true
}
}, null, [ParentComponent, []]);
const inputs = [
{ auth$: { diagram: '-a|', values: { a: PROVIDERS.facebook } } },
];
function analyzeTestResults(actual, expected, message) {
assert.deepEqual(actual, expected, message);
done();
}
/** @type TestResults */
const testResults = {
DOM: {
outputs: [vNode],
successMessage: 'sink DOM produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
auth$: {
outputs: ['google', 'facebook'],
successMessage: 'sink auth produces the expected values',
analyzeTestResults: analyzeTestResults,
},
user$: {
outputs: [],
successMessage: 'sink user produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
childrenSinks$: {
outputs: [[]],
successMessage: 'sink childrenSinks produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
settings$: {
outputs: [{
"key": "parent settings",
"localSetting": "local setting"
}],
successMessage: 'sink settings produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
};
const testFn = function mComponentTestFn(settings) {
return function _mComponentTestFn(sources) {
return mComponent(sources, settings)
}
};
runTestScenario(inputs, testResults, testFn(testSettings), {
tickDuration: 5,
waitForFinishDelay: 10
})
});
QUnit.test(
"main cases - children components and parent component - default merge",
function exec_test(assert) {
let done = assert.async(5);
// Test case 4
// 4 children: [component, component], settings : {...}, full component def (DOM, queue, auth,
// action)
const testSettings = null;
const childComponent1 = function childComponent1(sources, settings) {
return {
DOM: $.combineLatest(sources.a, a => h('div', {}, [
h('span', { style: { fontWeight: 'bold' } }, 'child1-' + a),
])),
a: sources.b.map(x => 'child1-a-' + x),
c: sources.c.map(x => 'child1-c-' + x),
}
};
const childComponent2 = function childComponent2(sources, settings) {
return {
DOM: $.combineLatest(sources.a, a => h('div', {}, [
h('span', { style: { fontWeight: 'italic' } }, 'child2-' + a),
])),
a: sources.d.map(x => 'child2-a-' + x),
d: sources.e.map(x => 'child2-e-' + x),
}
};
const ParentComponent = function (sources, settings) {
return {
DOM: $.of(div('.parent')),
auth$: sources.auth$.startWith(PROVIDERS.google),
}
}
const mComponent = m({
makeLocalSources: (sources, settings) => {
return {
user$: $.of(settings),
}
},
checkPostConditions: function checkMSinksContracts() {
return true
}
}, testSettings, [ParentComponent, [childComponent1, childComponent2]]);
const vNodes = [
div('.parent', [
h('div', {}, [
h('span', { style: { fontWeight: 'bold' } }, 'child1-a-0'),
]),
h('div', {}, [
h('span', { style: { fontWeight: 'italic' } }, 'child2-a-0'),
]),
]),
div('.parent', [
h('div', {}, [
h('span', { style: { fontWeight: 'bold' } }, 'child1-a-1'),
]),
h('div', {}, [
h('span', { style: { fontWeight: 'italic' } }, 'child2-a-0'),
]),
]),
div('.parent', [
h('div', {}, [
h('span', { style: { fontWeight: 'bold' } }, 'child1-a-1'),
]),
h('div', {}, [
h('span', { style: { fontWeight: 'italic' } }, 'child2-a-1'),
]),
]),
];
function analyzeTestResults(actual, expected, message) {
assert.deepEqual(actual, expected, message);
done()
}
const inputs = [
{ auth$: { diagram: 'a|', values: { a: 'auth-0' } } },
{ a: { diagram: 'ab|', values: { a: 'a-0', b: 'a-1' } } },
{ b: { diagram: 'abc|', values: { a: 'b-0', b: 'b-1', c: 'b-2' } } },
{ c: { diagram: 'abc|', values: { a: 'c-0', b: 'c-1', c: 'c-2' } } },
{ d: { diagram: 'a-b|', values: { a: 'd-0', b: 'd-2' } } },
{ e: { diagram: 'a|', values: { a: 'e-0' } } },
];
/** @type TestResults */
const
TestResults = {
DOM: {
outputs: vNodes,
successMessage: 'sink DOM produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
auth$: {
outputs: ["google", "auth-0"],
successMessage: 'sink auth$ produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
a: {
outputs: [
"child1-a-b-0",
"child2-a-d-0",
"child1-a-b-1",
"child1-a-b-2",
"child2-a-d-2"
],
successMessage: 'sink a produces the expected values',
analyzeTestResults: analyzeTestResults,
},
c: {
outputs: ["child1-c-c-0", "child1-c-c-1", "child1-c-c-2"],
successMessage: 'sink c produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
d: {
outputs: ["child2-e-e-0"],
successMessage: 'sink d produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
};
const testFn = mComponent;
runTestScenario(inputs, TestResults, testFn, {
tickDuration: 5,
waitForFinishDelay: 10
})
});
QUnit.test(
"main cases - children components and parent component - customized merge",
function exec_test(assert) {
let done = assert.async(5);
const testSettings = null;
const childComponent1 = function childComponent1(sources, settings) {
return {
DOM: $.combineLatest(sources.a, a => h('div', {}, [
h('span', { style: { fontWeight: 'bold' } }, 'child1-' + a),
])),
a: sources.b.map(x => 'child1-a-' + x),
c: sources.c.map(x => 'child1-c-' + x),
}
};
const childComponent2 = function childComponent1(sources, settings) {
return {
DOM: $.combineLatest(sources.a, a => h('div', {}, [
h('span', { style: { fontWeight: 'italic' } }, 'child2-' + a),
])),
a: sources.d.map(x => 'child2-a-' + x),
d: sources.e.map(x => 'child2-e-' + x),
}
};
const ParentComponent = function (sources, settings) {
return {
DOM: $.of(div('.parent')),
auth$: sources.auth$.startWith(PROVIDERS.google),
}
};
const mComponent = m({
makeLocalSources: (sources, settings) => {
return {
user$: $.of(settings),
}
},
mergeSinks: (parentSinks, childrenSinks, settings) => ({
DOM: parentSinks.DOM,
auth$: parentSinks.auth$,
user$: parentSinks.user$,
childrenSinks$: $.merge(projectSinksOn('DOM', childrenSinks)),
settings$: $.of(settings),
}),
checkPostConditions: function checkMSinksContracts() {
return true
}
}, testSettings, [ParentComponent, [childComponent1, childComponent2]]);
const inputs = [
{ auth$: { diagram: 'a|', values: { a: 'auth-0' } } },
{ a: { diagram: 'ab|', values: { a: 'a-0', b: 'a-1' } } },
{ b: { diagram: 'abc|', values: { a: 'b-0', b: 'b-1', c: 'b-2' } } },
{ c: { diagram: 'abc|', values: { a: 'c-0', b: 'c-1', c: 'c-2' } } },
{ d: { diagram: 'a-b|', values: { a: 'd-0', b: 'd-2' } } },
{ e: { diagram: 'a|', values: { a: 'e-0' } } }
];
const vNodes = [
{
"children": undefined,
"data": {},
"elm": undefined,
"key": undefined,
"sel": "div.parent",
"text": undefined
}
];
function analyzeTestResults(actual, expected, message) {
assert.deepEqual(actual, expected, message);
done()
}
/** @type TestResults */
const testResults = {
DOM: {
outputs: vNodes,
successMessage: 'sink DOM produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
user$: {
outputs: [],
successMessage: 'sink user produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
childrenSinks$: {
outputs: [
h('div', {}, [
h('span', { style: { fontWeight: 'bold' } }, 'child1-a-0'),
]),
h('div', {}, [
h('span', { style: { fontWeight: 'italic' } }, 'child2-a-0'),
]),
h('div', {}, [
h('span', { style: { fontWeight: 'bold' } }, 'child1-a-1'),
]),
h('div', {}, [
h('span', { style: { fontWeight: 'italic' } }, 'child2-a-1'),
]),
],
successMessage: 'sink childrenSinks produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
settings$: {
outputs: [{}], // When there is no settings, it sets settings to {}
successMessage: 'sink settings produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
auth$: {
outputs: ["google", "auth-0"],
successMessage: 'sink auth$ produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
a: {
outputs: [
"child1-a-b-0",
"child2-a-d-0",
"child1-a-b-1",
"child1-a-b-2",
"child2-a-d-2"
],
successMessage: 'sink a produces the expected values',
analyzeTestResults: analyzeTestResults,
},
c: {
outputs: ["child1-c-c-0", "child1-c-c-1", "child1-c-c-2"],
successMessage: 'sink c produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
d: {
outputs: ["child2-e-e-0"],
successMessage: 'sink d produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
};
const testFn = mComponent;
runTestScenario(inputs, testResults, testFn, {
tickDuration: 5,
waitForFinishDelay: 10
})
});
QUnit.test(
"main cases - great children components - default merge - settings",
function exec_test(assert) {
let done = assert.async(4);
function childMakeOwnSinks(sources, settings) {
return {
DOM: sources.DOM1.map(makeDivVNode),
childSettings$: sources.DOM1.map(always(settings))
}
}
const child = {
makeLocalSettings: function makeLocalSettings(settings) {
return {
childKey1: '.settingInMOverloaded'
}
}
};
function greatCMakeOwnSinks(sources, settings) {
return {
DOM: sources.DOM2.map(makeDivVNode),
gCSettings$: sources.DOM2.map(always(settings))
}
}
function parentMakeOwnSinks(sources, settings) {
return {
DOM: sources.DOMp.map(makeDivVNode),
parentSettings$: sources.DOMp.map(always(settings))
}
}
const component = m({}, {
parentKey1: 'MOverloaded',
parentKey2: 'settingInM',
parentKey3: { parent: 1 }
}, [
parentMakeOwnSinks, [
m(child, {
childKey1: '.settingInM',
parentKey2: 'parentSettingOverloadByChild',
parentKey3: { child: 2 }
}, [
childMakeOwnSinks, [
m({}, {
greatChildKey: '..settingInM',
parentKey3: { greatChild: 3 }
}, [
greatCMakeOwnSinks, []
])
]])
]]
);
const inputs = [
{ DOMp: { diagram: '-a---b--' } },
{ DOM1: { diagram: '-a--b--c--' } },
{ DOM2: { diagram: '-a-b-c-d-e-' } },
];
function makeTestVNode(p, c, gc) {
// p: parent, c: child, gc: greatchild
return {
"children": [
{
"children": [],
"data": {},
"elm": undefined,
"key": undefined,
"sel": undefined,
"text": p
},
{
"children": [
{
"children": [],
"data": {},
"elm": undefined,
"key": undefined,
"sel": undefined,
"text": c
},
{
"children": [],
"data": {},
"elm": undefined,
"key": undefined,
"sel": "div",
"text": gc
}
],
"data": {},
"elm": undefined,
"key": undefined,
"sel": "div",
"text": undefined
}
],
"data": {},
"elm": undefined,
"key": undefined,
"sel": "div",
"text": undefined
}
}
const vNodes = [
makeTestVNode('a', 'a', 'a'),
makeTestVNode('a', 'a', 'b'),
makeTestVNode('a', 'b', 'b'),
makeTestVNode('b', 'b', 'b'),
makeTestVNode('b', 'b', 'c'),
makeTestVNode('b', 'c', 'c'),
makeTestVNode('b', 'c', 'd'),
makeTestVNode('b', 'c', 'e'),
];
function analyzeTestResults(actual, expected, message) {
assert.deepEqual(actual, expected, message);
done()
}
/** @type TestResults */
const testResults = {
DOM: {
outputs: vNodes,
successMessage: 'sink DOM produces the expected values',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
parentSettings$: {
outputs: [
{
"parentKey1": "MOverloaded",
"parentKey2": "settingInM",
"parentKey3": {
"parent": 1
}
},
{
"parentKey1": "MOverloaded",
"parentKey2": "settingInM",
"parentKey3": {
"parent": 1
}
}
],
successMessage: 'Component settings are the resulting merge of :\n' +
'1. settings passed through `m` helper, \n' +
'2. settings passed when calling the component which is a result of the `m` helper,\n' +
'3. settings resulting from `makeLocalSettings`\n' +
'in decreasing precedency order.',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
childSettings$: {
outputs: [
{
"childKey1": ".settingInM",
"parentKey1": "MOverloaded",
"parentKey2": "parentSettingOverloadByChild",
"parentKey3": {
"child": 2,
"parent": 1
}
},
{
"childKey1": ".settingInM",
"parentKey1": "MOverloaded",
"parentKey2": "parentSettingOverloadByChild",
"parentKey3": {
"child": 2,
"parent": 1
}
},
{
"childKey1": ".settingInM",
"parentKey1": "MOverloaded",
"parentKey2": "parentSettingOverloadByChild",
"parentKey3": {
"child": 2,
"parent": 1
}
}
],
successMessage: 'Children settings are computed like any component ' +
'settings, but also merge with the settings from the parent.\n' +
' In case of conflict with the parent, the children settings ' +
'have higher precedency.',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
gCSettings$: {
outputs: [
{
"childKey1": ".settingInM",
"greatChildKey": "..settingInM",
"parentKey1": "MOverloaded",
"parentKey2": "parentSettingOverloadByChild",
"parentKey3": {
"child": 2,
"greatChild": 3,
"parent": 1
}
},
{
"childKey1": ".settingInM",
"greatChildKey": "..settingInM",
"parentKey1": "MOverloaded",
"parentKey2": "parentSettingOverloadByChild",
"parentKey3": {
"child": 2,
"greatChild": 3,
"parent": 1
}
},
{
"childKey1": ".settingInM",
"greatChildKey": "..settingInM",
"parentKey1": "MOverloaded",
"parentKey2": "parentSettingOverloadByChild",
"parentKey3": {
"child": 2,
"greatChild": 3,
"parent": 1
}
},
{
"childKey1": ".settingInM",
"greatChildKey": "..settingInM",
"parentKey1": "MOverloaded",
"parentKey2": "parentSettingOverloadByChild",
"parentKey3": {
"child": 2,
"greatChild": 3,
"parent": 1
}
},
{
"childKey1": ".settingInM",
"greatChildKey": "..settingInM",
"parentKey1": "MOverloaded",
"parentKey2": "parentSettingOverloadByChild",
"parentKey3": {
"child": 2,
"greatChild": 3,
"parent": 1
}
}
],
successMessage: 'Each child has its own setting object, ' +
'i.e settings are passed down the component tree by value, ' +
'not by reference',
analyzeTestResults: analyzeTestResults,
transformFn: undefined,
},
};
const testFn = function (sources, settings) {
return component(sources, { parentKey1: 'settingOut' })
};
runTestScenario(inputs, testResults, testFn, {
tickDuration: 5,
waitForFinishDelay: 10
})
});
QUnit.module("Testing getSlotHoles(vNode) : Array.<{parent:Array, index:Number}>", {});
const A_SLOT = 'a slot';
const ANOTHER_SLOT = 'another slot';
const YET_ANOTHER_SLOT = 'yet another slot';
const YET_YET_ANOTHER_SLOT = 'yet yet another slot';
const A_SELECTOR = 'a_div_selector';
const ANOTHER_SELECTOR = 'another_div_selector';
const YET_ANOTHER_SELECTOR = 'yet_another_div_selector';
const YET_YET_ANOTHER_SELECTOR = 'yet_yet_another_div_selector';
const parentVNodeSlotAtRoot = {
children: [],
data: { slot: A_SLOT },
elm: undefined,
key: undefined,
sel: A_SELECTOR,
text: undefined
};
const childrenVNodeWithASlot = {
children: [],
data: { slot: A_SLOT },
elm: undefined,
key: undefined,
sel: A_SELECTOR,
text: undefined
};
const childrenVNodeWithAnotherSlot = {
children: [],
data: { slot: ANOTHER_SLOT },
elm: undefined,
key: undefined,
sel: ANOTHER_SELECTOR,
text: undefined
}
const childrenVNodeWithNoSlotAndNoChildren = {
children: [],
data: {},
elm: undefined,
key: undefined,
sel: undefined,
text: 'this is childrenVNodeWithNoSlotAndNoChildren'
}
const childrenVNodeWithNoSlotAndChildWithAnotherSlot = {
children: [
childrenVNodeWithNoSlotAndNoChildren,
childrenVNodeWithAnotherSlot,
],
data: {},
elm: undefined,
key: undefined,
sel: ANOTHER_SELECTOR,
text: undefined
}
function getVNodeWithOnlyText(text) {
return {
children: [],
data: {},
elm: undefined,
key: undefined,
sel: undefined,
text: text
}
}
function getVNodeWithUndefinedSlot(selector) {
return {
children: [],
data: { slot: undefined },
elm: undefined,
key: undefined,
sel: selector,
text: undefined
}
}
function getVNodeWithNoSlot(selector) {
return {
children: [],
data: {},
elm: undefined,
key: undefined,
sel: selector,
text: undefined
}
}
const PARENT_DOM_SINK_NOT_NULL = 'anything';
const ParentVNode_0_0_0 = getVNodeWithOnlyText('ParentVNode_0_0_0');
const ParentVNode_0_0_1 = {
"children": [],
"data": { slot: YET_YET_ANOTHER_SLOT },
"elm": undefined,
"key": undefined,
"sel": YET_YET_ANOTHER_SELECTOR,
"text": ""
};
const ParentVNode_0_0 = {
"children": [ParentVNode_0_0_0, ParentVNode_0_0_1],
"data": { slot: ANOTHER_SLOT },
"elm": undefined,
"key": undefined,
"sel": ANOTHER_SELECTOR,
"text": ""
};
const ParentVNode_0_1 = getVNodeWithOnlyText('ParentVNode_0_1');
const ParentVNode_0_2 = {
"children": [],
"data": { slot: YET_ANOTHER_SLOT },
"elm": undefined,
"key": undefined,
"sel": ANOTHER_SELECTOR,
"text": ""
};
const ParentVNode_0_3 = getVNodeWithUndefinedSlot(YET_ANOTHER_SELECTOR);
const ParentVNode_0 = {
"children": [
ParentVNode_0_0, ParentVNode_0_1, ParentVNode_0_2, ParentVNode_0_3
],
"data": { slot: A_SLOT },
"elm": undefined,
"key": undefined,
"sel": A_SELECTOR,
"text": ""
};
const ParentVNode_0_default_slot = {
"children": [
ParentVNode_0_0, ParentVNode_0_1, ParentVNode_0_2