2 /** tests for includes/Html.php */
4 class HtmlTest
extends MediaWikiTestCase
{
6 protected function setUp() {
10 'wgUseMediaWikiUIEverywhere' => false,
13 $langObj = Language
::factory( 'en' );
15 // Hardcode namespaces during test runs,
16 // so that html output based on existing namespaces
17 // can be properly evaluated.
18 $langObj->setNamespaces( [
30 9 => 'MediaWiki_talk',
32 11 => 'Template_talk',
34 15 => 'Category_talk',
38 $this->setUserLang( $langObj );
39 $this->setContentLang( $langObj );
43 * @covers Html::element
44 * @covers Html::rawElement
45 * @covers Html::openElement
46 * @covers Html::closeElement
48 public function testElementBasics() {
51 Html
::element( 'img', null, '' ),
52 'Self-closing tag for short-tag elements'
56 '<element></element>',
57 Html
::element( 'element', null, null ),
58 'Close tag for empty element (null, null)'
62 '<element></element>',
63 Html
::element( 'element', [], '' ),
64 'Close tag for empty element (array, string)'
68 public function dataXmlMimeType() {
70 // ( $mimetype, $isXmlMimeType )
71 # HTML is not an XML MimeType
72 [ 'text/html', false ],
73 # XML is an XML MimeType
75 [ 'application/xml', true ],
76 # XHTML is an XML MimeType
77 [ 'application/xhtml+xml', true ],
78 # Make sure other +xml MimeTypes are supported
79 # SVG is another random MimeType even though we don't use it
80 [ 'image/svg+xml', true ],
81 # Complete random other MimeTypes are not XML
82 [ 'text/plain', false ],
87 * @dataProvider dataXmlMimeType
88 * @covers Html::isXmlMimeType
90 public function testXmlMimeType( $mimetype, $isXmlMimeType ) {
91 $this->assertEquals( $isXmlMimeType, Html
::isXmlMimeType( $mimetype ) );
95 * @covers Html::expandAttributes
97 public function testExpandAttributesSkipsNullAndFalse() {
100 Html
::expandAttributes( [ 'foo' => null ] ),
101 'skip keys with null value'
104 Html
::expandAttributes( [ 'foo' => false ] ),
105 'skip keys with false value'
109 Html
::expandAttributes( [ 'foo' => '' ] ),
110 'keep keys with an empty string'
115 * @covers Html::expandAttributes
117 public function testExpandAttributesForBooleans() {
120 Html
::expandAttributes( [ 'selected' => false ] ),
121 'Boolean attributes do not generates output when value is false'
125 Html
::expandAttributes( [ 'selected' => null ] ),
126 'Boolean attributes do not generates output when value is null'
131 Html
::expandAttributes( [ 'selected' => true ] ),
132 'Boolean attributes have no value when value is true'
136 Html
::expandAttributes( [ 'selected' ] ),
137 'Boolean attributes have no value when value is true (passed as numerical array)'
142 * @covers Html::expandAttributes
144 public function testExpandAttributesForNumbers() {
147 Html
::expandAttributes( [ 'value' => 1 ] ),
148 'Integer value is cast to a string'
152 Html
::expandAttributes( [ 'value' => 1.1 ] ),
153 'Float value is cast to a string'
158 * @covers Html::expandAttributes
160 public function testExpandAttributesForObjects() {
162 ' value="stringValue"',
163 Html
::expandAttributes( [ 'value' => new HtmlTestValue() ] ),
164 'Object value is converted to a string'
169 * Test for Html::expandAttributes()
170 * Please note it output a string prefixed with a space!
171 * @covers Html::expandAttributes
173 public function testExpandAttributesVariousExpansions() {
177 Html
::expandAttributes( [ 'empty_string' => '' ] ),
178 'Empty string is always quoted'
182 Html
::expandAttributes( [ 'key' => 'value' ] ),
183 'Simple string value needs no quotes'
187 Html
::expandAttributes( [ 'one' => 1 ] ),
188 'Number 1 value needs no quotes'
192 Html
::expandAttributes( [ 'zero' => 0 ] ),
193 'Number 0 value needs no quotes'
198 * Html::expandAttributes has special features for HTML
199 * attributes that use space separated lists and also
200 * allows arrays to be used as values.
201 * @covers Html::expandAttributes
203 public function testExpandAttributesListValueAttributes() {
206 ' class="redundant spaces here"',
207 Html
::expandAttributes( [ 'class' => ' redundant spaces here ' ] ),
208 'Normalization should strip redundant spaces'
212 Html
::expandAttributes( [ 'class' => 'foo bar foo bar bar' ] ),
213 'Normalization should remove duplicates in string-lists'
215 # ## "EMPTY" ARRAY VALUES
218 Html
::expandAttributes( [ 'class' => [] ] ),
219 'Value with an empty array'
223 Html
::expandAttributes( [ 'class' => [ null, '', ' ', ' ' ] ] ),
224 'Array with null, empty string and spaces'
226 # ## NON-EMPTY ARRAY VALUES
229 Html
::expandAttributes( [ 'class' => [
236 'Normalization should remove duplicates in the array'
240 Html
::expandAttributes( [ 'class' => [
246 'Normalization should remove duplicates in string-lists in the array'
251 * Test feature added by r96188, let pass attributes values as
252 * a PHP array. Restricted to class,rel, accesskey.
253 * @covers Html::expandAttributes
255 public function testExpandAttributesSpaceSeparatedAttributesWithBoolean() {
257 ' class="booltrue one"',
258 Html
::expandAttributes( [ 'class' => [
262 # Method use isset() internally, make sure we do discard
263 # attributes values which have been assigned well known values
265 'boolfalse' => false,
273 * How do we handle duplicate keys in HTML attributes expansion?
274 * We could pass a "class" the values: 'GREEN' and array( 'GREEN' => false )
275 * The latter will take precedence.
277 * Feature added by r96188
278 * @covers Html::expandAttributes
280 public function testValueIsAuthoritativeInSpaceSeparatedAttributesArrays() {
283 Html
::expandAttributes( [ 'class' => [
292 * @covers Html::expandAttributes
293 * @expectedException MWException
295 public function testExpandAttributes_ArrayOnNonListValueAttribute_ThrowsException() {
296 // Real-life test case found in the Popups extension (see Gerrit cf0fd64),
297 // when used with an outdated BetaFeatures extension (see Gerrit deda1e7)
298 Html
::expandAttributes( [
307 * @covers Html::namespaceSelector
308 * @covers Html::namespaceSelectorOptions
310 public function testNamespaceSelector() {
312 '<select id="namespace" name="namespace">' . "\n" .
313 '<option value="0">(Main)</option>' . "\n" .
314 '<option value="1">Talk</option>' . "\n" .
315 '<option value="2">User</option>' . "\n" .
316 '<option value="3">User talk</option>' . "\n" .
317 '<option value="4">MyWiki</option>' . "\n" .
318 '<option value="5">MyWiki Talk</option>' . "\n" .
319 '<option value="6">File</option>' . "\n" .
320 '<option value="7">File talk</option>' . "\n" .
321 '<option value="8">MediaWiki</option>' . "\n" .
322 '<option value="9">MediaWiki talk</option>' . "\n" .
323 '<option value="10">Template</option>' . "\n" .
324 '<option value="11">Template talk</option>' . "\n" .
325 '<option value="14">Category</option>' . "\n" .
326 '<option value="15">Category talk</option>' . "\n" .
327 '<option value="100">Custom</option>' . "\n" .
328 '<option value="101">Custom talk</option>' . "\n" .
330 Html
::namespaceSelector(),
331 'Basic namespace selector without custom options'
335 '<label for="mw-test-namespace">Select a namespace:</label> ' .
336 '<select id="mw-test-namespace" name="wpNamespace">' . "\n" .
337 '<option value="all">all</option>' . "\n" .
338 '<option value="0">(Main)</option>' . "\n" .
339 '<option value="1">Talk</option>' . "\n" .
340 '<option value="2" selected="">User</option>' . "\n" .
341 '<option value="3">User talk</option>' . "\n" .
342 '<option value="4">MyWiki</option>' . "\n" .
343 '<option value="5">MyWiki Talk</option>' . "\n" .
344 '<option value="6">File</option>' . "\n" .
345 '<option value="7">File talk</option>' . "\n" .
346 '<option value="8">MediaWiki</option>' . "\n" .
347 '<option value="9">MediaWiki talk</option>' . "\n" .
348 '<option value="10">Template</option>' . "\n" .
349 '<option value="11">Template talk</option>' . "\n" .
350 '<option value="14">Category</option>' . "\n" .
351 '<option value="15">Category talk</option>' . "\n" .
352 '<option value="100">Custom</option>' . "\n" .
353 '<option value="101">Custom talk</option>' . "\n" .
355 Html
::namespaceSelector(
356 [ 'selected' => '2', 'all' => 'all', 'label' => 'Select a namespace:' ],
357 [ 'name' => 'wpNamespace', 'id' => 'mw-test-namespace' ]
359 'Basic namespace selector with custom values'
363 '<label for="namespace">Select a namespace:</label> ' .
364 '<select id="namespace" name="namespace">' . "\n" .
365 '<option value="0">(Main)</option>' . "\n" .
366 '<option value="1">Talk</option>' . "\n" .
367 '<option value="2">User</option>' . "\n" .
368 '<option value="3">User talk</option>' . "\n" .
369 '<option value="4">MyWiki</option>' . "\n" .
370 '<option value="5">MyWiki Talk</option>' . "\n" .
371 '<option value="6">File</option>' . "\n" .
372 '<option value="7">File talk</option>' . "\n" .
373 '<option value="8">MediaWiki</option>' . "\n" .
374 '<option value="9">MediaWiki talk</option>' . "\n" .
375 '<option value="10">Template</option>' . "\n" .
376 '<option value="11">Template talk</option>' . "\n" .
377 '<option value="14">Category</option>' . "\n" .
378 '<option value="15">Category talk</option>' . "\n" .
379 '<option value="100">Custom</option>' . "\n" .
380 '<option value="101">Custom talk</option>' . "\n" .
382 Html
::namespaceSelector(
383 [ 'label' => 'Select a namespace:' ]
385 'Basic namespace selector with a custom label but no id attribtue for the <select>'
389 public function testCanFilterOutNamespaces() {
391 '<select id="namespace" name="namespace">' . "\n" .
392 '<option value="2">User</option>' . "\n" .
393 '<option value="4">MyWiki</option>' . "\n" .
394 '<option value="5">MyWiki Talk</option>' . "\n" .
395 '<option value="6">File</option>' . "\n" .
396 '<option value="7">File talk</option>' . "\n" .
397 '<option value="8">MediaWiki</option>' . "\n" .
398 '<option value="9">MediaWiki talk</option>' . "\n" .
399 '<option value="10">Template</option>' . "\n" .
400 '<option value="11">Template talk</option>' . "\n" .
401 '<option value="14">Category</option>' . "\n" .
402 '<option value="15">Category talk</option>' . "\n" .
404 Html
::namespaceSelector(
405 [ 'exclude' => [ 0, 1, 3, 100, 101 ] ]
407 'Namespace selector namespace filtering.'
411 public function testCanDisableANamespaces() {
413 '<select id="namespace" name="namespace">' . "\n" .
414 '<option disabled="" value="0">(Main)</option>' . "\n" .
415 '<option disabled="" value="1">Talk</option>' . "\n" .
416 '<option disabled="" value="2">User</option>' . "\n" .
417 '<option disabled="" value="3">User talk</option>' . "\n" .
418 '<option disabled="" value="4">MyWiki</option>' . "\n" .
419 '<option value="5">MyWiki Talk</option>' . "\n" .
420 '<option value="6">File</option>' . "\n" .
421 '<option value="7">File talk</option>' . "\n" .
422 '<option value="8">MediaWiki</option>' . "\n" .
423 '<option value="9">MediaWiki talk</option>' . "\n" .
424 '<option value="10">Template</option>' . "\n" .
425 '<option value="11">Template talk</option>' . "\n" .
426 '<option value="14">Category</option>' . "\n" .
427 '<option value="15">Category talk</option>' . "\n" .
428 '<option value="100">Custom</option>' . "\n" .
429 '<option value="101">Custom talk</option>' . "\n" .
431 Html
::namespaceSelector( [
432 'disable' => [ 0, 1, 2, 3, 4 ]
434 'Namespace selector namespace disabling'
439 * @dataProvider provideHtml5InputTypes
440 * @covers Html::element
442 public function testHtmlElementAcceptsNewHtml5TypesInHtml5Mode( $HTML5InputType ) {
444 '<input type="' . $HTML5InputType . '"/>',
445 Html
::element( 'input', [ 'type' => $HTML5InputType ] ),
446 'In HTML5, Html::element() should accept type="' . $HTML5InputType . '"'
451 * List of input element types values introduced by HTML5
452 * Full list at https://www.w3.org/TR/html-markup/input.html
454 public static function provideHtml5InputTypes() {
471 foreach ( $types as $type ) {
472 $cases[] = [ $type ];
479 * Test out Html::element drops or enforces default value
480 * @covers Html::dropDefaults
481 * @dataProvider provideElementsWithAttributesHavingDefaultValues
483 public function testDropDefaults( $expected, $element, $attribs, $message = '' ) {
484 $this->assertEquals( $expected, Html
::element( $element, $attribs ), $message );
487 public static function provideElementsWithAttributesHavingDefaultValues() {
488 # Use cases in a concise format:
489 # <expected>, <element name>, <array of attributes> [, <message>]
490 # Will be mapped to Html::element()
493 # ## Generic cases, match $attribDefault static array
494 $cases[] = [ '<area/>',
495 'area', [ 'shape' => 'rect' ]
498 $cases[] = [ '<button type="submit"></button>',
499 'button', [ 'formaction' => 'GET' ]
501 $cases[] = [ '<button type="submit"></button>',
502 'button', [ 'formenctype' => 'application/x-www-form-urlencoded' ]
505 $cases[] = [ '<canvas></canvas>',
506 'canvas', [ 'height' => '150' ]
508 $cases[] = [ '<canvas></canvas>',
509 'canvas', [ 'width' => '300' ]
511 # Also check with numeric values
512 $cases[] = [ '<canvas></canvas>',
513 'canvas', [ 'height' => 150 ]
515 $cases[] = [ '<canvas></canvas>',
516 'canvas', [ 'width' => 300 ]
519 $cases[] = [ '<form></form>',
520 'form', [ 'action' => 'GET' ]
522 $cases[] = [ '<form></form>',
523 'form', [ 'autocomplete' => 'on' ]
525 $cases[] = [ '<form></form>',
526 'form', [ 'enctype' => 'application/x-www-form-urlencoded' ]
529 $cases[] = [ '<input/>',
530 'input', [ 'formaction' => 'GET' ]
532 $cases[] = [ '<input/>',
533 'input', [ 'type' => 'text' ]
536 $cases[] = [ '<keygen/>',
537 'keygen', [ 'keytype' => 'rsa' ]
540 $cases[] = [ '<link/>',
541 'link', [ 'media' => 'all' ]
544 $cases[] = [ '<menu></menu>',
545 'menu', [ 'type' => 'list' ]
548 $cases[] = [ '<script></script>',
549 'script', [ 'type' => 'text/javascript' ]
552 $cases[] = [ '<style></style>',
553 'style', [ 'media' => 'all' ]
555 $cases[] = [ '<style></style>',
556 'style', [ 'type' => 'text/css' ]
559 $cases[] = [ '<textarea></textarea>',
560 'textarea', [ 'wrap' => 'soft' ]
565 # <link type="text/css">
566 $cases[] = [ '<link/>',
567 'link', [ 'type' => 'text/css' ]
570 # <input> specific handling
571 $cases[] = [ '<input type="checkbox"/>',
572 'input', [ 'type' => 'checkbox', 'value' => 'on' ],
573 'Default value "on" is stripped of checkboxes',
575 $cases[] = [ '<input type="radio"/>',
576 'input', [ 'type' => 'radio', 'value' => 'on' ],
577 'Default value "on" is stripped of radio buttons',
579 $cases[] = [ '<input type="submit" value="Submit"/>',
580 'input', [ 'type' => 'submit', 'value' => 'Submit' ],
581 'Default value "Submit" is kept on submit buttons (for possible l10n issues)',
583 $cases[] = [ '<input type="color"/>',
584 'input', [ 'type' => 'color', 'value' => '' ],
586 $cases[] = [ '<input type="range"/>',
587 'input', [ 'type' => 'range', 'value' => '' ],
590 # <button> specific handling
591 # see remarks on https://msdn.microsoft.com/library/ms535211(v=vs.85).aspx
592 $cases[] = [ '<button type="submit"></button>',
593 'button', [ 'type' => 'submit' ],
594 'According to standard the default type is "submit". '
595 . 'Depending on compatibility mode IE might use "button", instead.',
598 # <select> specific handling
599 $cases[] = [ '<select multiple=""></select>',
600 'select', [ 'size' => '4', 'multiple' => true ],
602 # .. with numeric value
603 $cases[] = [ '<select multiple=""></select>',
604 'select', [ 'size' => 4, 'multiple' => true ],
606 $cases[] = [ '<select></select>',
607 'select', [ 'size' => '1', 'multiple' => false ],
609 # .. with numeric value
610 $cases[] = [ '<select></select>',
611 'select', [ 'size' => 1, 'multiple' => false ],
614 # Passing an array as value
615 $cases[] = [ '<a class="css-class-one css-class-two"></a>',
616 'a', [ 'class' => [ 'css-class-one', 'css-class-two' ] ],
617 "dropDefaults accepts values given as an array"
620 # FIXME: doDropDefault should remove defaults given in an array
621 # Expected should be '<a></a>'
622 $cases[] = [ '<a class=""></a>',
623 'a', [ 'class' => [ '', '' ] ],
624 "dropDefaults accepts values given as an array"
627 # Craft the Html elements
629 foreach ( $cases as $case ) {
633 isset( $case[3] ) ?
$case[3] : ''
640 public function testWrapperInput() {
642 '<input type="radio" value="testval" name="testname"/>',
643 Html
::input( 'testname', 'testval', 'radio' ),
644 'Input wrapper with type and value.'
647 '<input name="testname"/>',
648 Html
::input( 'testname' ),
649 'Input wrapper with all default values.'
653 public function testWrapperCheck() {
655 '<input type="checkbox" value="1" name="testname"/>',
656 Html
::check( 'testname' ),
657 'Checkbox wrapper unchecked.'
660 '<input checked="" type="checkbox" value="1" name="testname"/>',
661 Html
::check( 'testname', true ),
662 'Checkbox wrapper checked.'
665 '<input type="checkbox" value="testval" name="testname"/>',
666 Html
::check( 'testname', false, [ 'value' => 'testval' ] ),
667 'Checkbox wrapper with a value override.'
671 public function testWrapperRadio() {
673 '<input type="radio" value="1" name="testname"/>',
674 Html
::radio( 'testname' ),
675 'Radio wrapper unchecked.'
678 '<input checked="" type="radio" value="1" name="testname"/>',
679 Html
::radio( 'testname', true ),
680 'Radio wrapper checked.'
683 '<input type="radio" value="testval" name="testname"/>',
684 Html
::radio( 'testname', false, [ 'value' => 'testval' ] ),
685 'Radio wrapper with a value override.'
689 public function testWrapperLabel() {
691 '<label for="testid">testlabel</label>',
692 Html
::label( 'testlabel', 'testid' ),
697 public static function provideSrcSetImages() {
699 [ [], '', 'when there are no images, return empty string' ],
701 [ '1x' => '1x.png', '1.5x' => '1_5x.png', '2x' => '2x.png' ],
702 '1x.png 1x, 1_5x.png 1.5x, 2x.png 2x',
703 'pixel depth keys may include a trailing "x"'
706 [ '1' => '1x.png', '1.5' => '1_5x.png', '2' => '2x.png' ],
707 '1x.png 1x, 1_5x.png 1.5x, 2x.png 2x',
708 'pixel depth keys may omit a trailing "x"'
711 [ '1' => 'small.png', '1.5' => 'large.png', '2' => 'large.png' ],
712 'small.png 1x, large.png 1.5x',
713 'omit larger duplicates'
716 [ '1' => 'small.png', '2' => 'large.png', '1.5' => 'large.png' ],
717 'small.png 1x, large.png 1.5x',
718 'omit larger duplicates in irregular order'
724 * @dataProvider provideSrcSetImages
725 * @covers Html::srcSet
727 public function testSrcSet( $images, $expected, $message ) {
728 $this->assertEquals( Html
::srcSet( $images ), $expected, $message );
732 class HtmlTestValue
{
733 function __toString() {
734 return 'stringValue';