2014-08-21 19:59:13 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2014-08-21 19:59:13 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2016-05-12 18:14:59 +03:00
|
|
|
namespace OCA\User_LDAP\Tests\Jobs;
|
2014-08-21 19:59:13 +04:00
|
|
|
|
2016-09-02 12:02:12 +03:00
|
|
|
use OCA\User_LDAP\Helper;
|
|
|
|
use OCP\IConfig;
|
|
|
|
use OCP\IDBConnection;
|
|
|
|
|
2016-05-12 18:14:59 +03:00
|
|
|
class CleanUpTest extends \Test\TestCase {
|
2014-08-21 19:59:13 +04:00
|
|
|
public function getMocks() {
|
|
|
|
$mocks = array();
|
|
|
|
$mocks['userBackend'] =
|
2016-05-12 12:01:29 +03:00
|
|
|
$this->getMockBuilder('\OCA\User_LDAP\User_Proxy')
|
2014-08-21 19:59:13 +04:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2014-12-20 19:08:26 +03:00
|
|
|
$mocks['deletedUsersIndex'] =
|
2016-05-12 12:25:50 +03:00
|
|
|
$this->getMockBuilder('\OCA\User_LDAP\User\DeletedUsersIndex')
|
2014-12-20 19:08:26 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2016-09-02 12:02:12 +03:00
|
|
|
$mocks['ocConfig'] = $this->createMock(IConfig::class);
|
|
|
|
$mocks['db'] = $this->createMock(IDBConnection::class);
|
|
|
|
$mocks['helper'] = $this->createMock(Helper::class);
|
2014-08-21 19:59:13 +04:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|