public function EntityQueryAlterComplexTest::testNonMemberViewOwnPublishedAccess in Group 2.0.x
Same name and namespace in other branches
- 8 tests/src/Kernel/EntityQueryAlterComplexTest.php \Drupal\Tests\group\Kernel\EntityQueryAlterComplexTest::testNonMemberViewOwnPublishedAccess()
Tests the viewing of own published entities for non-members.
File
- tests/
src/ Kernel/ EntityQueryAlterComplexTest.php, line 247
Class
- EntityQueryAlterComplexTest
- Tests that Group properly checks access for "complex" grouped entities.
Namespace
Drupal\Tests\group\KernelCode
public function testNonMemberViewOwnPublishedAccess() {
$account = $this
->createUser();
$node_1 = $this
->createNode([
'type' => 'page',
]);
$node_2 = $this
->createNode([
'type' => 'page',
]);
$node_3 = $this
->createNode([
'type' => 'page',
'uid' => $account
->id(),
]);
$this->groupTypeA
->getOutsiderRole()
->grantPermission('view own node_as_content:page entity')
->save();
$this->groupTypeB
->getOutsiderRole()
->grantPermission('view own 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($account);
$group_b = $this
->createGroup([
'type' => $this->groupTypeB
->id(),
]);
$group_b
->addContent($node_3, 'node_as_content:page');
$group_b
->addMember($account);
$this
->assertQueryAccessResult([
$node_1
->id(),
$node_2
->id(),
], 'Non-members can see their own published nodes.');
$this
->setCurrentUser($this
->createUser());
$this
->assertQueryAccessResult([
$node_2
->id(),
], 'Only the ungrouped published node shows up.');
$this
->setCurrentUser($account);
$this
->assertQueryAccessResult([
$node_2
->id(),
], 'Only the ungrouped published node shows up.');
}