You are here

public function EntityAccessComplexTest::testMemberUpdateAnyAccess in Group 8

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

Tests the updating of any grouped entities for members.

File

tests/src/Kernel/EntityAccessComplexTest.php, line 628

Class

EntityAccessComplexTest
Tests that Group properly checks access for "complex" grouped entities.

Namespace

Drupal\Tests\group\Kernel

Code

public function testMemberUpdateAnyAccess() {
  $account = $this
    ->createUser([], $this->permissions);
  $node_1 = $this
    ->createNode([
    'type' => 'page',
  ]);
  $node_2 = $this
    ->createNode([
    'type' => 'page',
    'status' => 0,
  ]);
  $node_3 = $this
    ->createNode([
    'type' => 'page',
  ]);
  $this->groupTypeA
    ->getMemberRole()
    ->grantPermission('update any node_as_content:page entity')
    ->save();
  $this->groupTypeB
    ->getMemberRole()
    ->grantPermission('update any node_as_content:page entity')
    ->save();
  $group_a = $this
    ->createGroup([
    'type' => $this->groupTypeA
      ->id(),
  ]);
  $group_a
    ->addContent($node_1, 'node_as_content:page');
  $group_a
    ->addMember($this
    ->getCurrentUser());
  $group_a
    ->addMember($account);
  $group_b = $this
    ->createGroup([
    'type' => $this->groupTypeB
      ->id(),
  ]);
  $group_b
    ->addContent($node_2, 'node_as_content:page');
  $group_b
    ->addMember($this
    ->getCurrentUser());
  $group_b
    ->addMember($account);
  $this
    ->assertTrue($this->accessControlHandler
    ->access($node_1, 'update'), 'Members can update any published grouped nodes.');
  $this
    ->assertTrue($this->accessControlHandler
    ->access($node_2, 'update'), 'Members can update any unpublished grouped nodes.');
  $this
    ->assertTrue($this->accessControlHandler
    ->access($node_3, 'update'), 'The ungrouped node can be updated.');
  $this
    ->setCurrentUser($account);
  $this
    ->assertTrue($this->accessControlHandler
    ->access($node_1, 'update'), 'Members can update any published grouped nodes.');
  $this
    ->assertTrue($this->accessControlHandler
    ->access($node_2, 'update'), 'Members can update any unpublished grouped nodes.');
  $this
    ->assertTrue($this->accessControlHandler
    ->access($node_3, 'update'), 'The ungrouped node can be updated.');
  $this
    ->setCurrentUser($this
    ->createUser([], $this->permissions));
  $this
    ->assertFalse($this->accessControlHandler
    ->access($node_1, 'update'), 'Non-members cannot update published grouped nodes.');
  $this
    ->assertFalse($this->accessControlHandler
    ->access($node_2, 'update'), 'Non-members cannot update unpublished grouped nodes.');
  $this
    ->assertTrue($this->accessControlHandler
    ->access($node_3, 'update'), 'The ungrouped node can be updated.');
}