mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-13 17:37:07 +00:00
1f4582cc09
Changes: - moved all menu elements definitions from SkinMinerva into a separate Definitions.php file - moved menu building from SkinMinerva into includes/menu/Main folder - introduced Builder pattern for easy menu building Minerva/Menu/Main/Director takes an Minerva/Menu/Main/IBuilder and builds the menu. The IBuilders use definitions from Minerva/Menu/Definitions file, so all definitions can be shared across different menus - used ServiceWiring file to register MainMenu Director as Service - left class_alias for old MenuBuilder as some extensions still use it - The hooks system have to stay like that as some extensions are using it (BlueSpiceMultiUpload and GrowthExperiments). - introduced AdvancedMenu builder for the AMC mode Bug: T216152 Change-Id: I210c3f1fa36bbd2f9108d728b12cbb21ee210354
240 lines
5.6 KiB
PHP
240 lines
5.6 KiB
PHP
<?php
|
|
|
|
namespace Tests\MediaWiki\Minerva\Menu;
|
|
|
|
use MediaWiki\Minerva\Menu\Group;
|
|
|
|
/**
|
|
* @group MinervaNeue
|
|
* @coversDefaultClass \MediaWiki\Minerva\Menu\Group
|
|
*/
|
|
class GroupTest extends \MediaWikiTestCase {
|
|
private $homeComponent = [
|
|
'text' => 'Home',
|
|
'href' => '/Main_page',
|
|
'class' => 'mw-ui-icon mw-ui-icon-before mw-ui-icon-home',
|
|
'data-event-name' => 'home',
|
|
];
|
|
|
|
private $nearbyComponent = [
|
|
'text' => 'Nearby',
|
|
'href' => '/wiki/Special:Nearby',
|
|
'class' => 'mw-ui-icon mw-ui-icon-before mw-ui-icon-nearby',
|
|
];
|
|
|
|
/**
|
|
* @covers ::getEntries
|
|
*/
|
|
public function testItShouldntHaveEntriesByDefault() {
|
|
$menu = new Group();
|
|
|
|
$this->assertEmpty( $menu->getEntries() );
|
|
}
|
|
|
|
/**
|
|
* @covers ::insert
|
|
* @covers ::search
|
|
* @covers ::getEntries
|
|
* @covers \MediaWiki\Minerva\Menu\MenuEntry::addComponent
|
|
*/
|
|
public function testInsertingAnEntry() {
|
|
$menu = new Group();
|
|
$menu->insert( 'home' )
|
|
->addComponent(
|
|
$this->homeComponent['text'],
|
|
$this->homeComponent['href'],
|
|
$this->homeComponent['class'],
|
|
[
|
|
'data-event-name' => $this->homeComponent['data-event-name']
|
|
]
|
|
);
|
|
|
|
$expectedEntries = [
|
|
[
|
|
'name' => 'home',
|
|
'components' => [ $this->homeComponent ],
|
|
],
|
|
];
|
|
|
|
$this->assertEquals( $expectedEntries, $menu->getEntries() );
|
|
}
|
|
|
|
/**
|
|
* @covers ::insert
|
|
* @covers ::search
|
|
* @covers ::getEntries
|
|
* @covers \MediaWiki\Minerva\Menu\MenuEntry::addComponent
|
|
*/
|
|
public function testInsertingAnEntryAfterAnother() {
|
|
$menu = new Group();
|
|
$menu->insert( 'home' )
|
|
->addComponent(
|
|
$this->homeComponent['text'],
|
|
$this->homeComponent['href'],
|
|
$this->homeComponent['class'],
|
|
[
|
|
'data-event-name' => $this->homeComponent['data-event-name']
|
|
]
|
|
);
|
|
$menu->insert( 'another_home' )
|
|
->addComponent(
|
|
$this->homeComponent['text'],
|
|
$this->homeComponent['href'],
|
|
$this->homeComponent['class'],
|
|
[
|
|
'data-event-name' => $this->homeComponent['data-event-name']
|
|
]
|
|
);
|
|
$menu->insertAfter( 'home', 'nearby' )
|
|
->addComponent(
|
|
$this->nearbyComponent['text'],
|
|
$this->nearbyComponent['href'],
|
|
$this->nearbyComponent['class']
|
|
);
|
|
|
|
$expectedEntries = [
|
|
[
|
|
'name' => 'home',
|
|
'components' => [ $this->homeComponent ],
|
|
],
|
|
[
|
|
'name' => 'nearby',
|
|
'components' => [ $this->nearbyComponent ],
|
|
],
|
|
[
|
|
'name' => 'another_home',
|
|
'components' => [ $this->homeComponent ],
|
|
],
|
|
];
|
|
|
|
$this->assertEquals( $expectedEntries, $menu->getEntries() );
|
|
}
|
|
|
|
/**
|
|
* @expectedException \DomainException
|
|
* @expectedExceptionMessage The "home" entry doesn't exist.
|
|
* @covers ::insertAfter
|
|
* @covers ::search
|
|
* @covers \MediaWiki\Minerva\Menu\MenuEntry::addComponent
|
|
*/
|
|
public function testInsertAfterWhenTargetEntryDoesntExist() {
|
|
$menu = new Group();
|
|
$menu->insertAfter( 'home', 'nearby' )
|
|
->addComponent(
|
|
$this->nearbyComponent['text'],
|
|
$this->nearbyComponent['href'],
|
|
$this->nearbyComponent['class']
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \DomainException
|
|
* @expectedExceptionMessage The "car" entry already exists.
|
|
* @covers ::insertAfter
|
|
*/
|
|
public function testInsertAfterWithAnEntryWithAnExistingName() {
|
|
$menu = new Group();
|
|
$menu->insert( 'home' );
|
|
$menu->insert( 'car' );
|
|
$menu->insertAfter( 'home', 'car' );
|
|
}
|
|
|
|
/**
|
|
* @expectedException \DomainException
|
|
* @expectedExceptionMessage The "home" entry already exists.
|
|
* @covers ::insert
|
|
*/
|
|
public function testInsertingAnEntryWithAnExistingName() {
|
|
$menu = new Group();
|
|
$menu->insert( 'home' );
|
|
$menu->insert( 'home' );
|
|
}
|
|
|
|
/**
|
|
* @covers ::insert
|
|
* @covers ::insertAfter
|
|
*/
|
|
public function testInsertingAnEntryAfterAnotherOne() {
|
|
$menu = new Group();
|
|
$menu->insert( 'first' );
|
|
$menu->insert( 'last' );
|
|
$menu->insertAfter( 'first', 'middle' );
|
|
$items = $menu->getEntries();
|
|
$this->assertCount( 3, $items );
|
|
$this->assertSame( 'first', $items[0]['name'] );
|
|
$this->assertSame( 'middle', $items[1]['name'] );
|
|
$this->assertSame( 'last', $items[2]['name'] );
|
|
}
|
|
|
|
/**
|
|
* @covers ::insert
|
|
* @covers ::getEntries
|
|
* @covers \MediaWiki\Minerva\Menu\MenuEntry::addComponent
|
|
*/
|
|
public function testinsertingAnEntryWithMultipleComponents() {
|
|
$authLoginComponent = [
|
|
'text' => 'Phuedx (WMF)',
|
|
'href' => '/wiki/User:Phuedx_(WMF)',
|
|
'class' =>
|
|
'mw-ui-icon mw-ui-icon-before mw-ui-icon-profile truncated-text primary-action',
|
|
];
|
|
$authLogoutComponent = [
|
|
'text' => 'Logout',
|
|
'href' => '/wiki/Special:UserLogout',
|
|
'class' =>
|
|
'mw-ui-icon mw-ui-icon-element secondary-logout secondary-action truncated-text',
|
|
];
|
|
|
|
$menu = new Group();
|
|
$menu->insert( 'auth' )
|
|
->addComponent(
|
|
$authLoginComponent['text'],
|
|
$authLoginComponent['href'],
|
|
$authLoginComponent['class']
|
|
)
|
|
->addComponent(
|
|
$authLogoutComponent['text'],
|
|
$authLogoutComponent['href'],
|
|
$authLogoutComponent['class']
|
|
);
|
|
|
|
$expectedEntries = [
|
|
[
|
|
'name' => 'auth',
|
|
'components' => [
|
|
$authLoginComponent,
|
|
$authLogoutComponent
|
|
],
|
|
],
|
|
];
|
|
|
|
$this->assertEquals( $expectedEntries, $menu->getEntries() );
|
|
}
|
|
|
|
/**
|
|
* @covers ::insert
|
|
* @covers ::getEntries
|
|
* @covers \MediaWiki\Minerva\Menu\MenuEntry::addComponent
|
|
*/
|
|
public function testInsertingAJavascriptOnlyEntry() {
|
|
$menu = new Group();
|
|
$menu->insert( 'nearby', $isJSOnly = true )
|
|
->addComponent(
|
|
$this->nearbyComponent['text'],
|
|
$this->nearbyComponent['href'],
|
|
$this->nearbyComponent['class']
|
|
);
|
|
|
|
$expectedEntries = [
|
|
[
|
|
'name' => 'nearby',
|
|
'components' => [ $this->nearbyComponent ],
|
|
'class' => 'jsonly'
|
|
],
|
|
];
|
|
|
|
$this->assertEquals( $expectedEntries, $menu->getEntries() );
|
|
}
|
|
|
|
}
|