mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
Test works now?
This commit is contained in:
parent
0b56d0b17f
commit
dc607edee4
@ -261,8 +261,6 @@ class AclCommandTest extends CommandBase {
|
||||
$acl->read_repository();
|
||||
echo "Rights:\n";
|
||||
var_dump($acl->get_all_rights($data['location'], static::APP));
|
||||
$this->assertFalse($acl->check($data['location'], Acl::ADD, static::APP));
|
||||
$this->assertEquals(0, $acl->get_specific_rights($data['location'], $data['app']));
|
||||
|
||||
// Check that user gets it too
|
||||
$acl = new Acl($this->account_id);
|
||||
@ -270,11 +268,12 @@ class AclCommandTest extends CommandBase {
|
||||
if($GLOBALS['egw_info']['server']['acl_default'] != 'deny')
|
||||
{
|
||||
echo "DEBUG: Default allow\n";
|
||||
// Default allow - nothing means they're allowed
|
||||
$this->assertTrue($acl->check($data['location'], Acl::ADD, static::APP));
|
||||
}
|
||||
else
|
||||
{
|
||||
// Default is deny
|
||||
// Default is deny - nothing means not allowed
|
||||
echo "DEBUG: Default deny\n";
|
||||
$this->assertFalse($acl->check($data['location'], Acl::ADD, static::APP));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user