silverstripe-framework/tests/php/Security/PermissionCheckboxSetFieldTest.php

107 lines
3.5 KiB
PHP
Raw Normal View History

<?php
2016-10-14 03:30:05 +02:00
namespace SilverStripe\Security\Tests;
use SilverStripe\ORM\DataObject;
2016-10-14 03:30:05 +02:00
use SilverStripe\Security\Group;
use SilverStripe\Security\Permission;
2016-06-23 01:37:22 +02:00
use SilverStripe\Security\PermissionCheckboxSetField;
use SilverStripe\Dev\SapphireTest;
class PermissionCheckboxSetFieldTest extends SapphireTest {
protected static $fixture_file = 'PermissionCheckboxSetFieldTest.yml';
2014-08-15 08:53:05 +02:00
public function testHiddenPermissions() {
$f = new PermissionCheckboxSetField(
'Permissions',
'Permissions',
2016-10-14 03:30:05 +02:00
Permission::class,
'GroupID'
);
$f->setHiddenPermissions(
array('NON-ADMIN')
);
$this->assertEquals(
$f->getHiddenPermissions(),
array('NON-ADMIN')
);
$this->assertContains('ADMIN', $f->Field());
$this->assertNotContains('NON-ADMIN', $f->Field());
}
2014-08-15 08:53:05 +02:00
public function testSaveInto() {
2016-10-14 03:30:05 +02:00
/** @var Group $group */
$group = $this->objFromFixture(Group::class, 'group'); // tested group
/** @var Group $untouchable */
$untouchable = $this->objFromFixture(Group::class, 'untouchable'); // group that should not change
2014-08-15 08:53:05 +02:00
$field = new PermissionCheckboxSetField(
'Permissions',
'Permissions',
2016-10-14 03:30:05 +02:00
Permission::class,
'GroupID',
$group
);
// get the number of permissions before we start
2016-10-14 03:30:05 +02:00
$baseCount = DataObject::get(Permission::class)->count();
2014-08-15 08:53:05 +02:00
// there are currently no permissions, save empty checkbox
$field->saveInto($group);
$group->flushCache();
$untouchable->flushCache();
2016-10-14 03:30:05 +02:00
$this->assertEquals($group->Permissions()->count(), 0, 'The tested group has no permissions');
2016-10-14 03:30:05 +02:00
$this->assertEquals($untouchable->Permissions()->count(), 1, 'The other group has one permission');
$this->assertEquals($untouchable->Permissions()->where("\"Code\"='ADMIN'")->count(), 1,
'The other group has ADMIN permission');
2016-10-14 03:30:05 +02:00
$this->assertEquals(DataObject::get(Permission::class)->count(), $baseCount, 'There are no orphaned permissions');
2014-08-15 08:53:05 +02:00
// add some permissions
$field->setValue(array(
'ADMIN'=>true,
'NON-ADMIN'=>true
));
$field->saveInto($group);
$group->flushCache();
$untouchable->flushCache();
2016-10-14 03:30:05 +02:00
$this->assertEquals($group->Permissions()->count(), 2,
'The tested group has two permissions permission');
2016-10-14 03:30:05 +02:00
$this->assertEquals($group->Permissions()->where("\"Code\"='ADMIN'")->count(), 1,
'The tested group has ADMIN permission');
2016-10-14 03:30:05 +02:00
$this->assertEquals($group->Permissions()->where("\"Code\"='NON-ADMIN'")->count(), 1,
'The tested group has CMS_ACCESS_AssetAdmin permission');
2016-10-14 03:30:05 +02:00
$this->assertEquals($untouchable->Permissions()->count(), 1,
'The other group has one permission');
2016-10-14 03:30:05 +02:00
$this->assertEquals($untouchable->Permissions()->where("\"Code\"='ADMIN'")->count(), 1,
'The other group has ADMIN permission');
2016-10-14 03:30:05 +02:00
$this->assertEquals(DataObject::get(Permission::class)->count(), $baseCount+2,
'There are no orphaned permissions');
2014-08-15 08:53:05 +02:00
// remove permission
$field->setValue(array(
'ADMIN'=>true,
));
$field->saveInto($group);
$group->flushCache();
$untouchable->flushCache();
2016-10-14 03:30:05 +02:00
$this->assertEquals($group->Permissions()->count(), 1,
'The tested group has 1 permission');
2016-10-14 03:30:05 +02:00
$this->assertEquals($group->Permissions()->where("\"Code\"='ADMIN'")->count(), 1,
'The tested group has ADMIN permission');
2016-10-14 03:30:05 +02:00
$this->assertEquals($untouchable->Permissions()->count(), 1,
'The other group has one permission');
2016-10-14 03:30:05 +02:00
$this->assertEquals($untouchable->Permissions()->where("\"Code\"='ADMIN'")->count(), 1,
'The other group has ADMIN permission');
2016-10-14 03:30:05 +02:00
$this->assertEquals(DataObject::get(Permission::class)->count(), $baseCount+1,
'There are no orphaned permissions');
}
}