class EntityPermissionsFormTest
Same name in other branches
- 10 core/modules/user/tests/src/Unit/Form/EntityPermissionsFormTest.php \Drupal\Tests\user\Unit\Form\EntityPermissionsFormTest
- 11.x core/modules/user/tests/src/Unit/Form/EntityPermissionsFormTest.php \Drupal\Tests\user\Unit\Form\EntityPermissionsFormTest
Tests the permissions administration form for a bundle.
@coversDefaultClass \Drupal\user\Form\EntityPermissionsForm @group user
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\Traits\PhpUnitWarnings, \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait
- class \Drupal\Tests\user\Unit\Form\EntityPermissionsFormTest extends \Drupal\Tests\UnitTestCase
Expanded class hierarchy of EntityPermissionsFormTest
File
-
core/
modules/ user/ tests/ src/ Unit/ Form/ EntityPermissionsFormTest.php, line 25
Namespace
Drupal\Tests\user\Unit\FormView source
class EntityPermissionsFormTest extends UnitTestCase {
/**
* Tests generating the permissions list.
*
* This is really a test of the protected method permissionsByProvider(). Call
* the public method access() with an object $bundle, so that it skips most of
* the logic in that function.
*
* @param string $dependency_name
* The test permission has a direct dependency on this.
* @param bool $found
* TRUE if there is a permission to be managed by the form.
*
* @dataProvider providerTestPermissionsByProvider
* @covers ::access()
* @covers ::permissionsByProvider()
*/
public function testPermissionsByProvider(string $dependency_name, bool $found) {
// Mock the constructor parameters.
$prophecy = $this->prophesize(PermissionHandlerInterface::class);
$prophecy->getPermissions()
->willReturn([
'permission name' => [
'title' => 'permission display name',
'provider' => 'some module',
'dependencies' => [
'config' => [
$dependency_name,
],
],
],
]);
$permission_handler = $prophecy->reveal();
$role_storage = $this->prophesize(RoleStorageInterface::class)
->reveal();
$module_handler = $this->prophesize(ModuleHandlerInterface::class)
->reveal();
$prophecy = $this->prophesize(ConfigManagerInterface::class);
$prophecy->getConfigEntitiesToChangeOnDependencyRemoval('config', [
'node.type.article',
])
->willReturn([
'delete' => [
new ConfigEntityDependency('core.entity_view_display.node.article.full'),
new ConfigEntityDependency('field.field.node.article.body'),
],
]);
$config_manager = $prophecy->reveal();
$prophecy = $this->prophesize(EntityTypeInterface::class);
$prophecy->getPermissionGranularity()
->willReturn('entity_type');
$entity_type = $prophecy->reveal();
$prophecy = $this->prophesize(EntityTypeManagerInterface::class);
$prophecy->getDefinition('entity_type')
->willReturn($entity_type);
$entity_type_manager = $prophecy->reveal();
$bundle_form = new EntityPermissionsForm($permission_handler, $role_storage, $module_handler, $config_manager, $entity_type_manager);
// Mock the method parameters.
$route = new Route('some.path');
$route_match = $this->prophesize(RouteMatchInterface::class)
->reveal();
$prophecy = $this->prophesize(EntityTypeInterface::class);
$prophecy->getBundleOf()
->willReturn('entity_type');
$bundle_type = $prophecy->reveal();
$prophecy = $this->prophesize(EntityInterface::class);
$prophecy->getEntityType()
->willReturn($bundle_type);
$prophecy->getConfigDependencyName()
->willReturn('node.type.article');
$bundle = $prophecy->reveal();
$access_actual = $bundle_form->access($route, $route_match, $bundle);
$this->assertEquals($found ? AccessResult::allowed() : AccessResult::neutral(), $access_actual);
}
/**
* Provides data for the testPermissionsByProvider method.
*
* @return array
*/
public function providerTestPermissionsByProvider() {
return [
'direct dependency' => [
'node.type.article',
TRUE,
],
'indirect dependency' => [
'core.entity_view_display.node.article.full',
TRUE,
],
'not a dependency' => [
'node.type.page',
FALSE,
],
];
}
}
Members
Title Sort descending | Deprecated | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|---|
EntityPermissionsFormTest::providerTestPermissionsByProvider | public | function | Provides data for the testPermissionsByProvider method. | ||
EntityPermissionsFormTest::testPermissionsByProvider | public | function | Tests generating the permissions list. | ||
PhpUnitWarnings::$deprecationWarnings | private static | property | Deprecation warnings from PHPUnit to raise with @trigger_error(). | ||
PhpUnitWarnings::addWarning | public | function | Converts PHPUnit deprecation warnings to E_USER_DEPRECATED. | ||
UnitTestCase::$randomGenerator | protected | property | The random generator. | ||
UnitTestCase::$root | protected | property | The app root. | 1 | |
UnitTestCase::assertArrayEquals | Deprecated | protected | function | Asserts if two arrays are equal by sorting them first. | |
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. | ||
UnitTestCase::setUp | protected | function | 338 | ||
UnitTestCase::setUpBeforeClass | public static | function |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.