og-8.x-1.x-dev/tests/src/Kernel/Entity/GetGroupContentTest.php
tests/src/Kernel/Entity/GetGroupContentTest.php
<?php
declare(strict_types=1);
namespace Drupal\Tests\og\Kernel\Entity;
use Drupal\user\UserInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\KernelTests\KernelTestBase;
use Drupal\entity_test\Entity\EntityTest;
use Drupal\node\Entity\Node;
use Drupal\node\Entity\NodeType;
use Drupal\og\Og;
use Drupal\og\OgGroupAudienceHelperInterface;
use Drupal\user\Entity\User;
/**
* Tests getting the group content of a group.
*
* @group og
* @coversDefaultClass \Drupal\og\Og
*/
class GetGroupContentTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
'entity_test',
'field',
'node',
'og',
'options',
'system',
'user',
];
/**
* The entity type manager.
*/
protected EntityTypeManagerInterface $entityTypeManager;
/**
* The group admin user.
*/
protected UserInterface $groupAdmin;
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$this->installConfig(['og']);
$this->installEntitySchema('entity_test');
$this->installEntitySchema('node');
$this->installEntitySchema('og_membership');
$this->installEntitySchema('user');
$this->installSchema('system', 'sequences');
/** @var \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager */
$entity_type_manager = $this->container->get('entity_type.manager');
$this->entityTypeManager = $entity_type_manager;
// Create group admin user.
$this->groupAdmin = User::create(['name' => $this->randomString()]);
$this->groupAdmin->save();
}
/**
* Test retrieval of group content that references a single group.
*/
public function testBasicGroupReferences(): void {
$groups = [];
// Create two groups of different entity types.
$bundle = mb_strtolower($this->randomMachineName());
NodeType::create([
'name' => $this->randomString(),
'type' => $bundle,
])->save();
Og::groupTypeManager()->addGroup('node', $bundle);
$groups['node'] = Node::create([
'title' => $this->randomString(),
'type' => $bundle,
'uid' => $this->groupAdmin->id(),
]);
$groups['node']->save();
// The Entity Test entity doesn't have 'real' bundles, so we don't need to
// create one, we can just add the group to the fake bundle.
$bundle = mb_strtolower($this->randomMachineName());
Og::groupTypeManager()->addGroup('entity_test', $bundle);
$groups['entity_test'] = EntityTest::create([
'type' => $bundle,
'name' => $this->randomString(),
'uid' => $this->groupAdmin->id(),
]);
$groups['entity_test']->save();
// Create 4 group content types, two for each entity type referencing each
// group. Create a group content entity for each.
$group_content = [];
foreach (['node', 'entity_test'] as $entity_type) {
foreach (['node', 'entity_test'] as $target_group_type) {
// Create the group content bundle if it's a node. Entity Test doesn't
// have real bundles.
$bundle = mb_strtolower($this->randomMachineName());
if ($entity_type === 'node') {
NodeType::create([
'type' => $bundle,
'name' => $this->randomString(),
])->save();
}
// Create the groups audience field.
$field_name = "og_$target_group_type";
$settings = [
'field_name' => $field_name,
'field_storage_config' => [
'settings' => [
'target_type' => $groups[$target_group_type]->getEntityTypeId(),
],
],
'field_config' => [
'settings' => [
'handler' => 'default',
'handler_settings' => [
'target_bundles' => [$groups[$target_group_type]->bundle() => $groups[$target_group_type]->bundle()],
],
],
],
];
Og::createField(OgGroupAudienceHelperInterface::DEFAULT_FIELD, $entity_type, $bundle, $settings);
// Create the group content entity.
$label_field = $entity_type === 'node' ? 'title' : 'name';
$entity = $this->entityTypeManager->getStorage($entity_type)->create([
$label_field => $this->randomString(),
'type' => $bundle,
$field_name => [['target_id' => $groups[$target_group_type]->id()]],
]);
$entity->save();
$group_content[$entity_type][$target_group_type] = $entity;
}
}
/** @var \Drupal\og\MembershipManagerInterface $membership_manager */
$membership_manager = \Drupal::service('og.membership_manager');
// Check that Og::getGroupContent() returns the correct group content for
// each group.
foreach (['node', 'entity_test'] as $group_type) {
$result = $membership_manager->getGroupContentIds($groups[$group_type]);
foreach (['node', 'entity_test'] as $group_content_type) {
$this->assertEquals([$group_content[$group_content_type][$group_type]->id()], $result[$group_content_type], "The correct $group_content_type group content is returned for the $group_type group.");
}
// Test that the correct results are returned when filtering by entity
// type.
foreach (['node', 'entity_test'] as $filter) {
$result = $membership_manager->getGroupContentIds($groups[$group_type], [$filter]);
$this->assertEquals(1, count($result), "Only one entity type is returned when getting $group_type results filtered by $group_content_type group content.");
$this->assertEquals([$group_content[$filter][$group_type]->id()], $result[$filter], "The correct result is returned for the $group_type group, filtered by $group_content_type group content.");
}
}
}
/**
* Test retrieval of group content that references multiple groups.
*/
public function testMultipleGroupReferences(): void {
$groups = [];
// Create two groups.
$bundle = mb_strtolower($this->randomMachineName());
NodeType::create([
'name' => $this->randomString(),
'type' => $bundle,
])->save();
Og::groupTypeManager()->addGroup('node', $bundle);
for ($i = 0; $i < 2; $i++) {
$groups[$i] = Node::create([
'title' => $this->randomString(),
'type' => $bundle,
'uid' => $this->groupAdmin->id(),
]);
$groups[$i]->save();
}
// Create a group content type.
$bundle = mb_strtolower($this->randomMachineName());
$settings = [
'field_storage_config' => [
'settings' => [
'target_type' => 'node',
],
],
];
Og::createField(OgGroupAudienceHelperInterface::DEFAULT_FIELD, 'entity_test', $bundle, $settings);
// Create a group content entity that references both groups.
$group_content = $this->entityTypeManager->getStorage('entity_test')->create([
'name' => $this->randomString(),
'type' => $bundle,
OgGroupAudienceHelperInterface::DEFAULT_FIELD => [
['target_id' => $groups[0]->id()],
['target_id' => $groups[1]->id()],
],
]);
$group_content->save();
/** @var \Drupal\og\MembershipManagerInterface $membership_manager */
$membership_manager = \Drupal::service('og.membership_manager');
// Check that Og::getGroupContent() returns the group content entity for
// both groups.
$expected = ['entity_test' => [$group_content->id()]];
foreach ($groups as $key => $groups) {
$result = $membership_manager->getGroupContentIds($groups);
$this->assertEquals($expected, $result, "The group content entity is returned for group $key.");
}
}
/**
* Test retrieval of group content with multiple group audience fields.
*/
public function testMultipleGroupAudienceFields(): void {
$groups = [];
// Create two groups of different entity types.
$bundle = mb_strtolower($this->randomMachineName());
NodeType::create([
'name' => $this->randomString(),
'type' => $bundle,
])->save();
Og::groupTypeManager()->addGroup('node', $bundle);
$groups['node'] = Node::create([
'title' => $this->randomString(),
'type' => $bundle,
'uid' => $this->groupAdmin->id(),
]);
$groups['node']->save();
// The Entity Test entity doesn't have 'real' bundles, so we don't need to
// create one, we can just add the group to the fake bundle.
$bundle = mb_strtolower($this->randomMachineName());
Og::groupTypeManager()->addGroup('entity_test', $bundle);
$groups['entity_test'] = EntityTest::create([
'type' => $bundle,
'name' => $this->randomString(),
'uid' => $this->groupAdmin->id(),
]);
$groups['entity_test']->save();
// Create a group content type with two group audience fields, one for each
// group.
$bundle = mb_strtolower($this->randomMachineName());
foreach (['entity_test', 'node'] as $target_type) {
$settings = [
'field_name' => 'group_audience_' . $target_type,
'field_storage_config' => [
'settings' => [
'target_type' => $target_type,
],
],
];
Og::createField(OgGroupAudienceHelperInterface::DEFAULT_FIELD, 'entity_test', $bundle, $settings);
}
// Create a group content entity that references both groups.
$values = [
'name' => $this->randomString(),
'type' => $bundle,
];
foreach (['entity_test', 'node'] as $target_type) {
$values['group_audience_' . $target_type] = [
['target_id' => $groups[$target_type]->id()],
];
}
$group_content = $this->entityTypeManager->getStorage('entity_test')->create($values);
$group_content->save();
/** @var \Drupal\og\MembershipManagerInterface $membership_manager */
$membership_manager = \Drupal::service('og.membership_manager');
// Check that Og::getGroupContent() returns the group content entity for
// both groups.
$expected = ['entity_test' => [$group_content->id()]];
foreach ($groups as $key => $groups) {
$result = $membership_manager->getGroupContentIds($groups);
$this->assertEquals($expected, $result, "The group content entity is returned for group $key.");
}
}
}
