Merge "Force $wgCategoryCollation to be uppercase in tests"
[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 assert.equal(
337 $element.css( 'float' ),
338 'right',
339 'style is applied'
340 );
341 },
342 {
343 'all': '.mw-test-implement-a { float: right; }'
344 },
345 {}
346 );
347
348 mw.loader.load( [
349 'test.implement.a'
350 ] );
351 } );
352
353 QUnit.asyncTest( 'mw.loader.implement( styles={ "url": { <media>: [url, ..] } } )', 7, function ( assert ) {
354 var $element1 = $( '<div class="mw-test-implement-b1"></div>' ).appendTo( '#qunit-fixture' ),
355 $element2 = $( '<div class="mw-test-implement-b2"></div>' ).appendTo( '#qunit-fixture' ),
356 $element3 = $( '<div class="mw-test-implement-b3"></div>' ).appendTo( '#qunit-fixture' );
357
358 assert.notEqual(
359 $element1.css( 'text-align' ),
360 'center',
361 'style is clear'
362 );
363 assert.notEqual(
364 $element2.css( 'float' ),
365 'left',
366 'style is clear'
367 );
368 assert.notEqual(
369 $element3.css( 'text-align' ),
370 'right',
371 'style is clear'
372 );
373
374 mw.loader.implement(
375 'test.implement.b',
376 function () {
377 // Note: QUnit.start() must only be called when the entire test is
378 // complete. So, make sure that we don't start until *both*
379 // assertStyleAsync calls have completed.
380 var pending = 2;
381 assertStyleAsync( assert, $element2, 'float', 'left', function () {
382 assert.notEqual( $element1.css( 'text-align' ), 'center', 'print style is not applied' );
383
384 pending--;
385 if ( pending === 0 ) {
386 QUnit.start();
387 }
388 } );
389 assertStyleAsync( assert, $element3, 'float', 'right', function () {
390 assert.notEqual( $element1.css( 'text-align' ), 'center', 'print style is not applied' );
391
392 pending--;
393 if ( pending === 0 ) {
394 QUnit.start();
395 }
396 } );
397 },
398 {
399 'url': {
400 'print': [urlStyleTest( '.mw-test-implement-b1', 'text-align', 'center' )],
401 'screen': [
402 // bug 40834: Make sure it actually works with more than 1 stylesheet reference
403 urlStyleTest( '.mw-test-implement-b2', 'float', 'left' ),
404 urlStyleTest( '.mw-test-implement-b3', 'float', 'right' )
405 ]
406 }
407 },
408 {}
409 );
410
411 mw.loader.load( [
412 'test.implement.b'
413 ] );
414 } );
415
416 // Backwards compatibility
417 QUnit.test( 'mw.loader.implement( styles={ <media>: text } ) (back-compat)', 2, function ( assert ) {
418 var $element = $( '<div class="mw-test-implement-c"></div>' ).appendTo( '#qunit-fixture' );
419
420 assert.notEqual(
421 $element.css( 'float' ),
422 'right',
423 'style is clear'
424 );
425
426 mw.loader.implement(
427 'test.implement.c',
428 function () {
429 assert.equal(
430 $element.css( 'float' ),
431 'right',
432 'style is applied'
433 );
434 },
435 {
436 'all': '.mw-test-implement-c { float: right; }'
437 },
438 {}
439 );
440
441 mw.loader.load( [
442 'test.implement.c'
443 ] );
444 } );
445
446 // Backwards compatibility
447 QUnit.asyncTest( 'mw.loader.implement( styles={ <media>: [url, ..] } ) (back-compat)', 4, function ( assert ) {
448 var $element = $( '<div class="mw-test-implement-d"></div>' ).appendTo( '#qunit-fixture' ),
449 $element2 = $( '<div class="mw-test-implement-d2"></div>' ).appendTo( '#qunit-fixture' );
450
451 assert.notEqual(
452 $element.css( 'float' ),
453 'right',
454 'style is clear'
455 );
456 assert.notEqual(
457 $element2.css( 'text-align' ),
458 'center',
459 'style is clear'
460 );
461
462 mw.loader.implement(
463 'test.implement.d',
464 function () {
465 assertStyleAsync( assert, $element, 'float', 'right', function () {
466
467 assert.notEqual( $element2.css( 'text-align' ), 'center', 'print style is not applied (bug 40500)' );
468
469 QUnit.start();
470 } );
471 },
472 {
473 'all': [urlStyleTest( '.mw-test-implement-d', 'float', 'right' )],
474 'print': [urlStyleTest( '.mw-test-implement-d2', 'text-align', 'center' )]
475 },
476 {}
477 );
478
479 mw.loader.load( [
480 'test.implement.d'
481 ] );
482 } );
483
484 // @import (bug 31676)
485 QUnit.asyncTest( 'mw.loader.implement( styles has @import)', 5, function ( assert ) {
486 var isJsExecuted, $element;
487
488 mw.loader.implement(
489 'test.implement.import',
490 function () {
491 assert.strictEqual( isJsExecuted, undefined, 'javascript not executed multiple times' );
492 isJsExecuted = true;
493
494 assert.equal( mw.loader.getState( 'test.implement.import' ), 'ready', 'module state is "ready" while implement() is executing javascript' );
495
496 $element = $( '<div class="mw-test-implement-import">Foo bar</div>' ).appendTo( '#qunit-fixture' );
497
498 assert.equal( mw.msg( 'test-foobar' ), 'Hello Foobar, $1!', 'Messages are loaded before javascript execution' );
499
500 assertStyleAsync( assert, $element, 'float', 'right', function () {
501 assert.equal( $element.css( 'text-align' ), 'center',
502 'CSS styles after the @import rule are working'
503 );
504
505 QUnit.start();
506 } );
507 },
508 {
509 'css': [
510 '@import url(\''
511 + urlStyleTest( '.mw-test-implement-import', 'float', 'right' )
512 + '\');\n'
513 + '.mw-test-implement-import { text-align: center; }'
514 ]
515 },
516 {
517 'test-foobar': 'Hello Foobar, $1!'
518 }
519 );
520
521 mw.loader.load( 'test.implement' );
522
523 } );
524
525 QUnit.asyncTest( 'mw.loader.implement( only messages )', 2, function ( assert ) {
526 assert.assertFalse( mw.messages.exists( 'bug_29107' ), 'Verify that the test message doesn\'t exist yet' );
527
528 mw.loader.implement( 'test.implement.msgs', [], {}, { 'bug_29107': 'loaded' } );
529 mw.loader.using( 'test.implement.msgs', function () {
530 QUnit.start();
531 assert.ok( mw.messages.exists( 'bug_29107' ), 'Bug 29107: messages-only module should implement ok' );
532 }, function () {
533 QUnit.start();
534 assert.ok( false, 'Error callback fired while implementing "test.implement.msgs" module' );
535 } );
536 } );
537
538 QUnit.test( 'mw.loader erroneous indirect dependency', 3, function ( assert ) {
539 mw.loader.register( [
540 ['test.module1', '0'],
541 ['test.module2', '0', ['test.module1']],
542 ['test.module3', '0', ['test.module2']]
543 ] );
544 mw.loader.implement( 'test.module1', function () {
545 throw new Error( 'expected' );
546 }, {}, {} );
547 assert.strictEqual( mw.loader.getState( 'test.module1' ), 'error', 'Expected "error" state for test.module1' );
548 assert.strictEqual( mw.loader.getState( 'test.module2' ), 'error', 'Expected "error" state for test.module2' );
549 assert.strictEqual( mw.loader.getState( 'test.module3' ), 'error', 'Expected "error" state for test.module3' );
550 } );
551
552 QUnit.test( 'mw.loader out-of-order implementation', 9, function ( assert ) {
553 mw.loader.register( [
554 ['test.module4', '0'],
555 ['test.module5', '0', ['test.module4']],
556 ['test.module6', '0', ['test.module5']]
557 ] );
558 mw.loader.implement( 'test.module4', function () {
559 }, {}, {} );
560 assert.strictEqual( mw.loader.getState( 'test.module4' ), 'ready', 'Expected "ready" state for test.module4' );
561 assert.strictEqual( mw.loader.getState( 'test.module5' ), 'registered', 'Expected "registered" state for test.module5' );
562 assert.strictEqual( mw.loader.getState( 'test.module6' ), 'registered', 'Expected "registered" state for test.module6' );
563 mw.loader.implement( 'test.module6', function () {
564 }, {}, {} );
565 assert.strictEqual( mw.loader.getState( 'test.module4' ), 'ready', 'Expected "ready" state for test.module4' );
566 assert.strictEqual( mw.loader.getState( 'test.module5' ), 'registered', 'Expected "registered" state for test.module5' );
567 assert.strictEqual( mw.loader.getState( 'test.module6' ), 'loaded', 'Expected "loaded" state for test.module6' );
568 mw.loader.implement( 'test.module5', function () {
569 }, {}, {} );
570 assert.strictEqual( mw.loader.getState( 'test.module4' ), 'ready', 'Expected "ready" state for test.module4' );
571 assert.strictEqual( mw.loader.getState( 'test.module5' ), 'ready', 'Expected "ready" state for test.module5' );
572 assert.strictEqual( mw.loader.getState( 'test.module6' ), 'ready', 'Expected "ready" state for test.module6' );
573 } );
574
575 QUnit.test( 'mw.loader missing dependency', 13, function ( assert ) {
576 mw.loader.register( [
577 ['test.module7', '0'],
578 ['test.module8', '0', ['test.module7']],
579 ['test.module9', '0', ['test.module8']]
580 ] );
581 mw.loader.implement( 'test.module8', function () {
582 }, {}, {} );
583 assert.strictEqual( mw.loader.getState( 'test.module7' ), 'registered', 'Expected "registered" state for test.module7' );
584 assert.strictEqual( mw.loader.getState( 'test.module8' ), 'loaded', 'Expected "loaded" state for test.module8' );
585 assert.strictEqual( mw.loader.getState( 'test.module9' ), 'registered', 'Expected "registered" state for test.module9' );
586 mw.loader.state( 'test.module7', 'missing' );
587 assert.strictEqual( mw.loader.getState( 'test.module7' ), 'missing', 'Expected "missing" state for test.module7' );
588 assert.strictEqual( mw.loader.getState( 'test.module8' ), 'error', 'Expected "error" state for test.module8' );
589 assert.strictEqual( mw.loader.getState( 'test.module9' ), 'error', 'Expected "error" state for test.module9' );
590 mw.loader.implement( 'test.module9', function () {
591 }, {}, {} );
592 assert.strictEqual( mw.loader.getState( 'test.module7' ), 'missing', 'Expected "missing" state for test.module7' );
593 assert.strictEqual( mw.loader.getState( 'test.module8' ), 'error', 'Expected "error" state for test.module8' );
594 assert.strictEqual( mw.loader.getState( 'test.module9' ), 'error', 'Expected "error" state for test.module9' );
595 mw.loader.using(
596 ['test.module7'],
597 function () {
598 assert.ok( false, 'Success fired despite missing dependency' );
599 assert.ok( true, 'QUnit expected() count dummy' );
600 },
601 function ( e, dependencies ) {
602 assert.strictEqual( $.isArray( dependencies ), true, 'Expected array of dependencies' );
603 assert.deepEqual( dependencies, ['test.module7'], 'Error callback called with module test.module7' );
604 }
605 );
606 mw.loader.using(
607 ['test.module9'],
608 function () {
609 assert.ok( false, 'Success fired despite missing dependency' );
610 assert.ok( true, 'QUnit expected() count dummy' );
611 },
612 function ( e, dependencies ) {
613 assert.strictEqual( $.isArray( dependencies ), true, 'Expected array of dependencies' );
614 dependencies.sort();
615 assert.deepEqual(
616 dependencies,
617 ['test.module7', 'test.module8', 'test.module9'],
618 'Error callback called with all three modules as dependencies'
619 );
620 }
621 );
622 } );
623
624 QUnit.asyncTest( 'mw.loader dependency handling', 5, function ( assert ) {
625 mw.loader.addSource(
626 'testloader',
627 {
628 loadScript: QUnit.fixurl( mw.config.get( 'wgScriptPath' ) + '/tests/qunit/data/load.mock.php' )
629 }
630 );
631
632 mw.loader.register( [
633 // [module, version, dependencies, group, source]
634 ['testMissing', '1', [], null, 'testloader'],
635 ['testUsesMissing', '1', ['testMissing'], null, 'testloader'],
636 ['testUsesNestedMissing', '1', ['testUsesMissing'], null, 'testloader']
637 ] );
638
639 function verifyModuleStates() {
640 assert.equal( mw.loader.getState( 'testMissing' ), 'missing', 'Module not known to server must have state "missing"' );
641 assert.equal( mw.loader.getState( 'testUsesMissing' ), 'error', 'Module with missing dependency must have state "error"' );
642 assert.equal( mw.loader.getState( 'testUsesNestedMissing' ), 'error', 'Module with indirect missing dependency must have state "error"' );
643 }
644
645 mw.loader.using( ['testUsesNestedMissing'],
646 function () {
647 assert.ok( false, 'Error handler should be invoked.' );
648 assert.ok( true ); // Dummy to reach QUnit expect()
649
650 verifyModuleStates();
651
652 QUnit.start();
653 },
654 function ( e, badmodules ) {
655 assert.ok( true, 'Error handler should be invoked.' );
656 // As soon as server spits out state('testMissing', 'missing');
657 // it will bubble up and trigger the error callback.
658 // Therefor the badmodules array is not testUsesMissing or testUsesNestedMissing.
659 assert.deepEqual( badmodules, ['testMissing'], 'Bad modules as expected.' );
660
661 verifyModuleStates();
662
663 QUnit.start();
664 }
665 );
666 } );
667
668 QUnit.asyncTest( 'mw.loader( "//protocol-relative" ) (bug 30825)', 2, function ( assert ) {
669 // This bug was actually already fixed in 1.18 and later when discovered in 1.17.
670 // Test is for regressions!
671
672 // Forge an URL to the test callback script
673 var target = QUnit.fixurl(
674 mw.config.get( 'wgServer' ) + mw.config.get( 'wgScriptPath' ) + '/tests/qunit/data/qunitOkCall.js'
675 );
676
677 // Confirm that mw.loader.load() works with protocol-relative URLs
678 target = target.replace( /https?:/, '' );
679
680 assert.equal( target.substr( 0, 2 ), '//',
681 'URL must be relative to test relative URLs!'
682 );
683
684 // Async!
685 // The target calls QUnit.start
686 mw.loader.load( target );
687 } );
688
689 QUnit.test( 'mw.html', 13, function ( assert ) {
690 assert.throws( function () {
691 mw.html.escape();
692 }, TypeError, 'html.escape throws a TypeError if argument given is not a string' );
693
694 assert.equal( mw.html.escape( '<mw awesome="awesome" value=\'test\' />' ),
695 '&lt;mw awesome=&quot;awesome&quot; value=&#039;test&#039; /&gt;', 'escape() escapes special characters to html entities' );
696
697 assert.equal( mw.html.element(),
698 '<undefined/>', 'element() always returns a valid html string (even without arguments)' );
699
700 assert.equal( mw.html.element( 'div' ), '<div/>', 'element() Plain DIV (simple)' );
701
702 assert.equal( mw.html.element( 'div', {}, '' ), '<div></div>', 'element() Basic DIV (simple)' );
703
704 assert.equal(
705 mw.html.element(
706 'div', {
707 id: 'foobar'
708 }
709 ),
710 '<div id="foobar"/>',
711 'html.element DIV (attribs)' );
712
713 assert.equal( mw.html.element( 'p', null, 12 ), '<p>12</p>', 'Numbers are valid content and should be casted to a string' );
714
715 assert.equal( mw.html.element( 'p', { title: 12 }, '' ), '<p title="12"></p>', 'Numbers are valid attribute values' );
716
717 // Example from https://www.mediawiki.org/wiki/ResourceLoader/Default_modules#mediaWiki.html
718 assert.equal(
719 mw.html.element(
720 'div',
721 {},
722 new mw.html.Raw(
723 mw.html.element( 'img', { src: '<' } )
724 )
725 ),
726 '<div><img src="&lt;"/></div>',
727 'Raw inclusion of another element'
728 );
729
730 assert.equal(
731 mw.html.element(
732 'option', {
733 selected: true
734 }, 'Foo'
735 ),
736 '<option selected="selected">Foo</option>',
737 'Attributes may have boolean values. True copies the attribute name to the value.'
738 );
739
740 assert.equal(
741 mw.html.element(
742 'option', {
743 value: 'foo',
744 selected: false
745 }, 'Foo'
746 ),
747 '<option value="foo">Foo</option>',
748 'Attributes may have boolean values. False keeps the attribute from output.'
749 );
750
751 assert.equal( mw.html.element( 'div',
752 null, 'a' ),
753 '<div>a</div>',
754 'html.element DIV (content)' );
755
756 assert.equal( mw.html.element( 'a',
757 { href: 'http://mediawiki.org/w/index.php?title=RL&action=history' }, 'a' ),
758 '<a href="http://mediawiki.org/w/index.php?title=RL&amp;action=history">a</a>',
759 'html.element DIV (attribs + content)' );
760
761 } );
762
763 }( mediaWiki, jQuery ) );