-
Notifications
You must be signed in to change notification settings - Fork 2
/
assert.class.js
1421 lines (1330 loc) · 36.7 KB
/
assert.class.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
/**
* _ _
* /\ | | O | |
* / \ _ __ ___ _ __ ___ __ _ | |_ _ ___ __ _ | |
* / /\ \ | '__| / \ | '_ ` _ \ / ` || __|| | / __| / ` || |
* / ____ \ | | ( O )| | | | | |( O || |_ | |( (__ ( O || |_
* /_/ \_\|_| \___/ |_| |_| |_| \__,_| \__||_| \___| \__,_| \__|
*
* Aria Automation Assert Library
*
* @author Stefan Schnell <[email protected]>
* @license MIT
* @version 0.7.0
*
* Checked with ...
* - Aria Automation 8.5.1, 8.12.2, 8.14.0 and 8.16.2.
* Checked standalone with ...
* - Windows 10, Windows 11 and RHEL 9.2.
* - Rhino 1.7R4, 1.7.14 and 1.7.15.
* - Bellsoft JDK 11.0.23, Bellsoft JDK 17.0.11, Oracle OpenJDK 20.0.2,
* Bellsoft JDK 21.0.1 and Bellsoft JDK 22.0.1.
*/
var _assertNS = {
// Check methods
/**
* Determines whether the passed value is an array.
*
* @function isArray
* @param {any} value - Value to be checked
* @returns {boolean}
*
* @example
* // Delivers true
* var array = [1, 2, 3, 4, 5];
* System.log(assert.isArray(array));
*/
isArray : function(value) {
if (arguments.length === 0) {
throw new Error("Argument missing at isArray");
}
return Array.isArray(value);
},
/**
* Determines whether the passed value is a boolean.
*
* @function isBoolean
* @param {any} value - Value to be checked
* @returns {boolean}
*
* @example
* // Delivers true
* System.log(assert.isBoolean(false));;
*/
isBoolean : function(value) {
if (arguments.length === 0) {
throw new Error("Argument missing at isBoolean");
}
return typeof value === "boolean";
},
/**
* Determines whether the passed value is a (valid) date.
*
* @function isDate
* @param {any} value - Value to be checked
* @returns {boolean}
*
* @example
* // Delivers true
* var date = new Date();
* System.log(assert.isDate(date));
*/
isDate : function(value) {
if (arguments.length === 0) {
throw new Error("Argument missing at isDate");
}
return this.isObject(value) &&
value instanceof Date &&
!isNaN(Date.parse(value));
},
/**
* Determines whether the passed value is an error.
*
* @function isError
* @param {any} value - Value to be checked
* @returns {boolean}
*
* @example
* // Delivers true
* var err = new Error();
* System.log(assert.isError(err));
*/
isError : function(value) {
if (arguments.length === 0) {
throw new Error("Argument missing at isError");
}
return this.isObject(value) && value instanceof Error;
},
/**
* Determines whether the passed value is a function.
*
* @function isFunction
* @param {any} value -Value to be checked
* @returns {boolean}
*
* @example
* // Delivers true
* var func = function() { return "Hello World"; };
* System.log(assert.isFunction(func));
*/
isFunction : function(value) {
if (arguments.length === 0) {
throw new Error("Argument missing at isFunction");
}
return typeof value === 'function';
},
/**
* Determines whether the passed value is an instance of the given
* constructor.
*
* @function isInstanceOf
* @param {any} value - Value to be checked
* @param {object} constructor - Constructor checked against
* @returns {boolean}
*
* @example
* // Delivers true
* function C() {};
* var o = new C();
* System.log(assert.isInstanceOf(o, C));
*/
isInstanceOf : function(value, constructor) {
if (arguments.length < 2) {
throw new Error("Arguments missing at isInstanceOf");
}
try {
if (value instanceof constructor) {
return true;
} else {
return false;
}
} catch (exception) {
return false;
}
},
/**
* Determines whether the passed value is null.
*
* @function isNull
* @param {any} value - Value to be checked
* @returns {boolean}
*
* @example
* // Delivers true
* var notNul = 0;
* System.log(assert.isNull(notNul));
*/
isNull : function(value) {
if (arguments.length === 0) {
throw new Error("Argument missing at isNull");
}
return value === null;
},
/**
* Determines whether the passed value is a null or undefined.
*
* @function isNullOrUndefined
* @param {any} value - Value to be checked
* @returns {boolean}
*
* @example
* // Delivers true
* System.log(assert.isNullOrUndefined(null));
*
* @example
* // Delivers true
* var undef;
* System.log(assert.isNullOrUndefined(undef));
*/
isNullOrUndefined : function(value) {
if (arguments.length === 0) {
throw new Error("Argument missing at isNullOrUndefined");
}
return this.isNull(value) || this.isUndefined(value);
},
/**
* Determines whether the passed value is a number.
*
* @function isNumber
* @param {any} value - Value to be checked
* @returns {boolean}
*
* @example
* // Delivers true
* var number = 42;
* System.log(assert.isNumber(number));
*/
isNumber : function(value) {
if (arguments.length === 0) {
throw new Error("Argument missing at isNumber");
}
return typeof value === "number";
},
/**
* Determines whether the passed value is an object.
*
* @function isObject
* @param {any} value - Value to be checked
* @returns {boolean}
*
* @example
* // Delivers true
* var obj = {};
* System.log(assert.isObject(obj));
*/
isObject : function(value) {
if (arguments.length === 0) {
throw new Error("Argument missing at isObject");
}
return typeof value === "object" && value !== null;
},
/**
* Determines whether the passed value is a plain object.
* Hint: An Object created by literal notation or new Object are known
* as plain object (POJO). The opposite is an object created via a
* constructor function.
*
* @function isPlainObject
* @param {any} value - Value to be checked
* @returns {boolean}
*
* @example
* // Delivers true
* var plainObject = {a:1,b:2,c:3};
* System.log(assert.isPlainObject(plainObject));
*/
isPlainObject : function(value) {
if (arguments.length === 0) {
throw new Error("Argument missing at isPlainObject");
}
return value.constructor === Object;
},
/**
* Determines whether the passed value is a regular expression.
*
* @function isRegExp
* @param {any} value - Value to be checked
* @returns {boolean}
*
* @example
* // Delivers true
* var regexp = new RegExp();
* System.log(assert.isRegExp(regexp));
*/
isRegExp : function(value) {
if (arguments.length === 0) {
throw new Error("Argument missing at isRegExp");
}
if (value.constructor) {
return value.constructor.name === "RegExp";
} else {
return false;
}
},
/**
* Determines whether the passed value is a string.
*
* @function isString
* @param {any} value - Value to be checked
* @returns {boolean}
*
* @example
* // Delivers true
* var str = "Test";
* System.log(assert.isString(str));
*/
isString : function(value) {
if (arguments.length === 0) {
throw new Error("Argument missing at isString");
}
return typeof value === "string";
},
/**
* Determines whether the passed value is a type of the given type.
*
* @function isTypeOf
* @param {any} value - Value to be checked
* @param {string} type - Type checked against
* @returns {boolean}
*
* @example
* // Delivers true
* var typeOfNumber = 42;
* System.log(assert.isTypeOf(typeOfNumber, "number"));
*
* @example
* // Delivers true
* System.log(assert.isTypeOf(void 0, "undefined"));
*/
isTypeOf : function(value, type) {
if (arguments.length < 2) {
throw new Error("Arguments missing at isTypeOf");
}
return typeof value === type;
},
/**
* Determines whether the passed value is undefined.
*
* @function isUndefined
* @param {any} value - Value to be checked
* @returns {boolean}
*
* @example
* // Delivers true
* var undef;
* System.log(assert.isUndefined(undef));
*
* @example
* // Delivers true
* System.log(assert.isUndefined(void 0));
*/
isUndefined : function(value) {
if (arguments.length === 0) {
throw new Error("Argument missing at isUndefined");
}
return value === undefined;
},
/**
* Determines whether the passed value is undefined or null.
* Hint: Equivalent to isNullOrUndefined.
*
* @function isUndefinedOrNull
* @param {any} value - Value to be checked
* @returns {boolean}
*/
isUndefinedOrNull : function(value) {
if (arguments.length === 0) {
throw new Error("Argument missing at isUndefinedOrNull");
}
return this.isUndefined(value) || this.isNull(value);
},
// Assert methods
/**
* Tests for deep equality between the actual and expected
* parameters.
*
* @function deepEqual
* @param {any} actual - The actual value
* @param {any} expected - The expected value
* @param {string} message - If provided, this error message is set
*
* @example
* // Delivers deepEqual({"a":{"b":1}} == {"a":{"b":1}})
* var obj1 = { a: { b: 1, }, };
* assert.deepEqual(obj1, obj1);
*/
deepEqual : function(actual, expected, message) {
if (arguments.length < 2) {
throw new Error("Arguments missing at deepEqual");
}
if (!this._isDeepEqual(actual, expected)) {
if (this.isUndefined(message)) {
this._failOut("deepEqual(" + JSON.stringify(actual) + " == " +
JSON.stringify(expected) +
")");
} else {
this._failOut(message);
}
} else {
this._passOut("deepEqual(" + JSON.stringify(actual) + " == " +
JSON.stringify(expected) + ")");
}
},
/**
* Wrapper for notMatch method.
*
* @function doesNotMatch
* @param {(string|number)} actual - The actual value
* @param {RegExp} expected - The expected value
* @param {string} message - If provided, this error message is set
*/
doesNotMatch : function(actual, expected, message) {
if (arguments.length < 2) {
throw new Error("Arguments missing at doesNotMatch");
}
this.notMatch(actual, expected, message);
},
/**
* Tests equality between the actual and expected parameters with
* the == operator.
*
* @function equal
* @param {any} actual - The actual value
* @param {any} expected - The expected value
* @param {string} message - If provided, this error message is set
*
* @example
* // Delivers AssertionPass equal(1 == 1)
* assert.equal(1, 1);
*/
equal : function(actual, expected, message) {
if (arguments.length < 2) {
throw new Error("Arguments missing at equal");
}
if (actual != expected) {
if (this.isUndefined(message)) {
this._failOut("equal(" + String(actual) + " == " +
String(expected) + ")");
} else {
this._failOut(message);
}
} else {
this._passOut("equal(" + String(actual) + " == " +
String(expected) + ")");
}
},
/**
* Throws an error with the provided error message or a default
* error message.
*
* @function fail
* @param {string} message - If provided, this error message is set
*
* @example
* // Delivers AssertionFail
* try {
* assert.fail();
* } catch(exception) { }
*/
fail : function(message) {
if (this.isUndefined(message)) {
this._failOut();
throw new Error("AssertionFail");
} else {
this._failOut(message);
throw new Error("AssertionFail: " + message);
}
},
/**
* Tests whether the actual parameter is greater than the expected
* parameter.
*
* @function greaterThan
* @param {any} actual - The actual value
* @param {any} expected - The expected value
* @param {string} message - If provided, this error message is set
*
* @example
* // Delivers AssertionPass greaterThan(2 > 1)
* assert.greaterThan(2, 1);
*/
greaterThan : function(actual, expected, message) {
if (arguments.length < 2) {
throw new Error("Arguments missing at match");
}
if (actual <= expected) {
if (this.isUndefined(message)) {
this._failOut("greaterThan(" + String(actual) + " > " +
String(expected) + ")");
} else {
this._failOut(message);
}
} else {
this._passOut("greaterThan(" + String(actual) + " > " +
String(expected) + ")");
}
},
/**
* Tests whether the actual parameter is greater or equal than the
* expected parameter.
*
* @function greaterThanOrEqual
* @param {any} actual - The actual value
* @param {any} expected - The expected value
* @param {string} message - If provided, this error message is set
*
* @example
* // Delivers AssertionPass greaterThanOrEqual(42 >= 42)
* assert.greaterThanOrEqual(42, 42);
*/
greaterThanOrEqual : function(actual, expected, message) {
if (arguments.length < 2) {
throw new Error("Arguments missing at match");
}
if (actual < expected) {
if (this.isUndefined(message)) {
this._failOut("greaterThanOrEqual(" + String(actual) +
" >= " + String(expected) + ")");
} else {
this._failOut(message);
}
} else {
this._passOut("greaterThanOrEqual(" + String(actual) +
" >= " + String(expected) + ")");
}
},
/**
* Tests whether the actual parameter is less than the expected
* parameter.
*
* @function lessThan
* @param {any} actual - The actual value
* @param {any} expected - The expected value
* @param {string} message - If provided, this error message is set
*
* @example
* // Delivers AssertionPass lessThan(3 < 4)
* assert.lessThan(3, 4);
*/
lessThan : function(actual, expected, message) {
if (arguments.length < 2) {
throw new Error("Arguments missing at match");
}
if (actual >= expected) {
if (this.isUndefined(message)) {
this._failOut("lessThan(" + String(actual) + " < " +
String(expected) + ")");
} else {
this._failOut(message);
}
} else {
this._passOut("lessThan(" + String(actual) + " < " +
String(expected) + ")");
}
},
/**
* Tests whether the actual parameter is less or equal than the
* expected parameter.
*
* @function equal
* @param {any} actual - The actual value
* @param {any} expected - The expected value
* @param {string} message - If provided, this error message is set
*
* @example
* // Delivers AssertionPass lessThanOrEqual(A <= B)
* assert.lessThanOrEqual("A", "B");
*/
lessThanOrEqual : function(actual, expected, message) {
if (arguments.length < 2) {
throw new Error("Arguments missing at match");
}
if (actual > expected) {
if (this.isUndefined(message)) {
this._failOut("lessThanOrEqual(" + String(actual) + " <= " +
String(expected) + ")");
} else {
this._failOut(message);
}
} else {
this._passOut("lessThanOrEqual(" + String(actual) + " <= " +
String(expected) + ")");
}
},
/**
* Expects that actual match the regular expression.
*
* @function match
* @param {(string|number)} actual - The actual value
* @param {RegExp} expected - The expected value
* @param {string} message - If provided, this error message is set
*
* @example
* // Delivers AssertionPass The input 'I will pass' match the regular
* // expression /pass/
* assert.match("I will pass", /pass/);
*/
match : function(actual, expected, message) {
if (arguments.length < 2) {
throw new Error("Arguments missing at match");
}
if (!this.isRegExp(expected)) {
throw new Error("expected argument must be RegExp");
}
if (!expected.test(actual)) {
if (this.isUndefined(message)) {
this._failOut("The input '" + String(actual) +
"' did not match the regular expression " + String(expected));
} else {
this._failOut(message);
}
} else {
this._passOut("The input '" + actual +
"' match the regular expression " + String(expected));
}
},
/**
* Tests for any deep inequality between the actual and expected
* parameters.
*
* @function notDeepEqual
* @param {any} actual - The actual value
* @param {any} expected - The expected value
* @param {string} message - If provided, this error message is set
*
* @example
* // Delivers AssertionFail notDeepEqual({"a":{"b":1}} != {"a":{"b":1}})
* var obj1 = { a: { b: 1, }, };
* assert.notDeepEqual(obj1, obj1);
*/
notDeepEqual : function(actual, expected, message) {
if (arguments.length < 2) {
throw new Error("Arguments missing at notDeepEqual");
}
if (this._isDeepEqual(actual, expected)) {
if (this.isUndefined(message)) {
this._failOut("notDeepEqual(" + JSON.stringify(actual) +
" != " + JSON.stringify(expected) + ")");
} else {
this._failOut(message);
}
} else {
this._passOut("notDeepEqual(" + JSON.stringify(actual) + " != " +
JSON.stringify(expected) + ")");
}
},
/**
* Tests inequality between the actual and expected parameters with
* the != operator.
*
* @function notEqual
* @param {any} actual - The actual value
* @param {any} expected - The expected value
* @param {string} message - If provided, this error message is set
*
* @example
* // Delivers AssertionPass notEqual(1 != 2)
* assert.notEqual(1, 2);
*/
notEqual : function(actual, expected, message) {
if (arguments.length < 2) {
throw new Error("Arguments missing at notEqual");
}
if (actual == expected) {
if (this.isUndefined(message)) {
this._failOut("notEqual(" + String(actual) + " != " +
String(expected) + ")");
} else {
this._failOut(message);
}
} else {
this._passOut("notEqual(" + String(actual) + " != " +
String(expected) + ")");
}
},
/**
* Expects that actual not match the regular expression.
*
* @function notMatch
* @param {(string|number)} actual - The actual value
* @param {RegExp} expected - The expected value
* @param {string} message - If provided, this error message is set
*
* @example
* // Delivers AssertionPass The input 'I will pass' did not match the
* // regular expression /different/
* assert.notMatch("I will pass", /different/);
*/
notMatch : function(actual, expected, message) {
if (arguments.length < 2) {
throw new Error("Arguments missing at notMatch");
}
if (!this.isRegExp(expected)) {
throw new Error("expected argument must be RegExp");
}
if (expected.test(actual)) {
if (this.isUndefined(message)) {
this._failOut("The input '" + String(actual) +
"' did match the regular expression " + String(expected));
} else {
this._failOut(message);
}
} else {
this._passOut("The input '" + String(actual) +
"' did not match the regular expression " +
String(expected));
}
},
/**
* Tests if value is falsy.<br>
* Hint: All values are truthy except false, 0, -0, 0n (bigint is not
* supported by Rhino), "", null, undefined and NaN.
*
* @function notOk
* @param {any} value - The value to be tested
* @param {string} message - If provided, this error message is set
*
* @example
* // Delivers AssertionPass ok(false)
* assert.notOk(false);
*/
notOk : function(value, message) {
if (arguments.length === 0) {
throw new Error("Arguments missing at notOk");
}
if (value) {
if (this.isUndefined(message)) {
this._failOut("notOk(" + String(value) + ")");
} else {
this._failOut(message);
}
} else {
this._passOut("notOk(" + String(value) + ")");
}
},
/**
* Tests strict inequality between the actual and expected
* parameters with the !== operator.
*
* @function notStrictEqual
* @param {any} actual - The actual value
* @param {any} expected - The expected value
* @param {string} message - If provided, this error message is set
*
* @example
* // Delivers AssertionPass notStrictEqual(1 !== 2)
* assert.notStrictEqual(1, 2);
*/
notStrictEqual : function(actual, expected, message) {
if (arguments.length < 2) {
throw new Error("Arguments missing at notStrictEqual");
}
if (actual === expected) {
if (this.isUndefined(message)) {
this._failOut("notStrictEqual(" + String(actual) + " !== " +
String(expected) + ")");
} else {
this._failOut(message);
}
} else {
this._passOut("notStrictEqual(" + String(actual) + " !== " +
String(expected) + ")");
}
},
/**
* Tests if value is truthy.<br>
* Hint: All values are truthy except false, 0, -0, 0n, "", null,
* undefined and NaN.
*
* @function ok
* @param {any} value - The value to be tested
* @param {string} message - If provided, this error message is set
*
* @example
* // Delivers AssertionPass ok(true)
* assert.ok(true);
*/
ok : function(value, message) {
if (arguments.length === 0) {
throw new Error("Arguments missing at ok");
}
if (!value) {
if (this.isUndefined(message)) {
this._failOut("ok(" + String(value) + ")");
} else {
this._failOut(message);
}
} else {
this._passOut("ok(" + String(value) + ")");
}
},
/**
* Tests strict equality between the actual and expected parameters
* with the === operator.
*
* @function strictEqual
* @param {any} actual - The actual value
* @param {any} expected - The expected value
* @param {string} message - If provided, this error message is set
*
* @example
* // Delivers AssertionPass strictEqual(Hello World === Hello World)
* assert.strictEqual("Hello World", "Hello World");
*/
strictEqual : function(actual, expected, message) {
if (arguments.length < 2) {
throw new Error("Arguments missing at strictEqual");
}
if (actual !== expected) {
if (this.isUndefined(message)) {
this._failOut("strictEqual(" + String(actual) + " === " +
String(expected) + ")");
} else {
this._failOut(message);
}
} else {
this._passOut("strictEqual(" + String(actual) + " === " +
String(expected) + ")");
}
},
/**
* Expects the function fn to throw the error expectedError.
*
* @function throws
* @param {Function} fn
* @param {string | RegExp | Error} expectedError - The expected error
* @param {string} message - If provided, this error message is set
* @returns {boolean}
*
* @example
* // Delivers AssertionPass throws get the expected error
* // TypeError(Wrong value)
* var err = new TypeError("Wrong value");
* assert.throws( function () { throw err; }, "Wrong value" );
*
* Hint: An Action is not a function!
* It is not possible to set an action as fn parameter, e.g. via
* System.getModule("youModule").actionName().
*/
throws : function(fn, expectedError, message) {
if (arguments.length < 2) {
throw new Error("Arguments missing at throws");
}
var thrown = false;
if (this.isFunction(fn)) {
var thrownError;
try {
fn();
} catch (err) {
thrown = true;
thrownError = err;
}
if (thrown && expectedError) {
thrown = this._errorMatches(thrownError, expectedError);
}
if (!thrown) {
if (this.isUndefined(message)) {
if (!(this.isUndefined(thrownError))) {
this._failOut("throws get the unexpected error " +
thrownError.name + "(" + thrownError.message + ")");
} else {
this._failOut("throws get no error");
}
} else {
this._failOut(message);
}
} else {
this._passOut("throws get the expected error " +
thrownError.name + "(" + thrownError.message + ")");
}
}
return thrown;
},
// Test grouping methods
/**
* Creates a block that groups several related tests.
*
* @function describe
* @param {string} name - Name of the describe block
* @param {Function} fn
*
* @example
* assert.describe("Test", function() {
* // Your tests here
* });
*/
describe : function(name, fn) {
if (arguments.length < 2) {
throw new Error("Arguments missing at describe");
}
if (this.isFunction(fn)) {
System.log("{ " + String(name));
try {
fn();
} catch (exception) {
System.error(exception);
}
System.log("} //" + String(name));
}
},
/**
* Creates a block that groups several related tests which run the
* tests with different data.
*
* @function describeEach
* @param {Array.<Array>} table - Arguments that are passed to the function
* @param {string} name - Name of the describe block
* @param {Function} fn
*
* @example
* assert.describeEach(
* [
* [1, "A", 3.1, true],
* [3, "B", 1.3, false]
* ],
* "Test",
* function(a, b, c, d) {
* // Your tests here
* }
* );
*/
describeEach : function(table, name, fn) {
if (arguments.length < 3) {
throw new Error("Arguments missing at describeEach");
}
if (this.isArray(table) && this.isFunction(fn)) {
System.log("{ " + String(name));
try {
table.forEach( function(row) {
fn.apply(null, row);
});
} catch (exception) {
System.error(exception);
}
System.log("} //" + String(name));
}
},
/**
* Skips a block that groups several related tests which run the
* tests with different data.
*
* @function describeEachSkip
* @param {Array.<Array>} table - Arguments that are passed to the function
* @param {string} name - Name of the describe block
* @param {Function} fn
*
* @example
* assert.describeEachSkip(
* [
* [1, "A", 3.1, true],
* [3, "B", 1.3, false]
* ],
* "Test",
* function(a, b, c, d) {
* // Your tests here
* }
* );
*/
describeEachSkip : function(table, name, fn) {
if (arguments.length < 3) {
throw new Error("Arguments missing at describeEachSkip");
}
if (this.isArray(table) && this.isFunction(fn)) {
System.log("Skipped: " + String(name));
}
},
/**
* Skips a block that groups several related tests.
*
* @function describeSkip
* @param {string} name - Name of the describe block
* @param {Function} fn
*
* @example
* assert.describeSkip("Test", function() {
* // Your tests here
* });
*/
describeSkip : function(name, fn) {
if (arguments.length < 2) {
throw new Error("Arguments missing at describeSkip");
}
if (this.isFunction(fn)) {
System.log("Skipped: " + String(name));
}
},
/**
* Creates a test block.
*