class LocalTaskDefaultTest in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Menu/LocalTaskDefaultTest.php \Drupal\Tests\Core\Menu\LocalTaskDefaultTest
@coversDefaultClass \Drupal\Core\Menu\LocalTaskDefault @group Menu
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\Core\Menu\LocalTaskDefaultTest
Expanded class hierarchy of LocalTaskDefaultTest
File
- core/
tests/ Drupal/ Tests/ Core/ Menu/ LocalTaskDefaultTest.php, line 21 - Contains \Drupal\Tests\Core\Menu\LocalTaskDefaultTest.
Namespace
Drupal\Tests\Core\MenuView source
class LocalTaskDefaultTest extends UnitTestCase {
/**
* The tested local task default plugin.
*
* @var \Drupal\Core\Menu\LocalTaskDefault
*/
protected $localTaskBase;
/**
* The used plugin configuration.
*
* @var array
*/
protected $config = [];
/**
* The used plugin ID.
*
* @var string
*/
protected $pluginId = 'local_task_default';
/**
* The used plugin definition.
*
* @var array
*/
protected $pluginDefinition = [
'id' => 'local_task_default',
];
/**
* The mocked translator.
*
* @var \Drupal\Core\StringTranslation\TranslationInterface|\PHPUnit\Framework\MockObject\MockObject
*/
protected $stringTranslation;
/**
* The mocked route provider.
*
* @var \Drupal\Core\Routing\RouteProviderInterface|\PHPUnit\Framework\MockObject\MockObject
*/
protected $routeProvider;
protected function setUp() {
parent::setUp();
$this->stringTranslation = $this
->createMock('Drupal\\Core\\StringTranslation\\TranslationInterface');
$this->routeProvider = $this
->createMock('Drupal\\Core\\Routing\\RouteProviderInterface');
}
/**
* Setups the local task default.
*/
protected function setupLocalTaskDefault() {
$this->localTaskBase = new TestLocalTaskDefault($this->config, $this->pluginId, $this->pluginDefinition);
$this->localTaskBase
->setRouteProvider($this->routeProvider);
}
/**
* @covers ::getRouteParameters
*/
public function testGetRouteParametersForStaticRoute() {
$this->pluginDefinition = [
'route_name' => 'test_route',
];
$this->routeProvider
->expects($this
->once())
->method('getRouteByName')
->with('test_route')
->will($this
->returnValue(new Route('/test-route')));
$this
->setupLocalTaskDefault();
$route_match = new RouteMatch('', new Route('/'));
$this
->assertEquals([], $this->localTaskBase
->getRouteParameters($route_match));
}
/**
* @covers ::getRouteParameters
*/
public function testGetRouteParametersInPluginDefinitions() {
$this->pluginDefinition = [
'route_name' => 'test_route',
'route_parameters' => [
'parameter' => 'example',
],
];
$this->routeProvider
->expects($this
->once())
->method('getRouteByName')
->with('test_route')
->will($this
->returnValue(new Route('/test-route/{parameter}')));
$this
->setupLocalTaskDefault();
$route_match = new RouteMatch('', new Route('/'));
$this
->assertEquals([
'parameter' => 'example',
], $this->localTaskBase
->getRouteParameters($route_match));
}
/**
* @covers ::getRouteParameters
*/
public function testGetRouteParametersForDynamicRouteWithNonUpcastedParameters() {
$this->pluginDefinition = [
'route_name' => 'test_route',
];
$route = new Route('/test-route/{parameter}');
$this->routeProvider
->expects($this
->once())
->method('getRouteByName')
->with('test_route')
->will($this
->returnValue($route));
$this
->setupLocalTaskDefault();
$route_match = new RouteMatch('', $route, [], [
'parameter' => 'example',
]);
$this
->assertEquals([
'parameter' => 'example',
], $this->localTaskBase
->getRouteParameters($route_match));
}
/**
* Tests the getRouteParameters method for a route with upcasted parameters.
*
* @covers ::getRouteParameters
*/
public function testGetRouteParametersForDynamicRouteWithUpcastedParameters() {
$this->pluginDefinition = [
'route_name' => 'test_route',
];
$route = new Route('/test-route/{parameter}');
$this->routeProvider
->expects($this
->once())
->method('getRouteByName')
->with('test_route')
->will($this
->returnValue($route));
$this
->setupLocalTaskDefault();
$route_match = new RouteMatch('', $route, [
'parameter' => (object) 'example2',
], [
'parameter' => 'example',
]);
$this
->assertEquals([
'parameter' => 'example',
], $this->localTaskBase
->getRouteParameters($route_match));
}
/**
* Tests the getRouteParameters method for a route with upcasted parameters.
*
* @covers ::getRouteParameters
*/
public function testGetRouteParametersForDynamicRouteWithUpcastedParametersEmptyRawParameters() {
$this->pluginDefinition = [
'route_name' => 'test_route',
];
$route = new Route('/test-route/{parameter}');
$this->routeProvider
->expects($this
->once())
->method('getRouteByName')
->with('test_route')
->will($this
->returnValue($route));
$this
->setupLocalTaskDefault();
$route_match = new RouteMatch('', $route, [
'parameter' => (object) 'example2',
]);
$this
->assertEquals([
'parameter' => (object) 'example2',
], $this->localTaskBase
->getRouteParameters($route_match));
}
/**
* Defines a data provider for testGetWeight().
*
* @return array
* A list or test plugin definition and expected weight.
*/
public function providerTestGetWeight() {
return [
// Manually specify a weight, so this is used.
[
[
'weight' => 314,
],
'test_id',
314,
],
// Ensure that a default tab gets a lower weight.
[
[
'base_route' => 'local_task_default',
'route_name' => 'local_task_default',
'id' => 'local_task_default',
],
'local_task_default',
-10,
],
// If the base route is different from the route of the tab, ignore it.
[
[
'base_route' => 'local_task_example',
'route_name' => 'local_task_other',
'id' => 'local_task_default',
],
'local_task_default',
0,
],
// Ensure that a default tab of a derivative gets the default value.
[
[
'base_route' => 'local_task_example',
'id' => 'local_task_derivative_default:example_id',
'route_name' => 'local_task_example',
],
'local_task_derivative_default:example_id',
-10,
],
];
}
/**
* @dataProvider providerTestGetWeight
* @covers ::getWeight
*/
public function testGetWeight($plugin_definition, $plugin_id, $expected_weight) {
$this->pluginDefinition = $plugin_definition;
$this->pluginId = $plugin_id;
$this
->setupLocalTaskDefault();
$this
->assertEquals($expected_weight, $this->localTaskBase
->getWeight());
}
/**
* @covers ::getActive
* @covers ::setActive
*/
public function testActive() {
$this
->setupLocalTaskDefault();
$this
->assertFalse($this->localTaskBase
->getActive());
$this->localTaskBase
->setActive();
$this
->assertTrue($this->localTaskBase
->getActive());
}
/**
* @covers ::getTitle
*/
public function testGetTitle() {
$this->pluginDefinition['title'] = new TranslatableMarkup('Example', [], [], $this->stringTranslation);
$this->stringTranslation
->expects($this
->once())
->method('translateString')
->with($this->pluginDefinition['title'])
->will($this
->returnValue('Example translated'));
$this
->setupLocalTaskDefault();
$this
->assertEquals('Example translated', $this->localTaskBase
->getTitle());
}
/**
* @covers ::getTitle
*/
public function testGetTitleWithContext() {
$title = 'Example';
$this->pluginDefinition['title'] = new TranslatableMarkup($title, [], [
'context' => 'context',
], $this->stringTranslation);
$this->stringTranslation
->expects($this
->once())
->method('translateString')
->with($this->pluginDefinition['title'])
->will($this
->returnValue('Example translated with context'));
$this
->setupLocalTaskDefault();
$this
->assertEquals('Example translated with context', $this->localTaskBase
->getTitle());
}
/**
* @covers ::getTitle
*/
public function testGetTitleWithTitleArguments() {
$this->pluginDefinition['title'] = new TranslatableMarkup('Example @test', [
'@test' => 'value',
], [], $this->stringTranslation);
$this->stringTranslation
->expects($this
->once())
->method('translateString')
->with($this->pluginDefinition['title'])
->will($this
->returnValue('Example value'));
$this
->setupLocalTaskDefault();
$this
->assertEquals('Example value', $this->localTaskBase
->getTitle());
}
/**
* @covers ::getOptions
*/
public function testGetOptions() {
$this->pluginDefinition['options'] = [
'attributes' => [
'class' => [
'example',
],
],
];
$this
->setupLocalTaskDefault();
$route_match = new RouteMatch('', new Route('/'));
$this
->assertEquals($this->pluginDefinition['options'], $this->localTaskBase
->getOptions($route_match));
$this->localTaskBase
->setActive(TRUE);
$this
->assertEquals([
'attributes' => [
'class' => [
'example',
'is-active',
],
],
], $this->localTaskBase
->getOptions($route_match));
}
/**
* @covers ::getCacheContexts
* @covers ::getCacheTags
* @covers ::getCacheMaxAge
*/
public function testCacheabilityMetadata() {
$this->pluginDefinition['cache_contexts'] = [
'route',
];
$this->pluginDefinition['cache_tags'] = [
'kitten',
];
$this->pluginDefinition['cache_max_age'] = 3600;
$this
->setupLocalTaskDefault();
$this
->assertEquals([
'route',
], $this->localTaskBase
->getCacheContexts());
$this
->assertEquals([
'kitten',
], $this->localTaskBase
->getCacheTags());
$this
->assertEquals(3600, $this->localTaskBase
->getCacheMaxAge());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
LocalTaskDefaultTest:: |
protected | property | The used plugin configuration. | |
LocalTaskDefaultTest:: |
protected | property | The tested local task default plugin. | |
LocalTaskDefaultTest:: |
protected | property | The used plugin definition. | |
LocalTaskDefaultTest:: |
protected | property | The used plugin ID. | |
LocalTaskDefaultTest:: |
protected | property | The mocked route provider. | |
LocalTaskDefaultTest:: |
protected | property | The mocked translator. | |
LocalTaskDefaultTest:: |
public | function | Defines a data provider for testGetWeight(). | |
LocalTaskDefaultTest:: |
protected | function |
Overrides UnitTestCase:: |
|
LocalTaskDefaultTest:: |
protected | function | Setups the local task default. | |
LocalTaskDefaultTest:: |
public | function | @covers ::getActive @covers ::setActive | |
LocalTaskDefaultTest:: |
public | function | @covers ::getCacheContexts @covers ::getCacheTags @covers ::getCacheMaxAge | |
LocalTaskDefaultTest:: |
public | function | @covers ::getOptions | |
LocalTaskDefaultTest:: |
public | function | @covers ::getRouteParameters | |
LocalTaskDefaultTest:: |
public | function | Tests the getRouteParameters method for a route with upcasted parameters. | |
LocalTaskDefaultTest:: |
public | function | Tests the getRouteParameters method for a route with upcasted parameters. | |
LocalTaskDefaultTest:: |
public | function | @covers ::getRouteParameters | |
LocalTaskDefaultTest:: |
public | function | @covers ::getRouteParameters | |
LocalTaskDefaultTest:: |
public | function | @covers ::getTitle | |
LocalTaskDefaultTest:: |
public | function | @covers ::getTitle | |
LocalTaskDefaultTest:: |
public | function | @covers ::getTitle | |
LocalTaskDefaultTest:: |
public | function | @dataProvider providerTestGetWeight @covers ::getWeight | |
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | 1 |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. |