Clean out test debug

This commit is contained in:
nathangray 2018-08-29 13:53:11 -06:00
parent 2dc59bc807
commit 9681982ff0

View File

@ -233,16 +233,12 @@ class AclCommandTest extends CommandBase {
*/ */
public function testRemoveForGroupToEmpty() public function testRemoveForGroupToEmpty()
{ {
echo "\n== DEBUG ==\n";
echo "Server ACL default: " . $GLOBALS['egw_info']['server']['acl_default']."\n";
// Set up // Set up
$acl = new Acl($this->group_id); $acl = new Acl($this->group_id);
$acl->add_repository(static::APP, $GLOBALS['egw_info']['user']['account_id'], $this->group_id, Acl::ADD); $acl->add_repository(static::APP, $GLOBALS['egw_info']['user']['account_id'], $this->group_id, Acl::ADD);
$acl->read_repository(); $acl->read_repository();
$this->assertTrue($acl->check($GLOBALS['egw_info']['user']['account_id'], Acl::ADD, static::APP)); $this->assertTrue($acl->check($GLOBALS['egw_info']['user']['account_id'], Acl::ADD, static::APP));
echo "\nBefore:\n";
var_dump($acl->get_all_rights($GLOBALS['egw_info']['user']['account_id']));
$data = array( $data = array(
'allow' => false, 'allow' => false,
'account' => $this->group_id, 'account' => $this->group_id,
@ -254,26 +250,10 @@ class AclCommandTest extends CommandBase {
$command = new admin_cmd_acl($data); $command = new admin_cmd_acl($data);
$command->run(); $command->run();
echo "Data:\n";
var_dump($data);
// Check group // Check group
$acl = new Acl($this->group_id); $acl = new Acl($this->group_id);
$acl->read_repository(); $acl->read_repository();
echo "Rights:\n"; $this->assertFalse($acl->check($data['location'], Acl::ADD, static::APP));
var_dump($acl->get_all_rights($data['location'], static::APP));
var_dump($acl->check($data['location'], Acl::ADD, static::APP));
//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 - nothing means not allowed
echo "DEBUG: Default deny\n";
$this->assertFalse($acl->check($data['location'], Acl::ADD, static::APP));
}
// Check that user gets it too // Check that user gets it too
$acl = new Acl($this->account_id); $acl = new Acl($this->account_id);