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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
<div class="intro">
<p>YUI Test is a testing framework for browser-based JavaScript solutions. Using YUI Test, you can easily add unit testing to your JavaScript solutions. While not a direct port from any specific xUnit framework, YUI Test does derive some characteristics from <a href="http://www.nunit.org/">nUnit</a> and <a href="http://www.junit.org/">JUnit</a>.</p>
<p>YUI Test features:</p>
<ul>
<li>Rapid creation of <strong>test cases</strong> through simple syntax.</li>
<li>Advanced <strong>failure detection</strong> for methods that throw errors.</li>
<li>Grouping of related test cases using <strong>test suites</strong>.</li>
<li><strong>Mock objects</strong> for writing tests without external dependencies.</li>
<li><strong>Asynchronous tests</strong> for testing events and Ajax communication.</li>
<li><strong>DOM Event simulation</strong> in all A-grade browsers (through <a href="../event/index.html">Event</a>).</li>
</ul>
</div>
{{>getting-started}}
<h2 id="testcases">Using Test Cases</h2>
<p>The basis of Test is the <code>Y.Test.Case</code> object. A <code>TestCase</code> object is created by using the
<code>Y.Test.Case</code> constructor and passing in an object containing methods and other information with which
to initialize the test case. Typically, the argument is an object literal, for example:</p>
```
var testCase = new Y.Test.Case({
name: "TestCase Name",
//traditional test names
testSomething : function () {
//...
},
testSomethingElse : function () {
//...
}
});
```
<p>In this example, a simple test case is created named "TestCase Name". The <code>name</code> property is automatically applied to the test case so that it can be distinguished from other test cases that may be run during the same cycle. The two methods in this example are tests methods ( <code>testSomething()</code> and <code>testSomethingElse())</code>, which means that they are methods designed to test a specific piece of functional code. Test methods are indicatd by their name, either using the traditional manner of prepending the word <code>test</code> to the method name, or using a "friendly name," which is a sentence containing the word "should" that describes the test's purpose. For example:</p>
```
var testCase = new Y.Test.Case({
name: "TestCase Name",
//friendly test names
"Something should happen here" : function () {
//...
},
"Something else should happen here" : function () {
//...
}
});
```
<p>Regardless of the naming convention used for test names, each should contain one or more <a href="#assertions">assertions</a> that test data for validity.</p>
<h3 id="setup-and-teardown">setUp() and tearDown()</h3>
<p>As each test method is called, it may be necessary to setup information before it's run and then potentially clean up that information
after the test is run. The <code>setUp()</code> method is run before each and every test in the test case and likewise the <code>tearDown()</code> method is run
after each test is run. These methods should be used in conjunction to create objects before a test is run and free up memory after the
test is run. For example:</p>
```
var testCase = new Y.Test.Case({
name: "TestCase Name",
//---------------------------------------------
// Setup and tear down
//---------------------------------------------
setUp : function () {
this.data = { name : "Nicholas", age : 28 };
},
tearDown : function () {
delete this.data;
},
//---------------------------------------------
// Tests
//---------------------------------------------
testName: function () {
Y.Assert.areEqual("Nicholas", this.data.name, "Name should be 'Nicholas'");
},
testAge: function () {
Y.Assert.areEqual(28, this.data.age, "Age should be 28");
}
});
```
<p>In this example, a <code>setUp()</code> method creates a data object with some basic information. Each property of the data object is checked with
a different test, <code>testName()</code> tests the value of <code>data.name</code> while <code>testAge()</code> tests the value of <code>data.age</code>. Afterwards, the data object is deleted
to free up the memory. Real-world implementations will have more complex tests, of course, but they should follow the basic pattern you see in the above code.</p>
<p><strong>Note: </strong>Both <code>setUp()</code> and <code>tearDown()</code> are optional methods and are only used when defined.</p>
<h3 id="ignoring">Ignoring Tests</h3>
<p>There may be times when you want to ignore a test (perhaps the test is invalid for your purposes or the functionality is being re-engineered and so it shouldn't be tested at this time). To specify tests to ignore,
use the <code>_should.ignore</code> property and name each test to skip as a property whose value is set to <code>true</code>:</p>
```
var testCase = new Y.Test.Case({
name: "TestCase Name",
//---------------------------------------------
// Special instructions
//---------------------------------------------
_should: {
ignore: {
testName: true //ignore this test
}
},
//---------------------------------------------
// Setup and tear down
//---------------------------------------------
setUp : function () {
this.data = { name : "Nicholas", age : 28 };
},
tearDown : function () {
delete this.data;
},
//---------------------------------------------
// Tests
//---------------------------------------------
testName: function () {
Y.Assert.areEqual("Nicholas", this.data.name, "Name should be 'Nicholas'");
},
testAge: function () {
Y.Assert.areEqual(28, this.data.age, "Age should be 28");
}
});
```
<p>Here the <code>testName()</code> method will be ignored when the test case is run. This is accomplished by first defining the special <code>_should</code>
property and within it, an <code>ignore</code> property. The ignore property is an object containing name-value pairs representing the names of the tests
to ignore. By defining a property named "testName" and setting its value to <code>true</code>, it says that the method named "testName"
should not be executed.</p>
<h3 id="intentional-errors">Intentional Errors</h3>
<p>There may be a time that a test throws an error that was expected. For instance, perhaps you're testing a function that should throw an error if invalid data
is passed in. A thrown error in this case can signify that the test has passed. To indicate that
a test should throw an error, use the <code>_should.error</code> property. For example:</p>
```
function sortArray(array) {
if (array instanceof Array){
array.sort();
} else {
throw new TypeError("Expected an array");
}
}
var testCase = new Y.Test.Case({
name: "TestCase Name",
//---------------------------------------------
// Special instructions
//---------------------------------------------
_should: {
error: {
testSortArray: true //this test should throw an error
}
},
//---------------------------------------------
// Tests
//---------------------------------------------
testSortArray: function () {
sortArray(12); //this should throw an error
}
});
```
<p>In this example, a test case is created to test the standalone <code>sortArray()</code> function, which simply accepts an array and calls its <code>sort()</code> method.
But if the argument is not an array, an error is thrown. When <code>testSortArray()</code> is called, it throws an error because a number is passed into <code>sortArray()</code>.
Since the <code>_should.error</code> object has a property called "testSortArray" set to <code>true</code>, this indicates that <code>testSortArray()</code> should
pass only if an error is thrown.</p>
<p>It is possible to be more specific about the error that should be thrown. By setting a property in <code>_should.error</code> to a string, you can
specify that only a specific error message can be construed as a passed test. Here's an example:</p>
```
function sortArray(array) {
if (array instanceof Array){
array.sort();
} else {
throw new TypeError("Expected an array");
}
}
var testCase = new Y.Test.Case({
name: "TestCase Name",
//---------------------------------------------
// Special instructions
//---------------------------------------------
_should: {
error: {
testSortArray: "Expected an array"
}
},
//---------------------------------------------
// Tests
//---------------------------------------------
testSortArray: function () {
sortArray(12); //this should throw an error
}
});
```
<p>In this example, the <code>testSortArray()</code> test will only pass if the error that is thrown has a message of "Expected an array".
If a different error occurs within the course of executing <code>testSortArray()</code>, then the test will fail due to an unexpected error.</p>
<p>If you're unsure of the message but know the type of error that will be thrown, you can specify the error constructor for the error
you're expecting to occur:</p>
```
function sortArray(array) {
if (array instanceof Array){
array.sort();
} else {
throw new TypeError("Expected an array");
}
}
var testCase = new Y.Test.Case({
name: "TestCase Name",
//---------------------------------------------
// Special instructions
//---------------------------------------------
_should: {
error: {
testSortArray: TypeError
}
},
//---------------------------------------------
// Tests
//---------------------------------------------
testSortArray: function () {
sortArray(12); //this should throw an error
}
});
```
<p>In this example, the test will pass if a <code>TypeError</code> gets thrown; if any other type of error is thrown,
the test will fail. A word of caution: <code>TypeError</code> is the most frequently thrown error by browsers,
so specifying a <code>TypeError</code> as expected may give false passes.</p>
<p>To narrow the margin of error between checking for an error message and checking the error type, you can create a specific error
object and set that in the <code>_should.error</code> property, such as:</p>
```
function sortArray(array) {
if (array instanceof Array){
array.sort();
} else {
throw new TypeError("Expected an array");
}
}
var testCase = new Y.Test.Case({
name: "TestCase Name",
//---------------------------------------------
// Special instructions
//---------------------------------------------
_should: {
error: {
testSortArray: new TypeError("Expected an array")
}
},
//---------------------------------------------
// Tests
//---------------------------------------------
testSortArray: function () {
sortArray(12); //this should throw an error
}
});
```
<p>Using this code, the <code>testSortArray()</code> method will only pass if a <code>TypeError</code> object is thrown with a message of
"Expected an array"; if any other type of error occurs, then the test fails due to an unexpected error.</p>
<p><strong>Note: </strong>If a test is marked as expecting an error, the test will fail unless that specific error is thrown. If the test completes without an error being thrown, then it fails.</p>
<h2 id="assertions">Assertions</h2>
<p>Test methods use assertions to check the validity of a particular action or function. An assertion method tests (asserts) that a condition is valid; if not, it throws an error that causes the test to fail. If all assertions pass within a test method, it is said that the test has passed. The simplest assertion is <code>Y.assert()</code>, which takes two arguments: a condition to test and a message. If the condition is <em>not</em> true, then an assertion error is thrown with the specified message. For example:</p>
```
var testCase = new Y.Test.Case({
name: "TestCase Name",
testUsingAsserts : function () {
Y.assert(value == 5, "The value should be five.");
Y.assert(flag, "Flag should be true.");
}
});
```
<p>In this example, <code>testUsingAsserts()</code> will fail if <code>value</code> is not equal to 5 of <code>flag</code> is not set to <code>true</code>. The <code>Y.assert()</code> method may be all that you need, but there are advanced options available. The <code>Y.Assert</code> object contains several assertion methods that can be used to validate data.</p>
<h3 id="equality">Equality Assertions</h3>
<p>The simplest assertions are <code>areEqual()</code> and <code>areNotEqual()</code>. Both methods accept three arguments: the expected value,
the actual value, and an optional failure message (a default one is generated if this argument is omitted). For example:</p>
```
var testCase = new Y.Test.Case({
name: "TestCase Name",
testEqualityAsserts : function () {
Y.Assert.areEqual(5, 5); //passes
Y.Assert.areEqual(5, "5"); //passes
Y.Assert.areNotEqual(5, 6); //passes
Y.Assert.areEqual(5, 6, "Five was expected."); //fails
}
});
```
<p>These methods use the double equals (<code>==</code>) operator to determine if two values are equal, so type coercion may occur. This means
that the string <code>"5"</code> and the number <code>5</code> are considered equal because the double equals sign converts the number to
a string before doing the comparison. If you don't want values to be converted for comparison purposes, use the sameness assertions instead.</p>
<h3 id="sameness">Sameness Assertions</h3>
<p>The sameness assertions are <code>areSame()</code> and <code>areNotSame()</code>, and these accept the same three arguments as the equality
assertions: the expected value, the actual value, and an optional failure message. Unlike the equality assertions, these methods use
the triple equals operator (<code>===</code>) for comparisions, assuring that no type coercion will occur. For example:</p>
```
var testCase = new Y.Test.Case({
name: "TestCase Name",
testSamenessAsserts : function () {
Y.Assert.areSame(5, 5); //passes
Y.Assert.areSame(5, "5"); //fails
Y.Assert.areNotSame(5, 6); //passes
Y.Assert.areNotSame(5, "5"); //passes
Y.Assert.areSame(5, 6, "Five was expected."); //fails
}
});
```
<p><strong>Note: </strong>Even though this example shows multiple assertions failing, a test will stop as soon as one
assertion fails, causing all others to be skipped.</p>
<h3 id="datatypes">Data Type Assertions</h3>
<p>There may be times when some data should be of a particular type. To aid in this case, there are several methods that test the data type
of variables. Each of these methods acce<prepts two arguments: the data to test and an optional failure message. The data type assertions are as
follows:</p>
<ul>
<li><code>isArray()</code> - passes only if the value is an instance of <code>Array</code>.</li>
<li><code>isBoolean()</code> - passes only if the value is a Boolean.</li>
<li><code>isFunction()</code> - passes only if the value is a function.</li>
<li><code>isNumber()</code> - passes only if the value is a number.</li>
<li><code>isObject()</code> - passes only if the value is an object or a function.</li>
<li><code>isString()</code> - passes only if the value is a string.</li>
</ul>
<p>These are used as in the following example: </p>
```
var testCase = new Y.Test.Case({
name: "TestCase Name",
testDataTypeAsserts : function () {
Y.Assert.isString("Hello world"); //passes
Y.Assert.isNumber(1); //passes
Y.Assert.isArray([]); //passes
Y.Assert.isObject([]); //passes
Y.Assert.isFunction(function(){}); //passes
Y.Assert.isBoolean(true); //passes
Y.Assert.isObject(function(){}); //passes
Y.Assert.isNumber("1", "Value should be a number."); //fails
Y.Assert.isString(1, "Value should be a string."); //fails
}
});
```
<p>In addition to these specific data type assertions, there are two generic data type assertions.</p>
<p>The <code>isTypeOf()</code> method tests the string returned when the <code>typeof</code> operator is applied to a value. This
method accepts three arguments: the type that the value should be ("string", "number",
"boolean", "undefined", "object", or "function"), the value to test, and an optional failure message.
For example:</p>
```
var testCase = new Y.Test.Case({
name: "TestCase Name",
testTypeOf : function () {
Y.Assert.isTypeOf("string", "Hello world"); //passes
Y.Assert.isTypeOf("number", 1); //passes
Y.Assert.isTypeOf("boolean", true); //passes
Y.Assert.isTypeOf("number", 1.5); //passes
Y.Assert.isTypeOf("function", function(){}); //passes
Y.Assert.isTypeOf("object", {}); //passes
Y.Assert.isTypeOf("undefined", this.blah); //passes
Y.Assert.isTypeOf("number", "Hello world", "Value should be a number."); //fails
}
});
```
<p>If you need to test object types instead of simple data types, you can also use the <code>isInstanceOf()</code> assertion, which accepts three
arguments: the constructor function to test for, the value to test, and an optional failure message. This assertion uses the <code>instanceof</code>
operator to determine if it should pass or fail. Example:</p>
```
var testCase = new Y.Test.Case({
name: "TestCase Name",
testInstanceOf : function () {
Y.Assert.isInstanceOf(Object, {}); //passes
Y.Assert.isInstanceOf(Array, []); //passes
Y.Assert.isInstanceOf(Object, []); //passes
Y.Assert.isInstanceOf(Function, function(){}); //passes
Y.Assert.isInstanceOf(Object, function(){}); //passes
Y.Assert.isTypeOf(Array, {}, "Value should be an array."); //fails
}
});
```
<h3 id="specialvalues">Special Value Assertions</h3>
<p>There are numerous special values in JavaScript that may occur in code. These include <code>true</code>, <code>false</code>, <code>NaN</code>,
<code>null</code>, and <code>undefined</code>. There are a number of assertions designed to test for these values specifically:</p>
<ul>
<li><code>isFalse()</code> - passes if the value is <code>false</code>.</li>
<li><code>isTrue()</code> - passes if the value is <code>true</code>.</li>
<li><code>isNaN()</code> - passes if the value is <code>NaN</code>.</li>
<li><code>isNotNaN()</code> - passes if the value is not <code>NaN</code>.</li>
<li><code>isNull()</code> - passes if the value is <code>null</code>.</li>
<li><code>isNotNull()</code> - passes if the value is not <code>null</code>.</li>
<li><code>isUndefined()</code> - passes if the value is <code>undefined</code>.</li>
<li><code>isNotUndefined()</code> - passes if the value is not <code>undefined</code>.</li>
</ul>
<p>Each of these methods accepts two arguments: the value to test and an optional failure message. All of the assertions expect the
exact value (no type coercion occurs), so for example calling <code>isFalse(0)</code> will fail.</p>
```
var testCase = new Y.Test.Case({
name: "TestCase Name",
testSpecialValues : function () {
Y.Assert.isFalse(false); //passes
Y.Assert.isTrue(true); //passes
Y.Assert.isNaN(NaN); //passes
Y.Assert.isNaN(5 / "5"); //passes
Y.Assert.isNotNaN(5); //passes
Y.Assert.isNull(null); //passes
Y.Assert.isNotNull(undefined); //passes
Y.Assert.isUndefined(undefined); //passes
Y.Assert.isNotUndefined(null); //passes
Y.Assert.isUndefined({}, "Value should be undefined."); //fails
}
});
```
<h3 id="forcedfailures">Forced Failures</h3>
<p>While most tests fail as a result of an assertion, there may be times when
you want to force a test to fail or create your own assertion method. To do this, use the
<code>fail()</code> method to force a test method to fail immediately:</p>
```
var testCase = new Y.Test.Case({
name: "TestCase Name",
testForceFail : function () {
Y.Assert.fail(); //causes the test to fail
}
});
```
<p>In this case, the <code>testForceFail()</code> method does nothing but force
the method to fail. Optionally, you can pass in a message to <code>fail()</code>
which will be displayed as the failure message:</p>
```
var testCase = new Y.Test.Case({
name: "TestCase Name",
testForceFail : function () {
Y.Assert.fail("I decided this should fail.");
}
});
```
<p>When the failure of this method is reported, the message "I decided this should fail." will be reported.</p>
<h2 id="mockobjects">Mock Objects</h2>
<p>Mock objects are used to eliminate test dependencies on other objects. In complex software systems, there's often multiple
object that have dependence on one another to do their job. Perhaps part of your code relies on the <code>XMLHttpRequest</code>
object to get more information; if you're running the test without a network connection, you can't really be sure if the test
is failing because of your error or because the network connection is down. In reality, you just want to be sure that the correct
data was passed to the <code>open()</code> and <code>send()</code> methods because you can assume that, after that point,
the <code>XMLHttpRequest</code> object works as expected. This is the perfect case for using a mock object.</p>
<p>To create a mock object, use the <code>Y.Mock()</code> method to create a new object and then use <code>Y.Mock.expect()</code>
to define expectations for that object. Expectations define which methods you're expecting to call, what the arguments should be,
and what the expected result is. When you believe all of the appropriate methods have been called, you call <code>Y.Mock.verify()</code>
on the mock object to check that everything happened as it should. For example:</p>
```
//code being tested
function logToServer(message, xhr){
xhr.send(null);
}
//test case for testing the above function
var testCase = new Y.Test.Case({
name: "logToServer Tests",
testPassingDataToXhr : function () {
var mockXhr = Y.Mock();
//I expect the open() method to be called with the given arguments
Y.Mock.expect(mockXhr, {
method: "open",
args: ["get", "/log.php?msg=hi", true]
});
//I expect the send() method to be called with the given arguments
Y.Mock.expect(mockXhr, {
method: "send",
args: [null]
});
//now call the function
logToServer("hi", mockXhr);
//verify the expectations were met
Y.Mock.verify(mockXhr);
}
});
```
<p>In this code, a mock <code>XMLHttpRequest</code> object is created to aid in testing. The mock object defines two
expectations: that the <code>open()</code> method will be called with a given set of arguments and that the <code>send()</code>
method will be called with a given set of arguments. This is done by using <code>Y.Mock.expect()</code> and passing in the
mock object as well as some information about the expectation. The <code>method</code> property indicates the method name
that will be called and the <code>args</code> property is an array of arguments that should be passed into the method. Each
argument is compared against the actual arguments using the identically equal (<code>===</code>) operator, and if any of the
arguments doesn't match, an assertion failure is thrown when the method is called (it "fails fast" to allow easier debugging).</p>
<p>The call to <code>Y.Mock.verify()</code> is the final step in making sure that all expectations have been met. It's at this stage
that the mock object checks to see that all methods have been called. If <code>open()</code> was called but <code>send()</code>
was not, then an assertion failure is thrown and the test fails. It's very important to call <code>Y.Mock.verify()</code> to test
all expectations; failing to do so can lead to false passes when the test should actually fail.</p>
<p>In order to use mock objects, your code must be able to swap in and out objects that it uses. For example, a hardcoded
reference to <code>XMLHttpRequest</code> in your code would prevent you from using a mock object in its place. It's sometimes
necessary to refactor code in such a way that referenced objects are passed in rather than hardcoded so that mock objects
can be used.</p>
<p>Note that you can use assertions and mock objects together; either will correctly indicate a test failure.</p>
<h3>Special Argument Values</h3>
<p>There may be times when you don't necessarily care about a specific argument's value. Since you must always specify the correct
number of arguments being passed in, you still need to indicate that an argument is expected. There are several special values
you can use as placeholders for real values. These values do a minimum amount of data validation:</p>
<ul>
<li><code>Y.Mock.Value.Any</code> - any value is valid regardless of type.</li>
<li><code>Y.Mock.Value.String</code> - any string value is valid.</li>
<li><code>Y.Mock.Value.Number</code> - any number value is valid.</li>
<li><code>Y.Mock.Value.Boolean</code> - any Boolean value is valid.</li>
<li><code>Y.Mock.Value.Object</code> - any non-<code>null</code> object value is valid.</li>
<li><code>Y.Mock.Value.Function</code> - any function value is valid.</li>
</ul>
<p>Each of these special values can be used in the <code>args</code> property of an expectation, such as:</p>
```
Y.Mock.expect(mockXhr, {
method: "open",
});
```
<p>The expecation here will allow any string value as the first argument and any Boolean value as the last argument.
These special values should be used with care as they can let invalid values through if they are too general. The
<code>Y.Mock.Value.Any</code> special value should be used only if you're absolutely sure that the argument doesn't
matter.</p>
<h3>Property Expectations</h3>
<p>Since it's not possible to create property getters and setters in all browsers, creating a true cross-browser property
expectation isn't feasible. YUI Test mock objects allow you to specify a property name and it's expected value when
<code>Y.Mock.verify()</code> is called. This isn't a true property expectation but rather an expectation that the property
will have a certain value at the end of the test. You can specify a property expectation like this:</p>
```
//expect that the status property will be set to 404
Y.Mock.expect(mockXhr, {
property: "status",
value: 404
});
```
<p>This example indicates that the <code>status</code> property of the mock object should be set to 404 before
the test is completed. When <code>Y.Mock.verify()</code> is called on <code>mockXhr</code>, it will check
the property and throw an assertion failure if it has not been set appropriately.</p>
<h2 id="asynctests">Asynchronous Tests</h2>
<p>YUI Test allows you to pause a currently running test and resume either after a set amount of time or
at another designated time. The <code>TestCase</code> object has a method called <code>wait()</code>. When <code>wait()</code>
is called, the test immediately exits (meaning that any code after that point will be ignored) and waits for a signal to resume
the test.</p>
<p>A test may be resumed after a certain amount of time by passing in two arguments to <code>wait()</code>: a function to execute
and the number of milliseconds to wait before executing the function (similar to using <code>setTimeout()</code>). The function
passed in as the first argument will be executed as part of the current test (in the same scope) after the specified amount of time.
For example:</p>
```
var testCase = new Y.Test.Case({
name: "TestCase Name",
//---------------------------------------------
// Setup and tear down
//---------------------------------------------
setUp : function () {
this.data = { name : "Nicholas", age : 29 };
},
tearDown : function () {
delete this.data;
},
//---------------------------------------------
// Tests
//---------------------------------------------
testAsync: function () {
Y.Assert.areEqual("Nicholas", this.data.name, "Name should be 'Nicholas'");
//wait 1000 milliseconds and then run this function
this.wait(function(){
Y.Assert.areEqual(29, this.data.age, "Age should be 29");
}, 1000);
}
});
```
<p>In this code, the <code>testAsync()</code> function does one assertion, then waits 1000 milliseconds before performing
another assertion. The function passed into <code>wait()</code> is still in the scope of the original test, so it has
access to <code>this.data</code> just as the original part of the test does. Timed waits are helpful in situations when
there are no events to indicate when the test should resume.</p>
<p>If you want a test to wait until a specific event occurs before resuming, the <code>wait()</code> method can be called
with a timeout argument (the number of milliseconds to wait before considering the test a failure). At that point, testing will resume only when the <code>resume()</code> method is called. The
<code>resume()</code> method accepts a single argument, which is a function to run when the test resumes. This function
should specify additional assertions. If <code>resume()</code> isn't called before the timeout expires, then the test fails. The following tests to see if the <code>Anim</code> object has performed its
animation completely:</p>
```
var testCase = new Y.Test.Case({
name: "TestCase Name",
//---------------------------------------------
// Tests
//---------------------------------------------
testAnimation : function (){
//animate width to 400px
var myAnim = new Y.Anim({
node: '#testDiv',
to: {
width: 400
},
duration: 3
});
var test = this;
//assign oncomplete handler
myAnim.on("end", function(){
//tell the TestRunner to resume
test.resume(function(){
Y.Assert.areEqual(myAnim.get("node").get("offsetWidth"), 400, "Width of the DIV should be 400.");
});
});
//start the animation
myAnim.run();
//wait until something happens
this.wait(3100);
}
});
```
<p>In this example, an <code>Anim</code> object is used to animate the width of an element to 400 pixels. When the animation
is complete, the <code>end</code> event is fired, so that is where the <code>resume()</code> method is called. The
function passed into <code>resume()</code> simply tests that the final width of the element is indeed 400 pixels. Once the event handler is set up, the animation begins.
In order to allow enough time for the animation to complete, the <code>wait()</code> method is called
with a timeout of 3.1 seconds (just longer than the 3 seconds needed to complete the animation). At that point, testing stops until the animation completes and <code>resume()</code> is called or until 3100 milliseconds have passed.</p>
<h2 id="testsuites">Test Suites</h2>
<p>For large web applications, you'll probably have many test cases that should be run during a testing phase. A test suite helps to handle multiple test cases
by grouping them together into functional units that can be run together. To create new test suite, use the <code>Y.Test.Suite</code>
constructor and pass in the name of the test suite. The name you pass in is for logging purposes and allows you to discern which <code>TestSuite</code> instance currently running. For example: </p>
```
//create the test suite
var suite = new Y.Test.Suite("TestSuite Name");
//add test cases
suite.add(new Y.Test.Case({
//...
}));
suite.add(new Y.Test.Case({
//...
}));
suite.add(new Y.Test.Case({
//...
}));
```
<p>Here, a test suite is created and three test cases are added to it using the <code>add()</code> method. The test suite now contains all of the
information to run a series of tests.</p>
<p>It's also possible to add other multiple <code>TestSuite</code> instances together under a parent <code>TestSuite</code> using the same <code>add()</code> method:</p>
```
//create a test suite
var suite = new Y.Test.Suite("TestSuite Name");
//add a test case
suite.add(new Y.Test.Case({
//...
});
//create another suite
var anotherSuite = new Y.Test.Suite("test_suite_name");
//add a test case
anotherSuite.add(new Y.Test.Case({
//...
});
//add the second suite to the first
suite.add(anotherSuite);
```
<p>By grouping test suites together under a parent test suite you can more effectively manage testing of particular aspects of an application.</p>
<p>Test suites may also have <code>setUp()</code> and <code>tearDown()</code> methods. A test suite's <code>setUp()</code> method is called before
the first test in the first test case is executed (prior to the test case's <code>setUp()</code> method); a test suite's <code>tearDown()</code>
method executes after all tests in all test cases/suites have been executed (after the last test case's <code>tearDown()</code> method). To specify
these methods, pass an object literal into the <code>Y.Test.Suite</code> constructor:</p>
```
//create a test suite
var suite = new Y.Test.Suite({
name : "TestSuite Name",
setUp : function () {
//test-suite-level setup
},
tearDown: function () {
//test-suite-level teardown
}
});
```
<p>Test suite <code>setUp()</code> and <code>tearDown()</code> may be helpful in setting up global objects that are necessary for a multitude of tests
and test cases.</p>
<h2 id="running-tests">Running Tests</h2>
<p>In order to run test cases and test suites, use the <code>Y.Test.Runner</code> object. This object is a singleton that
simply runs all of the tests in test cases and suites, reporting back on passes and failures. To determine which test cases/suites
will be run, add them to the <code>Y.Test.Runner</code> using the <code>add()</code> method. Then, to run the tests, call the <code>run()</code>
method:</p>
```
//add the test cases and suites
Y.Test.Runner.add(testCase);
Y.Test.Runner.add(oTestSuite);
//run all tests
```
<p>If at some point you decide not to run the tests that have already been added to the <code>TestRunner</code>, they can be removed by calling <code>clear()</code>:</p>
```
```
<p>Making this call removes all test cases and test suites that were added using the <code>add()</code> method.</p>
<h3>TestRunner Events</h3>
<p>The <code>Y.Test.Runner</code> provides results and information about the process by publishing several events. These events can occur at four
different points of interest: at the test level, at the test case level, at the test suite level, and at the <code>Y.Test.Runner</code> level.
The data available for each event depends completely on the type of event and the level at which the event occurs.</p>
<h3>Test-Level Events</h3>
<p>Test-level events occur during the execution of specific test methods. There are three test-level events:</p>
<ul>
<li><code>Y.Test.Runner.TEST_PASS_EVENT</code> - occurs when the test passes.</li>
<li><code>Y.Test.Runner.TEST_FAIL_EVENT</code> - occurs when the test fails.</li>
<li><code>Y.Test.Runner.TEST_IGNORE_EVENT</code> - occurs when a test is ignored.</li>
</ul>
<p>For each of these events, the event data object has three properties:</p>
<ul>
<li><code>type</code> - indicates the type of event that occurred.</li>
<li><code>testCase</code> - the test case that is currently being run.</li>
<li><code>testName</code> - the name of the test that was just executed or ignored.</li>
</ul>
<p>For <code>Y.Test.Runner.TEST_FAIL_EVENT</code>, an <code>error</code> property containing the error object
that caused the test to fail.</p>
<h3>TestCase-Level Events</h3>
<p>There are two events that occur at the test case level:</p>
<ul>
<li><code>Y.Test.Runner.TEST_CASE_BEGIN_EVENT</code> - occurs when the test case is next to be executed but before the first test is run.</li>
<li><code>Y.Test.Runner.TEST_CASE_COMPLETE_EVENT</code> - occurs when all tests in the test case have been executed or ignored.</li>
</ul>
<p>For these two events, the event data object has three properties:</p>
<ul>
<li><code>type</code> - indicates the type of event that occurred.</li>
<li><code>testCase</code> - the test case that is currently being run.</li>
</ul>
<p>For <code>TEST_CASE_COMPLETE_EVENT</code>, an additional property called <code>results</code> is included. The <code>results</code>
property is an object containing the aggregated results for all tests in the test case (it does not include information about tests that
were ignored). Each test that was run has an entry in the <code>result</code> object where the property name is the name of the test method
and the value is an object with two properties: <code>result</code>, which is either "pass" or "fail", and <code>message</code>, which is a
text description of the result (simply "Test passed" when a test passed or the error message when a test fails). Additionally, the
<code>failed</code> property indicates the number of tests that failed in the test case, the <code>passed</code> property indicates the
number of tests that passed, and the <code>total</code> property indicates the total number of tests executed. A typical <code>results</code>
object looks like this:</p>
```
{
failed: 1,
passed: 1,
ignored: 0,
total: 2,
type: "testcase",
name: "Test Case 0",
test0: {
result: "pass",
message: "Test passed",
type: "test",
name: "test0"
},
test1: {
result: "fail",
message: "Assertion failed",
type: "test",
name: "test1"
}
}
```
<p>The <code>TEST_CASE_COMPLETE_EVENT</code> provides this information for transparency into the testing process.</p>
<h3>TestSuite-Level Events</h3>
<p>There are two events that occur at the test suite level:</p>
<ul>
<li><code>Y.Test.Runner.TEST_SUITE_BEGIN_EVENT</code> - occurs when the test suite is next to be executed but before the first test is run.</li>
<li><code>Y.Test.Runner.TEST_SUITE_COMPLETE_EVENT</code> - occurs when all tests in all test cases in the test suite have been executed or ignored.</li>
</ul>
<p>For these two events, the event data object has three properties:</p>
<ul>
<li><code>type</code> - indicates the type of event that occurred.</li>
<li><code>testSuite</code> - the test suite that is currently being run.</li>
</ul>
<p>The <code>TEST_SUITE_COMPLETE_EVENT</code> also has a <code>results</code> property, which contains aggregated results for all of the
test cases (and other test suites) it contains. Each test case and test suite contained within the main suite has an entry in the
<code>results</code> object, forming a hierarchical structure of data. A typical <code>results</code> object may look like this:</p>
```
{
failed: 2,
passed: 2,
ignored: 0,
total: 4,
type: "testsuite",
name: "Test Suite 0",
testCase0: {
failed: 1,
passed: 1,
ignored: 0,
total: 2,
type: "testcase",
name: "testCase0",
test0: {
result: "pass",
message: "Test passed."
type: "test",
name: "test0"
},
test1: {
result: "fail",
message: "Assertion failed.",
type: "test",
name: "test1"
}
},
testCase1: {
failed: 1,
passed: 1,
ignored: 0,
total: 2,
type: "testcase",
name: "testCase1",
test0: {
result: "pass",
message: "Test passed.",
type: "test",
name: "test0"
},
test1: {
result: "fail",
message: "Assertion failed.",
type: "test",
name: "test1"
}
}
}
```
<p>This example shows the results for a test suite with two test cases, but there may be test suites contained within test suites. In that case,
the hierarchy is built out accordingly, for example:</p>
```
{
failed: 3,
passed: 3,
ignored: 0,
total: 6,
type: "testsuite",
name: "Test Suite 0",
testCase0: {
failed: 1,
passed: 1,
ignored: 0,
total: 2,
type: "testcase",
name: "testCase0",
test0: {
result: "pass",
message: "Test passed.",
type: "test",
name: "test0"
},
test1: {
result: "fail",
message: "Assertion failed.",
type: "test",
name: "test1"
}
},
testCase1: {
failed: 1,
passed: 1,
ignored: 0,
total: 2,
type: "testcase",
name: "testCase1",
test0: {
result: "pass",
message: "Test passed.",
type: "test",
name: "test0"
},
test1: {
result: "fail",
message: "Assertion failed.",
type: "test",
name: "test1"
}
},
testSuite0:{
failed: 1,
passed: 1,
ignored: 0,
total: 2,
type: "testsuite",
name: "testSuite0",
testCase2: {
failed: 1,
passed: 1,
ignored: 0,
total: 2,
type: "testcase",
name: "testCase2",
test0: {
result: "pass",
message: "Test passed.",
type: "test",
name: "test0"
},
test1: {
result: "fail",
message: "Assertion failed.",
type: "test",
name: "test1"
}
}
}
}
```
<p>In this code, the test suite contained another test suite named "testSuite0", which is included in the results along
with its test cases. At each level, the results are aggregated so that you can tell how many tests passed or failed within each
test case or test suite.</p>
<h3>TestRunner-Level Events</h3>
<p>There are two events that occur at the <code>Y.Test.Runner</code> level:</p>
<ul>
<li><code>Y.Test.Runner.BEGIN_EVENT</code> - occurs when testing is about to begin but before any tests are run.</li>
<li><code>Y.Test.Runner.COMPLETE_EVENT</code> - occurs when all tests in all test cases and test suites have been executed or ignored.</li>
</ul>
<p>The data object for these events contain a <code>type</code> property, indicating the type of event that occurred. <code>COMPLETE_EVENT</code>
also includes a <code>results</code> property that is formatted the same as the data returned from <code>TEST_SUITE_COMPLETE_EVENT</code> and
contains rollup information for all test cases and tests suites that were added to the <code>TestRunner</code>.</p>
<h3>Subscribing to Events</h3>
<p>You can subscribe to particular events by calling the <code>subscribe()</code> method. Your event handler code
should expect a single object to be passed in as an argument. This object provides information about the event that just occured. Minimally,
the object has a <code>type</code> property that tells you which type of event occurred. Example:</p>
```
function handleTestFail(data){
alert("Test named '" + data.testName + "' failed with message: '" + data.error.message + "'.");
}
var TestRunner = Y.Test.Runner;
TestRunner.subscribe(TestRunner.TEST_FAIL_EVENT, handleTestFail);
```
<p>In this code, the <code>handleTestFail()</code> function is assigned as an event handler for <code>TEST_FAIL_EVENT</code>. You can also
use a single event handler to subscribe to any number of events, using the event data object's <code>type</code> property to determine
what to do:</p>
```
function handleTestResult(data){
var TestRunner = Y.Test.Runner;
switch(data.type) {
alert("Test named '" + data.testName + "' failed with message: '" + data.error.message + "'.");
break;
alert("Test named '" + data.testName + "' passed.");
break;
alert("Test named '" + data.testName + "' was ignored.");
break;
}
}
TestRunner.subscribe(TestRunner.TEST_FAIL_EVENT, handleTestResult);
TestRunner.subscribe(TestRunner.TEST_IGNORE_EVENT, handleTestResult);
TestRunner.subscribe(TestRunner.TEST_PASS_EVENT, handleTestResult);
```
<h2 id="viewing-results">Viewing Results</h2>
<p>There are two ways to view test results. The first is to output test results to the TestConsole
component. To do so, you need only create a new `Test.Console` instance; the result results will be posted
to the logger automatically:</p>
```
YUI({ logInclude: { TestRunner: true } }).use('test-console', "test", function(Y){
//tests go here
//initialize the console
(new Y.Test.Console({
newestOnTop: false
})).render('#log');
//run the tests
});
```
<p>If you are using a browser that supports the <code>console</code>
object (Firefox with Firebug installed, Safari 3+, Internet Explorer 8+, Chrome), then you can
direct the test results onto the console. To do so, make sure that you've specified your <code>YUI</code>
instance to use the console when logging:</p>
```
YUI({ useBrowserConsole: true }).use("test", function(Y){
//tests go here
});
```
<p>You can also extract the test result data using the <code>Y.Test.Runner.getResults()</code> method. By default, this method
returns an object representing the results of the tests that were just run (the method returns <code>null</code> if called
while tests are still running). You can optionally specify a format in which the results should be returned. There are four
possible formats:</p>
<ul>
<li><code>Y.Test.Format.XML</code> - YUI Test XML (default)</li>
<li><code>Y.Test.Format.JSON</code> - JSON</li>
<li><code>Y.Test.Format.JUnitXML</code> - JUnit XML</li>
<li><code>Y.Test.Format.TAP</code> - <a href="http://testanything.org/">TAP</a></li>
</ul>
<p>You can pass any of these into <code>Y.Test.Runner.getResults()</code> to get a string with the test result information properly
formatted. For example:</p>
```
YUI({ useBrowserConsole: true }).use("test", function(Y){
//tests go here
//get object of results
var resultsObject = Y.Test.Runner.getResults();
//get XML results
var resultsXML = Y.Test.Runner.getResults(Y.Test.Format.XML);
});
```
<p>The XML format outputs results in the following
format:</p>
```
<?xml version="1.0" encoding="UTF-8" ?>
<report name="YUI Test Results" passed="5" failed="3" ignored="1" total="5">
<testsuite name="yuisuite" passed="5" failed="0" ignored="0" total="5">
<testcase name="Y.Anim" passed="5" failed="0" ignored="0" total="5">
<test name="test_getEl" result="pass" message="Test passed" />
<test name="test_isAnimated" result="pass" message="Test passed" />
<test name="test_stop" result="pass" message="Test passed" />
<test name="test_onStart" result="pass" message="Test passed" />
<test name="test_endValue" result="pass" message="Test passed" />
</testcase>
</testsuite>
</report>
```
<p>The JSON format requires the <a href="../json/index.html">JSON utility</a> to be loaded on the page and outputs results in a format that follows the object/array hierarchy of the results object, such as:</p>
```
{
"passed": 5,
"failed": 0,
"ignored": 0,
"total": 0,
"type": "report",
"name": "YUI Test Results",
"yuisuite":{
"passed": 5,
"failed": 0,
"ignored": 0,
"total": 0,
"type": "testsuite",
"name": "yuisuite",
"Y.Anim":{
"passed": 5,
"failed": 0,
"ignored": 0,
"total": 0,
"type":"testcase",
"name":"Y.Anim",
"test_getEl":{
"result":"pass",
"message":"Test passed.",
"type":"test",
"name":"test_getEl"
},
"test_isAnimated":{
"result":"pass",
"message":"Test passed.",
"type":"test",
"name":"test_isAnimated"
},
"test_stop":{
"result":"pass",
"message":"Test passed.",
"type":"test",
"name":"test_stop"
},
"test_onStart":{
"result":"pass",
"message":"Test passed.",
"type":"test",
"name":"test_onStart"
},
"test_endValue":{
"result":"pass",
"message":"Test passed.",
"type":"test",
"name":"test_endValue"
}
}
}
}
```
<p>The JUnit XML format outputs results in the following format:</p>
```
<?xml version="1.0" encoding="UTF-8" ?>
<testsuites>
<testsuite name="Y.Anim" failures="0" total="5" time="0.0060">
<testcase name="test_getEl" time="0.0"></testcase>
<testcase name="test_isAnimated" time="0.0010"></testcase>
<testcase name="test_stop" time="0.0010"></testcase>
<testcase name="test_onStart" time="0.0010"></testcase>
<testcase name="test_endValue" time="0.0010"></testcase>
</testsuite>
</testsuites>
```
<p>Note that there isn't a direct mapping between YUI Test test suites and JUnit test suites, so some
of the hierarchical information is lost.</p>
<p>The TAP format outputs results in the following format:</p>
```nohighlight
1..5
#Begin report YUI Test Results (0 failed of 5)
#Begin testcase Y.Anim (0 failed of 5)
ok 1 - testGetServiceFromUntrustedModule
ok 2 - testGetServiceFromTrustedModule
ok 3 - testGetServiceFromService
ok 4 - testGetServiceMultipleTimesFromService
ok 5 - testGetServiceMultipleTimesFromUntrustedModule
#End testcase Y.Anim
#End report YUI Test Results
```
<p>The XML, JSON, and JUnit XML formats produce a string with no extra white space (white space and indentation shown here is for readability
purposes only).</p>
<h2 id="test-reporting">Test Reporting</h2>
<p>When all tests have been completed and the results object has been returned, you can post those results to a server
using a <code>Y.Test.Reporter</code> object. A <code>Y.Test.Reporter</code> object creates a form that is POSTed
to a specific URL with the following fields:</p>
<ul>
<li><code>results</code> - the serialized results object.</li>
<li><code>useragent</code> - the user-agent string of the browser.</li>
<li><code>timestamp</code> - the date and time that the report was sent.</li>
</ul>
<p>You can create a new <code>Y.Test.Reporter</code> object by passing in the URL to report to. The results object can
then be passed into the <code>report()</code> method to submit the results:</p>
```
var reporter = new Y.Test.Reporter("http://www.yourserver.com/path/to/target");
reporter.report(results);
```
<p>The form submission happens behind-the-scenes and will not cause your page to navigate away. This operation is
one direction; the reporter does not get any content back from the server.</p>
<p>There are four predefined serialization formats for results objects: </p>
<ul>
<li><code>Y.Test.Format.XML</code> (default)</li>
<li><code>Y.Test.Format.JSON</code></li>
<li><code>Y.Test.Format.JUnitXML</code></li>
<li><code>Y.Test.Format.TAP</code></li>
</ul>
<p>The format in which to submit the results can be specified in the <code>Y.Test.Reporter</code> constructor by passing in the appropriate
<code>Y.Test.Format</code> value (when no argument is specified, <code>Y.Test.Format.XML</code> is used:</p>
```
```
<h3>Custom Fields</h3>
<p>You can optionally specify additional fields to be sent with the results report by using the <code>addField()</code> method.
This method accepts two arguments: a name and a value. Any field added using <code>addField()</code> is POSTed along with
the default fields back to the server:</p>
```
reporter.addField("color", "blue");
reporter.addField("message", "Hello world!");
```
<p>Note that if you specify a field name that is the same as a default field, the custom field is ignored in favor of
the default field.</p>