Merge "Make sure that SQLite uses no prefix"
[lhc/web/wiklou.git] / tests / qunit / suites / resources / mediawiki / mediawiki.util.test.js
1 ( function ( mw, $ ) {
2 QUnit.module( 'mediawiki.util', QUnit.newMwEnvironment() );
3
4 QUnit.test( 'rawurlencode', 1, function ( assert ) {
5 assert.equal( mw.util.rawurlencode( 'Test:A & B/Here' ), 'Test%3AA%20%26%20B%2FHere' );
6 });
7
8 QUnit.test( 'wikiUrlencode', 1, function ( assert ) {
9 assert.equal( mw.util.wikiUrlencode( 'Test:A & B/Here' ), 'Test:A_%26_B/Here' );
10 });
11
12 QUnit.test( 'wikiGetlink', 3, function ( assert ) {
13 // Not part of startUp module
14 mw.config.set( 'wgArticlePath', '/wiki/$1' );
15 mw.config.set( 'wgPageName', 'Foobar' );
16
17 var href = mw.util.wikiGetlink( 'Sandbox' );
18 assert.equal( href, '/wiki/Sandbox', 'Simple title; Get link for "Sandbox"' );
19
20 href = mw.util.wikiGetlink( 'Foo:Sandbox ? 5+5=10 ! (test)/subpage' );
21 assert.equal( href, '/wiki/Foo:Sandbox_%3F_5%2B5%3D10_%21_%28test%29/subpage',
22 'Advanced title; Get link for "Foo:Sandbox ? 5+5=10 ! (test)/subpage"' );
23
24 href = mw.util.wikiGetlink();
25 assert.equal( href, '/wiki/Foobar', 'Default title; Get link for current page ("Foobar")' );
26 });
27
28 QUnit.test( 'wikiScript', 4, function ( assert ) {
29 mw.config.set({
30 'wgScript': '/w/i.php', // customized wgScript for bug 39103
31 'wgLoadScript': '/w/l.php', // customized wgLoadScript for bug 39103
32 'wgScriptPath': '/w',
33 'wgScriptExtension': '.php'
34 });
35
36 assert.equal( mw.util.wikiScript(), mw.config.get( 'wgScript' ),
37 'wikiScript() returns wgScript'
38 );
39 assert.equal( mw.util.wikiScript( 'index' ), mw.config.get( 'wgScript' ),
40 'wikiScript( index ) returns wgScript'
41 );
42 assert.equal( mw.util.wikiScript( 'load' ), mw.config.get( 'wgLoadScript' ),
43 'wikiScript( load ) returns wgLoadScript'
44 );
45 assert.equal( mw.util.wikiScript( 'api' ), '/w/api.php', 'API path' );
46 });
47
48 QUnit.test( 'addCSS', 3, function ( assert ) {
49 var $el, style;
50 $el = $( '<div>' ).attr( 'id', 'mw-addcsstest' ).appendTo( '#qunit-fixture' );
51
52 style = mw.util.addCSS( '#mw-addcsstest { visibility: hidden; }' );
53 assert.equal( typeof style, 'object', 'addCSS returned an object' );
54 assert.strictEqual( style.disabled, false, 'property "disabled" is available and set to false' );
55
56 assert.equal( $el.css( 'visibility' ), 'hidden', 'Added style properties are in effect' );
57
58 // Clean up
59 $( style.ownerNode ).remove();
60 });
61
62 QUnit.asyncTest( 'toggleToc', 4, function ( assert ) {
63 var tocHtml, $toggleLink;
64
65 function actionC() {
66 QUnit.start();
67 }
68
69 function actionB() {
70 assert.strictEqual( mw.util.toggleToc( $toggleLink, actionC ), true, 'Return boolean true if the TOC is now visible.' );
71 }
72
73 function actionA() {
74 assert.strictEqual( mw.util.toggleToc( $toggleLink, actionB ), false, 'Return boolean false if the TOC is now hidden.' );
75 }
76
77 assert.strictEqual( mw.util.toggleToc(), null, 'Return null if there is no table of contents on the page.' );
78
79 tocHtml =
80 '<table id="toc" class="toc"><tr><td>' +
81 '<div id="toctitle">' +
82 '<h2>Contents</h2>' +
83 '<span class="toctoggle">&nbsp;[<a href="#" class="internal" id="togglelink">Hide</a>&nbsp;]</span>' +
84 '</div>' +
85 '<ul><li></li></ul>' +
86 '</td></tr></table>';
87 $(tocHtml).appendTo( '#qunit-fixture' ),
88 $toggleLink = $( '#togglelink' );
89
90 assert.strictEqual( $toggleLink.length, 1, 'Toggle link is appended to the page.' );
91
92 actionA();
93 });
94
95 QUnit.test( 'getParamValue', 5, function ( assert ) {
96 var url;
97
98 url = 'http://example.org/?foo=wrong&foo=right#&foo=bad';
99 assert.equal( mw.util.getParamValue( 'foo', url ), 'right', 'Use latest one, ignore hash' );
100 assert.strictEqual( mw.util.getParamValue( 'bar', url ), null, 'Return null when not found' );
101
102 url = 'http://example.org/#&foo=bad';
103 assert.strictEqual( mw.util.getParamValue( 'foo', url ), null, 'Ignore hash if param is not in querystring but in hash (bug 27427)' );
104
105 url = 'example.org?' + $.param({ 'TEST': 'a b+c' });
106 assert.strictEqual( mw.util.getParamValue( 'TEST', url ), 'a b+c', 'Bug 30441: getParamValue must understand "+" encoding of space' );
107
108 url = 'example.org?' + $.param({ 'TEST': 'a b+c d' }); // check for sloppy code from r95332 :)
109 assert.strictEqual( mw.util.getParamValue( 'TEST', url ), 'a b+c d', 'Bug 30441: getParamValue must understand "+" encoding of space (multiple spaces)' );
110 });
111
112 QUnit.test( 'tooltipAccessKey', 3, function ( assert ) {
113 assert.equal( typeof mw.util.tooltipAccessKeyPrefix, 'string', 'mw.util.tooltipAccessKeyPrefix must be a string' );
114 assert.ok( mw.util.tooltipAccessKeyRegexp instanceof RegExp, 'mw.util.tooltipAccessKeyRegexp instance of RegExp' );
115 assert.ok( mw.util.updateTooltipAccessKeys, 'mw.util.updateTooltipAccessKeys' );
116 });
117
118 QUnit.test( '$content', 2, function ( assert ) {
119 assert.ok( mw.util.$content instanceof jQuery, 'mw.util.$content instance of jQuery' );
120 assert.strictEqual( mw.util.$content.length, 1, 'mw.util.$content must have length of 1' );
121 });
122
123
124 /**
125 * Portlet names are prefixed with 'p-test' to avoid conflict with core
126 * when running the test suite under a wiki page.
127 * Previously, test elements where invisible to the selector since only
128 * one element can have a given id.
129 */
130 QUnit.test( 'addPortletLink', 8, function ( assert ) {
131 var pTestTb, pCustom, vectorTabs, tbRL, cuQuux, $cuQuux, tbMW, $tbMW, tbRLDM, caFoo;
132
133 pTestTb = '\
134 <div class="portlet" id="p-test-tb">\
135 <h5>Toolbox</h5>\
136 <ul class="body"></ul>\
137 </div>';
138 pCustom = '\
139 <div class="portlet" id="p-test-custom">\
140 <h5>Views</h5>\
141 <ul class="body">\
142 <li id="c-foo"><a href="#">Foo</a></li>\
143 <li id="c-barmenu">\
144 <ul>\
145 <li id="c-bar-baz"><a href="#">Baz</a></a>\
146 </ul>\
147 </li>\
148 </ul>\
149 </div>';
150 vectorTabs = '\
151 <div id="p-test-views" class="vectorTabs">\
152 <h5>Views</h5>\
153 <ul></ul>\
154 </div>';
155
156 $( '#qunit-fixture' ).append( pTestTb, pCustom, vectorTabs );
157
158 tbRL = mw.util.addPortletLink( 'p-test-tb', '//mediawiki.org/wiki/ResourceLoader',
159 'ResourceLoader', 't-rl', 'More info about ResourceLoader on MediaWiki.org ', 'l' );
160
161 assert.ok( $.isDomElement( tbRL ), 'addPortletLink returns a valid DOM Element according to $.isDomElement' );
162
163 tbMW = mw.util.addPortletLink( 'p-test-tb', '//mediawiki.org/',
164 'MediaWiki.org', 't-mworg', 'Go to MediaWiki.org ', 'm', tbRL );
165 $tbMW = $( tbMW );
166
167
168 assert.equal( $tbMW.attr( 'id' ), 't-mworg', 'Link has correct ID set' );
169 assert.equal( $tbMW.closest( '.portlet' ).attr( 'id' ), 'p-test-tb', 'Link was inserted within correct portlet' );
170 assert.equal( $tbMW.next().attr( 'id' ), 't-rl', 'Link is in the correct position (by passing nextnode)' );
171
172 cuQuux = mw.util.addPortletLink( 'p-test-custom', '#', 'Quux' );
173 $cuQuux = $(cuQuux);
174
175 assert.equal(
176 $( '#p-test-custom #c-barmenu ul li' ).length,
177 1,
178 'addPortletLink did not add the item to all <ul> elements in the portlet (bug 35082)'
179 );
180
181 tbRLDM = mw.util.addPortletLink( 'p-test-tb', '//mediawiki.org/wiki/RL/DM',
182 'Default modules', 't-rldm', 'List of all default modules ', 'd', '#t-rl' );
183
184 assert.equal( $( tbRLDM ).next().attr( 'id' ), 't-rl', 'Link is in the correct position (by passing CSS selector)' );
185
186 caFoo = mw.util.addPortletLink( 'p-test-views', '#', 'Foo' );
187
188 assert.strictEqual( $tbMW.find( 'span').length, 0, 'No <span> element should be added for porlets without vectorTabs class.' );
189 assert.strictEqual( $( caFoo ).find( 'span').length, 1, 'A <span> element should be added for porlets with vectorTabs class.' );
190 });
191
192 QUnit.test( 'jsMessage', 1, function ( assert ) {
193 var a = mw.util.jsMessage( 'MediaWiki is <b>Awesome</b>.' );
194 assert.ok( a, 'Basic checking of return value' );
195
196 // Clean up
197 $( '#mw-js-message' ).remove();
198 });
199
200 QUnit.test( 'validateEmail', 6, function ( assert ) {
201 assert.strictEqual( mw.util.validateEmail( '' ), null, 'Should return null for empty string ' );
202 assert.strictEqual( mw.util.validateEmail( 'user@localhost' ), true, 'Return true for a valid e-mail address' );
203
204 // testEmailWithCommasAreInvalids
205 assert.strictEqual( mw.util.validateEmail( 'user,foo@example.org' ), false, 'Emails with commas are invalid' );
206 assert.strictEqual( mw.util.validateEmail( 'userfoo@ex,ample.org' ), false, 'Emails with commas are invalid' );
207
208 // testEmailWithHyphens
209 assert.strictEqual( mw.util.validateEmail( 'user-foo@example.org' ), true, 'Emails may contain a hyphen' );
210 assert.strictEqual( mw.util.validateEmail( 'userfoo@ex-ample.org' ), true, 'Emails may contain a hyphen' );
211 });
212
213 QUnit.test( 'isIPv6Address', 40, function ( assert ) {
214 // Shortcuts
215 function assertFalseIPv6( addy, summary ) {
216 return assert.strictEqual( mw.util.isIPv6Address( addy ), false, summary );
217 }
218 function assertTrueIPv6( addy, summary ) {
219 return assert.strictEqual( mw.util.isIPv6Address( addy ), true, summary );
220 }
221
222 // Based on IPTest.php > testisIPv6
223 assertFalseIPv6( ':fc:100::', 'IPv6 starting with lone ":"' );
224 assertFalseIPv6( 'fc:100:::', 'IPv6 ending with a ":::"' );
225 assertFalseIPv6( 'fc:300', 'IPv6 with only 2 words' );
226 assertFalseIPv6( 'fc:100:300', 'IPv6 with only 3 words' );
227
228 $.each(
229 ['fc:100::',
230 'fc:100:a::',
231 'fc:100:a:d::',
232 'fc:100:a:d:1::',
233 'fc:100:a:d:1:e::',
234 'fc:100:a:d:1:e:ac::'], function ( i, addy ){
235 assertTrueIPv6( addy, addy + ' is a valid IP' );
236 });
237
238 assertFalseIPv6( 'fc:100:a:d:1:e:ac:0::', 'IPv6 with 8 words ending with "::"' );
239 assertFalseIPv6( 'fc:100:a:d:1:e:ac:0:1::', 'IPv6 with 9 words ending with "::"' );
240
241 assertFalseIPv6( ':::' );
242 assertFalseIPv6( '::0:', 'IPv6 ending in a lone ":"' );
243
244 assertTrueIPv6( '::', 'IPv6 zero address' );
245 $.each(
246 ['::0',
247 '::fc',
248 '::fc:100',
249 '::fc:100:a',
250 '::fc:100:a:d',
251 '::fc:100:a:d:1',
252 '::fc:100:a:d:1:e',
253 '::fc:100:a:d:1:e:ac',
254
255 'fc:100:a:d:1:e:ac:0'], function ( i, addy ){
256 assertTrueIPv6( addy, addy + ' is a valid IP' );
257 });
258
259 assertFalseIPv6( '::fc:100:a:d:1:e:ac:0', 'IPv6 with "::" and 8 words' );
260 assertFalseIPv6( '::fc:100:a:d:1:e:ac:0:1', 'IPv6 with 9 words' );
261
262 assertFalseIPv6( ':fc::100', 'IPv6 starting with lone ":"' );
263 assertFalseIPv6( 'fc::100:', 'IPv6 ending with lone ":"' );
264 assertFalseIPv6( 'fc:::100', 'IPv6 with ":::" in the middle' );
265
266 assertTrueIPv6( 'fc::100', 'IPv6 with "::" and 2 words' );
267 assertTrueIPv6( 'fc::100:a', 'IPv6 with "::" and 3 words' );
268 assertTrueIPv6( 'fc::100:a:d', 'IPv6 with "::" and 4 words' );
269 assertTrueIPv6( 'fc::100:a:d:1', 'IPv6 with "::" and 5 words' );
270 assertTrueIPv6( 'fc::100:a:d:1:e', 'IPv6 with "::" and 6 words' );
271 assertTrueIPv6( 'fc::100:a:d:1:e:ac', 'IPv6 with "::" and 7 words' );
272 assertTrueIPv6( '2001::df', 'IPv6 with "::" and 2 words' );
273 assertTrueIPv6( '2001:5c0:1400:a::df', 'IPv6 with "::" and 5 words' );
274 assertTrueIPv6( '2001:5c0:1400:a::df:2', 'IPv6 with "::" and 6 words' );
275
276 assertFalseIPv6( 'fc::100:a:d:1:e:ac:0', 'IPv6 with "::" and 8 words' );
277 assertFalseIPv6( 'fc::100:a:d:1:e:ac:0:1', 'IPv6 with 9 words' );
278 });
279
280 QUnit.test( 'isIPv4Address', 11, function ( assert ) {
281 // Shortcuts
282 function assertFalseIPv4( addy, summary ) {
283 assert.strictEqual( mw.util.isIPv4Address( addy ), false, summary );
284 }
285 function assertTrueIPv4( addy, summary ) {
286 assert.strictEqual( mw.util.isIPv4Address( addy ), true, summary );
287 }
288
289 // Based on IPTest.php > testisIPv4
290 assertFalseIPv4( false, 'Boolean false is not an IP' );
291 assertFalseIPv4( true, 'Boolean true is not an IP' );
292 assertFalseIPv4( '', 'Empty string is not an IP' );
293 assertFalseIPv4( 'abc', '"abc" is not an IP' );
294 assertFalseIPv4( ':', 'Colon is not an IP' );
295 assertFalseIPv4( '124.24.52', 'IPv4 not enough quads' );
296 assertFalseIPv4( '24.324.52.13', 'IPv4 out of range' );
297 assertFalseIPv4( '.24.52.13', 'IPv4 starts with period' );
298
299 assertTrueIPv4( '124.24.52.13', '124.24.52.134 is a valid IP' );
300 assertTrueIPv4( '1.24.52.13', '1.24.52.13 is a valid IP' );
301 assertFalseIPv4( '74.24.52.13/20', 'IPv4 ranges are not recogzized as valid IPs' );
302 });
303 }( mediaWiki, jQuery ) );