Same name and namespace in other branches
  1. 9 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

Expanded class hierarchy of EntityPermissionsFormTest

File

core/modules/user/tests/src/Unit/Form/EntityPermissionsFormTest.php, line 28

Namespace

Drupal\Tests\user\Unit\Form
View 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 \Drupal\user\Form\EntityPermissionsForm::access
   * @covers \Drupal\user\Form\EntityPermissionsForm::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();
    $module_extension_list = $this
      ->prophesize(ModuleExtensionList::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, $module_extension_list);

    // 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 static 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

Namesort descending Modifiers Type Description Overrides
EntityPermissionsFormTest::providerTestPermissionsByProvider public static 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.
RandomGeneratorTrait::getRandomGenerator protected function Gets the random generator for the utility methods.
RandomGeneratorTrait::randomMachineName protected function Generates a unique random string containing letters and numbers.
RandomGeneratorTrait::randomObject public function Generates a random PHP object.
RandomGeneratorTrait::randomString public function Generates a pseudo-random string of ASCII characters of codes 32 to 126.
RandomGeneratorTrait::randomStringValidate Deprecated public function Callback for random string validation.
UnitTestCase::$root protected property The app root. 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::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::setUp protected function 305
UnitTestCase::setUpBeforeClass public static function
UnitTestCase::__get public function