Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • project/subgroup
  • issue/subgroup-3160761
  • issue/subgroup-3198179
  • issue/subgroup-3223610
  • issue/subgroup-3347570
  • issue/subgroup-3368899
  • issue/subgroup-3381010
  • issue/subgroup-3406997
  • issue/subgroup-3434818
  • issue/subgroup-3449429
  • issue/subgroup-3357760
  • issue/subgroup-3170683
12 results
Show changes
Showing
with 64 additions and 45 deletions
...@@ -15,7 +15,7 @@ class LeafEventsSubscriber implements EventSubscriberInterface { ...@@ -15,7 +15,7 @@ class LeafEventsSubscriber implements EventSubscriberInterface {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public static function getSubscribedEvents() { public static function getSubscribedEvents(): array {
$events[LeafEvents::GROUP_LEAF_ADD] = 'onAddGroupLeaf'; $events[LeafEvents::GROUP_LEAF_ADD] = 'onAddGroupLeaf';
$events[LeafEvents::GROUP_LEAF_REMOVE] = 'onRemoveGroupLeaf'; $events[LeafEvents::GROUP_LEAF_REMOVE] = 'onRemoveGroupLeaf';
$events[LeafEvents::GROUP_TYPE_LEAF_ADD] = 'onAddGroupTypeLeaf'; $events[LeafEvents::GROUP_TYPE_LEAF_ADD] = 'onAddGroupTypeLeaf';
......
...@@ -2,6 +2,6 @@ name: 'Subgroup event tests' ...@@ -2,6 +2,6 @@ name: 'Subgroup event tests'
description: 'Support module for Subgroup event tests.' description: 'Support module for Subgroup event tests.'
package: 'Testing' package: 'Testing'
type: 'module' type: 'module'
core_version_requirement: ^8.8 || ^9 core_version_requirement: ^9.5 || ^10
dependencies: dependencies:
- 'subgroup:subgroup' - 'subgroup:subgroup'
...@@ -2,7 +2,7 @@ name: 'Subgroup test views' ...@@ -2,7 +2,7 @@ name: 'Subgroup test views'
description: 'Provides default views for Subgroup views tests.' description: 'Provides default views for Subgroup views tests.'
package: 'Testing' package: 'Testing'
type: 'module' type: 'module'
core_version_requirement: ^8.8 || ^9 core_version_requirement: ^9.5 || ^10
dependencies: dependencies:
- 'group:group' - 'group:group'
- 'subgroup:subgroup' - 'subgroup:subgroup'
......
...@@ -21,7 +21,7 @@ class GroupCreateTest extends SubgroupKernelTestBase { ...@@ -21,7 +21,7 @@ class GroupCreateTest extends SubgroupKernelTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function setUp() { protected function setUp(): void {
parent::setUp(); parent::setUp();
$this->accessControlHandler = $this->entityTypeManager->getAccessControlHandler('group'); $this->accessControlHandler = $this->entityTypeManager->getAccessControlHandler('group');
...@@ -31,7 +31,7 @@ class GroupCreateTest extends SubgroupKernelTestBase { ...@@ -31,7 +31,7 @@ class GroupCreateTest extends SubgroupKernelTestBase {
$bar = $this->createGroupType(['id' => 'bar']); $bar = $this->createGroupType(['id' => 'bar']);
// Grant create access for the current user. // Grant create access for the current user.
$this->setCurrentUser($this->createUser([], ['create foo group', 'create bar group'])); $this->setCurrentUser($this->createUser(['create foo group', 'create bar group']));
/** @var \Drupal\subgroup\Entity\GroupTypeSubgroupHandler $group_type_handler */ /** @var \Drupal\subgroup\Entity\GroupTypeSubgroupHandler $group_type_handler */
$group_type_handler = $this->entityTypeManager->getHandler('group_type', 'subgroup'); $group_type_handler = $this->entityTypeManager->getHandler('group_type', 'subgroup');
...@@ -44,7 +44,7 @@ class GroupCreateTest extends SubgroupKernelTestBase { ...@@ -44,7 +44,7 @@ class GroupCreateTest extends SubgroupKernelTestBase {
*/ */
public function testRegularCreateAccess() { public function testRegularCreateAccess() {
$this->createGroupType(['id' => 'baz']); $this->createGroupType(['id' => 'baz']);
$this->setCurrentUser($this->createUser([], ['create baz group'])); $this->setCurrentUser($this->createUser(['create baz group']));
$this->assertTrue($this->accessControlHandler->createAccess('baz'), 'Group can be created just fine.'); $this->assertTrue($this->accessControlHandler->createAccess('baz'), 'Group can be created just fine.');
} }
......
...@@ -24,7 +24,7 @@ class GroupDeleteTest extends SubgroupKernelTestBase { ...@@ -24,7 +24,7 @@ class GroupDeleteTest extends SubgroupKernelTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function setUp() { protected function setUp(): void {
parent::setUp(); parent::setUp();
$this->subgroupHandler = $this->entityTypeManager->getHandler('group', 'subgroup'); $this->subgroupHandler = $this->entityTypeManager->getHandler('group', 'subgroup');
...@@ -130,9 +130,10 @@ class GroupDeleteTest extends SubgroupKernelTestBase { ...@@ -130,9 +130,10 @@ class GroupDeleteTest extends SubgroupKernelTestBase {
$parent = $this->createGroup(['type' => 'foo']); $parent = $this->createGroup(['type' => 'foo']);
$child = $this->createGroup(['type' => 'bar']); $child = $this->createGroup(['type' => 'bar']);
// We deliberately do not use $parent->addRelationship() here because that would // We deliberately do not use $parent->addRelationship() here because that
// create a GroupRelationship entity for the relation and we want to test that // would create a GroupRelationship entity for the relation and we want to
// the handler also has protection against deleting leaves with descendants. // test that the handler also has protection against deleting leaves with
// descendants.
$this->subgroupHandler->initTree($parent); $this->subgroupHandler->initTree($parent);
$this->subgroupHandler->addLeaf($parent, $child); $this->subgroupHandler->addLeaf($parent, $child);
......
...@@ -23,7 +23,7 @@ class GroupLeafTest extends SubgroupKernelTestBase { ...@@ -23,7 +23,7 @@ class GroupLeafTest extends SubgroupKernelTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function setUp() { protected function setUp(): void {
parent::setUp(); parent::setUp();
$group_type = $this->createGroupType(); $group_type = $this->createGroupType();
......
...@@ -31,10 +31,10 @@ class GroupRelationshipDeleteTest extends SubgroupKernelTestBase { ...@@ -31,10 +31,10 @@ class GroupRelationshipDeleteTest extends SubgroupKernelTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function setUp() { protected function setUp(): void {
parent::setUp(); parent::setUp();
$this->subgroupHandler = $this->entityTypeManager->getHandler('group_type', 'subgroup'); $this->subgroupHandler = $this->entityTypeManager->getHandler('group_type', 'subgroup');
$this->storage = $this->entityTypeManager->getStorage('group_content'); $this->storage = $this->entityTypeManager->getStorage('group_relationship');
} }
/** /**
......
...@@ -33,11 +33,11 @@ class GroupRelationshipInsertTest extends SubgroupKernelTestBase { ...@@ -33,11 +33,11 @@ class GroupRelationshipInsertTest extends SubgroupKernelTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function setUp() { protected function setUp(): void {
parent::setUp(); parent::setUp();
$this->groupSubgroupHandler = $this->entityTypeManager->getHandler('group', 'subgroup'); $this->groupSubgroupHandler = $this->entityTypeManager->getHandler('group', 'subgroup');
$this->groupTypeSubgroupHandler = $this->entityTypeManager->getHandler('group_type', 'subgroup'); $this->groupTypeSubgroupHandler = $this->entityTypeManager->getHandler('group_type', 'subgroup');
$this->storage = $this->entityTypeManager->getStorage('group_content'); $this->storage = $this->entityTypeManager->getStorage('group_relationship');
} }
/** /**
......
...@@ -87,7 +87,7 @@ class GroupSubgroupHandlerTest extends SubgroupKernelTestBase { ...@@ -87,7 +87,7 @@ class GroupSubgroupHandlerTest extends SubgroupKernelTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function setUp() { protected function setUp(): void {
parent::setUp(); parent::setUp();
$this->subgroupHandler = $this->entityTypeManager->getHandler('group', 'subgroup'); $this->subgroupHandler = $this->entityTypeManager->getHandler('group', 'subgroup');
...@@ -428,7 +428,13 @@ class GroupSubgroupHandlerTest extends SubgroupKernelTestBase { ...@@ -428,7 +428,13 @@ class GroupSubgroupHandlerTest extends SubgroupKernelTestBase {
public function testGetDescendants() { public function testGetDescendants() {
$descendants = $this->subgroupHandler->getDescendants($this->groupRoot); $descendants = $this->subgroupHandler->getDescendants($this->groupRoot);
$this->assertCount(5, $descendants); $this->assertCount(5, $descendants);
$this->assertEquals([$this->groupChildLeft->id(), $this->groupGrandchildLeft->id(), $this->groupChildMiddle->id(), $this->groupChildRight->id(), $this->groupGrandchildRight->id()], array_keys($descendants)); $this->assertEquals([
$this->groupChildLeft->id(),
$this->groupGrandchildLeft->id(),
$this->groupChildMiddle->id(),
$this->groupChildRight->id(),
$this->groupGrandchildRight->id(),
], array_keys($descendants));
$descendants = $this->subgroupHandler->getDescendants($this->groupChildLeft); $descendants = $this->subgroupHandler->getDescendants($this->groupChildLeft);
$this->assertCount(1, $descendants); $this->assertCount(1, $descendants);
......
...@@ -22,13 +22,13 @@ class GroupTypeDeleteTest extends SubgroupKernelTestBase { ...@@ -22,13 +22,13 @@ class GroupTypeDeleteTest extends SubgroupKernelTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function setUp() { protected function setUp(): void {
parent::setUp(); parent::setUp();
$this->subgroupHandler = $this->entityTypeManager->getHandler('group_type', 'subgroup'); $this->subgroupHandler = $this->entityTypeManager->getHandler('group_type', 'subgroup');
// Grant delete access for the current user. // Grant delete access for the current user.
$this->setCurrentUser($this->createUser([], ['administer group'])); $this->setCurrentUser($this->createUser(['administer group']));
} }
/** /**
......
...@@ -21,7 +21,7 @@ class GroupTypeLeafImportTest extends SubgroupKernelTestBase { ...@@ -21,7 +21,7 @@ class GroupTypeLeafImportTest extends SubgroupKernelTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function setUp() { protected function setUp(): void {
parent::setUp(); parent::setUp();
// The system.site key is required for import validation. // The system.site key is required for import validation.
...@@ -47,7 +47,7 @@ class GroupTypeLeafImportTest extends SubgroupKernelTestBase { ...@@ -47,7 +47,7 @@ class GroupTypeLeafImportTest extends SubgroupKernelTestBase {
$file_system = $this->container->get('file_system'); $file_system = $this->container->get('file_system');
$file_system->copy("$test_dir/group.type.parent.yml", "$sync_dir/group.type.parent.yml"); $file_system->copy("$test_dir/group.type.parent.yml", "$sync_dir/group.type.parent.yml");
$file_system->copy("$test_dir/group.type.child.yml", "$sync_dir/group.type.child.yml"); $file_system->copy("$test_dir/group.type.child.yml", "$sync_dir/group.type.child.yml");
$file_system->copy("$test_dir/group.content_type.parent-subgroup-child.yml", "$sync_dir/group.content_type.parent-subgroup-child.yml"); $file_system->copy("$test_dir/group.relationship_type.parent-subgroup-child.yml", "$sync_dir/group.relationship_type.parent-subgroup-child.yml");
// Import the content of the sync directory. // Import the content of the sync directory.
$this->configImporter()->import(); $this->configImporter()->import();
...@@ -58,7 +58,7 @@ class GroupTypeLeafImportTest extends SubgroupKernelTestBase { ...@@ -58,7 +58,7 @@ class GroupTypeLeafImportTest extends SubgroupKernelTestBase {
$this->assertNotNull($storage->load('child'), 'Child group type was loaded successfully.'); $this->assertNotNull($storage->load('child'), 'Child group type was loaded successfully.');
// Check that the group relationship type was created. // Check that the group relationship type was created.
$storage = $this->entityTypeManager->getStorage('group_content_type'); $storage = $this->entityTypeManager->getStorage('group_relationship_type');
$this->assertNotNull($storage->load('parent-subgroup-child'), 'Group content type was loaded successfully.'); $this->assertNotNull($storage->load('parent-subgroup-child'), 'Group content type was loaded successfully.');
// Check that subgroup plugin definitions were updated. // Check that subgroup plugin definitions were updated.
......
...@@ -23,7 +23,7 @@ class GroupTypeLeafTest extends SubgroupKernelTestBase { ...@@ -23,7 +23,7 @@ class GroupTypeLeafTest extends SubgroupKernelTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function setUp() { protected function setUp(): void {
parent::setUp(); parent::setUp();
$group_type = $this->createGroupType([ $group_type = $this->createGroupType([
'third_party_settings' => [ 'third_party_settings' => [
......
...@@ -64,7 +64,7 @@ class GroupTypeSubgroupHandlerTest extends SubgroupKernelTestBase { ...@@ -64,7 +64,7 @@ class GroupTypeSubgroupHandlerTest extends SubgroupKernelTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function setUp() { protected function setUp(): void {
parent::setUp(); parent::setUp();
$this->subgroupHandler = $this->entityTypeManager->getHandler('group_type', 'subgroup'); $this->subgroupHandler = $this->entityTypeManager->getHandler('group_type', 'subgroup');
...@@ -195,7 +195,7 @@ class GroupTypeSubgroupHandlerTest extends SubgroupKernelTestBase { ...@@ -195,7 +195,7 @@ class GroupTypeSubgroupHandlerTest extends SubgroupKernelTestBase {
$plugin_manager = $this->container->get('group_relation_type.manager'); $plugin_manager = $this->container->get('group_relation_type.manager');
/** @var \Drupal\group\Entity\Storage\GroupRelationshipTypeStorageInterface $storage */ /** @var \Drupal\group\Entity\Storage\GroupRelationshipTypeStorageInterface $storage */
$storage = $this->entityTypeManager->getStorage('group_content_type'); $storage = $this->entityTypeManager->getStorage('group_relationship_type');
$this->assertNull($plugin_manager->getDefinition('subgroup:grandchild_middle', FALSE), 'No plugin exists yet before adding the group type as a leaf.'); $this->assertNull($plugin_manager->getDefinition('subgroup:grandchild_middle', FALSE), 'No plugin exists yet before adding the group type as a leaf.');
$installed = $storage->loadByPluginId('subgroup:grandchild_middle'); $installed = $storage->loadByPluginId('subgroup:grandchild_middle');
...@@ -310,7 +310,7 @@ class GroupTypeSubgroupHandlerTest extends SubgroupKernelTestBase { ...@@ -310,7 +310,7 @@ class GroupTypeSubgroupHandlerTest extends SubgroupKernelTestBase {
$plugin_manager = $this->container->get('group_relation_type.manager'); $plugin_manager = $this->container->get('group_relation_type.manager');
/** @var \Drupal\group\Entity\Storage\GroupRelationshipTypeStorageInterface $storage */ /** @var \Drupal\group\Entity\Storage\GroupRelationshipTypeStorageInterface $storage */
$storage = $this->entityTypeManager->getStorage('group_content_type'); $storage = $this->entityTypeManager->getStorage('group_relationship_type');
$this->assertNull($plugin_manager->getDefinition('subgroup:grandchild_middle', FALSE), 'No plugin exists any more after removing the group type as a leaf.'); $this->assertNull($plugin_manager->getDefinition('subgroup:grandchild_middle', FALSE), 'No plugin exists any more after removing the group type as a leaf.');
$installed = $storage->loadByPluginId('subgroup:grandchild_middle'); $installed = $storage->loadByPluginId('subgroup:grandchild_middle');
...@@ -433,7 +433,11 @@ class GroupTypeSubgroupHandlerTest extends SubgroupKernelTestBase { ...@@ -433,7 +433,11 @@ class GroupTypeSubgroupHandlerTest extends SubgroupKernelTestBase {
public function testGetChildren() { public function testGetChildren() {
$children = $this->subgroupHandler->getChildren($this->groupTypeRoot); $children = $this->subgroupHandler->getChildren($this->groupTypeRoot);
$this->assertCount(3, $children); $this->assertCount(3, $children);
$this->assertEquals([$this->groupTypeChildLeft->id(), $this->groupTypeChildMiddle->id(), $this->groupTypeChildRight->id()], array_keys($children)); $this->assertEquals([
$this->groupTypeChildLeft->id(),
$this->groupTypeChildMiddle->id(),
$this->groupTypeChildRight->id(),
], array_keys($children));
$children = $this->subgroupHandler->getChildren($this->groupTypeChildLeft); $children = $this->subgroupHandler->getChildren($this->groupTypeChildLeft);
$this->assertCount(1, $children); $this->assertCount(1, $children);
...@@ -461,7 +465,13 @@ class GroupTypeSubgroupHandlerTest extends SubgroupKernelTestBase { ...@@ -461,7 +465,13 @@ class GroupTypeSubgroupHandlerTest extends SubgroupKernelTestBase {
public function testGetDescendants() { public function testGetDescendants() {
$descendants = $this->subgroupHandler->getDescendants($this->groupTypeRoot); $descendants = $this->subgroupHandler->getDescendants($this->groupTypeRoot);
$this->assertCount(5, $descendants); $this->assertCount(5, $descendants);
$this->assertEquals([$this->groupTypeChildLeft->id(), $this->groupTypeGrandchildLeft->id(), $this->groupTypeChildMiddle->id(), $this->groupTypeChildRight->id(), $this->groupTypeGrandchildRight->id()], array_keys($descendants)); $this->assertEquals([
$this->groupTypeChildLeft->id(),
$this->groupTypeGrandchildLeft->id(),
$this->groupTypeChildMiddle->id(),
$this->groupTypeChildRight->id(),
$this->groupTypeGrandchildRight->id(),
], array_keys($descendants));
$descendants = $this->subgroupHandler->getDescendants($this->groupTypeChildLeft); $descendants = $this->subgroupHandler->getDescendants($this->groupTypeChildLeft);
$this->assertCount(1, $descendants); $this->assertCount(1, $descendants);
......
...@@ -19,12 +19,12 @@ class GroupViewTest extends SubgroupKernelTestBase { ...@@ -19,12 +19,12 @@ class GroupViewTest extends SubgroupKernelTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public static $modules = ['subgroup_test_views', 'views']; protected static $modules = ['subgroup_test_views', 'views'];
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function setUp() { protected function setUp(): void {
parent::setUp(); parent::setUp();
$this->installConfig('subgroup_test_views'); $this->installConfig('subgroup_test_views');
...@@ -122,7 +122,7 @@ class GroupViewTest extends SubgroupKernelTestBase { ...@@ -122,7 +122,7 @@ class GroupViewTest extends SubgroupKernelTestBase {
* The message for the assertion. * The message for the assertion.
*/ */
protected function assertQueryAccessResult(array $expected, $message) { protected function assertQueryAccessResult(array $expected, $message) {
$ids = $this->groupStorage->getQuery()->execute(); $ids = $this->groupStorage->getQuery()->accessCheck(TRUE)->execute();
$this->assertEqualsCanonicalizing($expected, array_keys($ids), $message); $this->assertEqualsCanonicalizing($expected, array_keys($ids), $message);
$views_expected = []; $views_expected = [];
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
namespace Drupal\Tests\subgroup\Kernel; namespace Drupal\Tests\subgroup\Kernel;
use Drupal\group\Entity\GroupRoleInterface;
use Drupal\group\PermissionScopeInterface; use Drupal\group\PermissionScopeInterface;
use Drupal\user\RoleInterface; use Drupal\user\RoleInterface;
...@@ -22,7 +23,7 @@ class InheritedGroupPermissionCalculatorTest extends SubgroupKernelTestBase { ...@@ -22,7 +23,7 @@ class InheritedGroupPermissionCalculatorTest extends SubgroupKernelTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function setUp() { protected function setUp(): void {
parent::setUp(); parent::setUp();
// Set up some group types to form a tree. // Set up some group types to form a tree.
...@@ -233,7 +234,7 @@ class InheritedGroupPermissionCalculatorTest extends SubgroupKernelTestBase { ...@@ -233,7 +234,7 @@ class InheritedGroupPermissionCalculatorTest extends SubgroupKernelTestBase {
// This might seem out of place, but it's to circumvent an annoying core // This might seem out of place, but it's to circumvent an annoying core
// issue where entity reference fields become stale. // issue where entity reference fields become stale.
// @see https://www.drupal.org/project/drupal/issues/3154443. // @see https://www.drupal.org/project/drupal/issues/3154443.
$this->entityTypeManager->getStorage('group_content')->resetCache(); $this->entityTypeManager->getStorage('group_relationship')->resetCache();
$this->assertTrue($group_gt1->hasPermission('view group', $this->account), 'Regular permissions still apply.'); $this->assertTrue($group_gt1->hasPermission('view group', $this->account), 'Regular permissions still apply.');
$this->assertTrue($group_gt2->hasPermission('view group', $this->account), 'Account inherited member role from parent group.'); $this->assertTrue($group_gt2->hasPermission('view group', $this->account), 'Account inherited member role from parent group.');
...@@ -266,7 +267,7 @@ class InheritedGroupPermissionCalculatorTest extends SubgroupKernelTestBase { ...@@ -266,7 +267,7 @@ class InheritedGroupPermissionCalculatorTest extends SubgroupKernelTestBase {
// This might seem out of place, but it's to circumvent an annoying core // This might seem out of place, but it's to circumvent an annoying core
// issue where entity reference fields become stale. // issue where entity reference fields become stale.
// @see https://www.drupal.org/project/drupal/issues/3154443. // @see https://www.drupal.org/project/drupal/issues/3154443.
$this->entityTypeManager->getStorage('group_content')->resetCache(); $this->entityTypeManager->getStorage('group_relationship')->resetCache();
$this->assertTrue($group_gt1->hasPermission('view group', $this->account), 'Regular permissions still apply.'); $this->assertTrue($group_gt1->hasPermission('view group', $this->account), 'Regular permissions still apply.');
$this->assertTrue($group_gt2->hasPermission('view group', $this->account), 'Account inherited member role from parent group.'); $this->assertTrue($group_gt2->hasPermission('view group', $this->account), 'Account inherited member role from parent group.');
...@@ -299,9 +300,8 @@ class InheritedGroupPermissionCalculatorTest extends SubgroupKernelTestBase { ...@@ -299,9 +300,8 @@ class InheritedGroupPermissionCalculatorTest extends SubgroupKernelTestBase {
$this->assertTrue($group_gt1->hasPermission('view group', $this->account), 'Regular permissions still apply.'); $this->assertTrue($group_gt1->hasPermission('view group', $this->account), 'Regular permissions still apply.');
$this->assertFalse($group_gt2->hasPermission('view group', $this->account), 'Regular permissions still apply.'); $this->assertFalse($group_gt2->hasPermission('view group', $this->account), 'Regular permissions still apply.');
$membership = $group_gt1->getMember($this->account)->getGroupRelationship(); $membership = $group_gt1->getMember($this->account);
$membership->group_roles[] = 'gt1-viewer'; $membership->addRole('gt1-viewer');
$membership->save();
$this->assertTrue($group_gt1->hasPermission('view group', $this->account), 'Regular permissions still apply.'); $this->assertTrue($group_gt1->hasPermission('view group', $this->account), 'Regular permissions still apply.');
$this->assertTrue($group_gt2->hasPermission('view group', $this->account), 'Account inherited member role from parent group.'); $this->assertTrue($group_gt2->hasPermission('view group', $this->account), 'Account inherited member role from parent group.');
...@@ -327,7 +327,9 @@ class InheritedGroupPermissionCalculatorTest extends SubgroupKernelTestBase { ...@@ -327,7 +327,9 @@ class InheritedGroupPermissionCalculatorTest extends SubgroupKernelTestBase {
$this->assertTrue($group_gt2->hasPermission('view group', $this->account), 'Account inherited member role from parent group.'); $this->assertTrue($group_gt2->hasPermission('view group', $this->account), 'Account inherited member role from parent group.');
$storage = $this->entityTypeManager->getStorage('group_role'); $storage = $this->entityTypeManager->getStorage('group_role');
$storage->save($storage->load('gt2-member')->revokePermission('view group')); $group_role = $storage->load('gt2-member');
assert($group_role instanceof GroupRoleInterface);
$storage->save($group_role->revokePermission('view group'));
$this->assertTrue($group_gt1->hasPermission('view group', $this->account), 'Regular permissions still apply.'); $this->assertTrue($group_gt1->hasPermission('view group', $this->account), 'Regular permissions still apply.');
$this->assertFalse($group_gt2->hasPermission('view group', $this->account), 'Account inherited member role from parent group, but permission was revoked.'); $this->assertFalse($group_gt2->hasPermission('view group', $this->account), 'Account inherited member role from parent group, but permission was revoked.');
......
...@@ -14,7 +14,7 @@ class LeafEventsTest extends SubgroupKernelTestBase { ...@@ -14,7 +14,7 @@ class LeafEventsTest extends SubgroupKernelTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public static $modules = ['subgroup_test_events']; protected static $modules = ['subgroup_test_events'];
/** /**
* Tests whether the group update hook dispatches events. * Tests whether the group update hook dispatches events.
......
...@@ -31,7 +31,7 @@ class RoleInheritanceAccessControlHandlerTest extends SubgroupKernelTestBase { ...@@ -31,7 +31,7 @@ class RoleInheritanceAccessControlHandlerTest extends SubgroupKernelTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function setUp() { protected function setUp(): void {
parent::setUp(); parent::setUp();
$this->accessControlHandler = $this->entityTypeManager->getAccessControlHandler('subgroup_role_inheritance'); $this->accessControlHandler = $this->entityTypeManager->getAccessControlHandler('subgroup_role_inheritance');
...@@ -65,7 +65,7 @@ class RoleInheritanceAccessControlHandlerTest extends SubgroupKernelTestBase { ...@@ -65,7 +65,7 @@ class RoleInheritanceAccessControlHandlerTest extends SubgroupKernelTestBase {
public function testCreateAccess() { public function testCreateAccess() {
$access = $this->accessControlHandler->createAccess(NULL, NULL, [], TRUE); $access = $this->accessControlHandler->createAccess(NULL, NULL, [], TRUE);
$this->assertFalse($access->isAllowed()); $this->assertFalse($access->isAllowed());
$this->setCurrentUser($this->createUser([], ['administer subgroup'])); $this->setCurrentUser($this->createUser(['administer subgroup']));
$access = $this->accessControlHandler->createAccess(NULL, NULL, [], TRUE); $access = $this->accessControlHandler->createAccess(NULL, NULL, [], TRUE);
$this->assertTrue($access->isAllowed()); $this->assertTrue($access->isAllowed());
} }
...@@ -81,7 +81,7 @@ class RoleInheritanceAccessControlHandlerTest extends SubgroupKernelTestBase { ...@@ -81,7 +81,7 @@ class RoleInheritanceAccessControlHandlerTest extends SubgroupKernelTestBase {
$this->assertInstanceOf(AccessResultForbidden::class, $access, 'Group create access check returned an AccessResultForbidden.'); $this->assertInstanceOf(AccessResultForbidden::class, $access, 'Group create access check returned an AccessResultForbidden.');
$this->assertEquals('Role inheritance entities may not be updated after creation.', $access->getReason()); $this->assertEquals('Role inheritance entities may not be updated after creation.', $access->getReason());
$this->setCurrentUser($this->createUser([], ['administer subgroup'])); $this->setCurrentUser($this->createUser(['administer subgroup']));
$access = $this->accessControlHandler->access($this->roleInheritance, 'update', NULL, TRUE); $access = $this->accessControlHandler->access($this->roleInheritance, 'update', NULL, TRUE);
$this->assertInstanceOf(AccessResultForbidden::class, $access, 'Group create access check returned an AccessResultForbidden.'); $this->assertInstanceOf(AccessResultForbidden::class, $access, 'Group create access check returned an AccessResultForbidden.');
$this->assertEquals('Role inheritance entities may not be updated after creation.', $access->getReason()); $this->assertEquals('Role inheritance entities may not be updated after creation.', $access->getReason());
...@@ -96,7 +96,7 @@ class RoleInheritanceAccessControlHandlerTest extends SubgroupKernelTestBase { ...@@ -96,7 +96,7 @@ class RoleInheritanceAccessControlHandlerTest extends SubgroupKernelTestBase {
$access = $this->accessControlHandler->access($this->roleInheritance, 'delete', NULL, TRUE); $access = $this->accessControlHandler->access($this->roleInheritance, 'delete', NULL, TRUE);
$this->assertFalse($access->isAllowed()); $this->assertFalse($access->isAllowed());
$this->setCurrentUser($this->createUser([], ['administer subgroup'])); $this->setCurrentUser($this->createUser(['administer subgroup']));
$access = $this->accessControlHandler->access($this->roleInheritance, 'delete', NULL, TRUE); $access = $this->accessControlHandler->access($this->roleInheritance, 'delete', NULL, TRUE);
$this->assertTrue($access->isAllowed()); $this->assertTrue($access->isAllowed());
} }
......
...@@ -41,7 +41,7 @@ class RoleInheritanceStorageTest extends SubgroupKernelTestBase { ...@@ -41,7 +41,7 @@ class RoleInheritanceStorageTest extends SubgroupKernelTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function setUp() { protected function setUp(): void {
parent::setUp(); parent::setUp();
// Set up two group types to form a tree. // Set up two group types to form a tree.
......
...@@ -24,7 +24,7 @@ class RoleInheritanceTest extends SubgroupKernelTestBase { ...@@ -24,7 +24,7 @@ class RoleInheritanceTest extends SubgroupKernelTestBase {
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function setUp() { protected function setUp(): void {
parent::setUp(); parent::setUp();
// Set up two group types to form a tree. // Set up two group types to form a tree.
......