protected function OgAccessHookTest::setUp in Organic groups 8
Same name in this branch
- 8 tests/src/Unit/OgAccessHookTest.php \Drupal\Tests\og\Unit\OgAccessHookTest::setUp()
- 8 tests/src/Kernel/Access/OgAccessHookTest.php \Drupal\Tests\og\Kernel\Access\OgAccessHookTest::setUp()
Overrides KernelTestBase::setUp
File
- tests/
src/ Kernel/ Access/ OgAccessHookTest.php, line 80
Class
- OgAccessHookTest
- Tests access through OG's implementation of hook_entity_access().
Namespace
Drupal\Tests\og\Kernel\AccessCode
protected function setUp() : void {
parent::setUp();
$this
->installConfig([
'og',
]);
$this
->installEntitySchema('block_content');
$this
->installEntitySchema('node');
$this
->installEntitySchema('og_membership');
$this
->installEntitySchema('user');
$this
->installSchema('system', 'sequences');
// Create two Drupal roles: one for normal users and one for administrators.
foreach ([
'authenticated',
'administrator',
] as $role_id) {
$role = Role::create([
'id' => $role_id,
'label' => $role_id,
]);
$role
->grantPermission('access content');
// Grant the global 'administer organic groups' permission to the
// administrator role.
if ($role_id === 'administrator') {
$role
->grantPermission('administer organic groups');
}
$role
->save();
$this->roles[$role_id] = $role;
}
// Create a test user for each membership type.
$membership_types = [
// The group owner.
'owner',
// A site administrator with the right to administer all groups.
'group-admin',
// A regular member of the group.
'member',
// A user that is not a member of the group.
'non-member',
// A blocked user.
'blocked',
];
foreach ($membership_types as $membership_type) {
$user = User::create([
'name' => $membership_type,
]);
// Grant the 'administrator' role to the group administrator.
if ($membership_type === 'group-admin') {
$user
->addRole('administrator');
}
$user
->save();
$this->users[$membership_type] = $user;
}
// Create a "group" bundle on the Custom Block entity type and turn it into
// a group. Note we're not using the Entity Test entity for this since it
// does not have real support for multiple bundles.
BlockContentType::create([
'id' => 'group',
])
->save();
Og::groupTypeManager()
->addGroup('block_content', 'group');
// Create a group.
$this->group = BlockContent::create([
'title' => $this
->randomString(),
'type' => 'group',
'uid' => $this->users['owner']
->id(),
]);
$this->group
->save();
// Create a group content type.
$type = NodeType::create([
'type' => 'group_content',
'name' => $this
->randomString(),
]);
$type
->save();
$settings = [
'field_storage_config' => [
'settings' => [
'target_type' => 'block_content',
],
],
];
Og::createField(OgGroupAudienceHelperInterface::DEFAULT_FIELD, 'node', 'group_content', $settings);
// Grant members permission to edit their own content.
/** @var \Drupal\og\Entity\OgRole $role */
$role = OgRole::getRole('block_content', 'group', OgRoleInterface::AUTHENTICATED);
$role
->grantPermission('edit own group_content content');
$role
->save();
// Subscribe the normal member and the blocked member to the group.
foreach ([
'member',
'blocked',
] as $membership_type) {
$state = $membership_type === 'member' ? OgMembershipInterface::STATE_ACTIVE : OgMembershipInterface::STATE_BLOCKED;
$this
->createOgMembership($this->group, $this->users[$membership_type], NULL, $state);
}
// Create three group content items, one owned by the group owner, one by
// the member, and one by the blocked user.
foreach ([
'owner',
'member',
'blocked',
] as $membership_type) {
$this->groupContent[$membership_type] = Node::create([
'title' => $this
->randomString(),
'type' => 'group_content',
'uid' => $this->users[$membership_type]
->id(),
OgGroupAudienceHelperInterface::DEFAULT_FIELD => [
[
'target_id' => $this->group
->id(),
],
],
]);
$this->groupContent[$membership_type]
->save();
}
$this->nonGroupContent = Node::create([
'title' => $this
->randomString(),
'type' => 'group_content',
'uid' => $this->users['member']
->id(),
OgGroupAudienceHelperInterface::DEFAULT_FIELD => [],
]);
$this->nonGroupContent
->save();
}