Revert "Export"
[platform/framework/web/web-ui-fw.git] / libs / js / globalize / test / qunit / qunit.js
1 /**
2  * QUnit - A JavaScript Unit Testing Framework
3  *
4  * http://docs.jquery.com/QUnit
5  *
6  * Copyright (c) 2011 John Resig, Jörn Zaefferer
7  * Dual licensed under the MIT (MIT-LICENSE.txt)
8  * or GPL (GPL-LICENSE.txt) licenses.
9  */
10
11 (function(window) {
12
13 var defined = {
14         setTimeout: typeof window.setTimeout !== "undefined",
15         sessionStorage: (function() {
16                 try {
17                         return !!sessionStorage.getItem;
18                 } catch(e) {
19                         return false;
20                 }
21         })()
22 };
23
24 var testId = 0;
25
26 var Test = function(name, testName, expected, testEnvironmentArg, async, callback) {
27         this.name = name;
28         this.testName = testName;
29         this.expected = expected;
30         this.testEnvironmentArg = testEnvironmentArg;
31         this.async = async;
32         this.callback = callback;
33         this.assertions = [];
34 };
35 Test.prototype = {
36         init: function() {
37                 var tests = id("qunit-tests");
38                 if (tests) {
39                         var b = document.createElement("strong");
40                                 b.innerHTML = "Running " + this.name;
41                         var li = document.createElement("li");
42                                 li.appendChild( b );
43                                 li.className = "running";
44                                 li.id = this.id = "test-output" + testId++;
45                         tests.appendChild( li );
46                 }
47         },
48         setup: function() {
49                 if (this.module != config.previousModule) {
50                         if ( config.previousModule ) {
51                                 QUnit.moduleDone( {
52                                         name: config.previousModule,
53                                         failed: config.moduleStats.bad,
54                                         passed: config.moduleStats.all - config.moduleStats.bad,
55                                         total: config.moduleStats.all
56                                 } );
57                         }
58                         config.previousModule = this.module;
59                         config.moduleStats = { all: 0, bad: 0 };
60                         QUnit.moduleStart( {
61                                 name: this.module
62                         } );
63                 }
64
65                 config.current = this;
66                 this.testEnvironment = extend({
67                         setup: function() {},
68                         teardown: function() {}
69                 }, this.moduleTestEnvironment);
70                 if (this.testEnvironmentArg) {
71                         extend(this.testEnvironment, this.testEnvironmentArg);
72                 }
73
74                 QUnit.testStart( {
75                         name: this.testName
76                 } );
77
78                 // allow utility functions to access the current test environment
79                 // TODO why??
80                 QUnit.current_testEnvironment = this.testEnvironment;
81
82                 try {
83                         if ( !config.pollution ) {
84                                 saveGlobal();
85                         }
86
87                         this.testEnvironment.setup.call(this.testEnvironment);
88                 } catch(e) {
89                         QUnit.ok( false, "Setup failed on " + this.testName + ": " + e.message );
90                 }
91         },
92         run: function() {
93                 if ( this.async ) {
94                         QUnit.stop();
95                 }
96
97                 if ( config.notrycatch ) {
98                         this.callback.call(this.testEnvironment);
99                         return;
100                 }
101                 try {
102                         this.callback.call(this.testEnvironment);
103                 } catch(e) {
104                         fail("Test " + this.testName + " died, exception and test follows", e, this.callback);
105                         QUnit.ok( false, "Died on test #" + (this.assertions.length + 1) + ": " + e.message + " - " + QUnit.jsDump.parse(e) );
106                         // else next test will carry the responsibility
107                         saveGlobal();
108
109                         // Restart the tests if they're blocking
110                         if ( config.blocking ) {
111                                 start();
112                         }
113                 }
114         },
115         teardown: function() {
116                 try {
117                         this.testEnvironment.teardown.call(this.testEnvironment);
118                         checkPollution();
119                 } catch(e) {
120                         QUnit.ok( false, "Teardown failed on " + this.testName + ": " + e.message );
121                 }
122         },
123         finish: function() {
124                 if ( this.expected && this.expected != this.assertions.length ) {
125                         QUnit.ok( false, "Expected " + this.expected + " assertions, but " + this.assertions.length + " were run" );
126                 }
127
128                 var good = 0, bad = 0,
129                         tests = id("qunit-tests");
130
131                 config.stats.all += this.assertions.length;
132                 config.moduleStats.all += this.assertions.length;
133
134                 if ( tests ) {
135                         var ol = document.createElement("ol");
136
137                         for ( var i = 0; i < this.assertions.length; i++ ) {
138                                 var assertion = this.assertions[i];
139
140                                 var li = document.createElement("li");
141                                 li.className = assertion.result ? "pass" : "fail";
142                                 li.innerHTML = assertion.message || (assertion.result ? "okay" : "failed");
143                                 ol.appendChild( li );
144
145                                 if ( assertion.result ) {
146                                         good++;
147                                 } else {
148                                         bad++;
149                                         config.stats.bad++;
150                                         config.moduleStats.bad++;
151                                 }
152                         }
153
154                         // store result when possible
155                         if ( QUnit.config.reorder && defined.sessionStorage ) {
156                                 if (bad) {
157                                         sessionStorage.setItem("qunit-" + this.module + "-" + this.testName, bad);
158                                 } else {
159                                         sessionStorage.removeItem("qunit-" + this.module + "-" + this.testName);
160                                 }
161                         }
162
163                         if (bad == 0) {
164                                 ol.style.display = "none";
165                         }
166
167                         var b = document.createElement("strong");
168                         b.innerHTML = this.name + " <b class='counts'>(<b class='failed'>" + bad + "</b>, <b class='passed'>" + good + "</b>, " + this.assertions.length + ")</b>";
169
170                         var a = document.createElement("a");
171                         a.innerHTML = "Rerun";
172                         a.href = QUnit.url({ filter: getText([b]).replace(/\([^)]+\)$/, "").replace(/(^\s*|\s*$)/g, "") });
173
174                         addEvent(b, "click", function() {
175                                 var next = b.nextSibling.nextSibling,
176                                         display = next.style.display;
177                                 next.style.display = display === "none" ? "block" : "none";
178                         });
179
180                         addEvent(b, "dblclick", function(e) {
181                                 var target = e && e.target ? e.target : window.event.srcElement;
182                                 if ( target.nodeName.toLowerCase() == "span" || target.nodeName.toLowerCase() == "b" ) {
183                                         target = target.parentNode;
184                                 }
185                                 if ( window.location && target.nodeName.toLowerCase() === "strong" ) {
186                                         window.location = QUnit.url({ filter: getText([target]).replace(/\([^)]+\)$/, "").replace(/(^\s*|\s*$)/g, "") });
187                                 }
188                         });
189
190                         var li = id(this.id);
191                         li.className = bad ? "fail" : "pass";
192                         li.removeChild( li.firstChild );
193                         li.appendChild( b );
194                         li.appendChild( a );
195                         li.appendChild( ol );
196
197                 } else {
198                         for ( var i = 0; i < this.assertions.length; i++ ) {
199                                 if ( !this.assertions[i].result ) {
200                                         bad++;
201                                         config.stats.bad++;
202                                         config.moduleStats.bad++;
203                                 }
204                         }
205                 }
206
207                 try {
208                         QUnit.reset();
209                 } catch(e) {
210                         fail("reset() failed, following Test " + this.testName + ", exception and reset fn follows", e, QUnit.reset);
211                 }
212
213                 QUnit.testDone( {
214                         name: this.testName,
215                         failed: bad,
216                         passed: this.assertions.length - bad,
217                         total: this.assertions.length
218                 } );
219         },
220
221         queue: function() {
222                 var test = this;
223                 synchronize(function() {
224                         test.init();
225                 });
226                 function run() {
227                         // each of these can by async
228                         synchronize(function() {
229                                 test.setup();
230                         });
231                         synchronize(function() {
232                                 test.run();
233                         });
234                         synchronize(function() {
235                                 test.teardown();
236                         });
237                         synchronize(function() {
238                                 test.finish();
239                         });
240                 }
241                 // defer when previous test run passed, if storage is available
242                 var bad = QUnit.config.reorder && defined.sessionStorage && +sessionStorage.getItem("qunit-" + this.module + "-" + this.testName);
243                 if (bad) {
244                         run();
245                 } else {
246                         synchronize(run);
247                 };
248         }
249
250 };
251
252 var QUnit = {
253
254         // call on start of module test to prepend name to all tests
255         module: function(name, testEnvironment) {
256                 config.currentModule = name;
257                 config.currentModuleTestEnviroment = testEnvironment;
258         },
259
260         asyncTest: function(testName, expected, callback) {
261                 if ( arguments.length === 2 ) {
262                         callback = expected;
263                         expected = 0;
264                 }
265
266                 QUnit.test(testName, expected, callback, true);
267         },
268
269         test: function(testName, expected, callback, async) {
270                 var name = '<span class="test-name">' + testName + '</span>', testEnvironmentArg;
271
272                 if ( arguments.length === 2 ) {
273                         callback = expected;
274                         expected = null;
275                 }
276                 // is 2nd argument a testEnvironment?
277                 if ( expected && typeof expected === 'object') {
278                         testEnvironmentArg = expected;
279                         expected = null;
280                 }
281
282                 if ( config.currentModule ) {
283                         name = '<span class="module-name">' + config.currentModule + "</span>: " + name;
284                 }
285
286                 if ( !validTest(config.currentModule + ": " + testName) ) {
287                         return;
288                 }
289
290                 var test = new Test(name, testName, expected, testEnvironmentArg, async, callback);
291                 test.module = config.currentModule;
292                 test.moduleTestEnvironment = config.currentModuleTestEnviroment;
293                 test.queue();
294         },
295
296         /**
297          * Specify the number of expected assertions to gurantee that failed test (no assertions are run at all) don't slip through.
298          */
299         expect: function(asserts) {
300                 config.current.expected = asserts;
301         },
302
303         /**
304          * Asserts true.
305          * @example ok( "asdfasdf".length > 5, "There must be at least 5 chars" );
306          */
307         ok: function(a, msg) {
308                 a = !!a;
309                 var details = {
310                         result: a,
311                         message: msg
312                 };
313                 msg = escapeHtml(msg);
314                 QUnit.log(details);
315                 config.current.assertions.push({
316                         result: a,
317                         message: msg
318                 });
319         },
320
321         /**
322          * Checks that the first two arguments are equal, with an optional message.
323          * Prints out both actual and expected values.
324          *
325          * Prefered to ok( actual == expected, message )
326          *
327          * @example equal( format("Received {0} bytes.", 2), "Received 2 bytes." );
328          *
329          * @param Object actual
330          * @param Object expected
331          * @param String message (optional)
332          */
333         equal: function(actual, expected, message) {
334                 QUnit.push(expected == actual, actual, expected, message);
335         },
336
337         notEqual: function(actual, expected, message) {
338                 QUnit.push(expected != actual, actual, expected, message);
339         },
340
341         deepEqual: function(actual, expected, message) {
342                 QUnit.push(QUnit.equiv(actual, expected), actual, expected, message);
343         },
344
345         notDeepEqual: function(actual, expected, message) {
346                 QUnit.push(!QUnit.equiv(actual, expected), actual, expected, message);
347         },
348
349         strictEqual: function(actual, expected, message) {
350                 QUnit.push(expected === actual, actual, expected, message);
351         },
352
353         notStrictEqual: function(actual, expected, message) {
354                 QUnit.push(expected !== actual, actual, expected, message);
355         },
356
357         raises: function(block, expected, message) {
358                 var actual, ok = false;
359
360                 if (typeof expected === 'string') {
361                         message = expected;
362                         expected = null;
363                 }
364
365                 try {
366                         block();
367                 } catch (e) {
368                         actual = e;
369                 }
370
371                 if (actual) {
372                         // we don't want to validate thrown error
373                         if (!expected) {
374                                 ok = true;
375                         // expected is a regexp
376                         } else if (QUnit.objectType(expected) === "regexp") {
377                                 ok = expected.test(actual);
378                         // expected is a constructor
379                         } else if (actual instanceof expected) {
380                                 ok = true;
381                         // expected is a validation function which returns true is validation passed
382                         } else if (expected.call({}, actual) === true) {
383                                 ok = true;
384                         }
385                 }
386
387                 QUnit.ok(ok, message);
388         },
389
390         start: function() {
391                 config.semaphore--;
392                 if (config.semaphore > 0) {
393                         // don't start until equal number of stop-calls
394                         return;
395                 }
396                 if (config.semaphore < 0) {
397                         // ignore if start is called more often then stop
398                         config.semaphore = 0;
399                 }
400                 // A slight delay, to avoid any current callbacks
401                 if ( defined.setTimeout ) {
402                         window.setTimeout(function() {
403                                 if (config.semaphore > 0) {
404                                         return;
405                                 }
406                                 if ( config.timeout ) {
407                                         clearTimeout(config.timeout);
408                                 }
409
410                                 config.blocking = false;
411                                 process();
412                         }, 13);
413                 } else {
414                         config.blocking = false;
415                         process();
416                 }
417         },
418
419         stop: function(timeout) {
420                 config.semaphore++;
421                 config.blocking = true;
422
423                 if ( timeout && defined.setTimeout ) {
424                         clearTimeout(config.timeout);
425                         config.timeout = window.setTimeout(function() {
426                                 QUnit.ok( false, "Test timed out" );
427                                 QUnit.start();
428                         }, timeout);
429                 }
430         }
431 };
432
433 // Backwards compatibility, deprecated
434 QUnit.equals = QUnit.equal;
435 QUnit.same = QUnit.deepEqual;
436
437 // Maintain internal state
438 var config = {
439         // The queue of tests to run
440         queue: [],
441
442         // block until document ready
443         blocking: true,
444
445         // when enabled, show only failing tests
446         // gets persisted through sessionStorage and can be changed in UI via checkbox
447         hidepassed: false,
448
449         // by default, run previously failed tests first
450         // very useful in combination with "Hide passed tests" checked
451         reorder: true,
452
453         // by default, modify document.title when suite is done
454         altertitle: true,
455
456         urlConfig: ['noglobals', 'notrycatch']
457 };
458
459 // Load paramaters
460 (function() {
461         var location = window.location || { search: "", protocol: "file:" },
462                 params = location.search.slice( 1 ).split( "&" ),
463                 length = params.length,
464                 urlParams = {},
465                 current;
466
467         if ( params[ 0 ] ) {
468                 for ( var i = 0; i < length; i++ ) {
469                         current = params[ i ].split( "=" );
470                         current[ 0 ] = decodeURIComponent( current[ 0 ] );
471                         // allow just a key to turn on a flag, e.g., test.html?noglobals
472                         current[ 1 ] = current[ 1 ] ? decodeURIComponent( current[ 1 ] ) : true;
473                         urlParams[ current[ 0 ] ] = current[ 1 ];
474                 }
475         }
476
477         QUnit.urlParams = urlParams;
478         config.filter = urlParams.filter;
479
480         // Figure out if we're running the tests from a server or not
481         QUnit.isLocal = !!(location.protocol === 'file:');
482 })();
483
484 // Expose the API as global variables, unless an 'exports'
485 // object exists, in that case we assume we're in CommonJS
486 if ( typeof exports === "undefined" || typeof require === "undefined" ) {
487         extend(window, QUnit);
488         window.QUnit = QUnit;
489 } else {
490         extend(exports, QUnit);
491         exports.QUnit = QUnit;
492 }
493
494 // define these after exposing globals to keep them in these QUnit namespace only
495 extend(QUnit, {
496         config: config,
497
498         // Initialize the configuration options
499         init: function() {
500                 extend(config, {
501                         stats: { all: 0, bad: 0 },
502                         moduleStats: { all: 0, bad: 0 },
503                         started: +new Date,
504                         updateRate: 1000,
505                         blocking: false,
506                         autostart: true,
507                         autorun: false,
508                         filter: "",
509                         queue: [],
510                         semaphore: 0
511                 });
512
513                 var tests = id( "qunit-tests" ),
514                         banner = id( "qunit-banner" ),
515                         result = id( "qunit-testresult" );
516
517                 if ( tests ) {
518                         tests.innerHTML = "";
519                 }
520
521                 if ( banner ) {
522                         banner.className = "";
523                 }
524
525                 if ( result ) {
526                         result.parentNode.removeChild( result );
527                 }
528
529                 if ( tests ) {
530                         result = document.createElement( "p" );
531                         result.id = "qunit-testresult";
532                         result.className = "result";
533                         tests.parentNode.insertBefore( result, tests );
534                         result.innerHTML = 'Running...<br/>&nbsp;';
535                 }
536         },
537
538         /**
539          * Resets the test setup. Useful for tests that modify the DOM.
540          *
541          * If jQuery is available, uses jQuery's html(), otherwise just innerHTML.
542          */
543         reset: function() {
544                 if ( window.jQuery ) {
545                         jQuery( "#qunit-fixture" ).html( config.fixture );
546                 } else {
547                         var main = id( 'qunit-fixture' );
548                         if ( main ) {
549                                 main.innerHTML = config.fixture;
550                         }
551                 }
552         },
553
554         /**
555          * Trigger an event on an element.
556          *
557          * @example triggerEvent( document.body, "click" );
558          *
559          * @param DOMElement elem
560          * @param String type
561          */
562         triggerEvent: function( elem, type, event ) {
563                 if ( document.createEvent ) {
564                         event = document.createEvent("MouseEvents");
565                         event.initMouseEvent(type, true, true, elem.ownerDocument.defaultView,
566                                 0, 0, 0, 0, 0, false, false, false, false, 0, null);
567                         elem.dispatchEvent( event );
568
569                 } else if ( elem.fireEvent ) {
570                         elem.fireEvent("on"+type);
571                 }
572         },
573
574         // Safe object type checking
575         is: function( type, obj ) {
576                 return QUnit.objectType( obj ) == type;
577         },
578
579         objectType: function( obj ) {
580                 if (typeof obj === "undefined") {
581                                 return "undefined";
582
583                 // consider: typeof null === object
584                 }
585                 if (obj === null) {
586                                 return "null";
587                 }
588
589                 var type = Object.prototype.toString.call( obj )
590                         .match(/^\[object\s(.*)\]$/)[1] || '';
591
592                 switch (type) {
593                                 case 'Number':
594                                                 if (isNaN(obj)) {
595                                                                 return "nan";
596                                                 } else {
597                                                                 return "number";
598                                                 }
599                                 case 'String':
600                                 case 'Boolean':
601                                 case 'Array':
602                                 case 'Date':
603                                 case 'RegExp':
604                                 case 'Function':
605                                                 return type.toLowerCase();
606                 }
607                 if (typeof obj === "object") {
608                                 return "object";
609                 }
610                 return undefined;
611         },
612
613         push: function(result, actual, expected, message) {
614                 var details = {
615                         result: result,
616                         message: message,
617                         actual: actual,
618                         expected: expected
619                 };
620
621                 message = escapeHtml(message) || (result ? "okay" : "failed");
622                 message = '<span class="test-message">' + message + "</span>";
623                 expected = escapeHtml(QUnit.jsDump.parse(expected));
624                 actual = escapeHtml(QUnit.jsDump.parse(actual));
625                 var output = message + '<table><tr class="test-expected"><th>Expected: </th><td><pre>' + expected + '</pre></td></tr>';
626                 if (actual != expected) {
627                         output += '<tr class="test-actual"><th>Result: </th><td><pre>' + actual + '</pre></td></tr>';
628                         output += '<tr class="test-diff"><th>Diff: </th><td><pre>' + QUnit.diff(expected, actual) +'</pre></td></tr>';
629                 }
630                 if (!result) {
631                         var source = sourceFromStacktrace();
632                         if (source) {
633                                 details.source = source;
634                                 output += '<tr class="test-source"><th>Source: </th><td><pre>' + escapeHtml(source) + '</pre></td></tr>';
635                         }
636                 }
637                 output += "</table>";
638
639                 QUnit.log(details);
640
641                 config.current.assertions.push({
642                         result: !!result,
643                         message: output
644                 });
645         },
646
647         url: function( params ) {
648                 params = extend( extend( {}, QUnit.urlParams ), params );
649                 var querystring = "?",
650                         key;
651                 for ( key in params ) {
652                         querystring += encodeURIComponent( key ) + "=" +
653                                 encodeURIComponent( params[ key ] ) + "&";
654                 }
655                 return window.location.pathname + querystring.slice( 0, -1 );
656         },
657
658         extend: extend,
659         id: id,
660         addEvent: addEvent,
661
662         // Logging callbacks; all receive a single argument with the listed properties
663         // run test/logs.html for any related changes
664         begin: function() {},
665         // done: { failed, passed, total, runtime }
666         done: function() {},
667         // log: { result, actual, expected, message }
668         log: function() {},
669         // testStart: { name }
670         testStart: function() {},
671         // testDone: { name, failed, passed, total }
672         testDone: function() {},
673         // moduleStart: { name }
674         moduleStart: function() {},
675         // moduleDone: { name, failed, passed, total }
676         moduleDone: function() {}
677 });
678
679 if ( typeof document === "undefined" || document.readyState === "complete" ) {
680         config.autorun = true;
681 }
682
683 QUnit.load = function() {
684         QUnit.begin({});
685
686         // Initialize the config, saving the execution queue
687         var oldconfig = extend({}, config);
688         QUnit.init();
689         extend(config, oldconfig);
690
691         config.blocking = false;
692
693         var urlConfigHtml = '', len = config.urlConfig.length;
694         for ( var i = 0, val; i < len, val = config.urlConfig[i]; i++ ) {
695                 config[val] = QUnit.urlParams[val];
696                 urlConfigHtml += '<label><input name="' + val + '" type="checkbox"' + ( config[val] ? ' checked="checked"' : '' ) + '>' + val + '</label>';
697         }
698
699         var userAgent = id("qunit-userAgent");
700         if ( userAgent ) {
701                 userAgent.innerHTML = navigator.userAgent;
702         }
703         var banner = id("qunit-header");
704         if ( banner ) {
705                 banner.innerHTML = '<a href="' + QUnit.url({ filter: undefined }) + '"> ' + banner.innerHTML + '</a> ' + urlConfigHtml;
706                 addEvent( banner, "change", function( event ) {
707                         var params = {};
708                         params[ event.target.name ] = event.target.checked ? true : undefined;
709                         window.location = QUnit.url( params );
710                 });
711         }
712
713         var toolbar = id("qunit-testrunner-toolbar");
714         if ( toolbar ) {
715                 var filter = document.createElement("input");
716                 filter.type = "checkbox";
717                 filter.id = "qunit-filter-pass";
718                 addEvent( filter, "click", function() {
719                         var ol = document.getElementById("qunit-tests");
720                         if ( filter.checked ) {
721                                 ol.className = ol.className + " hidepass";
722                         } else {
723                                 var tmp = " " + ol.className.replace( /[\n\t\r]/g, " " ) + " ";
724                                 ol.className = tmp.replace(/ hidepass /, " ");
725                         }
726                         if ( defined.sessionStorage ) {
727                                 if (filter.checked) {
728                                         sessionStorage.setItem("qunit-filter-passed-tests", "true");
729                                 } else {
730                                         sessionStorage.removeItem("qunit-filter-passed-tests");
731                                 }
732                         }
733                 });
734                 if ( config.hidepassed || defined.sessionStorage && sessionStorage.getItem("qunit-filter-passed-tests") ) {
735                         filter.checked = true;
736                         var ol = document.getElementById("qunit-tests");
737                         ol.className = ol.className + " hidepass";
738                 }
739                 toolbar.appendChild( filter );
740
741                 var label = document.createElement("label");
742                 label.setAttribute("for", "qunit-filter-pass");
743                 label.innerHTML = "Hide passed tests";
744                 toolbar.appendChild( label );
745         }
746
747         var main = id('qunit-fixture');
748         if ( main ) {
749                 config.fixture = main.innerHTML;
750         }
751
752         if (config.autostart) {
753                 QUnit.start();
754         }
755 };
756
757 addEvent(window, "load", QUnit.load);
758
759 function done() {
760         config.autorun = true;
761
762         // Log the last module results
763         if ( config.currentModule ) {
764                 QUnit.moduleDone( {
765                         name: config.currentModule,
766                         failed: config.moduleStats.bad,
767                         passed: config.moduleStats.all - config.moduleStats.bad,
768                         total: config.moduleStats.all
769                 } );
770         }
771
772         var banner = id("qunit-banner"),
773                 tests = id("qunit-tests"),
774                 runtime = +new Date - config.started,
775                 passed = config.stats.all - config.stats.bad,
776                 html = [
777                         'Tests completed in ',
778                         runtime,
779                         ' milliseconds.<br/>',
780                         '<span class="passed">',
781                         passed,
782                         '</span> tests of <span class="total">',
783                         config.stats.all,
784                         '</span> passed, <span class="failed">',
785                         config.stats.bad,
786                         '</span> failed.'
787                 ].join('');
788
789         if ( banner ) {
790                 banner.className = (config.stats.bad ? "qunit-fail" : "qunit-pass");
791         }
792
793         if ( tests ) {
794                 id( "qunit-testresult" ).innerHTML = html;
795         }
796
797         if ( config.altertitle && typeof document !== "undefined" && document.title ) {
798                 // show ✖ for good, ✔ for bad suite result in title
799                 // use escape sequences in case file gets loaded with non-utf-8-charset
800                 document.title = [
801                         (config.stats.bad ? "\u2716" : "\u2714"),
802                         document.title.replace(/^[\u2714\u2716] /i, "")
803                 ].join(" ");
804         }
805
806         QUnit.done( {
807                 failed: config.stats.bad,
808                 passed: passed,
809                 total: config.stats.all,
810                 runtime: runtime
811         } );
812 }
813
814 function validTest( name ) {
815         var filter = config.filter,
816                 run = false;
817
818         if ( !filter ) {
819                 return true;
820         }
821
822         var not = filter.charAt( 0 ) === "!";
823         if ( not ) {
824                 filter = filter.slice( 1 );
825         }
826
827         if ( name.indexOf( filter ) !== -1 ) {
828                 return !not;
829         }
830
831         if ( not ) {
832                 run = true;
833         }
834
835         return run;
836 }
837
838 // so far supports only Firefox, Chrome and Opera (buggy)
839 // could be extended in the future to use something like https://github.com/csnover/TraceKit
840 function sourceFromStacktrace() {
841         try {
842                 throw new Error();
843         } catch ( e ) {
844                 if (e.stacktrace) {
845                         // Opera
846                         return e.stacktrace.split("\n")[6];
847                 } else if (e.stack) {
848                         // Firefox, Chrome
849                         return e.stack.split("\n")[4];
850                 }
851         }
852 }
853
854 function escapeHtml(s) {
855         if (!s) {
856                 return "";
857         }
858         s = s + "";
859         return s.replace(/[\&"<>\\]/g, function(s) {
860                 switch(s) {
861                         case "&": return "&amp;";
862                         case "\\": return "\\\\";
863                         case '"': return '\"';
864                         case "<": return "&lt;";
865                         case ">": return "&gt;";
866                         default: return s;
867                 }
868         });
869 }
870
871 function synchronize( callback ) {
872         config.queue.push( callback );
873
874         if ( config.autorun && !config.blocking ) {
875                 process();
876         }
877 }
878
879 function process() {
880         var start = (new Date()).getTime();
881
882         while ( config.queue.length && !config.blocking ) {
883                 if ( config.updateRate <= 0 || (((new Date()).getTime() - start) < config.updateRate) ) {
884                         config.queue.shift()();
885                 } else {
886                         window.setTimeout( process, 13 );
887                         break;
888                 }
889         }
890         if (!config.blocking && !config.queue.length) {
891                 done();
892         }
893 }
894
895 function saveGlobal() {
896         config.pollution = [];
897
898         if ( config.noglobals ) {
899                 for ( var key in window ) {
900                         config.pollution.push( key );
901                 }
902         }
903 }
904
905 function checkPollution( name ) {
906         var old = config.pollution;
907         saveGlobal();
908
909         var newGlobals = diff( config.pollution, old );
910         if ( newGlobals.length > 0 ) {
911                 ok( false, "Introduced global variable(s): " + newGlobals.join(", ") );
912         }
913
914         var deletedGlobals = diff( old, config.pollution );
915         if ( deletedGlobals.length > 0 ) {
916                 ok( false, "Deleted global variable(s): " + deletedGlobals.join(", ") );
917         }
918 }
919
920 // returns a new Array with the elements that are in a but not in b
921 function diff( a, b ) {
922         var result = a.slice();
923         for ( var i = 0; i < result.length; i++ ) {
924                 for ( var j = 0; j < b.length; j++ ) {
925                         if ( result[i] === b[j] ) {
926                                 result.splice(i, 1);
927                                 i--;
928                                 break;
929                         }
930                 }
931         }
932         return result;
933 }
934
935 function fail(message, exception, callback) {
936         if ( typeof console !== "undefined" && console.error && console.warn ) {
937                 console.error(message);
938                 console.error(exception);
939                 console.warn(callback.toString());
940
941         } else if ( window.opera && opera.postError ) {
942                 opera.postError(message, exception, callback.toString);
943         }
944 }
945
946 function extend(a, b) {
947         for ( var prop in b ) {
948                 if ( b[prop] === undefined ) {
949                         delete a[prop];
950                 } else {
951                         a[prop] = b[prop];
952                 }
953         }
954
955         return a;
956 }
957
958 function addEvent(elem, type, fn) {
959         if ( elem.addEventListener ) {
960                 elem.addEventListener( type, fn, false );
961         } else if ( elem.attachEvent ) {
962                 elem.attachEvent( "on" + type, fn );
963         } else {
964                 fn();
965         }
966 }
967
968 function id(name) {
969         return !!(typeof document !== "undefined" && document && document.getElementById) &&
970                 document.getElementById( name );
971 }
972
973 // Test for equality any JavaScript type.
974 // Discussions and reference: http://philrathe.com/articles/equiv
975 // Test suites: http://philrathe.com/tests/equiv
976 // Author: Philippe Rathé <prathe@gmail.com>
977 QUnit.equiv = function () {
978
979         var innerEquiv; // the real equiv function
980         var callers = []; // stack to decide between skip/abort functions
981         var parents = []; // stack to avoiding loops from circular referencing
982
983         // Call the o related callback with the given arguments.
984         function bindCallbacks(o, callbacks, args) {
985                 var prop = QUnit.objectType(o);
986                 if (prop) {
987                         if (QUnit.objectType(callbacks[prop]) === "function") {
988                                 return callbacks[prop].apply(callbacks, args);
989                         } else {
990                                 return callbacks[prop]; // or undefined
991                         }
992                 }
993         }
994
995         var callbacks = function () {
996
997                 // for string, boolean, number and null
998                 function useStrictEquality(b, a) {
999                         if (b instanceof a.constructor || a instanceof b.constructor) {
1000                                 // to catch short annotaion VS 'new' annotation of a
1001                                 // declaration
1002                                 // e.g. var i = 1;
1003                                 // var j = new Number(1);
1004                                 return a == b;
1005                         } else {
1006                                 return a === b;
1007                         }
1008                 }
1009
1010                 return {
1011                         "string" : useStrictEquality,
1012                         "boolean" : useStrictEquality,
1013                         "number" : useStrictEquality,
1014                         "null" : useStrictEquality,
1015                         "undefined" : useStrictEquality,
1016
1017                         "nan" : function(b) {
1018                                 return isNaN(b);
1019                         },
1020
1021                         "date" : function(b, a) {
1022                                 return QUnit.objectType(b) === "date"
1023                                                 && a.valueOf() === b.valueOf();
1024                         },
1025
1026                         "regexp" : function(b, a) {
1027                                 return QUnit.objectType(b) === "regexp"
1028                                                 && a.source === b.source && // the regex itself
1029                                                 a.global === b.global && // and its modifers
1030                                                                                                         // (gmi) ...
1031                                                 a.ignoreCase === b.ignoreCase
1032                                                 && a.multiline === b.multiline;
1033                         },
1034
1035                         // - skip when the property is a method of an instance (OOP)
1036                         // - abort otherwise,
1037                         // initial === would have catch identical references anyway
1038                         "function" : function() {
1039                                 var caller = callers[callers.length - 1];
1040                                 return caller !== Object && typeof caller !== "undefined";
1041                         },
1042
1043                         "array" : function(b, a) {
1044                                 var i, j, loop;
1045                                 var len;
1046
1047                                 // b could be an object literal here
1048                                 if (!(QUnit.objectType(b) === "array")) {
1049                                         return false;
1050                                 }
1051
1052                                 len = a.length;
1053                                 if (len !== b.length) { // safe and faster
1054                                         return false;
1055                                 }
1056
1057                                 // track reference to avoid circular references
1058                                 parents.push(a);
1059                                 for (i = 0; i < len; i++) {
1060                                         loop = false;
1061                                         for (j = 0; j < parents.length; j++) {
1062                                                 if (parents[j] === a[i]) {
1063                                                         loop = true;// dont rewalk array
1064                                                 }
1065                                         }
1066                                         if (!loop && !innerEquiv(a[i], b[i])) {
1067                                                 parents.pop();
1068                                                 return false;
1069                                         }
1070                                 }
1071                                 parents.pop();
1072                                 return true;
1073                         },
1074
1075                         "object" : function(b, a) {
1076                                 var i, j, loop;
1077                                 var eq = true; // unless we can proove it
1078                                 var aProperties = [], bProperties = []; // collection of
1079                                                                                                                 // strings
1080
1081                                 // comparing constructors is more strict than using
1082                                 // instanceof
1083                                 if (a.constructor !== b.constructor) {
1084                                         return false;
1085                                 }
1086
1087                                 // stack constructor before traversing properties
1088                                 callers.push(a.constructor);
1089                                 // track reference to avoid circular references
1090                                 parents.push(a);
1091
1092                                 for (i in a) { // be strict: don't ensures hasOwnProperty
1093                                                                 // and go deep
1094                                         loop = false;
1095                                         for (j = 0; j < parents.length; j++) {
1096                                                 if (parents[j] === a[i])
1097                                                         loop = true; // don't go down the same path
1098                                                                                         // twice
1099                                         }
1100                                         aProperties.push(i); // collect a's properties
1101
1102                                         if (!loop && !innerEquiv(a[i], b[i])) {
1103                                                 eq = false;
1104                                                 break;
1105                                         }
1106                                 }
1107
1108                                 callers.pop(); // unstack, we are done
1109                                 parents.pop();
1110
1111                                 for (i in b) {
1112                                         bProperties.push(i); // collect b's properties
1113                                 }
1114
1115                                 // Ensures identical properties name
1116                                 return eq
1117                                                 && innerEquiv(aProperties.sort(), bProperties
1118                                                                 .sort());
1119                         }
1120                 };
1121         }();
1122
1123         innerEquiv = function() { // can take multiple arguments
1124                 var args = Array.prototype.slice.apply(arguments);
1125                 if (args.length < 2) {
1126                         return true; // end transition
1127                 }
1128
1129                 return (function(a, b) {
1130                         if (a === b) {
1131                                 return true; // catch the most you can
1132                         } else if (a === null || b === null || typeof a === "undefined"
1133                                         || typeof b === "undefined"
1134                                         || QUnit.objectType(a) !== QUnit.objectType(b)) {
1135                                 return false; // don't lose time with error prone cases
1136                         } else {
1137                                 return bindCallbacks(a, callbacks, [ b, a ]);
1138                         }
1139
1140                         // apply transition with (1..n) arguments
1141                 })(args[0], args[1])
1142                                 && arguments.callee.apply(this, args.splice(1,
1143                                                 args.length - 1));
1144         };
1145
1146         return innerEquiv;
1147
1148 }();
1149
1150 /**
1151  * jsDump Copyright (c) 2008 Ariel Flesler - aflesler(at)gmail(dot)com |
1152  * http://flesler.blogspot.com Licensed under BSD
1153  * (http://www.opensource.org/licenses/bsd-license.php) Date: 5/15/2008
1154  *
1155  * @projectDescription Advanced and extensible data dumping for Javascript.
1156  * @version 1.0.0
1157  * @author Ariel Flesler
1158  * @link {http://flesler.blogspot.com/2008/05/jsdump-pretty-dump-of-any-javascript.html}
1159  */
1160 QUnit.jsDump = (function() {
1161         function quote( str ) {
1162                 return '"' + str.toString().replace(/"/g, '\\"') + '"';
1163         };
1164         function literal( o ) {
1165                 return o + '';
1166         };
1167         function join( pre, arr, post ) {
1168                 var s = jsDump.separator(),
1169                         base = jsDump.indent(),
1170                         inner = jsDump.indent(1);
1171                 if ( arr.join )
1172                         arr = arr.join( ',' + s + inner );
1173                 if ( !arr )
1174                         return pre + post;
1175                 return [ pre, inner + arr, base + post ].join(s);
1176         };
1177         function array( arr, stack ) {
1178                 var i = arr.length, ret = Array(i);
1179                 this.up();
1180                 while ( i-- )
1181                         ret[i] = this.parse( arr[i] , undefined , stack);
1182                 this.down();
1183                 return join( '[', ret, ']' );
1184         };
1185
1186         var reName = /^function (\w+)/;
1187
1188         var jsDump = {
1189                 parse:function( obj, type, stack ) { //type is used mostly internally, you can fix a (custom)type in advance
1190                         stack = stack || [ ];
1191                         var parser = this.parsers[ type || this.typeOf(obj) ];
1192                         type = typeof parser;
1193                         var inStack = inArray(obj, stack);
1194                         if (inStack != -1) {
1195                                 return 'recursion('+(inStack - stack.length)+')';
1196                         }
1197                         //else
1198                         if (type == 'function')  {
1199                                         stack.push(obj);
1200                                         var res = parser.call( this, obj, stack );
1201                                         stack.pop();
1202                                         return res;
1203                         }
1204                         // else
1205                         return (type == 'string') ? parser : this.parsers.error;
1206                 },
1207                 typeOf:function( obj ) {
1208                         var type;
1209                         if ( obj === null ) {
1210                                 type = "null";
1211                         } else if (typeof obj === "undefined") {
1212                                 type = "undefined";
1213                         } else if (QUnit.is("RegExp", obj)) {
1214                                 type = "regexp";
1215                         } else if (QUnit.is("Date", obj)) {
1216                                 type = "date";
1217                         } else if (QUnit.is("Function", obj)) {
1218                                 type = "function";
1219                         } else if (typeof obj.setInterval !== undefined && typeof obj.document !== "undefined" && typeof obj.nodeType === "undefined") {
1220                                 type = "window";
1221                         } else if (obj.nodeType === 9) {
1222                                 type = "document";
1223                         } else if (obj.nodeType) {
1224                                 type = "node";
1225                         } else if (typeof obj === "object" && typeof obj.length === "number" && obj.length >= 0) {
1226                                 type = "array";
1227                         } else {
1228                                 type = typeof obj;
1229                         }
1230                         return type;
1231                 },
1232                 separator:function() {
1233                         return this.multiline ? this.HTML ? '<br />' : '\n' : this.HTML ? '&nbsp;' : ' ';
1234                 },
1235                 indent:function( extra ) {// extra can be a number, shortcut for increasing-calling-decreasing
1236                         if ( !this.multiline )
1237                                 return '';
1238                         var chr = this.indentChar;
1239                         if ( this.HTML )
1240                                 chr = chr.replace(/\t/g,'   ').replace(/ /g,'&nbsp;');
1241                         return Array( this._depth_ + (extra||0) ).join(chr);
1242                 },
1243                 up:function( a ) {
1244                         this._depth_ += a || 1;
1245                 },
1246                 down:function( a ) {
1247                         this._depth_ -= a || 1;
1248                 },
1249                 setParser:function( name, parser ) {
1250                         this.parsers[name] = parser;
1251                 },
1252                 // The next 3 are exposed so you can use them
1253                 quote:quote,
1254                 literal:literal,
1255                 join:join,
1256                 //
1257                 _depth_: 1,
1258                 // This is the list of parsers, to modify them, use jsDump.setParser
1259                 parsers:{
1260                         window: '[Window]',
1261                         document: '[Document]',
1262                         error:'[ERROR]', //when no parser is found, shouldn't happen
1263                         unknown: '[Unknown]',
1264                         'null':'null',
1265                         'undefined':'undefined',
1266                         'function':function( fn ) {
1267                                 var ret = 'function',
1268                                         name = 'name' in fn ? fn.name : (reName.exec(fn)||[])[1];//functions never have name in IE
1269                                 if ( name )
1270                                         ret += ' ' + name;
1271                                 ret += '(';
1272
1273                                 ret = [ ret, QUnit.jsDump.parse( fn, 'functionArgs' ), '){'].join('');
1274                                 return join( ret, QUnit.jsDump.parse(fn,'functionCode'), '}' );
1275                         },
1276                         array: array,
1277                         nodelist: array,
1278                         arguments: array,
1279                         object:function( map, stack ) {
1280                                 var ret = [ ];
1281                                 QUnit.jsDump.up();
1282                                 for ( var key in map ) {
1283                                     var val = map[key];
1284                                         ret.push( QUnit.jsDump.parse(key,'key') + ': ' + QUnit.jsDump.parse(val, undefined, stack));
1285                 }
1286                                 QUnit.jsDump.down();
1287                                 return join( '{', ret, '}' );
1288                         },
1289                         node:function( node ) {
1290                                 var open = QUnit.jsDump.HTML ? '&lt;' : '<',
1291                                         close = QUnit.jsDump.HTML ? '&gt;' : '>';
1292
1293                                 var tag = node.nodeName.toLowerCase(),
1294                                         ret = open + tag;
1295
1296                                 for ( var a in QUnit.jsDump.DOMAttrs ) {
1297                                         var val = node[QUnit.jsDump.DOMAttrs[a]];
1298                                         if ( val )
1299                                                 ret += ' ' + a + '=' + QUnit.jsDump.parse( val, 'attribute' );
1300                                 }
1301                                 return ret + close + open + '/' + tag + close;
1302                         },
1303                         functionArgs:function( fn ) {//function calls it internally, it's the arguments part of the function
1304                                 var l = fn.length;
1305                                 if ( !l ) return '';
1306
1307                                 var args = Array(l);
1308                                 while ( l-- )
1309                                         args[l] = String.fromCharCode(97+l);//97 is 'a'
1310                                 return ' ' + args.join(', ') + ' ';
1311                         },
1312                         key:quote, //object calls it internally, the key part of an item in a map
1313                         functionCode:'[code]', //function calls it internally, it's the content of the function
1314                         attribute:quote, //node calls it internally, it's an html attribute value
1315                         string:quote,
1316                         date:quote,
1317                         regexp:literal, //regex
1318                         number:literal,
1319                         'boolean':literal
1320                 },
1321                 DOMAttrs:{//attributes to dump from nodes, name=>realName
1322                         id:'id',
1323                         name:'name',
1324                         'class':'className'
1325                 },
1326                 HTML:false,//if true, entities are escaped ( <, >, \t, space and \n )
1327                 indentChar:'  ',//indentation unit
1328                 multiline:true //if true, items in a collection, are separated by a \n, else just a space.
1329         };
1330
1331         return jsDump;
1332 })();
1333
1334 // from Sizzle.js
1335 function getText( elems ) {
1336         var ret = "", elem;
1337
1338         for ( var i = 0; elems[i]; i++ ) {
1339                 elem = elems[i];
1340
1341                 // Get the text from text nodes and CDATA nodes
1342                 if ( elem.nodeType === 3 || elem.nodeType === 4 ) {
1343                         ret += elem.nodeValue;
1344
1345                 // Traverse everything else, except comment nodes
1346                 } else if ( elem.nodeType !== 8 ) {
1347                         ret += getText( elem.childNodes );
1348                 }
1349         }
1350
1351         return ret;
1352 };
1353
1354 //from jquery.js
1355 function inArray( elem, array ) {
1356         if ( array.indexOf ) {
1357                 return array.indexOf( elem );
1358         }
1359
1360         for ( var i = 0, length = array.length; i < length; i++ ) {
1361                 if ( array[ i ] === elem ) {
1362                         return i;
1363                 }
1364         }
1365
1366         return -1;
1367 }
1368
1369 /*
1370  * Javascript Diff Algorithm
1371  *  By John Resig (http://ejohn.org/)
1372  *  Modified by Chu Alan "sprite"
1373  *
1374  * Released under the MIT license.
1375  *
1376  * More Info:
1377  *  http://ejohn.org/projects/javascript-diff-algorithm/
1378  *
1379  * Usage: QUnit.diff(expected, actual)
1380  *
1381  * QUnit.diff("the quick brown fox jumped over", "the quick fox jumps over") == "the  quick <del>brown </del> fox <del>jumped </del><ins>jumps </ins> over"
1382  */
1383 QUnit.diff = (function() {
1384         function diff(o, n) {
1385                 var ns = {};
1386                 var os = {};
1387
1388                 for (var i = 0; i < n.length; i++) {
1389                         if (ns[n[i]] == null)
1390                                 ns[n[i]] = {
1391                                         rows: [],
1392                                         o: null
1393                                 };
1394                         ns[n[i]].rows.push(i);
1395                 }
1396
1397                 for (var i = 0; i < o.length; i++) {
1398                         if (os[o[i]] == null)
1399                                 os[o[i]] = {
1400                                         rows: [],
1401                                         n: null
1402                                 };
1403                         os[o[i]].rows.push(i);
1404                 }
1405
1406                 for (var i in ns) {
1407                         if (ns[i].rows.length == 1 && typeof(os[i]) != "undefined" && os[i].rows.length == 1) {
1408                                 n[ns[i].rows[0]] = {
1409                                         text: n[ns[i].rows[0]],
1410                                         row: os[i].rows[0]
1411                                 };
1412                                 o[os[i].rows[0]] = {
1413                                         text: o[os[i].rows[0]],
1414                                         row: ns[i].rows[0]
1415                                 };
1416                         }
1417                 }
1418
1419                 for (var i = 0; i < n.length - 1; i++) {
1420                         if (n[i].text != null && n[i + 1].text == null && n[i].row + 1 < o.length && o[n[i].row + 1].text == null &&
1421                         n[i + 1] == o[n[i].row + 1]) {
1422                                 n[i + 1] = {
1423                                         text: n[i + 1],
1424                                         row: n[i].row + 1
1425                                 };
1426                                 o[n[i].row + 1] = {
1427                                         text: o[n[i].row + 1],
1428                                         row: i + 1
1429                                 };
1430                         }
1431                 }
1432
1433                 for (var i = n.length - 1; i > 0; i--) {
1434                         if (n[i].text != null && n[i - 1].text == null && n[i].row > 0 && o[n[i].row - 1].text == null &&
1435                         n[i - 1] == o[n[i].row - 1]) {
1436                                 n[i - 1] = {
1437                                         text: n[i - 1],
1438                                         row: n[i].row - 1
1439                                 };
1440                                 o[n[i].row - 1] = {
1441                                         text: o[n[i].row - 1],
1442                                         row: i - 1
1443                                 };
1444                         }
1445                 }
1446
1447                 return {
1448                         o: o,
1449                         n: n
1450                 };
1451         }
1452
1453         return function(o, n) {
1454                 o = o.replace(/\s+$/, '');
1455                 n = n.replace(/\s+$/, '');
1456                 var out = diff(o == "" ? [] : o.split(/\s+/), n == "" ? [] : n.split(/\s+/));
1457
1458                 var str = "";
1459
1460                 var oSpace = o.match(/\s+/g);
1461                 if (oSpace == null) {
1462                         oSpace = [" "];
1463                 }
1464                 else {
1465                         oSpace.push(" ");
1466                 }
1467                 var nSpace = n.match(/\s+/g);
1468                 if (nSpace == null) {
1469                         nSpace = [" "];
1470                 }
1471                 else {
1472                         nSpace.push(" ");
1473                 }
1474
1475                 if (out.n.length == 0) {
1476                         for (var i = 0; i < out.o.length; i++) {
1477                                 str += '<del>' + out.o[i] + oSpace[i] + "</del>";
1478                         }
1479                 }
1480                 else {
1481                         if (out.n[0].text == null) {
1482                                 for (n = 0; n < out.o.length && out.o[n].text == null; n++) {
1483                                         str += '<del>' + out.o[n] + oSpace[n] + "</del>";
1484                                 }
1485                         }
1486
1487                         for (var i = 0; i < out.n.length; i++) {
1488                                 if (out.n[i].text == null) {
1489                                         str += '<ins>' + out.n[i] + nSpace[i] + "</ins>";
1490                                 }
1491                                 else {
1492                                         var pre = "";
1493
1494                                         for (n = out.n[i].row + 1; n < out.o.length && out.o[n].text == null; n++) {
1495                                                 pre += '<del>' + out.o[n] + oSpace[n] + "</del>";
1496                                         }
1497                                         str += " " + out.n[i].text + nSpace[i] + pre;
1498                                 }
1499                         }
1500                 }
1501
1502                 return str;
1503         };
1504 })();
1505
1506 })(this);