2008-04-26 08:44:06 +02:00
|
|
|
<?php
|
2016-06-15 06:03:16 +02:00
|
|
|
|
2016-10-14 03:30:05 +02:00
|
|
|
namespace SilverStripe\Security\Tests;
|
|
|
|
|
2017-06-22 12:50:45 +02:00
|
|
|
use InvalidArgumentException;
|
2016-11-23 06:09:10 +01:00
|
|
|
use SilverStripe\Control\Controller;
|
2017-06-22 12:50:45 +02:00
|
|
|
use SilverStripe\Dev\FunctionalTest;
|
2021-11-03 02:26:16 +01:00
|
|
|
use SilverStripe\Forms\RequiredFields;
|
2016-12-29 13:15:28 +01:00
|
|
|
use SilverStripe\ORM\ArrayList;
|
2016-06-15 06:03:16 +02:00
|
|
|
use SilverStripe\ORM\DataObject;
|
2016-06-23 01:37:22 +02:00
|
|
|
use SilverStripe\Security\Group;
|
2017-06-22 12:50:45 +02:00
|
|
|
use SilverStripe\Security\Member;
|
2016-11-23 06:09:10 +01:00
|
|
|
use SilverStripe\Security\Permission;
|
2016-10-14 03:30:05 +02:00
|
|
|
use SilverStripe\Security\Tests\GroupTest\TestMember;
|
2016-08-19 00:51:35 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
class GroupTest extends FunctionalTest
|
|
|
|
{
|
|
|
|
protected static $fixture_file = 'GroupTest.yml';
|
|
|
|
|
2017-03-24 12:17:26 +01:00
|
|
|
protected static $extra_dataobjects = [
|
2016-12-16 05:34:21 +01:00
|
|
|
TestMember::class
|
|
|
|
];
|
|
|
|
|
2021-10-27 04:39:47 +02:00
|
|
|
protected function setUp(): void
|
2018-06-19 06:16:50 +02:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
}
|
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
public function testGroupCodeDefaultsToTitle()
|
|
|
|
{
|
|
|
|
$g1 = new Group();
|
|
|
|
$g1->Title = "My Title";
|
|
|
|
$g1->write();
|
|
|
|
$this->assertEquals('my-title', $g1->Code, 'Custom title gets converted to code if none exists already');
|
|
|
|
|
|
|
|
$g2 = new Group();
|
2021-11-03 02:26:16 +01:00
|
|
|
$g2->Title = "My Title and Code";
|
2016-12-16 05:34:21 +01:00
|
|
|
$g2->Code = "my-code";
|
|
|
|
$g2->write();
|
|
|
|
$this->assertEquals('my-code', $g2->Code, 'Custom attributes are not overwritten by Title field');
|
|
|
|
|
|
|
|
$g3 = new Group();
|
2017-04-20 03:15:24 +02:00
|
|
|
$g3->Title = _t('SilverStripe\\Admin\\SecurityAdmin.NEWGROUP', "New Group");
|
2016-12-16 05:34:21 +01:00
|
|
|
$g3->write();
|
|
|
|
$this->assertNull($g3->Code, 'Default title doesnt trigger attribute setting');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @skipUpgrade
|
|
|
|
*/
|
|
|
|
public function testMemberGroupRelationForm()
|
|
|
|
{
|
2017-06-22 12:50:45 +02:00
|
|
|
$this->logInAs($this->idFromFixture(TestMember::class, 'admin'));
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
$adminGroup = $this->objFromFixture(Group::class, 'admingroup');
|
|
|
|
$parentGroup = $this->objFromFixture(Group::class, 'parentgroup');
|
|
|
|
|
|
|
|
// Test single group relation through checkboxsetfield
|
2017-06-22 12:50:45 +02:00
|
|
|
$form = new GroupTest\MemberForm(Controller::curr(), 'Form');
|
|
|
|
/** @var Member $member */
|
2016-12-16 05:34:21 +01:00
|
|
|
$member = $this->objFromFixture(TestMember::class, 'admin');
|
|
|
|
$form->loadDataFrom($member);
|
|
|
|
$checkboxSetField = $form->Fields()->fieldByName('Groups');
|
|
|
|
$checkboxSetField->setValue(
|
2020-04-20 19:58:09 +02:00
|
|
|
[
|
2016-12-16 05:34:21 +01:00
|
|
|
$adminGroup->ID => $adminGroup->ID, // keep existing relation
|
|
|
|
$parentGroup->ID => $parentGroup->ID, // add new relation
|
2020-04-20 19:58:09 +02:00
|
|
|
]
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
$form->saveInto($member);
|
|
|
|
$updatedGroups = $member->Groups();
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
2,
|
2022-04-14 03:12:59 +02:00
|
|
|
count($updatedGroups->column() ?? []),
|
2016-12-16 05:34:21 +01:00
|
|
|
"Adding a toplevel group works"
|
|
|
|
);
|
|
|
|
$this->assertContains($adminGroup->ID, $updatedGroups->column('ID'));
|
|
|
|
$this->assertContains($parentGroup->ID, $updatedGroups->column('ID'));
|
|
|
|
|
|
|
|
// Test unsetting relationship
|
|
|
|
$form->loadDataFrom($member);
|
|
|
|
$checkboxSetField = $form->Fields()->fieldByName('Groups');
|
|
|
|
$checkboxSetField->setValue(
|
2020-04-20 19:58:09 +02:00
|
|
|
[
|
2016-12-16 05:34:21 +01:00
|
|
|
$adminGroup->ID => $adminGroup->ID, // keep existing relation
|
|
|
|
//$parentGroup->ID => $parentGroup->ID, // remove previously set relation
|
2020-04-20 19:58:09 +02:00
|
|
|
]
|
2016-12-16 05:34:21 +01:00
|
|
|
);
|
|
|
|
$form->saveInto($member);
|
|
|
|
$member->flushCache();
|
|
|
|
$updatedGroups = $member->Groups();
|
|
|
|
$this->assertEquals(
|
|
|
|
1,
|
2022-04-14 03:12:59 +02:00
|
|
|
count($updatedGroups->column() ?? []),
|
2016-12-16 05:34:21 +01:00
|
|
|
"Removing a previously added toplevel group works"
|
|
|
|
);
|
|
|
|
$this->assertContains($adminGroup->ID, $updatedGroups->column('ID'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUnsavedGroups()
|
|
|
|
{
|
|
|
|
$member = $this->objFromFixture(TestMember::class, 'admin');
|
|
|
|
$group = new Group();
|
2021-11-03 02:26:16 +01:00
|
|
|
$group->Title = 'Title';
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
// Can save user to unsaved group
|
|
|
|
$group->Members()->add($member);
|
2022-04-14 03:12:59 +02:00
|
|
|
$this->assertEquals([$member->ID], array_values($group->Members()->getIDList() ?? []));
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
// Persists after writing to DB
|
|
|
|
$group->write();
|
2017-06-22 12:50:45 +02:00
|
|
|
|
|
|
|
/** @var Group $group */
|
2016-12-16 05:34:21 +01:00
|
|
|
$group = Group::get()->byID($group->ID);
|
2022-04-14 03:12:59 +02:00
|
|
|
$this->assertEquals([$member->ID], array_values($group->Members()->getIDList() ?? []));
|
2016-12-16 05:34:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testCollateAncestorIDs()
|
|
|
|
{
|
2017-06-22 12:50:45 +02:00
|
|
|
/** @var Group $parentGroup */
|
2016-12-16 05:34:21 +01:00
|
|
|
$parentGroup = $this->objFromFixture(Group::class, 'parentgroup');
|
2017-06-22 12:50:45 +02:00
|
|
|
/** @var Group $childGroup */
|
2016-12-16 05:34:21 +01:00
|
|
|
$childGroup = $this->objFromFixture(Group::class, 'childgroup');
|
|
|
|
$orphanGroup = new Group();
|
2021-11-03 02:26:16 +01:00
|
|
|
$orphanGroup->Title = 'Title';
|
2016-12-16 05:34:21 +01:00
|
|
|
$orphanGroup->ParentID = 99999;
|
|
|
|
$orphanGroup->write();
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
1,
|
2022-04-14 03:12:59 +02:00
|
|
|
count($parentGroup->collateAncestorIDs() ?? []),
|
2016-12-16 05:34:21 +01:00
|
|
|
'Root node only contains itself'
|
|
|
|
);
|
|
|
|
$this->assertContains($parentGroup->ID, $parentGroup->collateAncestorIDs());
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
2,
|
2022-04-14 03:12:59 +02:00
|
|
|
count($childGroup->collateAncestorIDs() ?? []),
|
2016-12-16 05:34:21 +01:00
|
|
|
'Contains parent nodes, with child node first'
|
|
|
|
);
|
|
|
|
$this->assertContains($parentGroup->ID, $childGroup->collateAncestorIDs());
|
|
|
|
$this->assertContains($childGroup->ID, $childGroup->collateAncestorIDs());
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
1,
|
2022-04-14 03:12:59 +02:00
|
|
|
count($orphanGroup->collateAncestorIDs() ?? []),
|
2016-12-16 05:34:21 +01:00
|
|
|
'Orphaned nodes dont contain invalid parent IDs'
|
|
|
|
);
|
|
|
|
$this->assertContains($orphanGroup->ID, $orphanGroup->collateAncestorIDs());
|
|
|
|
}
|
|
|
|
|
2016-12-29 13:15:28 +01:00
|
|
|
/**
|
|
|
|
* Test that Groups including their children (recursively) are collated and returned
|
|
|
|
*/
|
|
|
|
public function testCollateFamilyIds()
|
|
|
|
{
|
2017-06-22 12:50:45 +02:00
|
|
|
/** @var Group $group */
|
2016-12-29 13:15:28 +01:00
|
|
|
$group = $this->objFromFixture(Group::class, 'parentgroup');
|
|
|
|
$groupIds = $this->allFixtureIDs(Group::class);
|
2022-04-14 03:12:59 +02:00
|
|
|
$ids = array_intersect_key($groupIds ?? [], array_flip(['parentgroup', 'childgroup', 'grandchildgroup']));
|
|
|
|
$this->assertEquals(array_values($ids ?? []), $group->collateFamilyIDs());
|
2016-12-29 13:15:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that an exception is thrown if collateFamilyIDs is called on an unsaved Group
|
|
|
|
*/
|
|
|
|
public function testCannotCollateUnsavedGroupFamilyIds()
|
|
|
|
{
|
2021-10-27 04:39:47 +02:00
|
|
|
$this->expectException(\InvalidArgumentException::class);
|
2017-06-22 12:50:45 +02:00
|
|
|
$this->expectExceptionMessage('Cannot call collateFamilyIDs on unsaved Group.');
|
2016-12-29 13:15:28 +01:00
|
|
|
$group = new Group;
|
|
|
|
$group->collateFamilyIDs();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that a Group's children can be retrieved
|
|
|
|
*/
|
|
|
|
public function testGetAllChildren()
|
|
|
|
{
|
2017-06-22 12:50:45 +02:00
|
|
|
/** @var Group $group */
|
2016-12-29 13:15:28 +01:00
|
|
|
$group = $this->objFromFixture(Group::class, 'parentgroup');
|
|
|
|
$children = $group->getAllChildren();
|
|
|
|
$this->assertInstanceOf(ArrayList::class, $children);
|
|
|
|
$this->assertSame(['childgroup', 'grandchildgroup'], $children->column('Code'));
|
|
|
|
}
|
|
|
|
|
2017-06-21 17:13:55 +02:00
|
|
|
public function testGroupInGroupMethods()
|
|
|
|
{
|
|
|
|
$parentGroup = $this->objFromFixture(Group::class, 'parentgroup');
|
|
|
|
$childGroup = $this->objFromFixture(Group::class, 'childgroup');
|
|
|
|
$grandchildGroup = $this->objFromFixture(Group::class, 'grandchildgroup');
|
|
|
|
$adminGroup = $this->objFromFixture(Group::class, 'admingroup');
|
|
|
|
$group1 = $this->objFromFixture(Group::class, 'group1');
|
|
|
|
|
|
|
|
$this->assertTrue($grandchildGroup->inGroup($childGroup));
|
|
|
|
$this->assertTrue($grandchildGroup->inGroup($childGroup->ID));
|
|
|
|
$this->assertTrue($grandchildGroup->inGroup($childGroup->Code));
|
|
|
|
|
|
|
|
$this->assertTrue($grandchildGroup->inGroup($parentGroup));
|
|
|
|
$this->assertTrue($grandchildGroup->inGroups([$parentGroup, $childGroup]));
|
|
|
|
$this->assertTrue($grandchildGroup->inGroups([$childGroup, $parentGroup]));
|
|
|
|
$this->assertTrue($grandchildGroup->inGroups([$parentGroup, $childGroup], true));
|
|
|
|
|
|
|
|
$this->assertFalse($grandchildGroup->inGroup($adminGroup));
|
|
|
|
$this->assertFalse($grandchildGroup->inGroups([$adminGroup, $group1]));
|
|
|
|
$this->assertFalse($grandchildGroup->inGroups([$adminGroup, $childGroup], true));
|
|
|
|
|
|
|
|
$this->assertFalse($grandchildGroup->inGroup('NotARealGroup'));
|
|
|
|
$this->assertFalse($grandchildGroup->inGroup(99999999999));
|
|
|
|
$this->assertFalse($grandchildGroup->inGroup(new TestMember()));
|
|
|
|
|
|
|
|
// Edgecases
|
|
|
|
$this->assertTrue($grandchildGroup->inGroup($grandchildGroup));
|
|
|
|
$this->assertFalse($grandchildGroup->inGroups([]));
|
|
|
|
$this->assertFalse($grandchildGroup->inGroups([], true));
|
|
|
|
}
|
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
public function testDelete()
|
|
|
|
{
|
|
|
|
$group = $this->objFromFixture(Group::class, 'parentgroup');
|
|
|
|
$groupID = $group->ID;
|
|
|
|
$childGroupID = $this->idFromFixture(Group::class, 'childgroup');
|
|
|
|
$group->delete();
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
0,
|
|
|
|
DataObject::get(Group::class, "\"ID\" = {$groupID}")->count(),
|
|
|
|
'Group is removed'
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
0,
|
|
|
|
DataObject::get(Permission::class, "\"GroupID\" = {$groupID}")->count(),
|
|
|
|
'Permissions removed along with the group'
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
0,
|
|
|
|
DataObject::get(Group::class, "\"ParentID\" = {$groupID}")->count(),
|
|
|
|
'Child groups are removed'
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
0,
|
|
|
|
DataObject::get(Group::class, "\"ParentID\" = {$childGroupID}")->count(),
|
|
|
|
'Grandchild groups are removed'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testValidatesPrivilegeLevelOfParent()
|
|
|
|
{
|
2017-06-22 12:50:45 +02:00
|
|
|
/** @var Group $nonAdminGroup */
|
2016-12-16 05:34:21 +01:00
|
|
|
$nonAdminGroup = $this->objFromFixture(Group::class, 'childgroup');
|
2017-06-22 12:50:45 +02:00
|
|
|
/** @var Group $adminGroup */
|
2016-12-16 05:34:21 +01:00
|
|
|
$adminGroup = $this->objFromFixture(Group::class, 'admingroup');
|
|
|
|
|
|
|
|
// Making admin group parent of a non-admin group, effectively expanding is privileges
|
|
|
|
$nonAdminGroup->ParentID = $adminGroup->ID;
|
|
|
|
|
|
|
|
$this->logInWithPermission('APPLY_ROLES');
|
|
|
|
$result = $nonAdminGroup->validate();
|
|
|
|
$this->assertFalse(
|
|
|
|
$result->isValid(),
|
|
|
|
'Members with only APPLY_ROLES can\'t assign parent groups with direct ADMIN permissions'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->logInWithPermission('ADMIN');
|
|
|
|
$result = $nonAdminGroup->validate();
|
|
|
|
$this->assertTrue(
|
|
|
|
$result->isValid(),
|
|
|
|
'Members with ADMIN can assign parent groups with direct ADMIN permissions'
|
|
|
|
);
|
|
|
|
$nonAdminGroup->write();
|
|
|
|
|
|
|
|
$this->logInWithPermission('ADMIN');
|
2017-06-22 12:50:45 +02:00
|
|
|
/** @var Group $inheritedAdminGroup */
|
2016-12-16 05:34:21 +01:00
|
|
|
$inheritedAdminGroup = $this->objFromFixture(Group::class, 'group1');
|
|
|
|
$inheritedAdminGroup->ParentID = $adminGroup->ID;
|
|
|
|
$inheritedAdminGroup->write(); // only works with ADMIN login
|
|
|
|
|
|
|
|
$this->logInWithPermission('APPLY_ROLES');
|
|
|
|
$result = $nonAdminGroup->validate();
|
|
|
|
$this->assertFalse(
|
|
|
|
$result->isValid(),
|
|
|
|
'Members with only APPLY_ROLES can\'t assign parent groups with inherited ADMIN permission'
|
|
|
|
);
|
|
|
|
}
|
2021-11-03 02:26:16 +01:00
|
|
|
|
|
|
|
public function testGroupTitleValidation()
|
|
|
|
{
|
|
|
|
$group1 = $this->objFromFixture(Group::class, 'group1');
|
|
|
|
|
|
|
|
$newGroup = new Group();
|
|
|
|
|
|
|
|
$validators = $newGroup->getCMSCompositeValidator()->getValidators();
|
|
|
|
$this->assertCount(1, $validators);
|
|
|
|
$this->assertInstanceOf(RequiredFields::class, $validators[0]);
|
2022-04-14 03:12:59 +02:00
|
|
|
$this->assertTrue(in_array('Title', $validators[0]->getRequired() ?? []));
|
2021-11-03 02:26:16 +01:00
|
|
|
|
|
|
|
$newGroup->Title = $group1->Title;
|
|
|
|
$result = $newGroup->validate();
|
|
|
|
$this->assertFalse(
|
|
|
|
$result->isValid(),
|
|
|
|
'Group names cannot be duplicated'
|
|
|
|
);
|
|
|
|
|
|
|
|
$newGroup->Title = 'Title';
|
|
|
|
$result = $newGroup->validate();
|
|
|
|
$this->assertTrue($result->isValid());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGroupTitleDuplication()
|
|
|
|
{
|
|
|
|
$group = $this->objFromFixture(Group::class, 'group1');
|
|
|
|
$group->Title = 'Group title modified';
|
|
|
|
$group->write();
|
|
|
|
$this->assertEquals('group-1', $group->Code);
|
|
|
|
|
|
|
|
$group = new Group();
|
|
|
|
$group->Title = 'Group 1';
|
|
|
|
$group->write();
|
|
|
|
$this->assertEquals('group-1-2', $group->Code);
|
|
|
|
|
|
|
|
$group = new Group();
|
|
|
|
$group->Title = 'Duplicate';
|
|
|
|
$group->write();
|
|
|
|
$group->Title = 'Duplicate renamed';
|
|
|
|
$group->write();
|
|
|
|
$this->assertEquals('duplicate', $group->Code);
|
|
|
|
|
|
|
|
$group = new Group();
|
|
|
|
$group->Title = 'Duplicate';
|
|
|
|
$group->write();
|
|
|
|
$group->Title = 'More renaming';
|
|
|
|
$group->write();
|
|
|
|
$this->assertEquals('duplicate-2', $group->Code);
|
|
|
|
|
|
|
|
$group = new Group();
|
2022-05-25 01:42:12 +02:00
|
|
|
$group->Title = 'Any Title';
|
|
|
|
$group->Code = 'duplicate';
|
2021-11-03 02:26:16 +01:00
|
|
|
$group->write();
|
|
|
|
$this->assertEquals('duplicate-3', $group->Code);
|
2022-05-25 01:42:12 +02:00
|
|
|
|
|
|
|
$group1 = new Group();
|
|
|
|
$group1->Title = 'Any Title1';
|
|
|
|
$group1->Code = 'some-code';
|
|
|
|
$group2 = new Group();
|
|
|
|
$group2->Title = 'Any Title2';
|
|
|
|
$group2->Code = 'some-code';
|
|
|
|
$group1->write();
|
|
|
|
$group2->write();
|
|
|
|
$this->assertEquals('some-code', $group1->Code);
|
|
|
|
$this->assertEquals('some-code-2', $group2->Code);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSettingCodeRepeatedly()
|
|
|
|
{
|
|
|
|
// Setting the code to the code it already was doesn't modify it
|
|
|
|
$group = $this->objFromFixture(Group::class, 'group1');
|
|
|
|
$previousCode = $group->Code;
|
|
|
|
$group->Code = $previousCode;
|
|
|
|
$group->write();
|
|
|
|
$this->assertEquals($previousCode, $group->Code);
|
|
|
|
|
|
|
|
// Setting the code to a new code does modify it
|
|
|
|
$group->Code = 'new-code';
|
|
|
|
$group->write();
|
|
|
|
$this->assertEquals('new-code', $group->Code);
|
|
|
|
|
|
|
|
// The old code can be reused
|
|
|
|
$group->Code = $previousCode;
|
|
|
|
$group->write();
|
|
|
|
$this->assertEquals($previousCode, $group->Code);
|
2021-11-03 02:26:16 +01:00
|
|
|
}
|
2008-08-11 06:59:14 +02:00
|
|
|
}
|