/**
  * Tests the method for checking access to routes.
  *
  * @param bool $entity_is_editable
  *   Whether the subject entity is editable.
  * @param bool $field_storage_is_accessible
  *   Whether the user has access to the field storage entity.
  * @param \Drupal\Core\Access\AccessResult $expected_result
  *   The expected result of the access call.
  *
  * @dataProvider providerTestAccess
  */
 public function testAccess($entity_is_editable, $field_storage_is_accessible, AccessResult $expected_result)
 {
     $entity = $this->createMockEntity();
     $entity->expects($this->any())->method('access')->willReturn(AccessResult::allowedIf($entity_is_editable)->cachePerPermissions());
     $field_storage = $this->getMock('Drupal\\field\\FieldStorageConfigInterface');
     $field_storage->expects($this->any())->method('access')->willReturn(AccessResult::allowedIf($field_storage_is_accessible));
     $expected_result->cachePerPermissions();
     $field_name = 'valid';
     $entity_with_field = clone $entity;
     $entity_with_field->expects($this->any())->method('get')->with($field_name)->will($this->returnValue($field_storage));
     $entity_with_field->expects($this->once())->method('hasTranslation')->with(LanguageInterface::LANGCODE_NOT_SPECIFIED)->will($this->returnValue(TRUE));
     $account = $this->getMock('Drupal\\Core\\Session\\AccountInterface');
     $access = $this->editAccessCheck->access($entity_with_field, $field_name, LanguageInterface::LANGCODE_NOT_SPECIFIED, $account);
     $this->assertEquals($expected_result, $access);
 }
Example #2
0
 /**
  * Tests allowedIfHasPermissions().
  *
  * @covers ::allowedIfHasPermissions
  *
  * @dataProvider providerTestAllowedIfHasPermissions
  *
  * @param string[] $permissions
  *   The permissions to check for.
  * @param string $conjunction
  *   The conjunction to use when checking for permission. 'AND' or 'OR'.
  * @param \Drupal\Core\Access\AccessResult $expected_access
  *   The expected access check result.
  */
 public function testAllowedIfHasPermissions($permissions, $conjunction, AccessResult $expected_access)
 {
     $account = $this->getMock('\\Drupal\\Core\\Session\\AccountInterface');
     $account->expects($this->any())->method('hasPermission')->willReturnMap([['allowed', TRUE], ['denied', FALSE]]);
     if ($permissions) {
         $expected_access->cachePerPermissions();
     }
     $access_result = AccessResult::allowedIfHasPermissions($account, $permissions, $conjunction);
     $this->assertEquals($expected_access, $access_result);
 }