ApiSandbox: Blur before sending request
[mediawiki.git] / tests / qunit / data / testrunner.js
blob07e6f269f9f1870d34eff4e3fb296491d0846300
1 /*global CompletenessTest, sinon */
2 /*jshint evil: true */
3 ( function ( $, mw, QUnit ) {
4         'use strict';
6         var mwTestIgnore, mwTester, addons;
8         /**
9          * Add bogus to url to prevent IE crazy caching
10          *
11          * @param {string} value a relative path (eg. 'data/foo.js'
12          * or 'data/test.php?foo=bar').
13          * @return {string} Such as 'data/foo.js?131031765087663960'
14          */
15         QUnit.fixurl = function ( value ) {
16                 return value + ( /\?/.test( value ) ? '&' : '?' )
17                         + String( new Date().getTime() )
18                         + String( parseInt( Math.random() * 100000, 10 ) );
19         };
21         /**
22          * Configuration
23          */
25         // For each test() that is asynchronous, allow this time to pass before
26         // killing the test and assuming timeout failure.
27         QUnit.config.testTimeout = 60 * 1000;
29         QUnit.config.requireExpects = true;
31         // Add a checkbox to QUnit header to toggle MediaWiki ResourceLoader debug mode.
32         QUnit.config.urlConfig.push( {
33                 id: 'debug',
34                 label: 'Enable ResourceLoaderDebug',
35                 tooltip: 'Enable debug mode in ResourceLoader',
36                 value: 'true'
37         } );
39         /**
40          * CompletenessTest
41          *
42          * Adds toggle checkbox to header
43          */
44         QUnit.config.urlConfig.push( {
45                 id: 'completenesstest',
46                 label: 'Run CompletenessTest',
47                 tooltip: 'Run the completeness test'
48         } );
50         /**
51          * SinonJS
52          *
53          * Glue code for nicer integration with QUnit setup/teardown
54          * Inspired by http://sinonjs.org/releases/sinon-qunit-1.0.0.js
55          * Fixes:
56          * - Work properly with asynchronous QUnit by using module setup/teardown
57          *   instead of synchronously wrapping QUnit.test.
58          */
59         sinon.assert.fail = function ( msg ) {
60                 QUnit.assert.ok( false, msg );
61         };
62         sinon.assert.pass = function ( msg ) {
63                 QUnit.assert.ok( true, msg );
64         };
65         sinon.config = {
66                 injectIntoThis: true,
67                 injectInto: null,
68                 properties: [ 'spy', 'stub', 'mock', 'sandbox' ],
69                 // Don't fake timers by default
70                 useFakeTimers: false,
71                 useFakeServer: false
72         };
73         ( function () {
74                 var orgModule = QUnit.module;
76                 QUnit.module = function ( name, localEnv ) {
77                         localEnv = localEnv || {};
78                         orgModule( name, {
79                                 setup: function () {
80                                         var config = sinon.getConfig( sinon.config );
81                                         config.injectInto = this;
82                                         sinon.sandbox.create( config );
84                                         if ( localEnv.setup ) {
85                                                 localEnv.setup.call( this );
86                                         }
87                                 },
88                                 teardown: function () {
89                                         if ( localEnv.teardown ) {
90                                                 localEnv.teardown.call( this );
91                                         }
93                                         this.sandbox.verifyAndRestore();
94                                 }
95                         } );
96                 };
97         }() );
99         // Extend QUnit.module to provide a fixture element.
100         ( function () {
101                 var orgModule = QUnit.module;
103                 QUnit.module = function ( name, localEnv ) {
104                         var fixture;
105                         localEnv = localEnv || {};
106                         orgModule( name, {
107                                 setup: function () {
108                                         fixture = document.createElement( 'div' );
109                                         fixture.id = 'qunit-fixture';
110                                         document.body.appendChild( fixture );
112                                         if ( localEnv.setup ) {
113                                                 localEnv.setup.call( this );
114                                         }
115                                 },
116                                 teardown: function () {
117                                         if ( localEnv.teardown ) {
118                                                 localEnv.teardown.call( this );
119                                         }
121                                         fixture.parentNode.removeChild( fixture );
122                                 }
123                         } );
124                 };
125         }() );
127         // Initiate when enabled
128         if ( QUnit.urlParams.completenesstest ) {
130                 // Return true to ignore
131                 mwTestIgnore = function ( val, tester ) {
133                         // Don't record methods of the properties of constructors,
134                         // to avoid getting into a loop (prototype.constructor.prototype..).
135                         // Since we're therefor skipping any injection for
136                         // "new mw.Foo()", manually set it to true here.
137                         if ( val instanceof mw.Map ) {
138                                 tester.methodCallTracker.Map = true;
139                                 return true;
140                         }
141                         if ( val instanceof mw.Title ) {
142                                 tester.methodCallTracker.Title = true;
143                                 return true;
144                         }
146                         // Don't record methods of the properties of a jQuery object
147                         if ( val instanceof $ ) {
148                                 return true;
149                         }
151                         // Don't iterate over the module registry (the 'script' references would
152                         // be listed as untested methods otherwise)
153                         if ( val === mw.loader.moduleRegistry ) {
154                                 return true;
155                         }
157                         return false;
158                 };
160                 mwTester = new CompletenessTest( mw, mwTestIgnore );
161         }
163         /**
164          * Reset mw.config and others to a fresh copy of the live config for each test(),
165          * and restore it back to the live one afterwards.
166          *
167          * @param {Object} [localEnv]
168          * @example (see test suite at the bottom of this file)
169          * </code>
170          */
171         QUnit.newMwEnvironment = ( function () {
172                 var warn, error, liveConfig, liveMessages,
173                         ajaxRequests = [];
175                 liveConfig = mw.config.values;
176                 liveMessages = mw.messages.values;
178                 function suppressWarnings() {
179                         warn = mw.log.warn;
180                         error = mw.log.error;
181                         mw.log.warn = mw.log.error = $.noop;
182                 }
184                 function restoreWarnings() {
185                         // Guard against calls not balanced with suppressWarnings()
186                         if ( warn !== undefined ) {
187                                 mw.log.warn = warn;
188                                 mw.log.error = error;
189                                 warn = error = undefined;
190                         }
191                 }
193                 function freshConfigCopy( custom ) {
194                         var copy;
195                         // Tests should mock all factors that directly influence the tested code.
196                         // For backwards compatibility though we set mw.config to a fresh copy of the live
197                         // config. This way any modifications made to mw.config during the test will not
198                         // affect other tests, nor the global scope outside the test runner.
199                         // This is a shallow copy, since overriding an array or object value via "custom"
200                         // should replace it. Setting a config property means you override it, not extend it.
201                         // NOTE: It is important that we suppress warnings because extend() will also access
202                         // deprecated properties and trigger deprecation warnings from mw.log#deprecate.
203                         suppressWarnings();
204                         copy = $.extend( {}, liveConfig, custom );
205                         restoreWarnings();
207                         return copy;
208                 }
210                 function freshMessagesCopy( custom ) {
211                         return $.extend( /*deep=*/true, {}, liveMessages, custom );
212                 }
214                 /**
215                  * @param {jQuery.Event} event
216                  * @param {jqXHR} jqXHR
217                  * @param {Object} ajaxOptions
218                  */
219                 function trackAjax( event, jqXHR, ajaxOptions ) {
220                         ajaxRequests.push( { xhr: jqXHR, options: ajaxOptions } );
221                 }
223                 return function ( localEnv ) {
224                         localEnv = $.extend( {
225                                 // QUnit
226                                 setup: $.noop,
227                                 teardown: $.noop,
228                                 // MediaWiki
229                                 config: {},
230                                 messages: {}
231                         }, localEnv );
233                         return {
234                                 setup: function () {
236                                         // Greetings, mock environment!
237                                         mw.config.values = freshConfigCopy( localEnv.config );
238                                         mw.messages.values = freshMessagesCopy( localEnv.messages );
239                                         this.suppressWarnings = suppressWarnings;
240                                         this.restoreWarnings = restoreWarnings;
242                                         // Start tracking ajax requests
243                                         $( document ).on( 'ajaxSend', trackAjax );
245                                         localEnv.setup.call( this );
246                                 },
248                                 teardown: function () {
249                                         var timers, pending, $activeLen;
251                                         localEnv.teardown.call( this );
253                                         // Stop tracking ajax requests
254                                         $( document ).off( 'ajaxSend', trackAjax );
256                                         // Farewell, mock environment!
257                                         mw.config.values = liveConfig;
258                                         mw.messages.values = liveMessages;
260                                         // As a convenience feature, automatically restore warnings if they're
261                                         // still suppressed by the end of the test.
262                                         restoreWarnings();
264                                         // Tests should use fake timers or wait for animations to complete
265                                         // Check for incomplete animations/requests/etc and throw if there are any.
266                                         if ( $.timers && $.timers.length !== 0 ) {
267                                                 timers = $.timers.length;
268                                                 $.each( $.timers, function ( i, timer ) {
269                                                         var node = timer.elem;
270                                                         mw.log.warn( 'Unfinished animation #' + i + ' in ' + timer.queue + ' queue on ' +
271                                                                 mw.html.element( node.nodeName.toLowerCase(), $( node ).getAttrs() )
272                                                         );
273                                                 } );
274                                                 // Force animations to stop to give the next test a clean start
275                                                 $.fx.stop();
277                                                 throw new Error( 'Unfinished animations: ' + timers );
278                                         }
280                                         // Test should use fake XHR, wait for requests, or call abort()
281                                         $activeLen = $.active;
282                                         if ( $activeLen !== undefined && $activeLen !== 0 ) {
283                                                 pending = $.grep( ajaxRequests, function ( ajax ) {
284                                                         return ajax.xhr.state() === 'pending';
285                                                 } );
286                                                 if ( pending.length !== $activeLen ) {
287                                                         mw.log.warn( 'Pending requests does not match jQuery.active count' );
288                                                 }
289                                                 // Force requests to stop to give the next test a clean start
290                                                 $.each( pending, function ( i, ajax ) {
291                                                         mw.log.warn( 'Pending AJAX request #' + i, ajax.options );
292                                                         ajax.xhr.abort();
293                                                 } );
294                                                 ajaxRequests = [];
296                                                 throw new Error( 'Pending AJAX requests: ' + pending.length + ' (active: ' + $activeLen + ')' );
297                                         }
298                                 }
299                         };
300                 };
301         }() );
303         // $.when stops as soon as one fails, which makes sense in most
304         // practical scenarios, but not in a unit test where we really do
305         // need to wait until all of them are finished.
306         QUnit.whenPromisesComplete = function () {
307                 var altPromises = [];
309                 $.each( arguments, function ( i, arg ) {
310                         var alt = $.Deferred();
311                         altPromises.push( alt );
313                         // Whether this one fails or not, forwards it to
314                         // the 'done' (resolve) callback of the alternative promise.
315                         arg.always( alt.resolve );
316                 } );
318                 return $.when.apply( $, altPromises );
319         };
321         /**
322          * Recursively convert a node to a plain object representing its structure.
323          * Only considers attributes and contents (elements and text nodes).
324          * Attribute values are compared strictly and not normalised.
325          *
326          * @param {Node} node
327          * @return {Object|string} Plain JavaScript value representing the node.
328          */
329         function getDomStructure( node ) {
330                 var $node, children, processedChildren, i, len, el;
331                 $node = $( node );
332                 if ( node.nodeType === Node.ELEMENT_NODE ) {
333                         children = $node.contents();
334                         processedChildren = [];
335                         for ( i = 0, len = children.length; i < len; i++ ) {
336                                 el = children[ i ];
337                                 if ( el.nodeType === Node.ELEMENT_NODE || el.nodeType === Node.TEXT_NODE ) {
338                                         processedChildren.push( getDomStructure( el ) );
339                                 }
340                         }
342                         return {
343                                 tagName: node.tagName,
344                                 attributes: $node.getAttrs(),
345                                 contents: processedChildren
346                         };
347                 } else {
348                         // Should be text node
349                         return $node.text();
350                 }
351         }
353         /**
354          * Gets structure of node for this HTML.
355          *
356          * @param {string} html HTML markup for one or more nodes.
357          */
358         function getHtmlStructure( html ) {
359                 var el = $( '<div>' ).append( html )[ 0 ];
360                 return getDomStructure( el );
361         }
363         /**
364          * Add-on assertion helpers
365          */
366         // Define the add-ons
367         addons = {
369                 // Expect boolean true
370                 assertTrue: function ( actual, message ) {
371                         QUnit.push( actual === true, actual, true, message );
372                 },
374                 // Expect boolean false
375                 assertFalse: function ( actual, message ) {
376                         QUnit.push( actual === false, actual, false, message );
377                 },
379                 // Expect numerical value less than X
380                 lt: function ( actual, expected, message ) {
381                         QUnit.push( actual < expected, actual, 'less than ' + expected, message );
382                 },
384                 // Expect numerical value less than or equal to X
385                 ltOrEq: function ( actual, expected, message ) {
386                         QUnit.push( actual <= expected, actual, 'less than or equal to ' + expected, message );
387                 },
389                 // Expect numerical value greater than X
390                 gt: function ( actual, expected, message ) {
391                         QUnit.push( actual > expected, actual, 'greater than ' + expected, message );
392                 },
394                 // Expect numerical value greater than or equal to X
395                 gtOrEq: function ( actual, expected, message ) {
396                         QUnit.push( actual >= expected, actual, 'greater than or equal to ' + expected, message );
397                 },
399                 /**
400                  * Asserts that two HTML strings are structurally equivalent.
401                  *
402                  * @param {string} actualHtml Actual HTML markup.
403                  * @param {string} expectedHtml Expected HTML markup
404                  * @param {string} message Assertion message.
405                  */
406                 htmlEqual: function ( actualHtml, expectedHtml, message ) {
407                         var actual = getHtmlStructure( actualHtml ),
408                                 expected = getHtmlStructure( expectedHtml );
410                         QUnit.push(
411                                 QUnit.equiv(
412                                         actual,
413                                         expected
414                                 ),
415                                 actual,
416                                 expected,
417                                 message
418                         );
419                 },
421                 /**
422                  * Asserts that two HTML strings are not structurally equivalent.
423                  *
424                  * @param {string} actualHtml Actual HTML markup.
425                  * @param {string} expectedHtml Expected HTML markup.
426                  * @param {string} message Assertion message.
427                  */
428                 notHtmlEqual: function ( actualHtml, expectedHtml, message ) {
429                         var actual = getHtmlStructure( actualHtml ),
430                                 expected = getHtmlStructure( expectedHtml );
432                         QUnit.push(
433                                 !QUnit.equiv(
434                                         actual,
435                                         expected
436                                 ),
437                                 actual,
438                                 expected,
439                                 message
440                         );
441                 }
442         };
444         $.extend( QUnit.assert, addons );
446         /**
447          * Small test suite to confirm proper functionality of the utilities and
448          * initializations defined above in this file.
449          */
450         QUnit.module( 'test.mediawiki.qunit.testrunner', QUnit.newMwEnvironment( {
451                 setup: function () {
452                         this.mwHtmlLive = mw.html;
453                         mw.html = {
454                                 escape: function () {
455                                         return 'mocked';
456                                 }
457                         };
458                 },
459                 teardown: function () {
460                         mw.html = this.mwHtmlLive;
461                 },
462                 config: {
463                         testVar: 'foo'
464                 },
465                 messages: {
466                         testMsg: 'Foo.'
467                 }
468         } ) );
470         QUnit.test( 'Setup', 3, function ( assert ) {
471                 assert.equal( mw.html.escape( 'foo' ), 'mocked', 'setup() callback was ran.' );
472                 assert.equal( mw.config.get( 'testVar' ), 'foo', 'config object applied' );
473                 assert.equal( mw.messages.get( 'testMsg' ), 'Foo.', 'messages object applied' );
475                 mw.config.set( 'testVar', 'bar' );
476                 mw.messages.set( 'testMsg', 'Bar.' );
477         } );
479         QUnit.test( 'Teardown', 2, function ( assert ) {
480                 assert.equal( mw.config.get( 'testVar' ), 'foo', 'config object restored and re-applied after test()' );
481                 assert.equal( mw.messages.get( 'testMsg' ), 'Foo.', 'messages object restored and re-applied after test()' );
482         } );
484         QUnit.test( 'Loader status', 2, function ( assert ) {
485                 var i, len, state,
486                         modules = mw.loader.getModuleNames(),
487                         error = [],
488                         missing = [];
490                 for ( i = 0, len = modules.length; i < len; i++ ) {
491                         state = mw.loader.getState( modules[ i ] );
492                         if ( state === 'error' ) {
493                                 error.push( modules[ i ] );
494                         } else if ( state === 'missing' ) {
495                                 missing.push( modules[ i ] );
496                         }
497                 }
499                 assert.deepEqual( error, [], 'Modules in error state' );
500                 assert.deepEqual( missing, [], 'Modules in missing state' );
501         } );
503         QUnit.test( 'htmlEqual', 8, function ( assert ) {
504                 assert.htmlEqual(
505                         '<div><p class="some classes" data-length="10">Child paragraph with <a href="http://example.com">A link</a></p>Regular text<span>A span</span></div>',
506                         '<div><p data-length=\'10\'  class=\'some classes\'>Child paragraph with <a href=\'http://example.com\' >A link</a></p>Regular text<span>A span</span></div>',
507                         'Attribute order, spacing and quotation marks (equal)'
508                 );
510                 assert.notHtmlEqual(
511                         '<div><p class="some classes" data-length="10">Child paragraph with <a href="http://example.com">A link</a></p>Regular text<span>A span</span></div>',
512                         '<div><p data-length=\'10\'  class=\'some more classes\'>Child paragraph with <a href=\'http://example.com\' >A link</a></p>Regular text<span>A span</span></div>',
513                         'Attribute order, spacing and quotation marks (not equal)'
514                 );
516                 assert.htmlEqual(
517                         '<label for="firstname" accesskey="f" class="important">First</label><input id="firstname" /><label for="lastname" accesskey="l" class="minor">Last</label><input id="lastname" />',
518                         '<label for="firstname" accesskey="f" class="important">First</label><input id="firstname" /><label for="lastname" accesskey="l" class="minor">Last</label><input id="lastname" />',
519                         'Multiple root nodes (equal)'
520                 );
522                 assert.notHtmlEqual(
523                         '<label for="firstname" accesskey="f" class="important">First</label><input id="firstname" /><label for="lastname" accesskey="l" class="minor">Last</label><input id="lastname" />',
524                         '<label for="firstname" accesskey="f" class="important">First</label><input id="firstname" /><label for="lastname" accesskey="l" class="important" >Last</label><input id="lastname" />',
525                         'Multiple root nodes (not equal, last label node is different)'
526                 );
528                 assert.htmlEqual(
529                         'fo&quot;o<br/>b&gt;ar',
530                         'fo"o<br/>b>ar',
531                         'Extra escaping is equal'
532                 );
533                 assert.notHtmlEqual(
534                         'foo&lt;br/&gt;bar',
535                         'foo<br/>bar',
536                         'Text escaping (not equal)'
537                 );
539                 assert.htmlEqual(
540                         'foo<a href="http://example.com">example</a>bar',
541                         'foo<a href="http://example.com">example</a>bar',
542                         'Outer text nodes are compared (equal)'
543                 );
545                 assert.notHtmlEqual(
546                         'foo<a href="http://example.com">example</a>bar',
547                         'foo<a href="http://example.com">example</a>quux',
548                         'Outer text nodes are compared (last text node different)'
549                 );
551         } );
553         QUnit.module( 'test.mediawiki.qunit.testrunner-after', QUnit.newMwEnvironment() );
555         QUnit.test( 'Teardown', 3, function ( assert ) {
556                 assert.equal( mw.html.escape( '<' ), '&lt;', 'teardown() callback was ran.' );
557                 assert.equal( mw.config.get( 'testVar' ), null, 'config object restored to live in next module()' );
558                 assert.equal( mw.messages.get( 'testMsg' ), null, 'messages object restored to live in next module()' );
559         } );
561 }( jQuery, mediaWiki, QUnit ) );