qunit.completenessTest: Ignore mw.loader.moduleRegistry
[lhc/web/wiklou.git] / tests / qunit / data / testrunner.js
1 /*global CompletenessTest, sinon */
2 /*jshint evil: true */
3 ( function ( $, mw, QUnit ) {
4 'use strict';
5
6 var mwTestIgnore, mwTester,
7 addons,
8 ELEMENT_NODE = 1,
9 TEXT_NODE = 3;
10
11 /**
12 * Add bogus to url to prevent IE crazy caching
13 *
14 * @param value {String} a relative path (eg. 'data/foo.js'
15 * or 'data/test.php?foo=bar').
16 * @return {String} Such as 'data/foo.js?131031765087663960'
17 */
18 QUnit.fixurl = function ( value ) {
19 return value + (/\?/.test( value ) ? '&' : '?')
20 + String( new Date().getTime() )
21 + String( parseInt( Math.random() * 100000, 10 ) );
22 };
23
24 /**
25 * Configuration
26 */
27
28 // When a test() indicates asynchronicity with stop(),
29 // allow 10 seconds to pass before killing the test(),
30 // and assuming failure.
31 QUnit.config.testTimeout = 10 * 1000;
32
33 // Add a checkbox to QUnit header to toggle MediaWiki ResourceLoader debug mode.
34 QUnit.config.urlConfig.push( {
35 id: 'debug',
36 label: 'Enable ResourceLoaderDebug',
37 tooltip: 'Enable debug mode in ResourceLoader'
38 } );
39
40 QUnit.config.requireExpects = true;
41
42 /**
43 * Load TestSwarm agent
44 */
45 // Only if the current url indicates that there is a TestSwarm instance watching us
46 // (TestSwarm appends swarmURL to the test suites url it loads in iframes).
47 // Otherwise this is just a simple view of Special:JavaScriptTest/qunit directly,
48 // no point in loading inject.js in that case. Also, make sure that this instance
49 // of MediaWiki has actually been configured with the required url to that inject.js
50 // script. By default it is false.
51 if ( QUnit.urlParams.swarmURL && mw.config.get( 'QUnitTestSwarmInjectJSPath' ) ) {
52 jQuery.getScript( QUnit.fixurl( mw.config.get( 'QUnitTestSwarmInjectJSPath' ) ) );
53 }
54
55 /**
56 * CompletenessTest
57 *
58 * Adds toggle checkbox to header
59 */
60 QUnit.config.urlConfig.push( {
61 id: 'completenesstest',
62 label: 'Run CompletenessTest',
63 tooltip: 'Run the completeness test'
64 } );
65
66 /**
67 * SinonJS
68 *
69 * Glue code for nicer integration with QUnit setup/teardown
70 * Inspired by http://sinonjs.org/releases/sinon-qunit-1.0.0.js
71 * Fixes:
72 * - Work properly with asynchronous QUnit by using module setup/teardown
73 * instead of synchronously wrapping QUnit.test.
74 */
75 sinon.assert.fail = function ( msg ) {
76 QUnit.assert.ok( false, msg );
77 };
78 sinon.assert.pass = function ( msg ) {
79 QUnit.assert.ok( true, msg );
80 };
81 sinon.config = {
82 injectIntoThis: true,
83 injectInto: null,
84 properties: ['spy', 'stub', 'mock', 'sandbox'],
85 // Don't fake timers by default
86 useFakeTimers: false,
87 useFakeServer: false
88 };
89 ( function () {
90 var orgModule = QUnit.module;
91
92 QUnit.module = function ( name, localEnv ) {
93 localEnv = localEnv || {};
94 orgModule( name, {
95 setup: function () {
96 var config = sinon.getConfig( sinon.config );
97 config.injectInto = this;
98 sinon.sandbox.create( config );
99
100 if ( localEnv.setup ) {
101 localEnv.setup.call( this );
102 }
103 },
104 teardown: function () {
105 this.sandbox.verifyAndRestore();
106
107 if ( localEnv.teardown ) {
108 localEnv.teardown.call( this );
109 }
110 }
111 } );
112 };
113 }() );
114
115 // Initiate when enabled
116 if ( QUnit.urlParams.completenesstest ) {
117
118 // Return true to ignore
119 mwTestIgnore = function ( val, tester ) {
120
121 // Don't record methods of the properties of constructors,
122 // to avoid getting into a loop (prototype.constructor.prototype..).
123 // Since we're therefor skipping any injection for
124 // "new mw.Foo()", manually set it to true here.
125 if ( val instanceof mw.Map ) {
126 tester.methodCallTracker.Map = true;
127 return true;
128 }
129 if ( val instanceof mw.Title ) {
130 tester.methodCallTracker.Title = true;
131 return true;
132 }
133
134 // Don't record methods of the properties of a jQuery object
135 if ( val instanceof $ ) {
136 return true;
137 }
138
139 // Don't iterate over the module registry (the 'script' references would
140 // be listed as untested methods otherwise)
141 if ( val === mw.loader.moduleRegistry ) {
142 return true;
143 }
144
145 return false;
146 };
147
148 mwTester = new CompletenessTest( mw, mwTestIgnore );
149 }
150
151 /**
152 * Test environment recommended for all QUnit test modules
153 *
154 * Whether to log environment changes to the console
155 */
156 QUnit.config.urlConfig.push( 'mwlogenv' );
157
158 /**
159 * Reset mw.config and others to a fresh copy of the live config for each test(),
160 * and restore it back to the live one afterwards.
161 * @param localEnv {Object} [optional]
162 * @example (see test suite at the bottom of this file)
163 * </code>
164 */
165 QUnit.newMwEnvironment = ( function () {
166 var warn, log, liveConfig, liveMessages;
167
168 liveConfig = mw.config.values;
169 liveMessages = mw.messages.values;
170
171 function suppressWarnings() {
172 warn = mw.log.warn;
173 mw.log.warn = $.noop;
174 }
175
176 function restoreWarnings() {
177 if ( warn !== undefined ) {
178 mw.log.warn = warn;
179 warn = undefined;
180 }
181 }
182
183 function freshConfigCopy( custom ) {
184 var copy;
185 // Tests should mock all factors that directly influence the tested code.
186 // For backwards compatibility though we set mw.config to a fresh copy of the live
187 // config. This way any modifications made to mw.config during the test will not
188 // affect other tests, nor the global scope outside the test runner.
189 // This is a shallow copy, since overriding an array or object value via "custom"
190 // should replace it. Setting a config property means you override it, not extend it.
191 // NOTE: It is important that we suppress warnings because extend() will also access
192 // deprecated properties and trigger deprecation warnings from mw.log#deprecate.
193 suppressWarnings();
194 copy = $.extend( {}, liveConfig, custom );
195 restoreWarnings();
196
197 return copy;
198 }
199
200 function freshMessagesCopy( custom ) {
201 return $.extend( /*deep=*/true, {}, liveMessages, custom );
202 }
203
204 log = QUnit.urlParams.mwlogenv ? mw.log : function () {};
205
206 return function ( localEnv ) {
207 localEnv = $.extend( {
208 // QUnit
209 setup: $.noop,
210 teardown: $.noop,
211 // MediaWiki
212 config: {},
213 messages: {}
214 }, localEnv );
215
216 return {
217 setup: function () {
218 log( 'MwEnvironment> SETUP for "' + QUnit.config.current.module
219 + ': ' + QUnit.config.current.testName + '"' );
220
221 // Greetings, mock environment!
222 mw.config.values = freshConfigCopy( localEnv.config );
223 mw.messages.values = freshMessagesCopy( localEnv.messages );
224 this.suppressWarnings = suppressWarnings;
225 this.restoreWarnings = restoreWarnings;
226
227 localEnv.setup.call( this );
228 },
229
230 teardown: function () {
231 log( 'MwEnvironment> TEARDOWN for "' + QUnit.config.current.module
232 + ': ' + QUnit.config.current.testName + '"' );
233
234 localEnv.teardown.call( this );
235
236 // Farewell, mock environment!
237 mw.config.values = liveConfig;
238 mw.messages.values = liveMessages;
239
240 // As a convenience feature, automatically restore warnings if they're
241 // still suppressed by the end of the test.
242 restoreWarnings();
243 }
244 };
245 };
246 }() );
247
248 // $.when stops as soon as one fails, which makes sense in most
249 // practical scenarios, but not in a unit test where we really do
250 // need to wait until all of them are finished.
251 QUnit.whenPromisesComplete = function () {
252 var altPromises = [];
253
254 $.each( arguments, function ( i, arg ) {
255 var alt = $.Deferred();
256 altPromises.push( alt );
257
258 // Whether this one fails or not, forwards it to
259 // the 'done' (resolve) callback of the alternative promise.
260 arg.always( alt.resolve );
261 } );
262
263 return $.when.apply( $, altPromises );
264 };
265
266 /**
267 * Recursively convert a node to a plain object representing its structure.
268 * Only considers attributes and contents (elements and text nodes).
269 * Attribute values are compared strictly and not normalised.
270 *
271 * @param {Node} node
272 * @return {Object|string} Plain JavaScript value representing the node.
273 */
274 function getDomStructure( node ) {
275 var $node, children, processedChildren, i, len, el;
276 $node = $( node );
277 if ( node.nodeType === ELEMENT_NODE ) {
278 children = $node.contents();
279 processedChildren = [];
280 for ( i = 0, len = children.length; i < len; i++ ) {
281 el = children[i];
282 if ( el.nodeType === ELEMENT_NODE || el.nodeType === TEXT_NODE ) {
283 processedChildren.push( getDomStructure( el ) );
284 }
285 }
286
287 return {
288 tagName: node.tagName,
289 attributes: $node.getAttrs(),
290 contents: processedChildren
291 };
292 } else {
293 // Should be text node
294 return $node.text();
295 }
296 }
297
298 /**
299 * Gets structure of node for this HTML.
300 *
301 * @param {string} html HTML markup for one or more nodes.
302 */
303 function getHtmlStructure( html ) {
304 var el = $( '<div>' ).append( html )[0];
305 return getDomStructure( el );
306 }
307
308 /**
309 * Add-on assertion helpers
310 */
311 // Define the add-ons
312 addons = {
313
314 // Expect boolean true
315 assertTrue: function ( actual, message ) {
316 QUnit.push( actual === true, actual, true, message );
317 },
318
319 // Expect boolean false
320 assertFalse: function ( actual, message ) {
321 QUnit.push( actual === false, actual, false, message );
322 },
323
324 // Expect numerical value less than X
325 lt: function ( actual, expected, message ) {
326 QUnit.push( actual < expected, actual, 'less than ' + expected, message );
327 },
328
329 // Expect numerical value less than or equal to X
330 ltOrEq: function ( actual, expected, message ) {
331 QUnit.push( actual <= expected, actual, 'less than or equal to ' + expected, message );
332 },
333
334 // Expect numerical value greater than X
335 gt: function ( actual, expected, message ) {
336 QUnit.push( actual > expected, actual, 'greater than ' + expected, message );
337 },
338
339 // Expect numerical value greater than or equal to X
340 gtOrEq: function ( actual, expected, message ) {
341 QUnit.push( actual >= expected, actual, 'greater than or equal to ' + expected, message );
342 },
343
344 /**
345 * Asserts that two HTML strings are structurally equivalent.
346 *
347 * @param {string} actualHtml Actual HTML markup.
348 * @param {string} expectedHtml Expected HTML markup
349 * @param {string} message Assertion message.
350 */
351 htmlEqual: function ( actualHtml, expectedHtml, message ) {
352 var actual = getHtmlStructure( actualHtml ),
353 expected = getHtmlStructure( expectedHtml );
354
355 QUnit.push(
356 QUnit.equiv(
357 actual,
358 expected
359 ),
360 actual,
361 expected,
362 message
363 );
364 },
365
366 /**
367 * Asserts that two HTML strings are not structurally equivalent.
368 *
369 * @param {string} actualHtml Actual HTML markup.
370 * @param {string} expectedHtml Expected HTML markup.
371 * @param {string} message Assertion message.
372 */
373 notHtmlEqual: function ( actualHtml, expectedHtml, message ) {
374 var actual = getHtmlStructure( actualHtml ),
375 expected = getHtmlStructure( expectedHtml );
376
377 QUnit.push(
378 !QUnit.equiv(
379 actual,
380 expected
381 ),
382 actual,
383 expected,
384 message
385 );
386 }
387 };
388
389 $.extend( QUnit.assert, addons );
390
391 /**
392 * Small test suite to confirm proper functionality of the utilities and
393 * initializations defined above in this file.
394 */
395 QUnit.module( 'test.mediawiki.qunit.testrunner', QUnit.newMwEnvironment( {
396 setup: function () {
397 this.mwHtmlLive = mw.html;
398 mw.html = {
399 escape: function () {
400 return 'mocked';
401 }
402 };
403 },
404 teardown: function () {
405 mw.html = this.mwHtmlLive;
406 },
407 config: {
408 testVar: 'foo'
409 },
410 messages: {
411 testMsg: 'Foo.'
412 }
413 } ) );
414
415 QUnit.test( 'Setup', 3, function ( assert ) {
416 assert.equal( mw.html.escape( 'foo' ), 'mocked', 'setup() callback was ran.' );
417 assert.equal( mw.config.get( 'testVar' ), 'foo', 'config object applied' );
418 assert.equal( mw.messages.get( 'testMsg' ), 'Foo.', 'messages object applied' );
419
420 mw.config.set( 'testVar', 'bar' );
421 mw.messages.set( 'testMsg', 'Bar.' );
422 } );
423
424 QUnit.test( 'Teardown', 2, function ( assert ) {
425 assert.equal( mw.config.get( 'testVar' ), 'foo', 'config object restored and re-applied after test()' );
426 assert.equal( mw.messages.get( 'testMsg' ), 'Foo.', 'messages object restored and re-applied after test()' );
427 } );
428
429 QUnit.test( 'Loader status', 2, function ( assert ) {
430 var i, len, state,
431 modules = mw.loader.getModuleNames(),
432 error = [],
433 missing = [];
434
435 for ( i = 0, len = modules.length; i < len; i++ ) {
436 state = mw.loader.getState( modules[i] );
437 if ( state === 'error' ) {
438 error.push( modules[i] );
439 } else if ( state === 'missing' ) {
440 missing.push( modules[i] );
441 }
442 }
443
444 assert.deepEqual( error, [], 'Modules in error state' );
445 assert.deepEqual( missing, [], 'Modules in missing state' );
446 } );
447
448 QUnit.test( 'htmlEqual', 8, function ( assert ) {
449 assert.htmlEqual(
450 '<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>',
451 '<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>',
452 'Attribute order, spacing and quotation marks (equal)'
453 );
454
455 assert.notHtmlEqual(
456 '<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>',
457 '<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>',
458 'Attribute order, spacing and quotation marks (not equal)'
459 );
460
461 assert.htmlEqual(
462 '<label for="firstname" accesskey="f" class="important">First</label><input id="firstname" /><label for="lastname" accesskey="l" class="minor">Last</label><input id="lastname" />',
463 '<label for="firstname" accesskey="f" class="important">First</label><input id="firstname" /><label for="lastname" accesskey="l" class="minor">Last</label><input id="lastname" />',
464 'Multiple root nodes (equal)'
465 );
466
467 assert.notHtmlEqual(
468 '<label for="firstname" accesskey="f" class="important">First</label><input id="firstname" /><label for="lastname" accesskey="l" class="minor">Last</label><input id="lastname" />',
469 '<label for="firstname" accesskey="f" class="important">First</label><input id="firstname" /><label for="lastname" accesskey="l" class="important" >Last</label><input id="lastname" />',
470 'Multiple root nodes (not equal, last label node is different)'
471 );
472
473 assert.htmlEqual(
474 'fo&quot;o<br/>b&gt;ar',
475 'fo"o<br/>b>ar',
476 'Extra escaping is equal'
477 );
478 assert.notHtmlEqual(
479 'foo&lt;br/&gt;bar',
480 'foo<br/>bar',
481 'Text escaping (not equal)'
482 );
483
484 assert.htmlEqual(
485 'foo<a href="http://example.com">example</a>bar',
486 'foo<a href="http://example.com">example</a>bar',
487 'Outer text nodes are compared (equal)'
488 );
489
490 assert.notHtmlEqual(
491 'foo<a href="http://example.com">example</a>bar',
492 'foo<a href="http://example.com">example</a>quux',
493 'Outer text nodes are compared (last text node different)'
494 );
495
496 } );
497
498 QUnit.module( 'test.mediawiki.qunit.testrunner-after', QUnit.newMwEnvironment() );
499
500 QUnit.test( 'Teardown', 3, function ( assert ) {
501 assert.equal( mw.html.escape( '<' ), '&lt;', 'teardown() callback was ran.' );
502 assert.equal( mw.config.get( 'testVar' ), null, 'config object restored to live in next module()' );
503 assert.equal( mw.messages.get( 'testMsg' ), null, 'messages object restored to live in next module()' );
504 } );
505
506 }( jQuery, mediaWiki, QUnit ) );