class EntityBundleAccessCheckTest
Same name and namespace in other branches
- 8.9.x 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 @group legacy
Hierarchy
- class \Drupal\Tests\UnitTestCase uses \Drupal\Tests\Traits\PhpUnitWarnings, \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait extends \PHPUnit\Framework\TestCase
- class \Drupal\Tests\Core\Entity\EntityBundleAccessCheckTest extends \Drupal\Tests\UnitTestCase
Expanded class hierarchy of EntityBundleAccessCheckTest
File
-
core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityBundleAccessCheckTest.php, line 25
Namespace
Drupal\Tests\Core\EntityView source
class EntityBundleAccessCheckTest extends UnitTestCase {
/**
* {@inheritdoc}
*/
protected function setUp() : void {
$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->expectDeprecation('The Drupal\\Core\\Entity\\EntityBundleAccessCheck is deprecated in drupal:9.2.0 and is removed from drupal:10.0.0. Specify the list of bundles in the entity parameter, under "bundle" key, as a sequence, instead. See https://www.drupal.org/node/3155569');
$this->assertEquals($access_result, $access_check->access($route, $route_match, $account));
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.