Fixed windows-related test failures (that string format doesn't work with \r\n line...
[lhc/web/wiklou.git] / tests / phpunit / includes / XmlTest.php
1 <?php
2
3 class XmlTest extends MediaWikiTestCase {
4 private static $oldLang;
5 private static $oldNamespaces;
6
7 public function setUp() {
8 global $wgLang, $wgContLang;
9
10 self::$oldLang = $wgLang;
11 $wgLang = Language::factory( 'en' );
12
13 // Hardcode namespaces during test runs,
14 // so that html output based on existing namespaces
15 // can be properly evaluated.
16 self::$oldNamespaces = $wgContLang->getNamespaces();
17 $wgContLang->setNamespaces( array(
18 -2 => 'Media',
19 -1 => 'Special',
20 0 => '',
21 1 => 'Talk',
22 2 => 'User',
23 3 => 'User_talk',
24 4 => 'MyWiki',
25 5 => 'MyWiki_Talk',
26 6 => 'File',
27 7 => 'File_talk',
28 8 => 'MediaWiki',
29 9 => 'MediaWiki_talk',
30 10 => 'Template',
31 11 => 'Template_talk',
32 100 => 'Custom',
33 101 => 'Custom_talk',
34 ) );
35 }
36
37 public function tearDown() {
38 global $wgLang, $wgContLang;
39 $wgLang = self::$oldLang;
40
41 $wgContLang->setNamespaces( self::$oldNamespaces );
42 }
43
44 public function testExpandAttributes() {
45 $this->assertNull( Xml::expandAttributes(null),
46 'Converting a null list of attributes'
47 );
48 $this->assertEquals( '', Xml::expandAttributes( array() ),
49 'Converting an empty list of attributes'
50 );
51 }
52
53 public function testExpandAttributesException() {
54 $this->setExpectedException('MWException');
55 Xml::expandAttributes('string');
56 }
57
58 function testElementOpen() {
59 $this->assertEquals(
60 '<element>',
61 Xml::element( 'element', null, null ),
62 'Opening element with no attributes'
63 );
64 }
65
66 function testElementEmpty() {
67 $this->assertEquals(
68 '<element />',
69 Xml::element( 'element', null, '' ),
70 'Terminated empty element'
71 );
72 }
73
74 function testElementInputCanHaveAValueOfZero() {
75 $this->assertEquals(
76 '<input name="name" value="0" />',
77 Xml::input( 'name', false, 0 ),
78 'Input with a value of 0 (bug 23797)'
79 );
80 }
81 function testElementEscaping() {
82 $this->assertEquals(
83 '<element>hello &lt;there&gt; you &amp; you</element>',
84 Xml::element( 'element', null, 'hello <there> you & you' ),
85 'Element with no attributes and content that needs escaping'
86 );
87 }
88
89 public function testEscapeTagsOnly() {
90 $this->assertEquals( '&quot;&gt;&lt;', Xml::escapeTagsOnly( '"><' ),
91 'replace " > and < with their HTML entitites'
92 );
93 }
94
95 function testElementAttributes() {
96 $this->assertEquals(
97 '<element key="value" <>="&lt;&gt;">',
98 Xml::element( 'element', array( 'key' => 'value', '<>' => '<>' ), null ),
99 'Element attributes, keys are not escaped'
100 );
101 }
102
103 function testOpenElement() {
104 $this->assertEquals(
105 '<element k="v">',
106 Xml::openElement( 'element', array( 'k' => 'v' ) ),
107 'openElement() shortcut'
108 );
109 }
110
111 function testCloseElement() {
112 $this->assertEquals( '</element>', Xml::closeElement( 'element' ), 'closeElement() shortcut' );
113 }
114
115 /**
116 * @group Broken
117 */
118 public function testDateMenu( ) {
119 $curYear = intval(gmdate('Y'));
120 $prevYear = $curYear - 1;
121
122 $curMonth = intval(gmdate('n'));
123 $prevMonth = $curMonth - 1;
124 if( $prevMonth == 0 ) { $prevMonth = 12; }
125 $nextMonth = $curMonth + 1;
126 if( $nextMonth == 13 ) { $nextMonth = 1; }
127
128 $this->assertEquals(
129 '<label for="year">From year (and earlier):</label> <input name="year" size="4" value="2011" id="year" maxlength="4" /> <label for="month">From month (and earlier):</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">all</option>' . "\n" .
130 '<option value="1">January</option>' . "\n" .
131 '<option value="2" selected="">February</option>' . "\n" .
132 '<option value="3">March</option>' . "\n" .
133 '<option value="4">April</option>' . "\n" .
134 '<option value="5">May</option>' . "\n" .
135 '<option value="6">June</option>' . "\n" .
136 '<option value="7">July</option>' . "\n" .
137 '<option value="8">August</option>' . "\n" .
138 '<option value="9">September</option>' . "\n" .
139 '<option value="10">October</option>' . "\n" .
140 '<option value="11">November</option>' . "\n" .
141 '<option value="12">December</option></select>',
142 Xml::dateMenu( 2011, 02 ),
143 "Date menu for february 2011"
144 );
145 $this->assertEquals(
146 '<label for="year">From year (and earlier):</label> <input name="year" size="4" value="2011" id="year" maxlength="4" /> <label for="month">From month (and earlier):</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">all</option>' . "\n" .
147 '<option value="1">January</option>' . "\n" .
148 '<option value="2">February</option>' . "\n" .
149 '<option value="3">March</option>' . "\n" .
150 '<option value="4">April</option>' . "\n" .
151 '<option value="5">May</option>' . "\n" .
152 '<option value="6">June</option>' . "\n" .
153 '<option value="7">July</option>' . "\n" .
154 '<option value="8">August</option>' . "\n" .
155 '<option value="9">September</option>' . "\n" .
156 '<option value="10">October</option>' . "\n" .
157 '<option value="11">November</option>' . "\n" .
158 '<option value="12">December</option></select>',
159 Xml::dateMenu( 2011, -1),
160 "Date menu with negative month for 'All'"
161 );
162 $this->assertEquals(
163 Xml::dateMenu( $curYear, $curMonth ),
164 Xml::dateMenu( '' , $curMonth ),
165 "Date menu year is the current one when not specified"
166 );
167
168 // @todo FIXME: next month can be in the next year
169 // test failing because it is now december
170 $this->assertEquals(
171 Xml::dateMenu( $prevYear, $nextMonth ),
172 Xml::dateMenu( '', $nextMonth ),
173 "Date menu next month is 11 months ago"
174 );
175
176 # @todo FIXME: Please note there is no year there!
177 $this->assertEquals(
178 '<label for="year">From year (and earlier):</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">From month (and earlier):</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">all</option>' . "\n" .
179 '<option value="1">January</option>' . "\n" .
180 '<option value="2">February</option>' . "\n" .
181 '<option value="3">March</option>' . "\n" .
182 '<option value="4">April</option>' . "\n" .
183 '<option value="5">May</option>' . "\n" .
184 '<option value="6">June</option>' . "\n" .
185 '<option value="7">July</option>' . "\n" .
186 '<option value="8">August</option>' . "\n" .
187 '<option value="9">September</option>' . "\n" .
188 '<option value="10">October</option>' . "\n" .
189 '<option value="11">November</option>' . "\n" .
190 '<option value="12">December</option></select>',
191 Xml::dateMenu( '', '' ),
192 "Date menu with neither year or month"
193 );
194 }
195
196 function testNamespaceSelector() {
197 $this->assertEquals(
198 '<select class="namespaceselector" id="namespace" name="namespace">' . "\n" .
199 '<option value="0">(Main)</option>' . "\n" .
200 '<option value="1">Talk</option>' . "\n" .
201 '<option value="2">User</option>' . "\n" .
202 '<option value="3">User talk</option>' . "\n" .
203 '<option value="4">MyWiki</option>' . "\n" .
204 '<option value="5">MyWiki Talk</option>' . "\n" .
205 '<option value="6">File</option>' . "\n" .
206 '<option value="7">File talk</option>' . "\n" .
207 '<option value="8">MediaWiki</option>' . "\n" .
208 '<option value="9">MediaWiki talk</option>' . "\n" .
209 '<option value="10">Template</option>' . "\n" .
210 '<option value="11">Template talk</option>' . "\n" .
211 '<option value="100">Custom</option>' . "\n" .
212 '<option value="101">Custom talk</option>' . "\n" .
213 '</select>',
214 Xml::namespaceSelector(),
215 'Basic namespace selector without custom options'
216 );
217 $this->assertEquals(
218 '<label for="namespace">Select a namespace:</label>' .
219 '&#160;<select class="namespaceselector" id="namespace" name="myname">' . "\n" .
220 '<option value="all">all</option>' . "\n" .
221 '<option value="0">(Main)</option>' . "\n" .
222 '<option value="1">Talk</option>' . "\n" .
223 '<option value="2" selected="">User</option>' . "\n" .
224 '<option value="3">User talk</option>' . "\n" .
225 '<option value="4">MyWiki</option>' . "\n" .
226 '<option value="5">MyWiki Talk</option>' . "\n" .
227 '<option value="6">File</option>' . "\n" .
228 '<option value="7">File talk</option>' . "\n" .
229 '<option value="8">MediaWiki</option>' . "\n" .
230 '<option value="9">MediaWiki talk</option>' . "\n" .
231 '<option value="10">Template</option>' . "\n" .
232 '<option value="11">Template talk</option>' . "\n" .
233 '<option value="100">Custom</option>' . "\n" .
234 '<option value="101">Custom talk</option>' . "\n" .
235 '</select>',
236 Xml::namespaceSelector( $selected = '2', $all = 'all', $element_name = 'myname', $label = 'Select a namespace:' ),
237 'Basic namespace selector with custom values'
238 );
239 }
240
241
242 #
243 # textarea
244 #
245 function testTextareaNoContent() {
246 $this->assertEquals(
247 '<textarea name="name" id="name" cols="40" rows="5"></textarea>',
248 Xml::textarea( 'name', '' ),
249 'textarea() with not content'
250 );
251 }
252
253 function testTextareaAttribs() {
254 $this->assertEquals(
255 '<textarea name="name" id="name" cols="20" rows="10">&lt;txt&gt;</textarea>',
256 Xml::textarea( 'name', '<txt>', 20, 10 ),
257 'textarea() with custom attribs'
258 );
259 }
260
261 #
262 # input and label
263 #
264 function testLabelCreation() {
265 $this->assertEquals(
266 '<label for="id">name</label>',
267 Xml::label( 'name', 'id' ),
268 'label() with no attribs'
269 );
270 }
271 function testLabelAttributeCanOnlyBeClassOrTitle() {
272 $this->assertEquals(
273 '<label for="id">name</label>',
274 Xml::label( 'name', 'id', array( 'generated' => true ) ),
275 'label() can not be given a generated attribute'
276 );
277 $this->assertEquals(
278 '<label for="id" class="nice">name</label>',
279 Xml::label( 'name', 'id', array( 'class' => 'nice' ) ),
280 'label() can get a class attribute'
281 );
282 $this->assertEquals(
283 '<label for="id" title="nice tooltip">name</label>',
284 Xml::label( 'name', 'id', array( 'title' => 'nice tooltip' ) ),
285 'label() can get a title attribute'
286 );
287 $this->assertEquals(
288 '<label for="id" class="nice" title="nice tooltip">name</label>',
289 Xml::label( 'name', 'id', array(
290 'generated' => true,
291 'class' => 'nice',
292 'title' => 'nice tooltip',
293 'anotherattr' => 'value',
294 )
295 ),
296 'label() skip all attributes but "class" and "title"'
297 );
298 }
299
300 #
301 # JS
302 #
303 function testEscapeJsStringSpecialChars() {
304 $this->assertEquals(
305 '\\\\\r\n',
306 Xml::escapeJsString( "\\\r\n" ),
307 'escapeJsString() with special characters'
308 );
309 }
310
311 function testEncodeJsVarBoolean() {
312 $this->assertEquals(
313 'true',
314 Xml::encodeJsVar( true ),
315 'encodeJsVar() with boolean'
316 );
317 }
318
319 function testEncodeJsVarNull() {
320 $this->assertEquals(
321 'null',
322 Xml::encodeJsVar( null ),
323 'encodeJsVar() with null'
324 );
325 }
326
327 function testEncodeJsVarArray() {
328 $this->assertEquals(
329 '["a",1]',
330 Xml::encodeJsVar( array( 'a', 1 ) ),
331 'encodeJsVar() with array'
332 );
333 $this->assertEquals(
334 '{"a":"a","b":1}',
335 Xml::encodeJsVar( array( 'a' => 'a', 'b' => 1 ) ),
336 'encodeJsVar() with associative array'
337 );
338 }
339
340 function testEncodeJsVarObject() {
341 $this->assertEquals(
342 '{"a":"a","b":1}',
343 Xml::encodeJsVar( (object)array( 'a' => 'a', 'b' => 1 ) ),
344 'encodeJsVar() with object'
345 );
346 }
347
348 function testEncodeJsVarInt() {
349 $this->assertEquals(
350 '123456',
351 Xml::encodeJsVar( 123456 ),
352 'encodeJsVar() with int'
353 );
354 }
355
356 function testEncodeJsVarFloat() {
357 $this->assertEquals(
358 '1.23456',
359 Xml::encodeJsVar( 1.23456 ),
360 'encodeJsVar() with float'
361 );
362 }
363
364 function testEncodeJsVarIntString() {
365 $this->assertEquals(
366 '"123456"',
367 Xml::encodeJsVar( '123456' ),
368 'encodeJsVar() with int-like string'
369 );
370 }
371
372 function testEncodeJsVarFloatString() {
373 $this->assertEquals(
374 '"1.23456"',
375 Xml::encodeJsVar( '1.23456' ),
376 'encodeJsVar() with float-like string'
377 );
378 }
379 }