class ContextualLinkDefaultTest
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Menu/ContextualLinkDefaultTest.php \Drupal\Tests\Core\Menu\ContextualLinkDefaultTest
- 10 core/tests/Drupal/Tests/Core/Menu/ContextualLinkDefaultTest.php \Drupal\Tests\Core\Menu\ContextualLinkDefaultTest
- 11.x core/tests/Drupal/Tests/Core/Menu/ContextualLinkDefaultTest.php \Drupal\Tests\Core\Menu\ContextualLinkDefaultTest
@group Menu @coversDefaultClass \Drupal\Core\Menu\ContextualLinkDefault
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpunitCompatibilityTrait
- class \Drupal\Tests\Core\Menu\ContextualLinkDefaultTest extends \Drupal\Tests\UnitTestCase
Expanded class hierarchy of ContextualLinkDefaultTest
File
-
core/
tests/ Drupal/ Tests/ Core/ Menu/ ContextualLinkDefaultTest.php, line 14
Namespace
Drupal\Tests\Core\MenuView source
class ContextualLinkDefaultTest extends UnitTestCase {
/**
* The tested contextual link default plugin.
*
* @var \Drupal\Core\Menu\ContextualLinkDefault
*/
protected $contextualLinkDefault;
/**
* The used plugin configuration.
*
* @var array
*/
protected $config = [];
/**
* The used plugin ID.
*
* @var string
*/
protected $pluginId = 'contextual_link_default';
/**
* The used plugin definition.
*
* @var array
*/
protected $pluginDefinition = [
'id' => 'contextual_link_default',
];
/**
* The mocked translator.
*
* @var \Drupal\Core\StringTranslation\TranslationInterface|\PHPUnit\Framework\MockObject\MockObject
*/
protected $stringTranslation;
protected function setUp() {
parent::setUp();
$this->stringTranslation = $this->createMock('Drupal\\Core\\StringTranslation\\TranslationInterface');
}
protected function setupContextualLinkDefault() {
$this->contextualLinkDefault = new ContextualLinkDefault($this->config, $this->pluginId, $this->pluginDefinition);
}
/**
* @covers ::getTitle
*/
public function testGetTitle() {
$title = 'Example';
$this->pluginDefinition['title'] = new TranslatableMarkup($title, [], [], $this->stringTranslation);
$this->stringTranslation
->expects($this->once())
->method('translateString')
->with($this->pluginDefinition['title'])
->will($this->returnValue('Example translated'));
$this->setupContextualLinkDefault();
$this->assertEquals('Example translated', $this->contextualLinkDefault
->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->setupContextualLinkDefault();
$this->assertEquals('Example translated with context', $this->contextualLinkDefault
->getTitle());
}
/**
* @covers ::getTitle
*/
public function testGetTitleWithTitleArguments() {
$title = 'Example @test';
$this->pluginDefinition['title'] = new TranslatableMarkup($title, [
'@test' => 'value',
], [], $this->stringTranslation);
$this->stringTranslation
->expects($this->once())
->method('translateString')
->with($this->pluginDefinition['title'])
->will($this->returnValue('Example value'));
$this->setupContextualLinkDefault();
$request = new Request();
$this->assertEquals('Example value', $this->contextualLinkDefault
->getTitle($request));
}
/**
* @covers ::getRouteName
*/
public function testGetRouteName($route_name = 'test_route_name') {
$this->pluginDefinition['route_name'] = $route_name;
$this->setupContextualLinkDefault();
$this->assertEquals($route_name, $this->contextualLinkDefault
->getRouteName());
}
/**
* @covers ::getGroup
*/
public function testGetGroup($group_name = 'test_group') {
$this->pluginDefinition['group'] = $group_name;
$this->setupContextualLinkDefault();
$this->assertEquals($group_name, $this->contextualLinkDefault
->getGroup());
}
/**
* @covers ::getOptions
*/
public function testGetOptions($options = [
'key' => 'value',
]) {
$this->pluginDefinition['options'] = $options;
$this->setupContextualLinkDefault();
$this->assertEquals($options, $this->contextualLinkDefault
->getOptions());
}
/**
* @covers ::getWeight
*/
public function testGetWeight($weight = 5) {
$this->pluginDefinition['weight'] = $weight;
$this->setupContextualLinkDefault();
$this->assertEquals($weight, $this->contextualLinkDefault
->getWeight());
}
}
Members
Title Sort descending | Deprecated | Modifiers | Object type | Summary | Overriden Title | Overrides |
---|---|---|---|---|---|---|
ContextualLinkDefaultTest::$config | protected | property | The used plugin configuration. | |||
ContextualLinkDefaultTest::$contextualLinkDefault | protected | property | The tested contextual link default plugin. | |||
ContextualLinkDefaultTest::$pluginDefinition | protected | property | The used plugin definition. | |||
ContextualLinkDefaultTest::$pluginId | protected | property | The used plugin ID. | |||
ContextualLinkDefaultTest::$stringTranslation | protected | property | The mocked translator. | |||
ContextualLinkDefaultTest::setUp | protected | function | Overrides UnitTestCase::setUp | |||
ContextualLinkDefaultTest::setupContextualLinkDefault | protected | function | ||||
ContextualLinkDefaultTest::testGetGroup | public | function | @covers ::getGroup | |||
ContextualLinkDefaultTest::testGetOptions | public | function | @covers ::getOptions | |||
ContextualLinkDefaultTest::testGetRouteName | public | function | @covers ::getRouteName | |||
ContextualLinkDefaultTest::testGetTitle | public | function | @covers ::getTitle | |||
ContextualLinkDefaultTest::testGetTitleWithContext | public | function | @covers ::getTitle | |||
ContextualLinkDefaultTest::testGetTitleWithTitleArguments | public | function | @covers ::getTitle | |||
ContextualLinkDefaultTest::testGetWeight | public | function | @covers ::getWeight | |||
PhpunitCompatibilityTrait::getMock | Deprecated | public | function | Returns a mock object for the specified class using the available method. | ||
PhpunitCompatibilityTrait::setExpectedException | Deprecated | public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | ||
UnitTestCase::$randomGenerator | protected | property | The random generator. | |||
UnitTestCase::$root | protected | property | The app root. | 1 | ||
UnitTestCase::assertArrayEquals | protected | function | Asserts if two arrays are equal by sorting them first. | |||
UnitTestCase::getBlockMockWithMachineName | Deprecated | protected | function | Mocks a block with a block plugin. | 1 | |
UnitTestCase::getClassResolverStub | protected | function | Returns a stub class resolver. | |||
UnitTestCase::getConfigFactoryStub | public | function | Returns a stub config factory that behaves according to the passed array. | |||
UnitTestCase::getConfigStorageStub | public | function | Returns a stub config storage that returns the supplied configuration. | |||
UnitTestCase::getContainerWithCacheTagsInvalidator | protected | function | Sets up a container with a cache tags invalidator. | |||
UnitTestCase::getRandomGenerator | protected | function | Gets the random generator for the utility methods. | |||
UnitTestCase::getStringTranslationStub | public | function | Returns a stub translation manager that just returns the passed string. | |||
UnitTestCase::randomMachineName | public | function | Generates a unique random string containing letters and numbers. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.