public function EntityAccessTest::testMemberDeleteAnyAccess in Group 2.0.x
Same name and namespace in other branches
- 8 tests/src/Kernel/EntityAccessTest.php \Drupal\Tests\group\Kernel\EntityAccessTest::testMemberDeleteAnyAccess()
Tests the deleting of any grouped entities for members.
File
- tests/
src/ Kernel/ EntityAccessTest.php, line 427
Class
- EntityAccessTest
- Tests that Group properly checks access for grouped entities.
Namespace
Drupal\Tests\group\KernelCode
public function testMemberDeleteAnyAccess() {
$account = $this
->createUser([], [
'administer entity_test_with_owner content',
]);
$entity_1 = $this
->createTestEntity();
$entity_2 = $this
->createTestEntity();
$entity_3 = $this
->createTestEntity();
$this->groupTypeA
->getMemberRole()
->grantPermission('delete any entity_test_as_content entity')
->save();
$this->groupTypeB
->getMemberRole()
->grantPermission('delete any entity_test_as_content entity')
->save();
$group_a = $this
->createGroup([
'type' => $this->groupTypeA
->id(),
]);
$group_a
->addContent($entity_1, 'entity_test_as_content');
$group_a
->addMember($this
->getCurrentUser());
$group_a
->addMember($account);
$group_b = $this
->createGroup([
'type' => $this->groupTypeB
->id(),
]);
$group_b
->addContent($entity_2, 'entity_test_as_content');
$group_b
->addMember($this
->getCurrentUser());
$group_b
->addMember($account);
$this
->assertTrue($this->accessControlHandler
->access($entity_1, 'delete'), 'Members can delete any grouped test entities.');
$this
->assertTrue($this->accessControlHandler
->access($entity_2, 'delete'), 'Members can delete any grouped test entities.');
$this
->assertTrue($this->accessControlHandler
->access($entity_3, 'delete'), 'The ungrouped test entity can be deleted.');
$this
->setCurrentUser($account);
$this
->assertTrue($this->accessControlHandler
->access($entity_1, 'delete'), 'Members can delete any grouped test entities.');
$this
->assertTrue($this->accessControlHandler
->access($entity_2, 'delete'), 'Members can delete any grouped test entities.');
$this
->assertTrue($this->accessControlHandler
->access($entity_3, 'delete'), 'The ungrouped test entity can be deleted.');
$this
->setCurrentUser($this
->createUser([], [
'administer entity_test_with_owner content',
]));
$this
->assertFalse($this->accessControlHandler
->access($entity_1, 'delete'), 'Non-members cannot delete grouped test entities.');
$this
->assertFalse($this->accessControlHandler
->access($entity_2, 'delete'), 'Non-members cannot delete grouped test entities.');
$this
->assertTrue($this->accessControlHandler
->access($entity_3, 'delete'), 'The ungrouped test entity can be deleted.');
}