2008-04-26 08:44:06 +02:00
|
|
|
<?php
|
2008-06-15 15:33:53 +02:00
|
|
|
/**
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2008-06-15 15:33:53 +02:00
|
|
|
* @subpackage tests
|
|
|
|
*/
|
2008-08-11 06:59:14 +02:00
|
|
|
class GroupTest extends FunctionalTest {
|
2011-04-14 11:38:07 +02:00
|
|
|
|
2011-03-30 08:49:11 +02:00
|
|
|
static $fixture_file = 'GroupTest.yml';
|
2008-04-26 08:44:06 +02:00
|
|
|
|
2011-04-14 11:38:07 +02:00
|
|
|
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();
|
|
|
|
$g2->Title = "My Title";
|
|
|
|
$g2->Code = "my-code";
|
|
|
|
$g2->write();
|
|
|
|
$this->assertEquals('my-code', $g2->Code, 'Custom attributes are not overwritten by Title field');
|
|
|
|
|
|
|
|
$g3 = new Group();
|
|
|
|
$g3->Title = _t('SecurityAdmin.NEWGROUP',"New Group");
|
|
|
|
$g3->write();
|
|
|
|
$this->assertNull($g3->Code, 'Default title doesnt trigger attribute setting');
|
|
|
|
}
|
|
|
|
|
2008-04-26 08:44:06 +02:00
|
|
|
/**
|
|
|
|
* Test the Group::map() function
|
|
|
|
*/
|
|
|
|
function testGroupMap() {
|
2011-10-29 06:04:45 +02:00
|
|
|
// 2.4 only
|
|
|
|
$originalDeprecation = Deprecation::dump_settings();
|
|
|
|
Deprecation::notification_version('2.4');
|
|
|
|
|
2008-04-26 08:44:06 +02:00
|
|
|
/* Group::map() returns an SQLMap object implementing iterator. You can use foreach to get ID-Title pairs. */
|
|
|
|
|
|
|
|
// We will iterate over the map and build mapOuput to more easily call assertions on the result.
|
|
|
|
$map = Group::map();
|
2011-10-29 06:08:47 +02:00
|
|
|
$mapOutput = $map->toArray();
|
2008-04-26 08:44:06 +02:00
|
|
|
|
|
|
|
$group1 = $this->objFromFixture('Group', 'group1');
|
|
|
|
$group2 = $this->objFromFixture('Group', 'group2');
|
2010-11-24 07:23:49 +01:00
|
|
|
|
2008-04-26 08:44:06 +02:00
|
|
|
/* We have added 2 groups to our fixture. They should both appear in $mapOutput. */
|
|
|
|
$this->assertEquals($mapOutput[$group1->ID], $group1->Title);
|
|
|
|
$this->assertEquals($mapOutput[$group2->ID], $group2->Title);
|
2011-10-29 06:04:45 +02:00
|
|
|
|
|
|
|
Deprecation::restore_settings($originalDeprecation);
|
2008-04-26 08:44:06 +02:00
|
|
|
}
|
2008-08-11 06:59:14 +02:00
|
|
|
|
|
|
|
function testMemberGroupRelationForm() {
|
2009-04-29 03:20:24 +02:00
|
|
|
Session::set('loggedInAs', $this->idFromFixture('GroupTest_Member', 'admin'));
|
|
|
|
|
2009-07-08 02:06:16 +02:00
|
|
|
$adminGroup = $this->objFromFixture('Group', 'admingroup');
|
|
|
|
$parentGroup = $this->objFromFixture('Group', 'parentgroup');
|
|
|
|
$childGroup = $this->objFromFixture('Group', 'childgroup');
|
2008-08-11 06:59:14 +02:00
|
|
|
|
|
|
|
// Test single group relation through checkboxsetfield
|
|
|
|
$form = new GroupTest_MemberForm($this, 'Form');
|
2009-07-08 02:06:16 +02:00
|
|
|
$member = $this->objFromFixture('GroupTest_Member', 'admin');
|
2008-08-11 06:59:14 +02:00
|
|
|
$form->loadDataFrom($member);
|
|
|
|
$checkboxSetField = $form->Fields()->fieldByName('Groups');
|
|
|
|
$checkboxSetField->setValue(array(
|
|
|
|
$adminGroup->ID => $adminGroup->ID, // keep existing relation
|
|
|
|
$parentGroup->ID => $parentGroup->ID, // add new relation
|
|
|
|
));
|
|
|
|
$form->saveInto($member);
|
|
|
|
$updatedGroups = $member->Groups();
|
2009-04-29 03:20:24 +02:00
|
|
|
|
2008-08-11 06:59:14 +02:00
|
|
|
$this->assertEquals(
|
2009-11-21 05:43:49 +01:00
|
|
|
array($adminGroup->ID, $parentGroup->ID),
|
|
|
|
$updatedGroups->column(),
|
2008-08-11 06:59:14 +02:00
|
|
|
"Adding a toplevel group works"
|
|
|
|
);
|
|
|
|
|
|
|
|
// Test unsetting relationship
|
|
|
|
$form->loadDataFrom($member);
|
|
|
|
$checkboxSetField = $form->Fields()->fieldByName('Groups');
|
|
|
|
$checkboxSetField->setValue(array(
|
|
|
|
$adminGroup->ID => $adminGroup->ID, // keep existing relation
|
|
|
|
//$parentGroup->ID => $parentGroup->ID, // remove previously set relation
|
|
|
|
));
|
|
|
|
$form->saveInto($member);
|
|
|
|
$member->flushCache();
|
|
|
|
$updatedGroups = $member->Groups();
|
|
|
|
$this->assertEquals(
|
2009-11-21 05:43:49 +01:00
|
|
|
array($adminGroup->ID),
|
|
|
|
$updatedGroups->column(),
|
2008-08-11 06:59:14 +02:00
|
|
|
"Removing a previously added toplevel group works"
|
|
|
|
);
|
|
|
|
|
|
|
|
// Test adding child group
|
|
|
|
|
|
|
|
}
|
2009-12-16 06:43:59 +01:00
|
|
|
|
2011-02-21 12:19:23 +01:00
|
|
|
function testCollateAncestorIDs() {
|
|
|
|
$parentGroup = $this->objFromFixture('Group', 'parentgroup');
|
|
|
|
$childGroup = $this->objFromFixture('Group', 'childgroup');
|
|
|
|
$orphanGroup = new Group();
|
|
|
|
$orphanGroup->ParentID = 99999;
|
|
|
|
$orphanGroup->write();
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
array($parentGroup->ID),
|
|
|
|
$parentGroup->collateAncestorIDs(),
|
|
|
|
'Root node only contains itself'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
array($childGroup->ID, $parentGroup->ID),
|
|
|
|
$childGroup->collateAncestorIDs(),
|
|
|
|
'Contains parent nodes, with child node first'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
array($orphanGroup->ID),
|
|
|
|
$orphanGroup->collateAncestorIDs(),
|
|
|
|
'Orphaned nodes dont contain invalid parent IDs'
|
|
|
|
);
|
|
|
|
}
|
2012-03-26 11:05:38 +02:00
|
|
|
|
|
|
|
public function testDelete() {
|
|
|
|
$group = $this->objFromFixture('Group', 'parentgroup');
|
|
|
|
$groupID = $group->ID;
|
|
|
|
$childGroupID = $this->idFromFixture('Group', 'childgroup');
|
|
|
|
$group->delete();
|
|
|
|
|
|
|
|
$this->assertEquals(0, DataObject::get('Group', "\"ID\" = {$groupID}")->Count(), 'Group is removed');
|
|
|
|
$this->assertEquals(0, DataObject::get('Permission', "\"GroupID\" = {$groupID}")->Count(), 'Permissions removed along with the group');
|
|
|
|
$this->assertEquals(0, DataObject::get('Group', "\"ParentID\" = {$groupID}")->Count(), 'Child groups are removed');
|
|
|
|
$this->assertEquals(0, DataObject::get('Group', "\"ParentID\" = {$childGroupID}")->Count(), 'Grandchild groups are removed');
|
|
|
|
}
|
|
|
|
|
2008-08-11 06:59:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
class GroupTest_Member extends Member implements TestOnly {
|
|
|
|
|
2012-04-13 15:46:47 +02:00
|
|
|
function getCMSFields() {
|
2008-08-11 06:59:14 +02:00
|
|
|
$groups = DataObject::get('Group');
|
2011-05-03 05:05:27 +02:00
|
|
|
$groupsMap = ($groups) ? $groups->map() : false;
|
2011-05-11 09:51:54 +02:00
|
|
|
$fields = new FieldList(
|
2008-08-11 06:59:14 +02:00
|
|
|
new HiddenField('ID', 'ID'),
|
|
|
|
new CheckboxSetField(
|
|
|
|
'Groups',
|
|
|
|
'Groups',
|
|
|
|
$groupsMap
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
return $fields;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
class GroupTest_MemberForm extends Form {
|
|
|
|
|
|
|
|
function __construct($controller, $name) {
|
|
|
|
$fields = singleton('GroupTest_Member')->getCMSFields();
|
2011-05-11 09:51:54 +02:00
|
|
|
$actions = new FieldList(
|
2008-08-11 06:59:14 +02:00
|
|
|
new FormAction('doSave','save')
|
|
|
|
);
|
|
|
|
|
|
|
|
parent::__construct($controller, $name, $fields, $actions);
|
|
|
|
}
|
|
|
|
|
|
|
|
function doSave($data, $form) {
|
|
|
|
// done in testing methods
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|