You are here

public function EntityAccessTest::testMemberViewOwnAccess in Group 8

Same name and namespace in other branches
  1. 2.0.x tests/src/Kernel/EntityAccessTest.php \Drupal\Tests\group\Kernel\EntityAccessTest::testMemberViewOwnAccess()

Tests the viewing of own grouped entities for members.

File

tests/src/Kernel/EntityAccessTest.php, line 211

Class

EntityAccessTest
Tests that Group properly checks access for grouped entities.

Namespace

Drupal\Tests\group\Kernel

Code

public function testMemberViewOwnAccess() {
  $account = $this
    ->createUser([], [
    'administer entity_test_with_owner content',
  ]);
  $entity_1 = $this
    ->createTestEntity();
  $entity_2 = $this
    ->createTestEntity([
    'uid' => $account
      ->id(),
  ]);
  $entity_3 = $this
    ->createTestEntity();
  $this->groupTypeA
    ->getMemberRole()
    ->grantPermission('view own entity_test_as_content entity')
    ->save();
  $this->groupTypeB
    ->getMemberRole()
    ->grantPermission('view own 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, 'view'), 'Members can see their own grouped test entities.');
  $this
    ->assertFalse($this->accessControlHandler
    ->access($entity_2, 'view'), 'Members cannot see grouped test entities they do not own.');
  $this
    ->assertTrue($this->accessControlHandler
    ->access($entity_3, 'view'), 'The ungrouped test entity can be viewed.');
  $this
    ->setCurrentUser($account);
  $this
    ->assertFalse($this->accessControlHandler
    ->access($entity_1, 'view'), 'Members cannot see grouped test entities they do not own.');
  $this
    ->assertTrue($this->accessControlHandler
    ->access($entity_2, 'view'), 'Members can see their own grouped test entities.');
  $this
    ->assertTrue($this->accessControlHandler
    ->access($entity_3, 'view'), 'The ungrouped test entity can be viewed.');
  $this
    ->setCurrentUser($this
    ->createUser([], [
    'administer entity_test_with_owner content',
  ]));
  $this
    ->assertFalse($this->accessControlHandler
    ->access($entity_1, 'view'), 'Members cannot see grouped test entities.');
  $this
    ->assertFalse($this->accessControlHandler
    ->access($entity_2, 'view'), 'Members cannot see grouped test entities.');
  $this
    ->assertTrue($this->accessControlHandler
    ->access($entity_3, 'view'), 'The ungrouped test entity can be viewed.');
}