overrideConfigValues( [ MainConfigNames::LanguageCode => 'en', ] ); $langObj = $this->getServiceContainer()->getLanguageFactory()->getLanguage( 'en' ); $langObj->setNamespaces( [ -2 => 'Media', -1 => 'Special', 0 => '', 1 => 'Talk', 2 => 'User', 3 => 'User_talk', 4 => 'MyWiki', 5 => 'MyWiki_Talk', 6 => 'File', 7 => 'File_talk', 8 => 'MediaWiki', 9 => 'MediaWiki_talk', 10 => 'Template', 11 => 'Template_talk', 100 => 'Custom', 101 => 'Custom_talk', ] ); $this->setUserLang( $langObj ); } public static function provideElement() { // $expect, $element, $attribs, $contents yield 'Opening element with no attributes' => [ '', 'element', null, null ]; yield 'Terminated empty element' => [ '', 'element', null, '' ]; yield 'Element with no attributes and content that needs escaping' => [ '"hello <there> your\'s & you"', 'element', null, '"hello your\'s & you"' ]; yield 'Element attributes, keys are not escaped' => [ '="<>">', 'element', [ 'key' => 'value', '<>' => '<>' ], null ]; } /** * @dataProvider provideElement */ public function testElement( string $expect, string $element, $attribs, $content ) { $this->assertEquals( $expect, Xml::element( $element, $attribs, $content ) ); } public function testElementInputCanHaveAValueOfZero() { $this->assertEquals( '', Xml::input( 'name', false, 0 ), 'Input with a value of 0 (T25797)' ); } public function testOpenElement() { $this->assertEquals( '', Xml::openElement( 'element', [ 'k' => 'v' ] ), 'openElement() shortcut' ); } public function testCloseElement() { $this->assertEquals( '', Xml::closeElement( 'element' ), 'closeElement() shortcut' ); } public static function provideMonthSelector() { # providers are run before services are set up $lang = new class() { public function getMonthName( $i ) { $months = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', ]; return $months[$i - 1] ?? 'unknown'; } }; $header = ''; $monthsString = ''; for ( $i = 1; $i < 13; $i++ ) { $monthName = $lang->getMonthName( $i ); $monthsString .= ""; if ( $i !== 12 ) { $monthsString .= "\n"; } } $monthsString2 = str_replace( '', '', $monthsString ); $end = ''; $allMonths = "\n"; return [ [ $header . $monthsString . $end, '', null, 'month' ], [ $header . $monthsString2 . $end, 12, null, 'month' ], [ $header2 . $monthsString . $end, '', null, 'monthSelector' ], [ $header . $allMonths . $monthsString . $end, '', 'AllMonths', 'month' ], ]; } /** * @dataProvider provideMonthSelector */ public function testMonthSelector( $expected, $selected, $allmonths, $id ) { $this->hideDeprecated( 'MediaWiki\Xml\Xml::monthSelector' ); $this->assertEquals( $expected, Xml::monthSelector( $selected, $allmonths, $id ) ); } public function testSpan() { $this->assertEquals( 'element', Xml::span( 'element', 'foo', [ 'id' => 'testSpan' ] ) ); } public function testDateMenu() { $curYear = intval( gmdate( 'Y' ) ); $prevYear = $curYear - 1; $curMonth = intval( gmdate( 'n' ) ); $nextMonth = $curMonth + 1; if ( $nextMonth == 13 ) { $nextMonth = 1; } $this->hideDeprecated( 'MediaWiki\Xml\Xml::dateMenu' ); $this->hideDeprecated( 'MediaWiki\Xml\Xml::monthSelector' ); $this->assertEquals( ' ' . ' ' . ' ' . '', Xml::dateMenu( 2011, 02 ), "Date menu for february 2011" ); $this->assertEquals( ' ' . ' ' . ' ' . '', Xml::dateMenu( 2011, -1 ), "Date menu with negative month for 'All'" ); $this->assertEquals( Xml::dateMenu( $curYear, $curMonth ), Xml::dateMenu( '', $curMonth ), "Date menu year is the current one when not specified" ); $wantedYear = $nextMonth == 1 ? $curYear : $prevYear; $this->assertEquals( Xml::dateMenu( $wantedYear, $nextMonth ), Xml::dateMenu( '', $nextMonth ), "Date menu next month is 11 months ago" ); $this->assertEquals( ' ' . ' ' . ' ' . '', Xml::dateMenu( '', '' ), "Date menu with neither year or month" ); } public function testTextareaNoContent() { $this->assertEquals( '', Xml::textarea( 'name', '' ), 'textarea() with not content' ); } public function testTextareaAttribs() { $this->assertEquals( '', Xml::textarea( 'name', '', 20, 10 ), 'textarea() with custom attribs' ); } public function testLabelCreation() { $this->assertEquals( '', Xml::label( 'name', 'id' ), 'label() with no attribs' ); } public function testLabelAttributeCanOnlyBeClassOrTitle() { $this->assertEquals( '', Xml::label( 'name', 'id', [ 'generated' => true ] ), 'label() cannot be given a generated attribute' ); $this->assertEquals( '', Xml::label( 'name', 'id', [ 'class' => 'nice' ] ), 'label() can get a class attribute' ); $this->assertEquals( '', Xml::label( 'name', 'id', [ 'title' => 'nice tooltip' ] ), 'label() can get a title attribute' ); $this->assertEquals( '', Xml::label( 'name', 'id', [ 'generated' => true, 'class' => 'nice', 'title' => 'nice tooltip', 'anotherattr' => 'value', ] ), 'label() skip all attributes but "class" and "title"' ); } public function testLanguageSelector() { $this->hideDeprecated( 'MediaWiki\Xml\Xml::languageSelector' ); $select = Xml::languageSelector( 'en', true, null, [ 'id' => 'testlang' ], wfMessage( 'yourlanguage' ) ); $this->assertEquals( '', $select[0] ); } public function testListDropdown() { $this->assertEquals( '', Xml::listDropdown( // name 'test-name', // source list "* Foo\n** Foo 1\n** Example\n* Bar\n** Bar 1", // other 'other reasons', // selected 'Example', // class 'test-css', // tabindex 2 ) ); } public function testListDropdownOptions() { $this->assertEquals( [ 'other reasons' => 'other', 'Empty group item' => 'Empty group item', 'Foo' => [ 'Foo 1' => 'Foo 1', 'Example' => 'Example', ], 'Bar' => [ 'Bar 1' => 'Bar 1', ], ], Xml::listDropdownOptions( "*\n** Empty group item\n* Foo\n** Foo 1\n** Example\n* Bar\n** Bar 1", [ 'other' => 'other reasons' ] ) ); } public function testListDropdownOptionsOthers() { // Do not use the value for 'other' as option group - T251351 $this->assertEquals( [ 'other reasons' => 'other', 'Foo 1' => 'Foo 1', 'Example' => 'Example', 'Bar' => [ 'Bar 1' => 'Bar 1', ], ], Xml::listDropdownOptions( "* other reasons\n** Foo 1\n** Example\n* Bar\n** Bar 1", [ 'other' => 'other reasons' ] ) ); } public function testListDropdownOptionsOoui() { $this->assertEquals( [ [ 'data' => 'other', 'label' => 'other reasons' ], [ 'optgroup' => 'Foo' ], [ 'data' => 'Foo 1', 'label' => 'Foo 1' ], [ 'data' => 'Example', 'label' => 'Example' ], [ 'optgroup' => 'Bar' ], [ 'data' => 'Bar 1', 'label' => 'Bar 1' ], ], Xml::listDropdownOptionsOoui( [ 'other reasons' => 'other', 'Foo' => [ 'Foo 1' => 'Foo 1', 'Example' => 'Example', ], 'Bar' => [ 'Bar 1' => 'Bar 1', ], ] ) ); } public static function provideFieldset() { // $expect, [ $arg1, $arg2, ... ] yield 'Opening tag' => [ "
\n", [] ]; yield 'Opening tag (false means no legend)' => [ "
\n", [ false ] ]; yield 'Opening tag (empty string means no legend)' => [ "
\n", [ '' ] ]; yield 'Opening tag with legend' => [ "
\nFoo\n", [ 'Foo' ] ]; yield 'Entire element with legend' => [ "
\nFoo\nBar\n
\n", [ 'Foo', 'Bar' ] ]; yield 'Opening tag with legend (false means no content and no closing tag)' => [ "
\nFoo\n", [ 'Foo', false ] ]; yield 'Entire element with legend but no content (empty string generates a closing tag)' => [ "
\nFoo\n\n
\n", [ 'Foo', '' ] ]; yield 'Opening tag with legend and attributes' => [ "
\nFoo\nBar\n
\n", [ 'Foo', 'Bar', [ 'class' => 'bar' ] ] ]; yield 'Entire element with legend and attributes' => [ "
\nFoo\n", [ 'Foo', false, [ 'class' => 'bar' ] ] ]; } /** * @dataProvider provideFieldset */ public function testFieldset( string $expect, array $args ) { $this->assertEquals( $expect, Xml::fieldset( ...$args ) ); } public function testBuildTable() { $firstRow = [ 'foo', 'bar' ]; $secondRow = [ 'Berlin', 'Tehran' ]; $headers = [ 'header1', 'header2' ]; $expected = '' . '' . '
header1header2
foobar
BerlinTehran
'; $this->assertEquals( $expected, Xml::buildTable( [ $firstRow, $secondRow ], [ 'id' => 'testTable' ], $headers ) ); } public function testBuildTableRow() { $this->assertEquals( 'foobar', Xml::buildTableRow( [ 'id' => 'testRow' ], [ 'foo', 'bar' ] ) ); } }