public function EntityAccessComplexTest::testNonMemberGroupAccessWithoutPermission in Group 2.0.x
Same name and namespace in other branches
- 8 tests/src/Kernel/EntityAccessComplexTest.php \Drupal\Tests\group\Kernel\EntityAccessComplexTest::testNonMemberGroupAccessWithoutPermission()
Tests that grouped nodes are properly hidden.
File
- tests/
src/ Kernel/ EntityAccessComplexTest.php, line 118
Class
- EntityAccessComplexTest
- Tests that Group properly checks access for "complex" grouped entities.
Namespace
Drupal\Tests\group\KernelCode
public function testNonMemberGroupAccessWithoutPermission() {
$node_1 = $this
->createNode([
'type' => 'page',
]);
$node_2 = $this
->createNode([
'type' => 'page',
]);
$group = $this
->createGroup([
'type' => $this->groupTypeA
->id(),
]);
$group
->addContent($node_1, 'node_as_content:page');
$this
->assertFalse($this->accessControlHandler
->access($node_1, 'view'), 'Cannot view the grouped node.');
$this
->assertTrue($this->accessControlHandler
->access($node_2, 'view'), 'Only the ungrouped node shows up.');
}