You are here

public function EntityQueryAlterComplexTest::testMemberViewAnyUnpublishedAccess in Group 8

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

Tests the viewing of any unpublished entities for members.

File

tests/src/Kernel/EntityQueryAlterComplexTest.php, line 276

Class

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

Namespace

Drupal\Tests\group\Kernel

Code

public function testMemberViewAnyUnpublishedAccess() {
  $account = $this
    ->createUser();
  $node_1 = $this
    ->createNode([
    'type' => 'page',
    'status' => 0,
  ]);
  $node_2 = $this
    ->createNode([
    'type' => 'page',
    'status' => 0,
  ]);
  $node_3 = $this
    ->createNode([
    'type' => 'page',
    'status' => 0,
    'uid' => $account
      ->id(),
  ]);
  $this->groupTypeA
    ->getMemberRole()
    ->grantPermission('view any unpublished node_as_content:page entity')
    ->save();
  $this->groupTypeB
    ->getMemberRole()
    ->grantPermission('view any unpublished 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_3, 'node_as_content:page');
  $group_b
    ->addMember($this
    ->getCurrentUser());
  $group_b
    ->addMember($account);
  $this
    ->assertQueryAccessResult([
    $node_1
      ->id(),
    $node_2
      ->id(),
    $node_3
      ->id(),
  ], 'Members can see any unpublished nodes.');
  $this
    ->setCurrentUser($account);
  $this
    ->assertQueryAccessResult([
    $node_1
      ->id(),
    $node_2
      ->id(),
    $node_3
      ->id(),
  ], 'Members can see any unpublished nodes.');

  // This is actually a core issue, but for now unpublished nodes show up in
  // entity queries when there are no node grants defining modules.
  $this
    ->setCurrentUser($this
    ->createUser());
  $this
    ->assertQueryAccessResult([
    $node_2
      ->id(),
  ], 'Only the ungrouped unpublished node shows up.');
}