class CustomAccessTest in Field Permissions 8
Same name and namespace in other branches
- 8.2 tests/src/Unit/Plugin/FieldPermissionType/CustomAccessTest.php \Drupal\Tests\field_permissions\Unit\Plugin\FieldPermissionType\CustomAccessTest
Tests for the custom access permission type plugin.
@coversDefaultClass \Drupal\field_permissions\Plugin\FieldPermissionType\CustomAccess
@group field_permissions
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\field_permissions\Unit\Plugin\FieldPermissionType\CustomAccessTest
Expanded class hierarchy of CustomAccessTest
File
- tests/
src/ Unit/ Plugin/ FieldPermissionType/ CustomAccessTest.php, line 20
Namespace
Drupal\Tests\field_permissions\Unit\Plugin\FieldPermissionTypeView source
class CustomAccessTest extends UnitTestCase {
/**
* The custom access plugin.
*
* @var \Drupal\field_permissions\Plugin\FieldPermissionType\CustomAccess
*/
protected $plugin;
/**
* {@inheritdoc}
*/
public function setUp() {
parent::setUp();
$storage = $this
->prophesize(FieldStorageConfigInterface::class);
$storage
->getName()
->willReturn('foo_field');
$this->plugin = new CustomAccess([], 'custom', [], $storage
->reveal());
}
/**
* Test for `hasFieldAccess`.
*
* @covers ::hasFieldAccess
*
* @dataProvider providerTestHasFieldAccess
*/
public function testHasFieldAccess($operation, EntityInterface $entity, AccountInterface $account, $access) {
$this
->assertEquals($access, $this->plugin
->hasFieldAccess($operation, $entity, $account));
}
/**
* Test an invalid operation.
*
* @covers ::hasFieldAccess
*/
public function testInvalidOperation() {
// Edit|view access allowed.
$account = $this
->prophesize(AccountInterface::class);
$entity = $this
->prophesize(EntityInterface::class);
$this
->expectException(\AssertionError::class, 'The operation is either "edit" or "view", "bad operation" given instead.');
$this->plugin
->hasFieldAccess('bad operation', $entity
->reveal(), $account
->reveal());
}
/**
* Data provider for ::testHasFieldAccess.
*/
public function providerTestHasFieldAccess() {
$cases = [];
// Create access allowed.
$account = $this
->prophesize(AccountInterface::class);
$account
->hasPermission('create foo_field')
->willReturn(TRUE);
$entity = $this
->prophesize(EntityInterface::class);
$entity
->isNew()
->willReturn(TRUE);
$cases[] = [
'edit',
$entity
->reveal(),
$account
->reveal(),
TRUE,
];
// Create access denied.
$account = $this
->prophesize(AccountInterface::class);
$account
->hasPermission('create foo_field')
->willReturn(FALSE);
$cases[] = [
'edit',
$entity
->reveal(),
$account
->reveal(),
FALSE,
];
// Add edit and view.
foreach ([
'edit',
'view',
] as $operation) {
// Edit|view access allowed.
$account = $this
->prophesize(AccountInterface::class);
$account
->hasPermission($operation . ' foo_field')
->willReturn(TRUE);
$entity = $this
->prophesize(EntityInterface::class);
$cases[] = [
$operation,
$entity
->reveal(),
$account
->reveal(),
TRUE,
];
// Edit|view access denied.
$account = $this
->prophesize(AccountInterface::class);
$account
->hasPermission($operation . ' foo_field')
->willReturn(FALSE);
$entity = $this
->prophesize(EntityInterface::class);
$cases[] = [
$operation,
$entity
->reveal(),
$account
->reveal(),
FALSE,
];
// User entity, edit|view own allowed.
$account = $this
->prophesize(AccountInterface::class);
$account
->hasPermission($operation . ' foo_field')
->willReturn(FALSE);
$account
->hasPermission($operation . ' own foo_field')
->willReturn(TRUE);
$account
->id()
->willReturn(42);
$entity = $this
->prophesize(UserInterface::class);
$entity
->id()
->willReturn(42);
$entity
->isNew()
->willReturn(FALSE);
$cases[] = [
$operation,
$entity
->reveal(),
$account
->reveal(),
TRUE,
];
// User entity, edit|view own denied.
$account = $this
->prophesize(AccountInterface::class);
$account
->hasPermission($operation . ' foo_field')
->willReturn(FALSE);
$account
->hasPermission($operation . ' own foo_field')
->willReturn(FALSE);
$account
->id()
->willReturn(42);
$entity = $this
->prophesize(UserInterface::class);
$entity
->id()
->willReturn(42);
$entity
->isNew()
->willReturn(FALSE);
$cases[] = [
$operation,
$entity
->reveal(),
$account
->reveal(),
FALSE,
];
// User entity, edit|view own allowed, non-matching entity.
$account = $this
->prophesize(AccountInterface::class);
$account
->hasPermission($operation . ' foo_field')
->willReturn(FALSE);
$account
->hasPermission($operation . ' own foo_field')
->willReturn(TRUE);
$account
->id()
->willReturn(42);
$entity = $this
->prophesize(UserInterface::class);
$entity
->id()
->willReturn(27);
$entity
->isNew()
->willReturn(FALSE);
$cases[] = [
$operation,
$entity
->reveal(),
$account
->reveal(),
FALSE,
];
// Entity implementing EntityOwnerInterface, edit|view own allowed.
$account = $this
->prophesize(AccountInterface::class);
$account
->hasPermission($operation . ' foo_field')
->willReturn(FALSE);
$account
->hasPermission($operation . ' own foo_field')
->willReturn(TRUE);
$account
->id()
->willReturn(42);
$entity = $this
->prophesize(EntityInterface::class);
$entity
->willImplement(EntityOwnerInterface::class);
$entity
->getOwnerId()
->willReturn(42);
$entity
->isNew()
->willReturn(FALSE);
$cases[] = [
$operation,
$entity
->reveal(),
$account
->reveal(),
TRUE,
];
// Entity implementing EntityOwnerInterface, edit|view own denied.
$account = $this
->prophesize(AccountInterface::class);
$account
->hasPermission($operation . ' foo_field')
->willReturn(FALSE);
$account
->hasPermission($operation . ' own foo_field')
->willReturn(FALSE);
$account
->id()
->willReturn(42);
$entity = $this
->prophesize(EntityInterface::class);
$entity
->willImplement(EntityOwnerInterface::class);
$entity
->getOwnerId()
->willReturn(42);
$entity
->isNew()
->willReturn(FALSE);
$cases[] = [
$operation,
$entity
->reveal(),
$account
->reveal(),
FALSE,
];
// Entity implementing EntityOwnerInterface, edit|view own allowed, but
// non-matching entity owner.
$account = $this
->prophesize(AccountInterface::class);
$account
->hasPermission($operation . ' foo_field')
->willReturn(FALSE);
$account
->hasPermission($operation . ' own foo_field')
->willReturn(TRUE);
$account
->id()
->willReturn(27);
$entity = $this
->prophesize(EntityInterface::class);
$entity
->willImplement(EntityOwnerInterface::class);
$entity
->getOwnerId()
->willReturn(42);
$entity
->isNew()
->willReturn(FALSE);
$cases[] = [
$operation,
$entity
->reveal(),
$account
->reveal(),
FALSE,
];
}
return $cases;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CustomAccessTest:: |
protected | property | The custom access plugin. | |
CustomAccessTest:: |
public | function | Data provider for ::testHasFieldAccess. | |
CustomAccessTest:: |
public | function |
Overrides UnitTestCase:: |
|
CustomAccessTest:: |
public | function | Test for `hasFieldAccess`. | |
CustomAccessTest:: |
public | function | Test an invalid operation. | |
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | 1 |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. |