prophesize(ModuleHandlerInterface::class); $module_handler->invokeAll(Argument::any(), Argument::any())->willReturn([]); $cache_contexts_manager = $this->prophesize(CacheContextsManager::class); $cache_contexts_manager->assertValidTokens(Argument::any())->willReturn(TRUE); $container = new ContainerBuilder(); $container->set('module_handler', $module_handler->reveal()); $container->set('cache_contexts_manager', $cache_contexts_manager->reveal()); \Drupal::setContainer($container); } /** * @covers ::checkAccess * @covers ::checkEntityPermissions * @covers ::checkEntityOwnerPermissions * @covers ::checkCreateAccess * * @dataProvider accessProvider */ public function testAccess(EntityInterface $entity, $operation, $account, $allowed) { $handler = new EntityAccessControlHandler($entity->getEntityType()); $handler->setStringTranslation($this->getStringTranslationStub()); $result = $handler->access($entity, $operation, $account); $this->assertEquals($allowed, $result); } /** * @covers ::checkCreateAccess * * @dataProvider createAccessProvider */ public function testCreateAccess(EntityTypeInterface $entity_type, $bundle, $account, $allowed) { $handler = new EntityAccessControlHandler($entity_type); $handler->setStringTranslation($this->getStringTranslationStub()); $result = $handler->createAccess($bundle, $account); $this->assertEquals($allowed, $result); } /** * Data provider for testAccess(). * * @return array * A list of testAccess method arguments. */ public function accessProvider() { $entity_type = $this->prophesize(ContentEntityTypeInterface::class); $entity_type->id()->willReturn('green_entity'); $entity_type->getAdminPermission()->willReturn('administer green_entity'); $entity_type->hasHandlerClass('permission_provider')->willReturn(TRUE); $entity_type->getHandlerClass('permission_provider')->willReturn(EntityPermissionProvider::class); $entity = $this->buildMockEntity($entity_type->reveal(), 6); $data = []; // Admin permission. $admin_user = $this->buildMockUser(5, 'administer green_entity'); $data[] = [$entity->reveal(), 'view', $admin_user->reveal(), TRUE]; $data[] = [$entity->reveal(), 'update', $admin_user->reveal(), TRUE]; $data[] = [$entity->reveal(), 'delete', $admin_user->reveal(), TRUE]; // View, Update, delete permissions, entity without an owner. $second_entity = $this->buildMockEntity($entity_type->reveal()); foreach (['view', 'update', 'delete'] as $operation) { $first_user = $this->buildMockUser(6, $operation . ' green_entity'); $second_user = $this->buildMockUser(7, 'access content'); $data[] = [$second_entity->reveal(), $operation, $first_user->reveal(), TRUE]; $data[] = [$second_entity->reveal(), $operation, $second_user->reveal(), FALSE]; } // Update and delete permissions. foreach (['update', 'delete'] as $operation) { // Owner, non-owner, user with "any" permission. $first_user = $this->buildMockUser(6, $operation . ' own green_entity'); $second_user = $this->buildMockUser(7, $operation . ' own green_entity'); $third_user = $this->buildMockUser(8, $operation . ' any green_entity'); $data[] = [$entity->reveal(), $operation, $first_user->reveal(), TRUE]; $data[] = [$entity->reveal(), $operation, $second_user->reveal(), FALSE]; $data[] = [$entity->reveal(), $operation, $third_user->reveal(), TRUE]; } // View permissions. $first_user = $this->buildMockUser(9, 'view green_entity'); $second_user = $this->buildMockUser(10, 'view first green_entity'); $third_user = $this->buildMockUser(14, 'view own unpublished green_entity'); $fourth_user = $this->buildMockUser(14, 'access content'); $first_entity = $this->buildMockEntity($entity_type->reveal(), 1, 'first'); $second_entity = $this->buildMockEntity($entity_type->reveal(), 1, 'second'); $third_entity = $this->buildMockEntity($entity_type->reveal(), 14, 'first', FALSE); // The first user can view the two published entities. $data[] = [$first_entity->reveal(), 'view', $first_user->reveal(), TRUE]; $data[] = [$second_entity->reveal(), 'view', $first_user->reveal(), TRUE]; $data[] = [$third_entity->reveal(), 'view', $first_user->reveal(), FALSE]; // The second user can only view published entities of bundle "first". $data[] = [$first_entity->reveal(), 'view', $second_user->reveal(), TRUE]; $data[] = [$second_entity->reveal(), 'view', $second_user->reveal(), FALSE]; $data[] = [$third_entity->reveal(), 'view', $second_user->reveal(), FALSE]; // The third user can view their own unpublished entity. $data[] = [$first_entity->reveal(), 'view', $third_user->reveal(), FALSE]; $data[] = [$second_entity->reveal(), 'view', $third_user->reveal(), FALSE]; $data[] = [$third_entity->reveal(), 'view', $third_user->reveal(), TRUE]; // The fourth user can't view anything. $data[] = [$first_entity->reveal(), 'view', $fourth_user->reveal(), FALSE]; $data[] = [$second_entity->reveal(), 'view', $fourth_user->reveal(), FALSE]; $data[] = [$third_entity->reveal(), 'view', $fourth_user->reveal(), FALSE]; return $data; } /** * Data provider for testCreateAccess(). * * @return array * A list of testCreateAccess method arguments. */ public function createAccessProvider() { $data = []; $entity_type = $this->prophesize(ContentEntityTypeInterface::class); $entity_type->id()->willReturn('green_entity'); $entity_type->getAdminPermission()->willReturn('administer green_entity'); $entity_type->hasHandlerClass('permission_provider')->willReturn(TRUE); $entity_type->getHandlerClass('permission_provider')->willReturn(EntityPermissionProvider::class); // User with the admin permission. $account = $this->buildMockUser('6', 'administer green_entity'); $data[] = [$entity_type->reveal(), NULL, $account->reveal(), TRUE]; // Ordinary user. $account = $this->buildMockUser('6', 'create green_entity'); $data[] = [$entity_type->reveal(), NULL, $account->reveal(), TRUE]; // Ordinary user, entity with a bundle. $account = $this->buildMockUser('6', 'create first_bundle green_entity'); $data[] = [$entity_type->reveal(), 'first_bundle', $account->reveal(), TRUE]; // User with no permissions. $account = $this->buildMockUser('6', 'access content'); $data[] = [$entity_type->reveal(), NULL, $account->reveal(), FALSE]; return $data; } /** * Builds a mock entity. * * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type * The entity type. * @param string $owner_id * The owner ID. * @param string $bundle * The bundle. * @param bool $published * Whether the entity is published. * * @return \Prophecy\Prophecy\ObjectProphecy * The entity mock. */ protected function buildMockEntity(EntityTypeInterface $entity_type, $owner_id = NULL, $bundle = NULL, $published = NULL) { $langcode = LanguageInterface::LANGCODE_NOT_SPECIFIED; $entity = $this->prophesize(ContentEntityInterface::class); if (isset($published)) { $entity->willImplement(EntityPublishedInterface::class); } if ($owner_id) { $entity->willImplement(EntityOwnerInterface::class); } if (isset($published)) { $entity->isPublished()->willReturn($published); } if ($owner_id) { $entity->getOwnerId()->willReturn($owner_id); } $entity->bundle()->willReturn($bundle ?: $entity_type->id()); $entity->isNew()->willReturn(FALSE); $entity->uuid()->willReturn('fake uuid'); $entity->id()->willReturn('fake id'); $entity->getRevisionId()->willReturn(NULL); $entity->language()->willReturn(new Language(['id' => $langcode])); $entity->getEntityTypeId()->willReturn($entity_type->id()); $entity->getEntityType()->willReturn($entity_type); $entity->getCacheContexts()->willReturn([]); $entity->getCacheTags()->willReturn([]); $entity->getCacheMaxAge()->willReturn(Cache::PERMANENT); return $entity; } /** * Builds a mock user. * * @param int $uid * The user ID. * @param string $permission * The permission to grant. * * @return \Prophecy\Prophecy\ObjectProphecy * The user mock. */ protected function buildMockUser($uid, $permission) { $account = $this->prophesize(AccountInterface::class); $account->id()->willReturn($uid); $account->hasPermission($permission)->willReturn(TRUE); $account->hasPermission(Argument::any())->willReturn(FALSE); return $account; } }