mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-18 03:31:34 +00:00
9b7b10bbe9
* Introduce a HomeMenuEntry class and use it for adding the home menu link * Provide override methods for text and CSS class Bug: T223210 Change-Id: I37160887478cba829a6e2f10a4d8f87d95167556
58 lines
1.4 KiB
PHP
58 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Tests\MediaWiki\Minerva\Menu;
|
|
|
|
use MediaWiki\Minerva\Menu\HomeMenuEntry;
|
|
|
|
/**
|
|
* @group MinervaNeue
|
|
* @coversDefaultClass \MediaWiki\Minerva\Menu\HomeMenuEntry
|
|
*/
|
|
class HomeMenuEntryTest extends \MediaWikiUnitTestCase {
|
|
|
|
/**
|
|
* @covers ::__construct
|
|
* @covers ::getName
|
|
* @covers ::getCSSClasses
|
|
* @covers ::getComponents
|
|
*/
|
|
public function testConstruct() {
|
|
$name = 'foo';
|
|
$text = 'bar';
|
|
$url = 'http://baz';
|
|
$entry = new HomeMenuEntry( $name, $text, $url );
|
|
$this->assertSame( $name, $entry->getName() );
|
|
$this->assertSame( [], $entry->getCSSClasses() );
|
|
$this->assertSame( [ [
|
|
'text' => $text,
|
|
'href' => $url,
|
|
'class' => 'mw-ui-icon mw-ui-icon-before mw-ui-icon-minerva-foo',
|
|
'data-event-name' => 'foo'
|
|
] ], $entry->getComponents() );
|
|
}
|
|
|
|
/**
|
|
* @covers ::overrideCssClass
|
|
* @covers ::overrideText
|
|
* @covers ::getComponents
|
|
*/
|
|
public function testOverride() {
|
|
$entry = new HomeMenuEntry( 'foo', 'bar', 'http://baz' );
|
|
$component = current( $entry->getComponents() );
|
|
$this->assertSame( 'bar', $component['text'] );
|
|
$this->assertSame(
|
|
'mw-ui-icon mw-ui-icon-before mw-ui-icon-minerva-foo',
|
|
$component['class']
|
|
);
|
|
$entry->overrideText( 'blah' )
|
|
->overrideCssClass( 'classy' );
|
|
$component = current( $entry->getComponents() );
|
|
$this->assertSame( 'blah', $component['text'] );
|
|
$this->assertSame(
|
|
'classy',
|
|
$component['class']
|
|
);
|
|
}
|
|
|
|
}
|