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