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