2014-08-21 19:59:13 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-26 13:37:37 +03:00
|
|
|
* Copyright (c) 2014 Arthur Schiwon <blizzz@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
2014-08-21 19:59:13 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-08-21 19:59:13 +04:00
|
|
|
namespace OCA\user_ldap\tests;
|
|
|
|
|
|
|
|
class Test_CleanUp extends \PHPUnit_Framework_TestCase {
|
|
|
|
public function getMocks() {
|
|
|
|
$mocks = array();
|
|
|
|
$mocks['userBackend'] =
|
|
|
|
$this->getMockBuilder('\OCA\user_ldap\User_Proxy')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2014-12-20 19:08:26 +03:00
|
|
|
$mocks['deletedUsersIndex'] =
|
|
|
|
$this->getMockBuilder('\OCA\user_ldap\lib\user\deletedUsersIndex')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2014-08-21 19:59:13 +04:00
|
|
|
$mocks['ocConfig'] = $this->getMock('\OCP\IConfig');
|
|
|
|
$mocks['db'] = $this->getMock('\OCP\IDBConnection');
|
|
|
|
$mocks['helper'] = $this->getMock('\OCA\user_ldap\lib\Helper');
|
|
|
|
|
|
|
|
return $mocks;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clean up job must not run when there are disabled configurations
|
|
|
|
*/
|
|
|
|
public function test_runNotAllowedByDisabledConfigurations() {
|
|
|
|
$args = $this->getMocks();
|
|
|
|
$args['helper']->expects($this->once())
|
|
|
|
->method('haveDisabledConfigurations')
|
|
|
|
->will($this->returnValue(true) );
|
|
|
|
|
|
|
|
$args['ocConfig']->expects($this->never())
|
|
|
|
->method('getSystemValue');
|
|
|
|
|
|
|
|
$bgJob = new \OCA\User_LDAP\Jobs\CleanUp();
|
|
|
|
$bgJob->setArguments($args);
|
|
|
|
|
|
|
|
$result = $bgJob->isCleanUpAllowed();
|
|
|
|
$this->assertSame(false, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clean up job must not run when LDAP Helper is broken i.e.
|
|
|
|
* returning unexpected results
|
|
|
|
*/
|
|
|
|
public function test_runNotAllowedByBrokenHelper() {
|
|
|
|
$args = $this->getMocks();
|
|
|
|
$args['helper']->expects($this->once())
|
|
|
|
->method('haveDisabledConfigurations')
|
|
|
|
->will($this->throwException(new \Exception()));
|
|
|
|
|
|
|
|
$args['ocConfig']->expects($this->never())
|
|
|
|
->method('getSystemValue');
|
|
|
|
|
|
|
|
$bgJob = new \OCA\User_LDAP\Jobs\CleanUp();
|
|
|
|
$bgJob->setArguments($args);
|
|
|
|
|
|
|
|
$result = $bgJob->isCleanUpAllowed();
|
|
|
|
$this->assertSame(false, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clean up job must not run when it is not enabled
|
|
|
|
*/
|
|
|
|
public function test_runNotAllowedBySysConfig() {
|
|
|
|
$args = $this->getMocks();
|
|
|
|
$args['helper']->expects($this->once())
|
|
|
|
->method('haveDisabledConfigurations')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
$args['ocConfig']->expects($this->once())
|
|
|
|
->method('getSystemValue')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
$bgJob = new \OCA\User_LDAP\Jobs\CleanUp();
|
|
|
|
$bgJob->setArguments($args);
|
|
|
|
|
|
|
|
$result = $bgJob->isCleanUpAllowed();
|
|
|
|
$this->assertSame(false, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clean up job is allowed to run
|
|
|
|
*/
|
|
|
|
public function test_runIsAllowed() {
|
|
|
|
$args = $this->getMocks();
|
|
|
|
$args['helper']->expects($this->once())
|
|
|
|
->method('haveDisabledConfigurations')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
$args['ocConfig']->expects($this->once())
|
|
|
|
->method('getSystemValue')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
|
|
|
$bgJob = new \OCA\User_LDAP\Jobs\CleanUp();
|
|
|
|
$bgJob->setArguments($args);
|
|
|
|
|
|
|
|
$result = $bgJob->isCleanUpAllowed();
|
|
|
|
$this->assertSame(true, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* check whether offset will be reset when it needs to
|
|
|
|
*/
|
|
|
|
public function test_OffsetResetIsNecessary() {
|
|
|
|
$args = $this->getMocks();
|
|
|
|
|
|
|
|
$bgJob = new \OCA\User_LDAP\Jobs\CleanUp();
|
|
|
|
$bgJob->setArguments($args);
|
|
|
|
|
|
|
|
$result = $bgJob->isOffsetResetNecessary($bgJob->getChunkSize() - 1);
|
|
|
|
$this->assertSame(true, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* make sure offset is not reset when it is not due
|
|
|
|
*/
|
|
|
|
public function test_OffsetResetIsNotNecessary() {
|
|
|
|
$args = $this->getMocks();
|
|
|
|
|
|
|
|
$bgJob = new \OCA\User_LDAP\Jobs\CleanUp();
|
|
|
|
$bgJob->setArguments($args);
|
|
|
|
|
|
|
|
$result = $bgJob->isOffsetResetNecessary($bgJob->getChunkSize());
|
|
|
|
$this->assertSame(false, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|