Merge "Fixes for e288e4036"
[lhc/web/wiklou.git] / tests / qunit / suites / resources / mediawiki / mediawiki.test.js
1 ( function ( mw, $ ) {
2 var specialCharactersPageName;
3
4 // Since QUnitTestResources.php loads both mediawiki and mediawiki.jqueryMsg as
5 // dependencies, this only tests the monkey-patched behavior with the two of them combined.
6
7 // See mediawiki.jqueryMsg.test.js for unit tests for jqueryMsg-specific functionality.
8
9 QUnit.module( 'mediawiki', QUnit.newMwEnvironment( {
10 setup: function () {
11 // Messages used in multiple tests
12 mw.messages.set( {
13 'other-message': 'Other Message',
14 'mediawiki-test-pagetriage-del-talk-page-notify-summary': 'Notifying author of deletion nomination for [[$1]]',
15 'gender-plural-msg': '{{GENDER:$1|he|she|they}} {{PLURAL:$2|is|are}} awesome',
16 'grammar-msg': 'Przeszukaj {{GRAMMAR:grammar_case_foo|{{SITENAME}}}}',
17 'formatnum-msg': '{{formatnum:$1}}',
18 'int-msg': 'Some {{int:other-message}}'
19 } );
20
21 // For formatnum tests
22 mw.config.set( 'wgUserLanguage', 'en' );
23
24 specialCharactersPageName = '"Who" wants to be a millionaire & live on \'Exotic Island\'?';
25 }
26 } ) );
27
28 QUnit.test( 'Initial check', 8, function ( assert ) {
29 assert.ok( window.jQuery, 'jQuery defined' );
30 assert.ok( window.$, '$j defined' );
31 assert.ok( window.$j, '$j defined' );
32 assert.strictEqual( window.$, window.jQuery, '$ alias to jQuery' );
33 assert.strictEqual( window.$j, window.jQuery, '$j alias to jQuery' );
34
35 assert.ok( window.mediaWiki, 'mediaWiki defined' );
36 assert.ok( window.mw, 'mw defined' );
37 assert.strictEqual( window.mw, window.mediaWiki, 'mw alias to mediaWiki' );
38 } );
39
40 QUnit.test( 'mw.Map', 27, function ( assert ) {
41 var arry, conf, funky, globalConf, nummy, someValues;
42
43 conf = new mw.Map();
44 // Dummy variables
45 funky = function () {};
46 arry = [];
47 nummy = 7;
48
49 // Single get and set
50
51 assert.strictEqual( conf.set( 'foo', 'Bar' ), true, 'Map.set returns boolean true if a value was set for a valid key string' );
52 assert.equal( conf.get( 'foo' ), 'Bar', 'Map.get returns a single value value correctly' );
53
54 assert.strictEqual( conf.get( 'example' ), null, 'Map.get returns null if selection was a string and the key was not found' );
55 assert.strictEqual( conf.get( 'example', arry ), arry, 'Map.get returns fallback by reference if the key was not found' );
56 assert.strictEqual( conf.get( 'example', undefined ), undefined, 'Map.get supports `undefined` as fallback instead of `null`' );
57
58 assert.strictEqual( conf.get( 'constructor' ), null, 'Map.get does not look at Object.prototype of internal storage (constructor)' );
59 assert.strictEqual( conf.get( 'hasOwnProperty' ), null, 'Map.get does not look at Object.prototype of internal storage (hasOwnProperty)' );
60
61 conf.set( 'hasOwnProperty', function () { return true; } );
62 assert.strictEqual( conf.get( 'example', 'missing' ), 'missing', 'Map.get uses neutral hasOwnProperty method (positive)' );
63
64 conf.set( 'example', 'Foo' );
65 conf.set( 'hasOwnProperty', function () { return false; } );
66 assert.strictEqual( conf.get( 'example' ), 'Foo', 'Map.get uses neutral hasOwnProperty method (negative)' );
67
68 assert.strictEqual( conf.set( 'constructor', 42 ), true, 'Map.set for key "constructor"' );
69 assert.strictEqual( conf.get( 'constructor' ), 42, 'Map.get for key "constructor"' );
70
71 assert.strictEqual( conf.set( 'ImUndefined', undefined ), true, 'Map.set allows setting value to `undefined`' );
72 assert.equal( conf.get( 'ImUndefined', 'fallback' ), undefined , 'Map.get supports retreiving value of `undefined`' );
73
74 assert.strictEqual( conf.set( funky, 'Funky' ), false, 'Map.set returns boolean false if key was invalid (Function)' );
75 assert.strictEqual( conf.set( arry, 'Arry' ), false, 'Map.set returns boolean false if key was invalid (Array)' );
76 assert.strictEqual( conf.set( nummy, 'Nummy' ), false, 'Map.set returns boolean false if key was invalid (Number)' );
77
78 assert.strictEqual( conf.get( funky ), null, 'Map.get ruturns null if selection was invalid (Function)' );
79 assert.strictEqual( conf.get( nummy ), null, 'Map.get ruturns null if selection was invalid (Number)' );
80
81 conf.set( String( nummy ), 'I used to be a number' );
82
83 assert.strictEqual( conf.exists( 'doesNotExist' ), false, 'Map.exists where property does not exist' );
84 assert.strictEqual( conf.exists( 'ImUndefined' ), true, 'Map.exists where value is `undefined`' );
85 assert.strictEqual( conf.exists( nummy ), false, 'Map.exists where key is invalid but looks like an existing key' );
86
87 // Multiple values at once
88 someValues = {
89 'foo': 'bar',
90 'lorem': 'ipsum',
91 'MediaWiki': true
92 };
93 assert.strictEqual( conf.set( someValues ), true, 'Map.set returns boolean true if multiple values were set by passing an object' );
94 assert.deepEqual( conf.get( ['foo', 'lorem'] ), {
95 'foo': 'bar',
96 'lorem': 'ipsum'
97 }, 'Map.get returns multiple values correctly as an object' );
98
99 assert.deepEqual( conf.get( ['foo', 'notExist'] ), {
100 'foo': 'bar',
101 'notExist': null
102 }, 'Map.get return includes keys that were not found as null values' );
103
104
105 // Interacting with globals and accessing the values object
106 assert.strictEqual( conf.get(), conf.values, 'Map.get returns the entire values object by reference (if called without arguments)' );
107
108 conf.set( 'globalMapChecker', 'Hi' );
109
110 assert.ok( 'globalMapChecker' in window === false, 'new mw.Map did not store its values in the global window object by default' );
111
112 globalConf = new mw.Map( true );
113 globalConf.set( 'anotherGlobalMapChecker', 'Hello' );
114
115 assert.ok( 'anotherGlobalMapChecker' in window, 'new mw.Map( true ) did store its values in the global window object' );
116
117 // Whitelist this global variable for QUnit's 'noglobal' mode
118 if ( QUnit.config.noglobals ) {
119 QUnit.config.pollution.push( 'anotherGlobalMapChecker' );
120 }
121 } );
122
123 QUnit.test( 'mw.config', 1, function ( assert ) {
124 assert.ok( mw.config instanceof mw.Map, 'mw.config instance of mw.Map' );
125 } );
126
127 QUnit.test( 'mw.message & mw.messages', 54, function ( assert ) {
128 var goodbye, hello;
129
130 // Convenience method for asserting the same result for multiple formats
131 function assertMultipleFormats( messageArguments, formats, expectedResult, assertMessage ) {
132 var len = formats.length, format, i;
133 for ( i = 0; i < len; i++ ) {
134 format = formats[i];
135 assert.equal( mw.message.apply( null, messageArguments )[format](), expectedResult, assertMessage + ' when format is ' + format );
136 }
137 }
138
139 assert.ok( mw.messages, 'messages defined' );
140 assert.ok( mw.messages instanceof mw.Map, 'mw.messages instance of mw.Map' );
141 assert.ok( mw.messages.set( 'hello', 'Hello <b>awesome</b> world' ), 'mw.messages.set: Register' );
142
143 hello = mw.message( 'hello' );
144
145 // https://bugzilla.wikimedia.org/show_bug.cgi?id=44459
146 assert.equal( hello.format, 'text', 'Message property "format" defaults to "text"' );
147
148 assert.strictEqual( hello.map, mw.messages, 'Message property "map" defaults to the global instance in mw.messages' );
149 assert.equal( hello.key, 'hello', 'Message property "key" (currect key)' );
150 assert.deepEqual( hello.parameters, [], 'Message property "parameters" defaults to an empty array' );
151
152 // Todo
153 assert.ok( hello.params, 'Message prototype "params"' );
154
155 hello.format = 'plain';
156 assert.equal( hello.toString(), 'Hello <b>awesome</b> world', 'Message.toString returns the message as a string with the current "format"' );
157
158 assert.equal( hello.escaped(), 'Hello &lt;b&gt;awesome&lt;/b&gt; world', 'Message.escaped returns the escaped message' );
159 assert.equal( hello.format, 'escaped', 'Message.escaped correctly updated the "format" property' );
160
161 assert.ok( mw.messages.set( 'escaped-with-curly-brace', '"{{SITENAME}}" is the home of {{int:other-message}}' ) );
162 assert.equal( mw.message( 'escaped-with-curly-brace' ).escaped(), mw.html.escape( '"' + mw.config.get( 'wgSiteName' ) + '" is the home of Other Message' ), 'Escaped format works correctly for curly brace message' );
163
164 assert.ok( mw.messages.set( 'escaped-with-square-brackets', 'Visit the [[Project:Community portal|community portal]] & [[Project:Help desk|help desk]]' ) );
165 assert.equal( mw.message( 'escaped-with-square-brackets' ).escaped(), 'Visit the [[Project:Community portal|community portal]] &amp; [[Project:Help desk|help desk]]', 'Escaped format works correctly for square bracket message' );
166
167 hello.parse();
168 assert.equal( hello.format, 'parse', 'Message.parse correctly updated the "format" property' );
169
170 hello.plain();
171 assert.equal( hello.format, 'plain', 'Message.plain correctly updated the "format" property' );
172
173 hello.text();
174 assert.equal( hello.format, 'text', 'Message.text correctly updated the "format" property' );
175
176 assert.strictEqual( hello.exists(), true, 'Message.exists returns true for existing messages' );
177
178 goodbye = mw.message( 'goodbye' );
179 assert.strictEqual( goodbye.exists(), false, 'Message.exists returns false for nonexistent messages' );
180
181 assertMultipleFormats( ['goodbye'], ['plain', 'text'], '<goodbye>', 'Message.toString returns <key> if key does not exist' );
182 // bug 30684
183 assertMultipleFormats( ['goodbye'], ['parse', 'escaped'], '&lt;goodbye&gt;', 'Message.toString returns properly escaped &lt;key&gt; if key does not exist' );
184
185 assert.ok( mw.messages.set( 'plural-test-msg', 'There {{PLURAL:$1|is|are}} $1 {{PLURAL:$1|result|results}}' ), 'mw.messages.set: Register' );
186 assertMultipleFormats( ['plural-test-msg', 6], ['text', 'parse', 'escaped'], 'There are 6 results', 'plural get resolved' );
187 assert.equal( mw.message( 'plural-test-msg', 6 ).plain(), 'There {{PLURAL:6|is|are}} 6 {{PLURAL:6|result|results}}', 'Parameter is substituted but plural is not resolved in plain' );
188
189 assertMultipleFormats( ['mediawiki-test-pagetriage-del-talk-page-notify-summary'], ['plain', 'text'], mw.messages.get( 'mediawiki-test-pagetriage-del-talk-page-notify-summary' ), 'Double square brackets with no parameters unchanged' );
190
191 assertMultipleFormats( ['mediawiki-test-pagetriage-del-talk-page-notify-summary', specialCharactersPageName], ['plain', 'text'], 'Notifying author of deletion nomination for [[' + specialCharactersPageName + ']]', 'Double square brackets with one parameter' );
192
193 assert.equal( mw.message( 'mediawiki-test-pagetriage-del-talk-page-notify-summary', specialCharactersPageName ).escaped(), 'Notifying author of deletion nomination for [[' + mw.html.escape( specialCharactersPageName ) + ']]', 'Double square brackets with one parameter, when escaped' );
194
195
196 assert.ok( mw.messages.set( 'mediawiki-test-categorytree-collapse-bullet', '[<b>−</b>]' ), 'mw.messages.set: Register' );
197 assert.equal( mw.message( 'mediawiki-test-categorytree-collapse-bullet' ).plain(), mw.messages.get( 'mediawiki-test-categorytree-collapse-bullet' ), 'Single square brackets unchanged in plain mode' );
198
199 assert.ok( mw.messages.set( 'mediawiki-test-wikieditor-toolbar-help-content-signature-result', '<a href=\'#\' title=\'{{#special:mypage}}\'>Username</a> (<a href=\'#\' title=\'{{#special:mytalk}}\'>talk</a>)' ) );
200 assert.equal( mw.message( 'mediawiki-test-wikieditor-toolbar-help-content-signature-result' ).plain(), mw.messages.get( 'mediawiki-test-wikieditor-toolbar-help-content-signature-result' ), 'HTML message with curly braces is not changed in plain mode' );
201
202 assertMultipleFormats( ['gender-plural-msg', 'male', 1], ['text', 'parse', 'escaped'], 'he is awesome', 'Gender and plural are resolved' );
203 assert.equal( mw.message( 'gender-plural-msg', 'male', 1 ).plain(), '{{GENDER:male|he|she|they}} {{PLURAL:1|is|are}} awesome', 'Parameters are substituted, but gender and plural are not resolved in plain mode' );
204
205 assert.equal( mw.message( 'grammar-msg' ).plain(), mw.messages.get( 'grammar-msg' ), 'Grammar is not resolved in plain mode' );
206 assertMultipleFormats( ['grammar-msg'], ['text', 'parse'], 'Przeszukaj ' + mw.config.get( 'wgSiteName' ), 'Grammar is resolved' );
207 assert.equal( mw.message( 'grammar-msg' ).escaped(), 'Przeszukaj ' + mw.html.escape( mw.config.get( 'wgSiteName' ) ), 'Grammar is resolved in escaped mode' );
208
209 assertMultipleFormats( ['formatnum-msg', '987654321.654321'], ['text', 'parse', 'escaped'], '987,654,321.654', 'formatnum is resolved' );
210 assert.equal( mw.message( 'formatnum-msg' ).plain(), mw.messages.get( 'formatnum-msg' ), 'formatnum is not resolved in plain mode' );
211
212 assertMultipleFormats( ['int-msg'], ['text', 'parse', 'escaped'], 'Some Other Message', 'int is resolved' );
213 assert.equal( mw.message( 'int-msg' ).plain(), mw.messages.get( 'int-msg' ), 'int is not resolved in plain mode' );
214 } );
215
216 QUnit.test( 'mw.msg', 14, function ( assert ) {
217 assert.ok( mw.messages.set( 'hello', 'Hello <b>awesome</b> world' ), 'mw.messages.set: Register' );
218 assert.equal( mw.msg( 'hello' ), 'Hello <b>awesome</b> world', 'Gets message with default options (existing message)' );
219 assert.equal( mw.msg( 'goodbye' ), '<goodbye>', 'Gets message with default options (nonexistent message)' );
220
221 assert.ok( mw.messages.set( 'plural-item', 'Found $1 {{PLURAL:$1|item|items}}' ) );
222 assert.equal( mw.msg( 'plural-item', 5 ), 'Found 5 items', 'Apply plural for count 5' );
223 assert.equal( mw.msg( 'plural-item', 0 ), 'Found 0 items', 'Apply plural for count 0' );
224 assert.equal( mw.msg( 'plural-item', 1 ), 'Found 1 item', 'Apply plural for count 1' );
225
226 assert.equal( mw.msg( 'mediawiki-test-pagetriage-del-talk-page-notify-summary', specialCharactersPageName ), 'Notifying author of deletion nomination for [[' + specialCharactersPageName + ']]', 'Double square brackets in mw.msg one parameter' );
227
228 assert.equal( mw.msg( 'gender-plural-msg', 'male', 1 ), 'he is awesome', 'Gender test for male, plural count 1' );
229 assert.equal( mw.msg( 'gender-plural-msg', 'female', '1' ), 'she is awesome', 'Gender test for female, plural count 1' );
230 assert.equal( mw.msg( 'gender-plural-msg', 'unknown', 10 ), 'they are awesome', 'Gender test for neutral, plural count 10' );
231
232 assert.equal( mw.msg( 'grammar-msg' ), 'Przeszukaj ' + mw.config.get( 'wgSiteName' ), 'Grammar is resolved' );
233
234 assert.equal( mw.msg( 'formatnum-msg', '987654321.654321' ), '987,654,321.654', 'formatnum is resolved' );
235
236 assert.equal( mw.msg( 'int-msg' ), 'Some Other Message', 'int is resolved' );
237 } );
238
239 /**
240 * The sync style load test (for @import). This is, in a way, also an open bug for
241 * ResourceLoader ("execute js after styles are loaded"), but browsers don't offer a
242 * way to get a callback from when a stylesheet is loaded (that is, including any
243 * @import rules inside). To work around this, we'll have a little time loop to check
244 * if the styles apply.
245 * Note: This test originally used new Image() and onerror to get a callback
246 * when the url is loaded, but that is fragile since it doesn't monitor the
247 * same request as the css @import, and Safari 4 has issues with
248 * onerror/onload not being fired at all in weird cases like this.
249 */
250 function assertStyleAsync( assert, $element, prop, val, fn ) {
251 var styleTestStart,
252 el = $element.get( 0 ),
253 styleTestTimeout = ( QUnit.config.testTimeout - 200 ) || 5000;
254
255 function isCssImportApplied() {
256 // Trigger reflow, repaint, redraw, whatever (cross-browser)
257 var x = $element.css( 'height' );
258 x = el.innerHTML;
259 el.className = el.className;
260 x = document.documentElement.clientHeight;
261
262 return $element.css( prop ) === val;
263 }
264
265 function styleTestLoop() {
266 var styleTestSince = new Date().getTime() - styleTestStart;
267 // If it is passing or if we timed out, run the real test and stop the loop
268 if ( isCssImportApplied() || styleTestSince > styleTestTimeout ) {
269 assert.equal( $element.css( prop ), val,
270 'style "' + prop + ': ' + val + '" from url is applied (after ' + styleTestSince + 'ms)'
271 );
272
273 if ( fn ) {
274 fn();
275 }
276
277 return;
278 }
279 // Otherwise, keep polling
280 setTimeout( styleTestLoop, 150 );
281 }
282
283 // Start the loop
284 styleTestStart = new Date().getTime();
285 styleTestLoop();
286 }
287
288 function urlStyleTest( selector, prop, val ) {
289 return QUnit.fixurl(
290 mw.config.get( 'wgScriptPath' ) +
291 '/tests/qunit/data/styleTest.css.php?' +
292 $.param( {
293 selector: selector,
294 prop: prop,
295 val: val
296 } )
297 );
298 }
299
300 QUnit.asyncTest( 'mw.loader', 2, function ( assert ) {
301 var isAwesomeDone;
302
303 mw.loader.testCallback = function () {
304 QUnit.start();
305 assert.strictEqual( isAwesomeDone, undefined, 'Implementing module is.awesome: isAwesomeDone should still be undefined' );
306 isAwesomeDone = true;
307 };
308
309 mw.loader.implement( 'test.callback', [QUnit.fixurl( mw.config.get( 'wgScriptPath' ) + '/tests/qunit/data/callMwLoaderTestCallback.js' )], {}, {} );
310
311 mw.loader.using( 'test.callback', function () {
312
313 // /sample/awesome.js declares the "mw.loader.testCallback" function
314 // which contains a call to start() and ok()
315 assert.strictEqual( isAwesomeDone, true, 'test.callback module should\'ve caused isAwesomeDone to be true' );
316 delete mw.loader.testCallback;
317
318 }, function () {
319 QUnit.start();
320 assert.ok( false, 'Error callback fired while loader.using "test.callback" module' );
321 } );
322 } );
323
324 QUnit.test( 'mw.loader.implement( styles={ "css": [text, ..] } )', 2, function ( assert ) {
325 var $element = $( '<div class="mw-test-implement-a"></div>' ).appendTo( '#qunit-fixture' );
326
327 assert.notEqual(
328 $element.css( 'float' ),
329 'right',
330 'style is clear'
331 );
332
333 mw.loader.implement(
334 'test.implement.a',
335 function () {
336 QUnit.stop();
337 setTimeout(function () {
338 assert.equal(
339 $element.css( 'float' ),
340 'right',
341 'style is applied'
342 );
343 QUnit.start();
344 });
345 },
346 {
347 'all': '.mw-test-implement-a { float: right; }'
348 },
349 {}
350 );
351
352 mw.loader.load( [
353 'test.implement.a'
354 ] );
355 } );
356
357 QUnit.asyncTest( 'mw.loader.implement( styles={ "url": { <media>: [url, ..] } } )', 7, function ( assert ) {
358 var $element1 = $( '<div class="mw-test-implement-b1"></div>' ).appendTo( '#qunit-fixture' ),
359 $element2 = $( '<div class="mw-test-implement-b2"></div>' ).appendTo( '#qunit-fixture' ),
360 $element3 = $( '<div class="mw-test-implement-b3"></div>' ).appendTo( '#qunit-fixture' );
361
362 assert.notEqual(
363 $element1.css( 'text-align' ),
364 'center',
365 'style is clear'
366 );
367 assert.notEqual(
368 $element2.css( 'float' ),
369 'left',
370 'style is clear'
371 );
372 assert.notEqual(
373 $element3.css( 'text-align' ),
374 'right',
375 'style is clear'
376 );
377
378 mw.loader.implement(
379 'test.implement.b',
380 function () {
381 // Note: QUnit.start() must only be called when the entire test is
382 // complete. So, make sure that we don't start until *both*
383 // assertStyleAsync calls have completed.
384 var pending = 2;
385 assertStyleAsync( assert, $element2, 'float', 'left', function () {
386 assert.notEqual( $element1.css( 'text-align' ), 'center', 'print style is not applied' );
387
388 pending--;
389 if ( pending === 0 ) {
390 QUnit.start();
391 }
392 } );
393 assertStyleAsync( assert, $element3, 'float', 'right', function () {
394 assert.notEqual( $element1.css( 'text-align' ), 'center', 'print style is not applied' );
395
396 pending--;
397 if ( pending === 0 ) {
398 QUnit.start();
399 }
400 } );
401 },
402 {
403 'url': {
404 'print': [urlStyleTest( '.mw-test-implement-b1', 'text-align', 'center' )],
405 'screen': [
406 // bug 40834: Make sure it actually works with more than 1 stylesheet reference
407 urlStyleTest( '.mw-test-implement-b2', 'float', 'left' ),
408 urlStyleTest( '.mw-test-implement-b3', 'float', 'right' )
409 ]
410 }
411 },
412 {}
413 );
414
415 mw.loader.load( [
416 'test.implement.b'
417 ] );
418 } );
419
420 // Backwards compatibility
421 QUnit.test( 'mw.loader.implement( styles={ <media>: text } ) (back-compat)', 2, function ( assert ) {
422 var $element = $( '<div class="mw-test-implement-c"></div>' ).appendTo( '#qunit-fixture' );
423
424 assert.notEqual(
425 $element.css( 'float' ),
426 'right',
427 'style is clear'
428 );
429
430 mw.loader.implement(
431 'test.implement.c',
432 function () {
433 QUnit.stop();
434 setTimeout(function () {
435 assert.equal(
436 $element.css( 'float' ),
437 'right',
438 'style is applied'
439 );
440 QUnit.start();
441 });
442 },
443 {
444 'all': '.mw-test-implement-c { float: right; }'
445 },
446 {}
447 );
448
449 mw.loader.load( [
450 'test.implement.c'
451 ] );
452 } );
453
454 // Backwards compatibility
455 QUnit.asyncTest( 'mw.loader.implement( styles={ <media>: [url, ..] } ) (back-compat)', 4, function ( assert ) {
456 var $element = $( '<div class="mw-test-implement-d"></div>' ).appendTo( '#qunit-fixture' ),
457 $element2 = $( '<div class="mw-test-implement-d2"></div>' ).appendTo( '#qunit-fixture' );
458
459 assert.notEqual(
460 $element.css( 'float' ),
461 'right',
462 'style is clear'
463 );
464 assert.notEqual(
465 $element2.css( 'text-align' ),
466 'center',
467 'style is clear'
468 );
469
470 mw.loader.implement(
471 'test.implement.d',
472 function () {
473 assertStyleAsync( assert, $element, 'float', 'right', function () {
474
475 assert.notEqual( $element2.css( 'text-align' ), 'center', 'print style is not applied (bug 40500)' );
476
477 QUnit.start();
478 } );
479 },
480 {
481 'all': [urlStyleTest( '.mw-test-implement-d', 'float', 'right' )],
482 'print': [urlStyleTest( '.mw-test-implement-d2', 'text-align', 'center' )]
483 },
484 {}
485 );
486
487 mw.loader.load( [
488 'test.implement.d'
489 ] );
490 } );
491
492 // @import (bug 31676)
493 QUnit.asyncTest( 'mw.loader.implement( styles has @import)', 5, function ( assert ) {
494 var isJsExecuted, $element;
495
496 mw.loader.implement(
497 'test.implement.import',
498 function () {
499 assert.strictEqual( isJsExecuted, undefined, 'javascript not executed multiple times' );
500 isJsExecuted = true;
501
502 assert.equal( mw.loader.getState( 'test.implement.import' ), 'ready', 'module state is "ready" while implement() is executing javascript' );
503
504 $element = $( '<div class="mw-test-implement-import">Foo bar</div>' ).appendTo( '#qunit-fixture' );
505
506 assert.equal( mw.msg( 'test-foobar' ), 'Hello Foobar, $1!', 'Messages are loaded before javascript execution' );
507
508 assertStyleAsync( assert, $element, 'float', 'right', function () {
509 assert.equal( $element.css( 'text-align' ), 'center',
510 'CSS styles after the @import rule are working'
511 );
512
513 QUnit.start();
514 } );
515 },
516 {
517 'css': [
518 '@import url(\''
519 + urlStyleTest( '.mw-test-implement-import', 'float', 'right' )
520 + '\');\n'
521 + '.mw-test-implement-import { text-align: center; }'
522 ]
523 },
524 {
525 'test-foobar': 'Hello Foobar, $1!'
526 }
527 );
528
529 mw.loader.load( 'test.implement' );
530
531 } );
532
533 QUnit.asyncTest( 'mw.loader.implement( only messages )', 2, function ( assert ) {
534 assert.assertFalse( mw.messages.exists( 'bug_29107' ), 'Verify that the test message doesn\'t exist yet' );
535
536 mw.loader.implement( 'test.implement.msgs', [], {}, { 'bug_29107': 'loaded' } );
537 mw.loader.using( 'test.implement.msgs', function () {
538 QUnit.start();
539 assert.ok( mw.messages.exists( 'bug_29107' ), 'Bug 29107: messages-only module should implement ok' );
540 }, function () {
541 QUnit.start();
542 assert.ok( false, 'Error callback fired while implementing "test.implement.msgs" module' );
543 } );
544 } );
545
546 QUnit.test( 'mw.loader erroneous indirect dependency', 3, function ( assert ) {
547 mw.loader.register( [
548 ['test.module1', '0'],
549 ['test.module2', '0', ['test.module1']],
550 ['test.module3', '0', ['test.module2']]
551 ] );
552 mw.loader.implement( 'test.module1', function () {
553 throw new Error( 'expected' );
554 }, {}, {} );
555 assert.strictEqual( mw.loader.getState( 'test.module1' ), 'error', 'Expected "error" state for test.module1' );
556 assert.strictEqual( mw.loader.getState( 'test.module2' ), 'error', 'Expected "error" state for test.module2' );
557 assert.strictEqual( mw.loader.getState( 'test.module3' ), 'error', 'Expected "error" state for test.module3' );
558 } );
559
560 QUnit.test( 'mw.loader out-of-order implementation', 9, function ( assert ) {
561 mw.loader.register( [
562 ['test.module4', '0'],
563 ['test.module5', '0', ['test.module4']],
564 ['test.module6', '0', ['test.module5']]
565 ] );
566 mw.loader.implement( 'test.module4', function () {
567 }, {}, {} );
568 assert.strictEqual( mw.loader.getState( 'test.module4' ), 'ready', 'Expected "ready" state for test.module4' );
569 assert.strictEqual( mw.loader.getState( 'test.module5' ), 'registered', 'Expected "registered" state for test.module5' );
570 assert.strictEqual( mw.loader.getState( 'test.module6' ), 'registered', 'Expected "registered" state for test.module6' );
571 mw.loader.implement( 'test.module6', function () {
572 }, {}, {} );
573 assert.strictEqual( mw.loader.getState( 'test.module4' ), 'ready', 'Expected "ready" state for test.module4' );
574 assert.strictEqual( mw.loader.getState( 'test.module5' ), 'registered', 'Expected "registered" state for test.module5' );
575 assert.strictEqual( mw.loader.getState( 'test.module6' ), 'loaded', 'Expected "loaded" state for test.module6' );
576 mw.loader.implement( 'test.module5', function () {
577 }, {}, {} );
578 assert.strictEqual( mw.loader.getState( 'test.module4' ), 'ready', 'Expected "ready" state for test.module4' );
579 assert.strictEqual( mw.loader.getState( 'test.module5' ), 'ready', 'Expected "ready" state for test.module5' );
580 assert.strictEqual( mw.loader.getState( 'test.module6' ), 'ready', 'Expected "ready" state for test.module6' );
581 } );
582
583 QUnit.test( 'mw.loader missing dependency', 13, function ( assert ) {
584 mw.loader.register( [
585 ['test.module7', '0'],
586 ['test.module8', '0', ['test.module7']],
587 ['test.module9', '0', ['test.module8']]
588 ] );
589 mw.loader.implement( 'test.module8', function () {
590 }, {}, {} );
591 assert.strictEqual( mw.loader.getState( 'test.module7' ), 'registered', 'Expected "registered" state for test.module7' );
592 assert.strictEqual( mw.loader.getState( 'test.module8' ), 'loaded', 'Expected "loaded" state for test.module8' );
593 assert.strictEqual( mw.loader.getState( 'test.module9' ), 'registered', 'Expected "registered" state for test.module9' );
594 mw.loader.state( 'test.module7', 'missing' );
595 assert.strictEqual( mw.loader.getState( 'test.module7' ), 'missing', 'Expected "missing" state for test.module7' );
596 assert.strictEqual( mw.loader.getState( 'test.module8' ), 'error', 'Expected "error" state for test.module8' );
597 assert.strictEqual( mw.loader.getState( 'test.module9' ), 'error', 'Expected "error" state for test.module9' );
598 mw.loader.implement( 'test.module9', function () {
599 }, {}, {} );
600 assert.strictEqual( mw.loader.getState( 'test.module7' ), 'missing', 'Expected "missing" state for test.module7' );
601 assert.strictEqual( mw.loader.getState( 'test.module8' ), 'error', 'Expected "error" state for test.module8' );
602 assert.strictEqual( mw.loader.getState( 'test.module9' ), 'error', 'Expected "error" state for test.module9' );
603 mw.loader.using(
604 ['test.module7'],
605 function () {
606 assert.ok( false, 'Success fired despite missing dependency' );
607 assert.ok( true, 'QUnit expected() count dummy' );
608 },
609 function ( e, dependencies ) {
610 assert.strictEqual( $.isArray( dependencies ), true, 'Expected array of dependencies' );
611 assert.deepEqual( dependencies, ['test.module7'], 'Error callback called with module test.module7' );
612 }
613 );
614 mw.loader.using(
615 ['test.module9'],
616 function () {
617 assert.ok( false, 'Success fired despite missing dependency' );
618 assert.ok( true, 'QUnit expected() count dummy' );
619 },
620 function ( e, dependencies ) {
621 assert.strictEqual( $.isArray( dependencies ), true, 'Expected array of dependencies' );
622 dependencies.sort();
623 assert.deepEqual(
624 dependencies,
625 ['test.module7', 'test.module8', 'test.module9'],
626 'Error callback called with all three modules as dependencies'
627 );
628 }
629 );
630 } );
631
632 QUnit.asyncTest( 'mw.loader dependency handling', 5, function ( assert ) {
633 mw.loader.addSource(
634 'testloader',
635 {
636 loadScript: QUnit.fixurl( mw.config.get( 'wgScriptPath' ) + '/tests/qunit/data/load.mock.php' )
637 }
638 );
639
640 mw.loader.register( [
641 // [module, version, dependencies, group, source]
642 ['testMissing', '1', [], null, 'testloader'],
643 ['testUsesMissing', '1', ['testMissing'], null, 'testloader'],
644 ['testUsesNestedMissing', '1', ['testUsesMissing'], null, 'testloader']
645 ] );
646
647 function verifyModuleStates() {
648 assert.equal( mw.loader.getState( 'testMissing' ), 'missing', 'Module not known to server must have state "missing"' );
649 assert.equal( mw.loader.getState( 'testUsesMissing' ), 'error', 'Module with missing dependency must have state "error"' );
650 assert.equal( mw.loader.getState( 'testUsesNestedMissing' ), 'error', 'Module with indirect missing dependency must have state "error"' );
651 }
652
653 mw.loader.using( ['testUsesNestedMissing'],
654 function () {
655 assert.ok( false, 'Error handler should be invoked.' );
656 assert.ok( true ); // Dummy to reach QUnit expect()
657
658 verifyModuleStates();
659
660 QUnit.start();
661 },
662 function ( e, badmodules ) {
663 assert.ok( true, 'Error handler should be invoked.' );
664 // As soon as server spits out state('testMissing', 'missing');
665 // it will bubble up and trigger the error callback.
666 // Therefor the badmodules array is not testUsesMissing or testUsesNestedMissing.
667 assert.deepEqual( badmodules, ['testMissing'], 'Bad modules as expected.' );
668
669 verifyModuleStates();
670
671 QUnit.start();
672 }
673 );
674 } );
675
676 QUnit.asyncTest( 'mw.loader( "//protocol-relative" ) (bug 30825)', 2, function ( assert ) {
677 // This bug was actually already fixed in 1.18 and later when discovered in 1.17.
678 // Test is for regressions!
679
680 // Forge an URL to the test callback script
681 var target = QUnit.fixurl(
682 mw.config.get( 'wgServer' ) + mw.config.get( 'wgScriptPath' ) + '/tests/qunit/data/qunitOkCall.js'
683 );
684
685 // Confirm that mw.loader.load() works with protocol-relative URLs
686 target = target.replace( /https?:/, '' );
687
688 assert.equal( target.substr( 0, 2 ), '//',
689 'URL must be relative to test relative URLs!'
690 );
691
692 // Async!
693 // The target calls QUnit.start
694 mw.loader.load( target );
695 } );
696
697 QUnit.test( 'mw.html', 13, function ( assert ) {
698 assert.throws( function () {
699 mw.html.escape();
700 }, TypeError, 'html.escape throws a TypeError if argument given is not a string' );
701
702 assert.equal( mw.html.escape( '<mw awesome="awesome" value=\'test\' />' ),
703 '&lt;mw awesome=&quot;awesome&quot; value=&#039;test&#039; /&gt;', 'escape() escapes special characters to html entities' );
704
705 assert.equal( mw.html.element(),
706 '<undefined/>', 'element() always returns a valid html string (even without arguments)' );
707
708 assert.equal( mw.html.element( 'div' ), '<div/>', 'element() Plain DIV (simple)' );
709
710 assert.equal( mw.html.element( 'div', {}, '' ), '<div></div>', 'element() Basic DIV (simple)' );
711
712 assert.equal(
713 mw.html.element(
714 'div', {
715 id: 'foobar'
716 }
717 ),
718 '<div id="foobar"/>',
719 'html.element DIV (attribs)' );
720
721 assert.equal( mw.html.element( 'p', null, 12 ), '<p>12</p>', 'Numbers are valid content and should be casted to a string' );
722
723 assert.equal( mw.html.element( 'p', { title: 12 }, '' ), '<p title="12"></p>', 'Numbers are valid attribute values' );
724
725 // Example from https://www.mediawiki.org/wiki/ResourceLoader/Default_modules#mediaWiki.html
726 assert.equal(
727 mw.html.element(
728 'div',
729 {},
730 new mw.html.Raw(
731 mw.html.element( 'img', { src: '<' } )
732 )
733 ),
734 '<div><img src="&lt;"/></div>',
735 'Raw inclusion of another element'
736 );
737
738 assert.equal(
739 mw.html.element(
740 'option', {
741 selected: true
742 }, 'Foo'
743 ),
744 '<option selected="selected">Foo</option>',
745 'Attributes may have boolean values. True copies the attribute name to the value.'
746 );
747
748 assert.equal(
749 mw.html.element(
750 'option', {
751 value: 'foo',
752 selected: false
753 }, 'Foo'
754 ),
755 '<option value="foo">Foo</option>',
756 'Attributes may have boolean values. False keeps the attribute from output.'
757 );
758
759 assert.equal( mw.html.element( 'div',
760 null, 'a' ),
761 '<div>a</div>',
762 'html.element DIV (content)' );
763
764 assert.equal( mw.html.element( 'a',
765 { href: 'http://mediawiki.org/w/index.php?title=RL&action=history' }, 'a' ),
766 '<a href="http://mediawiki.org/w/index.php?title=RL&amp;action=history">a</a>',
767 'html.element DIV (attribs + content)' );
768
769 } );
770
771 }( mediaWiki, jQuery ) );