class EntityBundleAccessCheckTest in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Entity/EntityBundleAccessCheckTest.php \Drupal\Tests\Core\Entity\EntityBundleAccessCheckTest
Unit test of entity access checking system.
@coversDefaultClass \Drupal\Core\Entity\EntityBundleAccessCheck
@group Access @group Entity
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\Core\Entity\EntityBundleAccessCheckTest
Expanded class hierarchy of EntityBundleAccessCheckTest
File
- core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityBundleAccessCheckTest.php, line 24
Namespace
Drupal\Tests\Core\EntityView source
class EntityBundleAccessCheckTest extends UnitTestCase {
/**
* {@inheritdoc}
*/
protected function setUp() {
$cache_contexts_manager = $this
->prophesize(CacheContextsManager::class)
->reveal();
$container = new Container();
$container
->set('cache_contexts_manager', $cache_contexts_manager);
\Drupal::setContainer($container);
}
/**
* Data provider.
*/
public function getBundleAndAccessResult() {
return [
[
'article',
'node:article',
AccessResult::allowed(),
],
[
'page',
'node:article',
AccessResult::neutral('The entity bundle does not match the route _entity_bundles requirement.'),
],
[
'page',
'node:article|page',
AccessResult::allowed(),
],
[
'article',
'node:article|page',
AccessResult::allowed(),
],
[
'book_page',
'node:article|page',
AccessResult::neutral('The entity bundle does not match the route _entity_bundles requirement.'),
],
];
}
/**
* @covers ::access
*
* @dataProvider getBundleAndAccessResult
*/
public function testRouteAccess($bundle, $access_requirement, $access_result) {
$route = new Route('/foo/{node}', [], [
'_entity_bundles' => $access_requirement,
], [
'parameters' => [
'node' => [
'type' => 'entity:node',
],
],
]);
/** @var \Drupal\Core\Session\AccountInterface $account */
$account = $this
->prophesize(AccountInterface::class)
->reveal();
/** @var \Drupal\node\NodeInterface|\Prophecy\Prophecy\ObjectProphecy $node */
$node = $this
->prophesize(NodeInterface::class);
$node
->bundle()
->willReturn($bundle);
$node
->getCacheContexts()
->willReturn([]);
$node
->getCacheTags()
->willReturn([]);
$node
->getCacheMaxAge()
->willReturn(-1);
$node = $node
->reveal();
/** @var \Drupal\Core\Routing\RouteMatchInterface|\Prophecy\Prophecy\ObjectProphecy $route_match */
$route_match = $this
->prophesize(RouteMatchInterface::class);
$route_match
->getRawParameters()
->willReturn(new ParameterBag([
'node' => 1,
]));
$route_match
->getParameters()
->willReturn(new ParameterBag([
'node' => $node,
]));
$route_match = $route_match
->reveal();
$access_check = new EntityBundleAccessCheck();
$this
->assertEquals($access_result, $access_check
->access($route, $route_match, $account));
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EntityBundleAccessCheckTest:: |
public | function | Data provider. | |
EntityBundleAccessCheckTest:: |
protected | function |
Overrides UnitTestCase:: |
|
EntityBundleAccessCheckTest:: |
public | function | @covers ::access | |
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. |