2014-03-27 21:01:14 +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>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
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/>
|
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2016-05-12 12:25:50 +03:00
|
|
|
namespace OCA\User_LDAP\Tests\User;
|
2014-03-27 21:01:14 +04:00
|
|
|
|
2016-09-02 12:02:12 +03:00
|
|
|
use OCA\User_LDAP\FilesystemHelper;
|
|
|
|
use OCA\User_LDAP\ILDAPWrapper;
|
|
|
|
use OCA\User_LDAP\LogWrapper;
|
|
|
|
use OCA\User_LDAP\User\IUserTools;
|
2016-05-12 12:25:50 +03:00
|
|
|
use OCA\User_LDAP\User\User;
|
2016-09-02 12:02:12 +03:00
|
|
|
use OCP\IAvatar;
|
|
|
|
use OCP\IAvatarManager;
|
|
|
|
use OCP\IConfig;
|
|
|
|
use OCP\IDBConnection;
|
|
|
|
use OCP\Image;
|
|
|
|
use OCP\IUser;
|
2016-01-19 17:48:38 +03:00
|
|
|
use OCP\IUserManager;
|
2017-03-31 10:16:22 +03:00
|
|
|
use OCP\Notification\IManager as INotificationManager;
|
2014-03-27 21:01:14 +04:00
|
|
|
|
2015-11-25 18:58:54 +03:00
|
|
|
/**
|
2016-05-12 18:14:59 +03:00
|
|
|
* Class UserTest
|
2015-11-25 18:58:54 +03:00
|
|
|
*
|
|
|
|
* @group DB
|
|
|
|
*
|
2016-05-12 18:14:59 +03:00
|
|
|
* @package OCA\User_LDAP\Tests\User
|
2015-11-25 18:58:54 +03:00
|
|
|
*/
|
2016-05-12 12:25:50 +03:00
|
|
|
class UserTest extends \Test\TestCase {
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
private function getTestInstances() {
|
2016-09-02 12:02:12 +03:00
|
|
|
$access = $this->createMock(IUserTools::class);
|
|
|
|
$config = $this->createMock(IConfig::class);
|
|
|
|
$filesys = $this->createMock(FilesystemHelper::class);
|
|
|
|
$log = $this->createMock(LogWrapper::class);
|
|
|
|
$avaMgr = $this->createMock(IAvatarManager::class);
|
|
|
|
$image = $this->createMock(Image::class);
|
|
|
|
$dbc = $this->createMock(IDBConnection::class);
|
|
|
|
$userMgr = $this->createMock(IUserManager::class);
|
2017-03-31 10:16:22 +03:00
|
|
|
$notiMgr = $this->createMock(INotificationManager::class);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
2017-03-31 10:16:22 +03:00
|
|
|
return array($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
}
|
|
|
|
|
2017-03-31 10:16:22 +03:00
|
|
|
private function getAdvancedMocks($cfMock, $fsMock, $logMock, $avaMgr, $dbc, $userMgr = null, $notiMgr = null) {
|
2014-03-27 21:01:14 +04:00
|
|
|
static $conMethods;
|
|
|
|
static $accMethods;
|
|
|
|
static $umMethods;
|
|
|
|
|
|
|
|
if(is_null($conMethods) || is_null($accMethods)) {
|
2016-05-12 17:35:33 +03:00
|
|
|
$conMethods = get_class_methods('\OCA\User_LDAP\Connection');
|
2016-05-12 17:42:57 +03:00
|
|
|
$accMethods = get_class_methods('\OCA\User_LDAP\Access');
|
2014-03-27 21:01:14 +04:00
|
|
|
//getConnection shall not be replaced
|
|
|
|
unset($accMethods[array_search('getConnection', $accMethods)]);
|
2016-05-12 12:25:50 +03:00
|
|
|
$umMethods = get_class_methods('\OCA\User_LDAP\User\Manager');
|
2014-03-27 21:01:14 +04:00
|
|
|
}
|
2016-09-02 12:02:12 +03:00
|
|
|
$lw = $this->createMock(ILDAPWrapper::class);
|
|
|
|
$im = $this->createMock(Image::class);
|
2016-01-19 17:48:38 +03:00
|
|
|
if (is_null($userMgr)) {
|
2016-09-02 12:02:12 +03:00
|
|
|
$userMgr = $this->createMock(IUserManager::class);
|
2016-01-19 17:48:38 +03:00
|
|
|
}
|
2017-03-31 10:16:22 +03:00
|
|
|
if (is_null($notiMgr)) {
|
|
|
|
$notiMgr = $this->createMock(INotificationManager::class);
|
|
|
|
}
|
2016-09-27 23:54:37 +03:00
|
|
|
$um = $this->getMockBuilder('\OCA\User_LDAP\User\Manager')
|
|
|
|
->setMethods($umMethods)
|
2017-03-31 10:16:22 +03:00
|
|
|
->setConstructorArgs([$cfMock, $fsMock, $logMock, $avaMgr, $im, $dbc, $userMgr, $notiMgr])
|
2016-09-27 23:54:37 +03:00
|
|
|
->getMock();
|
2016-10-10 11:18:18 +03:00
|
|
|
$helper = new \OCA\User_LDAP\Helper(\OC::$server->getConfig());
|
2016-09-27 23:54:37 +03:00
|
|
|
$connector = $this->getMockBuilder('\OCA\User_LDAP\Connection')
|
|
|
|
->setMethods($conMethods)
|
|
|
|
->setConstructorArgs([$lw, null, null])
|
|
|
|
->getMock();
|
|
|
|
$access = $this->getMockBuilder('\OCA\User_LDAP\Access')
|
|
|
|
->setMethods($accMethods)
|
|
|
|
->setConstructorArgs([$connector, $lw, $um, $helper])
|
|
|
|
->getMock();
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
return array($access, $connector);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetDNandUsername() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $db, $userMgr, $notiMgr) =
|
2014-03-27 21:01:14 +04:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$this->assertSame($dn, $user->getDN());
|
|
|
|
$this->assertSame($uid, $user->getUsername());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateEmailProvided() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2014-03-27 21:01:14 +04:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
2017-03-31 10:16:22 +03:00
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$connection->expects($this->once())
|
|
|
|
->method('__get')
|
|
|
|
->with($this->equalTo('ldapEmailAttribute'))
|
|
|
|
->will($this->returnValue('email'));
|
|
|
|
|
|
|
|
$access->expects($this->once())
|
|
|
|
->method('readAttribute')
|
|
|
|
->with($this->equalTo('uid=alice,dc=foo,dc=bar'),
|
|
|
|
$this->equalTo('email'))
|
|
|
|
->will($this->returnValue(array('alice@foo.bar')));
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
2016-01-19 17:48:38 +03:00
|
|
|
$uuser = $this->getMockBuilder('\OCP\IUser')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$uuser->expects($this->once())
|
|
|
|
->method('setEMailAddress')
|
|
|
|
->with('alice@foo.bar');
|
|
|
|
/** @var IUserManager | \PHPUnit_Framework_MockObject_MockObject $userMgr */
|
|
|
|
$userMgr->expects($this->any())
|
|
|
|
->method('get')
|
|
|
|
->willReturn($uuser);
|
2014-03-27 21:01:14 +04:00
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$user->updateEmail();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateEmailNotProvided() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2014-03-27 21:01:14 +04:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
2015-01-07 02:52:18 +03:00
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$connection->expects($this->once())
|
|
|
|
->method('__get')
|
|
|
|
->with($this->equalTo('ldapEmailAttribute'))
|
|
|
|
->will($this->returnValue('email'));
|
|
|
|
|
|
|
|
$access->expects($this->once())
|
|
|
|
->method('readAttribute')
|
|
|
|
->with($this->equalTo('uid=alice,dc=foo,dc=bar'),
|
|
|
|
$this->equalTo('email'))
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
$config->expects($this->never())
|
|
|
|
->method('setUserValue');
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$user->updateEmail();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateEmailNotConfigured() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2014-03-27 21:01:14 +04:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
2015-01-07 02:52:18 +03:00
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$connection->expects($this->once())
|
|
|
|
->method('__get')
|
|
|
|
->with($this->equalTo('ldapEmailAttribute'))
|
|
|
|
->will($this->returnValue(''));
|
|
|
|
|
|
|
|
$access->expects($this->never())
|
|
|
|
->method('readAttribute');
|
|
|
|
|
|
|
|
$config->expects($this->never())
|
|
|
|
->method('setUserValue');
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$user->updateEmail();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateQuotaAllProvided() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2014-03-27 21:01:14 +04:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
2015-01-07 02:52:18 +03:00
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$connection->expects($this->at(0))
|
|
|
|
->method('__get')
|
2017-03-15 10:55:14 +03:00
|
|
|
->with($this->equalTo('ldapQuotaAttribute'))
|
|
|
|
->will($this->returnValue('myquota'));
|
2014-03-27 21:01:14 +04:00
|
|
|
|
2017-03-15 10:55:14 +03:00
|
|
|
/* Having a quota defined, the ldapQuotaDefault won't be used
|
2014-03-27 21:01:14 +04:00
|
|
|
$connection->expects($this->at(1))
|
|
|
|
->method('__get')
|
2017-03-15 10:55:14 +03:00
|
|
|
->with($this->equalTo('ldapQuotaDefault'))
|
|
|
|
->will($this->returnValue('23 GB'));
|
|
|
|
*/
|
2014-03-27 21:01:14 +04:00
|
|
|
|
2017-03-15 10:55:14 +03:00
|
|
|
$connection->expects($this->exactly(1))
|
2014-03-27 21:01:14 +04:00
|
|
|
->method('__get');
|
|
|
|
|
|
|
|
$access->expects($this->once())
|
|
|
|
->method('readAttribute')
|
|
|
|
->with($this->equalTo('uid=alice,dc=foo,dc=bar'),
|
|
|
|
$this->equalTo('myquota'))
|
|
|
|
->will($this->returnValue(array('42 GB')));
|
|
|
|
|
2016-09-02 12:02:12 +03:00
|
|
|
$user = $this->createMock(IUser::class);
|
2016-02-09 20:11:30 +03:00
|
|
|
$user->expects($this->once())
|
|
|
|
->method('setQuota')
|
|
|
|
->with('42 GB');
|
|
|
|
|
|
|
|
$userMgr->expects($this->once())
|
|
|
|
->method('get')
|
|
|
|
->with('alice')
|
|
|
|
->will($this->returnValue($user));
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$user->updateQuota();
|
|
|
|
}
|
|
|
|
|
2017-03-17 15:02:08 +03:00
|
|
|
public function testUpdateQuotaToDefaultAllProvided() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2017-03-17 15:02:08 +03:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
|
|
|
|
|
|
|
$connection->expects($this->at(0))
|
|
|
|
->method('__get')
|
|
|
|
->with($this->equalTo('ldapQuotaAttribute'))
|
|
|
|
->will($this->returnValue('myquota'));
|
|
|
|
|
|
|
|
$connection->expects($this->exactly(1))
|
|
|
|
->method('__get');
|
|
|
|
|
|
|
|
$access->expects($this->once())
|
|
|
|
->method('readAttribute')
|
|
|
|
->with($this->equalTo('uid=alice,dc=foo,dc=bar'),
|
|
|
|
$this->equalTo('myquota'))
|
|
|
|
->will($this->returnValue(array('default')));
|
|
|
|
|
|
|
|
$user = $this->createMock('\OCP\IUser');
|
|
|
|
$user->expects($this->once())
|
|
|
|
->method('setQuota')
|
|
|
|
->with('default');
|
|
|
|
|
|
|
|
$userMgr->expects($this->once())
|
|
|
|
->method('get')
|
|
|
|
->with('alice')
|
|
|
|
->will($this->returnValue($user));
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 11:54:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2017-03-17 15:02:08 +03:00
|
|
|
|
|
|
|
$user->updateQuota();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateQuotaToNoneAllProvided() {
|
2017-07-13 15:32:52 +03:00
|
|
|
list(, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2017-03-17 15:02:08 +03:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
|
|
|
|
|
|
|
$connection->expects($this->at(0))
|
|
|
|
->method('__get')
|
|
|
|
->with($this->equalTo('ldapQuotaAttribute'))
|
|
|
|
->will($this->returnValue('myquota'));
|
|
|
|
|
|
|
|
$connection->expects($this->exactly(1))
|
|
|
|
->method('__get');
|
|
|
|
|
|
|
|
$access->expects($this->once())
|
|
|
|
->method('readAttribute')
|
|
|
|
->with($this->equalTo('uid=alice,dc=foo,dc=bar'),
|
|
|
|
$this->equalTo('myquota'))
|
|
|
|
->will($this->returnValue(array('none')));
|
|
|
|
|
|
|
|
$user = $this->createMock('\OCP\IUser');
|
|
|
|
$user->expects($this->once())
|
|
|
|
->method('setQuota')
|
|
|
|
->with('none');
|
|
|
|
|
|
|
|
$userMgr->expects($this->once())
|
|
|
|
->method('get')
|
|
|
|
->with('alice')
|
|
|
|
->will($this->returnValue($user));
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 11:54:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2017-03-17 15:02:08 +03:00
|
|
|
|
|
|
|
$user->updateQuota();
|
|
|
|
}
|
|
|
|
|
2014-03-27 21:01:14 +04:00
|
|
|
public function testUpdateQuotaDefaultProvided() {
|
2017-03-31 11:54:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2014-03-27 21:01:14 +04:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
2015-01-07 02:52:18 +03:00
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$connection->expects($this->at(0))
|
|
|
|
->method('__get')
|
2017-03-15 10:55:14 +03:00
|
|
|
->with($this->equalTo('ldapQuotaAttribute'))
|
|
|
|
->will($this->returnValue('myquota'));
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$connection->expects($this->at(1))
|
|
|
|
->method('__get')
|
2017-03-15 10:55:14 +03:00
|
|
|
->with($this->equalTo('ldapQuotaDefault'))
|
|
|
|
->will($this->returnValue('25 GB'));
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$connection->expects($this->exactly(2))
|
|
|
|
->method('__get');
|
|
|
|
|
|
|
|
$access->expects($this->once())
|
|
|
|
->method('readAttribute')
|
|
|
|
->with($this->equalTo('uid=alice,dc=foo,dc=bar'),
|
|
|
|
$this->equalTo('myquota'))
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
2016-09-02 12:02:12 +03:00
|
|
|
$user = $this->createMock(IUser::class);
|
2016-02-09 20:11:30 +03:00
|
|
|
$user->expects($this->once())
|
|
|
|
->method('setQuota')
|
|
|
|
->with('25 GB');
|
|
|
|
|
|
|
|
$userMgr->expects($this->once())
|
|
|
|
->method('get')
|
|
|
|
->with('alice')
|
|
|
|
->will($this->returnValue($user));
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$user->updateQuota();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateQuotaIndividualProvided() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2014-03-27 21:01:14 +04:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
2015-01-07 02:52:18 +03:00
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$connection->expects($this->at(0))
|
|
|
|
->method('__get')
|
2017-03-15 10:55:14 +03:00
|
|
|
->with($this->equalTo('ldapQuotaAttribute'))
|
|
|
|
->will($this->returnValue('myquota'));
|
2014-03-27 21:01:14 +04:00
|
|
|
|
2017-03-15 10:55:14 +03:00
|
|
|
/* Having a quota set this won't be used
|
2014-03-27 21:01:14 +04:00
|
|
|
$connection->expects($this->at(1))
|
|
|
|
->method('__get')
|
2017-03-15 10:55:14 +03:00
|
|
|
->with($this->equalTo('ldapQuotaDefault'))
|
|
|
|
->will($this->returnValue(''));
|
|
|
|
*/
|
2014-03-27 21:01:14 +04:00
|
|
|
|
2017-03-15 10:55:14 +03:00
|
|
|
$connection->expects($this->exactly(1))
|
2014-03-27 21:01:14 +04:00
|
|
|
->method('__get');
|
|
|
|
|
|
|
|
$access->expects($this->once())
|
|
|
|
->method('readAttribute')
|
|
|
|
->with($this->equalTo('uid=alice,dc=foo,dc=bar'),
|
|
|
|
$this->equalTo('myquota'))
|
2015-08-21 01:55:42 +03:00
|
|
|
->will($this->returnValue(array('27 GB')));
|
2014-03-27 21:01:14 +04:00
|
|
|
|
2016-09-02 12:02:12 +03:00
|
|
|
$user = $this->createMock(IUser::class);
|
2016-02-09 20:11:30 +03:00
|
|
|
$user->expects($this->once())
|
|
|
|
->method('setQuota')
|
|
|
|
->with('27 GB');
|
|
|
|
|
|
|
|
$userMgr->expects($this->once())
|
|
|
|
->method('get')
|
|
|
|
->with('alice')
|
|
|
|
->will($this->returnValue($user));
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$user->updateQuota();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateQuotaNoneProvided() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2014-03-27 21:01:14 +04:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
2015-01-07 02:52:18 +03:00
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$connection->expects($this->at(0))
|
|
|
|
->method('__get')
|
2017-03-15 10:55:14 +03:00
|
|
|
->with($this->equalTo('ldapQuotaAttribute'))
|
|
|
|
->will($this->returnValue('myquota'));
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$connection->expects($this->at(1))
|
|
|
|
->method('__get')
|
2017-03-15 10:55:14 +03:00
|
|
|
->with($this->equalTo('ldapQuotaDefault'))
|
|
|
|
->will($this->returnValue(''));
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$connection->expects($this->exactly(2))
|
|
|
|
->method('__get');
|
|
|
|
|
|
|
|
$access->expects($this->once())
|
|
|
|
->method('readAttribute')
|
|
|
|
->with($this->equalTo('uid=alice,dc=foo,dc=bar'),
|
|
|
|
$this->equalTo('myquota'))
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
2017-03-16 14:22:02 +03:00
|
|
|
$user = $this->createMock('\OCP\IUser');
|
2017-08-16 12:10:23 +03:00
|
|
|
$user->expects($this->never())
|
|
|
|
->method('setQuota');
|
2017-03-16 14:22:02 +03:00
|
|
|
|
|
|
|
$userMgr->expects($this->once())
|
|
|
|
->method('get')
|
|
|
|
->with('alice')
|
|
|
|
->will($this->returnValue($user));
|
|
|
|
|
2014-03-27 21:01:14 +04:00
|
|
|
$config->expects($this->never())
|
|
|
|
->method('setUserValue');
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$user->updateQuota();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateQuotaNoneConfigured() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2014-03-27 21:01:14 +04:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
2015-01-07 02:52:18 +03:00
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$connection->expects($this->at(0))
|
|
|
|
->method('__get')
|
2017-03-15 10:55:14 +03:00
|
|
|
->with($this->equalTo('ldapQuotaAttribute'))
|
2014-03-27 21:01:14 +04:00
|
|
|
->will($this->returnValue(''));
|
|
|
|
|
|
|
|
$connection->expects($this->at(1))
|
|
|
|
->method('__get')
|
2017-03-15 10:55:14 +03:00
|
|
|
->with($this->equalTo('ldapQuotaDefault'))
|
2014-03-27 21:01:14 +04:00
|
|
|
->will($this->returnValue(''));
|
|
|
|
|
|
|
|
$connection->expects($this->exactly(2))
|
|
|
|
->method('__get');
|
|
|
|
|
2017-03-16 14:22:02 +03:00
|
|
|
$user = $this->createMock('\OCP\IUser');
|
2017-08-16 12:10:23 +03:00
|
|
|
$user->expects($this->never())
|
|
|
|
->method('setQuota');
|
2017-03-16 14:22:02 +03:00
|
|
|
|
|
|
|
$userMgr->expects($this->once())
|
|
|
|
->method('get')
|
|
|
|
->with('alice')
|
|
|
|
->will($this->returnValue($user));
|
|
|
|
|
|
|
|
|
2014-03-27 21:01:14 +04:00
|
|
|
$access->expects($this->never())
|
|
|
|
->method('readAttribute');
|
|
|
|
|
|
|
|
$config->expects($this->never())
|
|
|
|
->method('setUserValue');
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$user->updateQuota();
|
|
|
|
}
|
|
|
|
|
2015-09-29 17:19:45 +03:00
|
|
|
public function testUpdateQuotaFromValue() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2015-09-29 17:19:45 +03:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
|
|
|
|
|
|
|
$readQuota = '19 GB';
|
|
|
|
|
2017-03-15 10:55:14 +03:00
|
|
|
$connection->expects($this->never())
|
2015-09-29 17:19:45 +03:00
|
|
|
->method('__get')
|
2017-03-15 10:55:14 +03:00
|
|
|
->with($this->equalTo('ldapQuotaDefault'));
|
2015-09-29 17:19:45 +03:00
|
|
|
|
|
|
|
$access->expects($this->never())
|
|
|
|
->method('readAttribute');
|
|
|
|
|
2016-09-02 12:02:12 +03:00
|
|
|
$user = $this->createMock(IUser::class);
|
2016-02-09 20:11:30 +03:00
|
|
|
$user->expects($this->once())
|
|
|
|
->method('setQuota')
|
|
|
|
->with($readQuota);
|
|
|
|
|
|
|
|
$userMgr->expects($this->once())
|
|
|
|
->method('get')
|
|
|
|
->with('alice')
|
|
|
|
->will($this->returnValue($user));
|
2015-09-29 17:19:45 +03:00
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 11:54:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2015-09-29 17:19:45 +03:00
|
|
|
|
|
|
|
$user->updateQuota($readQuota);
|
|
|
|
}
|
|
|
|
|
2017-03-16 14:22:02 +03:00
|
|
|
/**
|
|
|
|
* Unparseable quota will fallback to use the LDAP default
|
|
|
|
*/
|
|
|
|
public function testUpdateWrongQuotaAllProvided() {
|
2017-03-31 11:54:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2017-03-16 14:22:02 +03:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
|
|
|
|
|
|
|
$connection->expects($this->at(0))
|
|
|
|
->method('__get')
|
|
|
|
->with($this->equalTo('ldapQuotaAttribute'))
|
|
|
|
->will($this->returnValue('myquota'));
|
|
|
|
|
|
|
|
$connection->expects($this->at(1))
|
|
|
|
->method('__get')
|
|
|
|
->with($this->equalTo('ldapQuotaDefault'))
|
|
|
|
->will($this->returnValue('23 GB'));
|
|
|
|
|
|
|
|
$connection->expects($this->exactly(2))
|
|
|
|
->method('__get');
|
|
|
|
|
|
|
|
$access->expects($this->once())
|
|
|
|
->method('readAttribute')
|
|
|
|
->with($this->equalTo('uid=alice,dc=foo,dc=bar'),
|
|
|
|
$this->equalTo('myquota'))
|
|
|
|
->will($this->returnValue(array('42 GBwos')));
|
|
|
|
|
|
|
|
$user = $this->createMock('\OCP\IUser');
|
|
|
|
$user->expects($this->once())
|
|
|
|
->method('setQuota')
|
|
|
|
->with('23 GB');
|
|
|
|
|
|
|
|
$userMgr->expects($this->once())
|
|
|
|
->method('get')
|
|
|
|
->with('alice')
|
|
|
|
->will($this->returnValue($user));
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 11:54:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2017-03-16 14:22:02 +03:00
|
|
|
|
|
|
|
$user->updateQuota();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* No user quota and wrong default will set 'default' as quota
|
|
|
|
*/
|
|
|
|
public function testUpdateWrongDefaultQuotaProvided() {
|
2017-03-31 11:54:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2017-03-16 14:22:02 +03:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
|
|
|
|
|
|
|
$connection->expects($this->at(0))
|
|
|
|
->method('__get')
|
|
|
|
->with($this->equalTo('ldapQuotaAttribute'))
|
|
|
|
->will($this->returnValue('myquota'));
|
|
|
|
|
|
|
|
$connection->expects($this->at(1))
|
|
|
|
->method('__get')
|
|
|
|
->with($this->equalTo('ldapQuotaDefault'))
|
|
|
|
->will($this->returnValue('23 GBwowowo'));
|
|
|
|
|
|
|
|
$connection->expects($this->exactly(2))
|
|
|
|
->method('__get');
|
|
|
|
|
|
|
|
$access->expects($this->once())
|
|
|
|
->method('readAttribute')
|
|
|
|
->with($this->equalTo('uid=alice,dc=foo,dc=bar'),
|
|
|
|
$this->equalTo('myquota'))
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
$user = $this->createMock('\OCP\IUser');
|
2017-08-16 12:10:23 +03:00
|
|
|
$user->expects($this->never())
|
|
|
|
->method('setQuota');
|
2017-03-16 14:22:02 +03:00
|
|
|
|
|
|
|
$userMgr->expects($this->once())
|
|
|
|
->method('get')
|
|
|
|
->with('alice')
|
|
|
|
->will($this->returnValue($user));
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 11:54:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2017-03-16 14:22:02 +03:00
|
|
|
|
|
|
|
$user->updateQuota();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Wrong user quota and wrong default will set 'default' as quota
|
|
|
|
*/
|
|
|
|
public function testUpdateWrongQuotaAndDefaultAllProvided() {
|
2017-03-31 11:54:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2017-03-16 14:22:02 +03:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
|
|
|
|
|
|
|
$connection->expects($this->at(0))
|
|
|
|
->method('__get')
|
|
|
|
->with($this->equalTo('ldapQuotaAttribute'))
|
|
|
|
->will($this->returnValue('myquota'));
|
|
|
|
|
|
|
|
$connection->expects($this->at(1))
|
|
|
|
->method('__get')
|
|
|
|
->with($this->equalTo('ldapQuotaDefault'))
|
|
|
|
->will($this->returnValue('23 GBwowowo'));
|
|
|
|
|
|
|
|
$connection->expects($this->exactly(2))
|
|
|
|
->method('__get');
|
|
|
|
|
|
|
|
$access->expects($this->once())
|
|
|
|
->method('readAttribute')
|
|
|
|
->with($this->equalTo('uid=alice,dc=foo,dc=bar'),
|
|
|
|
$this->equalTo('myquota'))
|
|
|
|
->will($this->returnValue(array('23 flush')));
|
|
|
|
|
|
|
|
$user = $this->createMock('\OCP\IUser');
|
2017-08-16 12:10:23 +03:00
|
|
|
$user->expects($this->never())
|
|
|
|
->method('setQuota');
|
2017-03-16 14:22:02 +03:00
|
|
|
|
|
|
|
$userMgr->expects($this->once())
|
|
|
|
->method('get')
|
|
|
|
->with('alice')
|
|
|
|
->will($this->returnValue($user));
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 11:54:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2017-03-16 14:22:02 +03:00
|
|
|
|
|
|
|
$user->updateQuota();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* No quota attribute set and wrong default will set 'default' as quota
|
|
|
|
*/
|
|
|
|
public function testUpdateWrongDefaultQuotaNotProvided() {
|
2017-03-31 12:30:59 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2017-03-16 14:22:02 +03:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
|
|
|
|
|
|
|
$connection->expects($this->at(0))
|
|
|
|
->method('__get')
|
|
|
|
->with($this->equalTo('ldapQuotaAttribute'))
|
|
|
|
->will($this->returnValue(''));
|
|
|
|
|
|
|
|
$connection->expects($this->at(1))
|
|
|
|
->method('__get')
|
|
|
|
->with($this->equalTo('ldapQuotaDefault'))
|
|
|
|
->will($this->returnValue('23 GBwowowo'));
|
|
|
|
|
|
|
|
$connection->expects($this->exactly(2))
|
|
|
|
->method('__get');
|
|
|
|
|
|
|
|
$access->expects($this->never())
|
|
|
|
->method('readAttribute');
|
|
|
|
|
|
|
|
$user = $this->createMock('\OCP\IUser');
|
2017-08-16 12:10:23 +03:00
|
|
|
$user->expects($this->never())
|
|
|
|
->method('setQuota');
|
2017-03-16 14:22:02 +03:00
|
|
|
|
|
|
|
$userMgr->expects($this->once())
|
|
|
|
->method('get')
|
|
|
|
->with('alice')
|
|
|
|
->will($this->returnValue($user));
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2017-03-16 14:22:02 +03:00
|
|
|
|
|
|
|
$user->updateQuota();
|
|
|
|
}
|
|
|
|
|
2014-03-27 21:01:14 +04:00
|
|
|
//the testUpdateAvatar series also implicitely tests getAvatarImage
|
|
|
|
public function testUpdateAvatarJpegPhotoProvided() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2014-03-27 21:01:14 +04:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
2015-01-07 02:52:18 +03:00
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$access->expects($this->once())
|
|
|
|
->method('readAttribute')
|
|
|
|
->with($this->equalTo('uid=alice,dc=foo,dc=bar'),
|
|
|
|
$this->equalTo('jpegPhoto'))
|
|
|
|
->will($this->returnValue(array('this is a photo')));
|
|
|
|
|
|
|
|
$image->expects($this->once())
|
|
|
|
->method('valid')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
$image->expects($this->once())
|
|
|
|
->method('width')
|
|
|
|
->will($this->returnValue(128));
|
|
|
|
$image->expects($this->once())
|
|
|
|
->method('height')
|
|
|
|
->will($this->returnValue(128));
|
|
|
|
$image->expects($this->once())
|
|
|
|
->method('centerCrop')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
|
|
|
$filesys->expects($this->once())
|
|
|
|
->method('isLoaded')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
2016-09-02 12:02:12 +03:00
|
|
|
$avatar = $this->createMock(IAvatar::class);
|
2014-03-27 21:01:14 +04:00
|
|
|
$avatar->expects($this->once())
|
|
|
|
->method('set')
|
|
|
|
->with($this->isInstanceOf($image));
|
|
|
|
|
|
|
|
$avaMgr->expects($this->once())
|
|
|
|
->method('getAvatar')
|
|
|
|
->with($this->equalTo('alice'))
|
|
|
|
->will($this->returnValue($avatar));
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$user->updateAvatar();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateAvatarThumbnailPhotoProvided() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2014-03-27 21:01:14 +04:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
2015-01-07 02:52:18 +03:00
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$access->expects($this->at(0))
|
|
|
|
->method('readAttribute')
|
|
|
|
->with($this->equalTo('uid=alice,dc=foo,dc=bar'),
|
|
|
|
$this->equalTo('jpegPhoto'))
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
$access->expects($this->at(1))
|
|
|
|
->method('readAttribute')
|
|
|
|
->with($this->equalTo('uid=alice,dc=foo,dc=bar'),
|
|
|
|
$this->equalTo('thumbnailPhoto'))
|
|
|
|
->will($this->returnValue(array('this is a photo')));
|
|
|
|
|
|
|
|
$access->expects($this->exactly(2))
|
|
|
|
->method('readAttribute');
|
|
|
|
|
|
|
|
$image->expects($this->once())
|
|
|
|
->method('valid')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
$image->expects($this->once())
|
|
|
|
->method('width')
|
|
|
|
->will($this->returnValue(128));
|
|
|
|
$image->expects($this->once())
|
|
|
|
->method('height')
|
|
|
|
->will($this->returnValue(128));
|
|
|
|
$image->expects($this->once())
|
|
|
|
->method('centerCrop')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
|
|
|
$filesys->expects($this->once())
|
|
|
|
->method('isLoaded')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
2016-09-02 12:02:12 +03:00
|
|
|
$avatar = $this->createMock(IAvatar::class);
|
2014-03-27 21:01:14 +04:00
|
|
|
$avatar->expects($this->once())
|
|
|
|
->method('set')
|
|
|
|
->with($this->isInstanceOf($image));
|
|
|
|
|
|
|
|
$avaMgr->expects($this->once())
|
|
|
|
->method('getAvatar')
|
|
|
|
->with($this->equalTo('alice'))
|
|
|
|
->will($this->returnValue($avatar));
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$user->updateAvatar();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateAvatarNotProvided() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2014-03-27 21:01:14 +04:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
2015-01-07 02:52:18 +03:00
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$access->expects($this->at(0))
|
|
|
|
->method('readAttribute')
|
|
|
|
->with($this->equalTo('uid=alice,dc=foo,dc=bar'),
|
|
|
|
$this->equalTo('jpegPhoto'))
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
$access->expects($this->at(1))
|
|
|
|
->method('readAttribute')
|
|
|
|
->with($this->equalTo('uid=alice,dc=foo,dc=bar'),
|
|
|
|
$this->equalTo('thumbnailPhoto'))
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
$access->expects($this->exactly(2))
|
|
|
|
->method('readAttribute');
|
|
|
|
|
|
|
|
$image->expects($this->never())
|
|
|
|
->method('valid');
|
|
|
|
$image->expects($this->never())
|
|
|
|
->method('width');
|
|
|
|
$image->expects($this->never())
|
|
|
|
->method('height');
|
|
|
|
$image->expects($this->never())
|
|
|
|
->method('centerCrop');
|
|
|
|
|
|
|
|
$filesys->expects($this->never())
|
|
|
|
->method('isLoaded');
|
|
|
|
|
|
|
|
$avaMgr->expects($this->never())
|
|
|
|
->method('getAvatar');
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$user->updateAvatar();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateBeforeFirstLogin() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2014-03-27 21:01:14 +04:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
2015-01-07 02:52:18 +03:00
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$config->expects($this->at(0))
|
|
|
|
->method('getUserValue')
|
|
|
|
->with($this->equalTo('alice'), $this->equalTo('user_ldap'),
|
|
|
|
$this->equalTo(User::USER_PREFKEY_FIRSTLOGIN),
|
|
|
|
$this->equalTo(0))
|
|
|
|
->will($this->returnValue(0));
|
|
|
|
|
|
|
|
$config->expects($this->at(1))
|
|
|
|
->method('getUserValue')
|
|
|
|
->with($this->equalTo('alice'), $this->equalTo('user_ldap'),
|
|
|
|
$this->equalTo(User::USER_PREFKEY_LASTREFRESH),
|
|
|
|
$this->equalTo(0))
|
|
|
|
->will($this->returnValue(0));
|
|
|
|
|
|
|
|
$config->expects($this->exactly(2))
|
|
|
|
->method('getUserValue');
|
|
|
|
|
|
|
|
$config->expects($this->never())
|
|
|
|
->method('setUserValue');
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$user->update();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateAfterFirstLogin() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2014-03-27 21:01:14 +04:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
2015-01-07 02:52:18 +03:00
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$config->expects($this->at(0))
|
|
|
|
->method('getUserValue')
|
|
|
|
->with($this->equalTo('alice'), $this->equalTo('user_ldap'),
|
|
|
|
$this->equalTo(User::USER_PREFKEY_FIRSTLOGIN),
|
|
|
|
$this->equalTo(0))
|
|
|
|
->will($this->returnValue(1));
|
|
|
|
|
|
|
|
$config->expects($this->at(1))
|
|
|
|
->method('getUserValue')
|
|
|
|
->with($this->equalTo('alice'), $this->equalTo('user_ldap'),
|
|
|
|
$this->equalTo(User::USER_PREFKEY_LASTREFRESH),
|
|
|
|
$this->equalTo(0))
|
|
|
|
->will($this->returnValue(0));
|
|
|
|
|
|
|
|
$config->expects($this->exactly(2))
|
|
|
|
->method('getUserValue');
|
|
|
|
|
|
|
|
$config->expects($this->once())
|
|
|
|
->method('setUserValue')
|
|
|
|
->with($this->equalTo('alice'), $this->equalTo('user_ldap'),
|
|
|
|
$this->equalTo(User::USER_PREFKEY_LASTREFRESH),
|
|
|
|
$this->anything())
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$user->update();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateNoRefresh() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2014-03-27 21:01:14 +04:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
2015-01-07 02:52:18 +03:00
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$config->expects($this->at(0))
|
|
|
|
->method('getUserValue')
|
|
|
|
->with($this->equalTo('alice'), $this->equalTo('user_ldap'),
|
|
|
|
$this->equalTo(User::USER_PREFKEY_FIRSTLOGIN),
|
|
|
|
$this->equalTo(0))
|
|
|
|
->will($this->returnValue(1));
|
|
|
|
|
|
|
|
$config->expects($this->at(1))
|
|
|
|
->method('getUserValue')
|
|
|
|
->with($this->equalTo('alice'), $this->equalTo('user_ldap'),
|
|
|
|
$this->equalTo(User::USER_PREFKEY_LASTREFRESH),
|
|
|
|
$this->equalTo(0))
|
|
|
|
->will($this->returnValue(time()));
|
|
|
|
|
|
|
|
$config->expects($this->exactly(2))
|
|
|
|
->method('getUserValue');
|
|
|
|
|
|
|
|
$config->expects($this->never())
|
|
|
|
->method('setUserValue');
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$user->update();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testMarkLogin() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $db, $userMgr, $notiMgr) =
|
2014-03-27 21:01:14 +04:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
$config->expects($this->once())
|
|
|
|
->method('setUserValue')
|
|
|
|
->with($this->equalTo('alice'),
|
|
|
|
$this->equalTo('user_ldap'),
|
|
|
|
$this->equalTo(User::USER_PREFKEY_FIRSTLOGIN),
|
|
|
|
$this->equalTo(1))
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$user->markLogin();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetAvatarImageProvided() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $db, $userMgr, $notiMgr) =
|
2014-03-27 21:01:14 +04:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
$access->expects($this->once())
|
|
|
|
->method('readAttribute')
|
|
|
|
->with($this->equalTo('uid=alice,dc=foo,dc=bar'),
|
|
|
|
$this->equalTo('jpegPhoto'))
|
|
|
|
->will($this->returnValue(array('this is a photo')));
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2014-03-27 21:01:14 +04:00
|
|
|
|
|
|
|
$photo = $user->getAvatarImage();
|
|
|
|
$this->assertSame('this is a photo', $photo);
|
|
|
|
//make sure readAttribute is not called again but the already fetched
|
|
|
|
//photo is returned
|
|
|
|
$photo = $user->getAvatarImage();
|
|
|
|
}
|
2015-08-21 01:55:42 +03:00
|
|
|
|
|
|
|
public function testProcessAttributes() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list(, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2015-08-21 01:55:42 +03:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice';
|
|
|
|
|
|
|
|
$requiredMethods = array(
|
|
|
|
'markRefreshTime',
|
|
|
|
'updateQuota',
|
|
|
|
'updateEmail',
|
2016-02-03 15:16:55 +03:00
|
|
|
'composeAndStoreDisplayName',
|
2015-08-21 01:55:42 +03:00
|
|
|
'storeLDAPUserName',
|
|
|
|
'getHomePath',
|
|
|
|
'updateAvatar'
|
|
|
|
);
|
|
|
|
|
2016-05-12 12:25:50 +03:00
|
|
|
$userMock = $this->getMockBuilder('OCA\User_LDAP\User\User')
|
2017-03-31 10:16:22 +03:00
|
|
|
->setConstructorArgs(array($uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr))
|
2015-08-21 01:55:42 +03:00
|
|
|
->setMethods($requiredMethods)
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$connection->setConfiguration(array(
|
|
|
|
'homeFolderNamingRule' => 'homeDirectory'
|
|
|
|
));
|
|
|
|
|
|
|
|
$connection->expects($this->any())
|
|
|
|
->method('__get')
|
|
|
|
//->will($this->returnArgument(0));
|
|
|
|
->will($this->returnCallback(function($name) {
|
|
|
|
if($name === 'homeFolderNamingRule') {
|
|
|
|
return 'attr:homeDirectory';
|
|
|
|
}
|
|
|
|
return $name;
|
|
|
|
}));
|
|
|
|
|
|
|
|
$record = array(
|
|
|
|
strtolower($connection->ldapQuotaAttribute) => array('4096'),
|
|
|
|
strtolower($connection->ldapEmailAttribute) => array('alice@wonderland.org'),
|
|
|
|
strtolower($connection->ldapUserDisplayName) => array('Aaaaalice'),
|
|
|
|
'uid' => array($uid),
|
|
|
|
'homedirectory' => array('Alice\'s Folder'),
|
|
|
|
'memberof' => array('cn=groupOne', 'cn=groupTwo'),
|
|
|
|
'jpegphoto' => array('here be an image')
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach($requiredMethods as $method) {
|
|
|
|
$userMock->expects($this->once())
|
|
|
|
->method($method);
|
|
|
|
}
|
2017-03-31 10:16:22 +03:00
|
|
|
\OC_Hook::clear();//disconnect irrelevant hooks
|
2015-08-21 01:55:42 +03:00
|
|
|
$userMock->processAttributes($record);
|
2016-03-16 22:51:03 +03:00
|
|
|
\OC_Hook::emit('OC_User', 'post_login', array('uid' => $uid));
|
2015-08-21 01:55:42 +03:00
|
|
|
}
|
2015-09-23 17:52:48 +03:00
|
|
|
|
|
|
|
public function emptyHomeFolderAttributeValueProvider() {
|
|
|
|
return array(
|
|
|
|
'empty' => array(''),
|
|
|
|
'prefixOnly' => array('attr:'),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider emptyHomeFolderAttributeValueProvider
|
|
|
|
*/
|
|
|
|
public function testGetHomePathNotConfigured($attributeValue) {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2015-09-23 17:52:48 +03:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
|
|
|
|
|
|
|
$connection->expects($this->any())
|
|
|
|
->method('__get')
|
|
|
|
->with($this->equalTo('homeFolderNamingRule'))
|
|
|
|
->will($this->returnValue($attributeValue));
|
|
|
|
|
|
|
|
$access->expects($this->never())
|
|
|
|
->method('readAttribute');
|
|
|
|
|
|
|
|
$config->expects($this->never())
|
|
|
|
->method('getAppValue');
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2015-09-23 17:52:48 +03:00
|
|
|
|
|
|
|
$path = $user->getHomePath();
|
|
|
|
$this->assertSame($path, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetHomePathConfiguredNotAvailableAllowed() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2015-09-23 17:52:48 +03:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
|
|
|
|
|
|
|
$connection->expects($this->any())
|
|
|
|
->method('__get')
|
|
|
|
->with($this->equalTo('homeFolderNamingRule'))
|
|
|
|
->will($this->returnValue('attr:foobar'));
|
|
|
|
|
|
|
|
$access->expects($this->once())
|
|
|
|
->method('readAttribute')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
// asks for "enforce_home_folder_naming_rule"
|
|
|
|
$config->expects($this->once())
|
|
|
|
->method('getAppValue')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2015-09-23 17:52:48 +03:00
|
|
|
|
|
|
|
$path = $user->getHomePath();
|
|
|
|
|
|
|
|
$this->assertSame($path, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @expectedException \Exception
|
|
|
|
*/
|
|
|
|
public function testGetHomePathConfiguredNotAvailableNotAllowed() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2015-09-23 17:52:48 +03:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
2017-03-31 10:16:22 +03:00
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc, $userMgr, $notiMgr);
|
2015-09-23 17:52:48 +03:00
|
|
|
|
|
|
|
$connection->expects($this->any())
|
|
|
|
->method('__get')
|
|
|
|
->with($this->equalTo('homeFolderNamingRule'))
|
|
|
|
->will($this->returnValue('attr:foobar'));
|
|
|
|
|
|
|
|
$access->expects($this->once())
|
|
|
|
->method('readAttribute')
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
|
|
// asks for "enforce_home_folder_naming_rule"
|
|
|
|
$config->expects($this->once())
|
|
|
|
->method('getAppValue')
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice,dc=foo,dc=bar';
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2015-09-23 17:52:48 +03:00
|
|
|
|
|
|
|
$user->getHomePath();
|
|
|
|
}
|
2016-02-03 15:16:55 +03:00
|
|
|
|
|
|
|
public function displayNameProvider() {
|
|
|
|
return [
|
|
|
|
['Roland Deschain', '', 'Roland Deschain'],
|
|
|
|
['Roland Deschain', null, 'Roland Deschain'],
|
|
|
|
['Roland Deschain', 'gunslinger@darktower.com', 'Roland Deschain (gunslinger@darktower.com)'],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider displayNameProvider
|
|
|
|
*/
|
|
|
|
public function testComposeAndStoreDisplayName($part1, $part2, $expected) {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, , $userMgr, $notiMgr) =
|
2016-02-03 15:16:55 +03:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
$config->expects($this->once())
|
|
|
|
->method('setUserValue');
|
|
|
|
|
|
|
|
$user = new User(
|
2017-03-31 10:16:22 +03:00
|
|
|
'user', 'cn=user', $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
2016-02-03 15:16:55 +03:00
|
|
|
|
|
|
|
$displayName = $user->composeAndStoreDisplayName($part1, $part2);
|
|
|
|
$this->assertSame($expected, $displayName);
|
|
|
|
}
|
2017-03-31 10:16:22 +03:00
|
|
|
|
|
|
|
public function testHandlePasswordExpiryWarningDefaultPolicy() {
|
|
|
|
list(, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice';
|
|
|
|
|
|
|
|
$connection->expects($this->any())
|
|
|
|
->method('__get')
|
|
|
|
->will($this->returnCallback(function($name) {
|
|
|
|
if($name === 'ldapDefaultPPolicyDN') {
|
|
|
|
return 'cn=default,ou=policies,dc=foo,dc=bar';
|
|
|
|
}
|
|
|
|
if($name === 'turnOnPasswordChange') {
|
|
|
|
return '1';
|
|
|
|
}
|
|
|
|
return $name;
|
|
|
|
}));
|
|
|
|
|
|
|
|
$access->expects($this->any())
|
2017-04-07 13:06:50 +03:00
|
|
|
->method('search')
|
|
|
|
->will($this->returnCallback(function($filter, $base) {
|
|
|
|
if($base === 'uid=alice') {
|
|
|
|
return array(
|
|
|
|
array(
|
|
|
|
'pwdchangedtime' => array((new \DateTime())->sub(new \DateInterval('P28D'))->format('Ymdhis').'Z'),
|
|
|
|
),
|
|
|
|
);
|
2017-03-31 10:16:22 +03:00
|
|
|
}
|
2017-04-07 13:06:50 +03:00
|
|
|
if($base === 'cn=default,ou=policies,dc=foo,dc=bar') {
|
|
|
|
return array(
|
|
|
|
array(
|
|
|
|
'pwdmaxage' => array('2592000'),
|
|
|
|
'pwdexpirewarning' => array('2591999'),
|
|
|
|
),
|
|
|
|
);
|
2017-03-31 10:16:22 +03:00
|
|
|
}
|
|
|
|
return array();
|
|
|
|
}));
|
|
|
|
|
|
|
|
$notification = $this->getMockBuilder('OCP\Notification\INotification')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$notification->expects($this->any())
|
|
|
|
->method('setApp')
|
|
|
|
->will($this->returnValue($notification));
|
|
|
|
$notification->expects($this->any())
|
|
|
|
->method('setUser')
|
|
|
|
->will($this->returnValue($notification));
|
|
|
|
$notification->expects($this->any())
|
|
|
|
->method('setObject')
|
|
|
|
->will($this->returnValue($notification));
|
|
|
|
$notification->expects($this->any())
|
|
|
|
->method('setDateTime')
|
|
|
|
->will($this->returnValue($notification));
|
|
|
|
$notiMgr->expects($this->exactly(2))
|
|
|
|
->method('createNotification')
|
|
|
|
->will($this->returnValue($notification));
|
|
|
|
$notiMgr->expects($this->exactly(1))
|
|
|
|
->method('notify');
|
|
|
|
|
|
|
|
$user = new User(
|
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
|
|
|
|
|
|
|
\OC_Hook::clear();//disconnect irrelevant hooks
|
|
|
|
\OCP\Util::connectHook('OC_User', 'post_login', $user, 'handlePasswordExpiry');
|
|
|
|
\OC_Hook::emit('OC_User', 'post_login', array('uid' => $uid));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testHandlePasswordExpiryWarningCustomPolicy() {
|
|
|
|
list(, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
|
|
|
$this->getTestInstances();
|
|
|
|
|
|
|
|
list($access, $connection) =
|
|
|
|
$this->getAdvancedMocks($config, $filesys, $log, $avaMgr, $dbc);
|
|
|
|
|
|
|
|
$uid = 'alice';
|
|
|
|
$dn = 'uid=alice';
|
|
|
|
|
|
|
|
$connection->expects($this->any())
|
|
|
|
->method('__get')
|
|
|
|
->will($this->returnCallback(function($name) {
|
|
|
|
if($name === 'ldapDefaultPPolicyDN') {
|
|
|
|
return 'cn=default,ou=policies,dc=foo,dc=bar';
|
|
|
|
}
|
|
|
|
if($name === 'turnOnPasswordChange') {
|
|
|
|
return '1';
|
|
|
|
}
|
|
|
|
return $name;
|
|
|
|
}));
|
|
|
|
|
|
|
|
$access->expects($this->any())
|
2017-04-07 13:06:50 +03:00
|
|
|
->method('search')
|
|
|
|
->will($this->returnCallback(function($filter, $base) {
|
|
|
|
if($base === 'uid=alice') {
|
|
|
|
return array(
|
|
|
|
array(
|
|
|
|
'pwdpolicysubentry' => array('cn=custom,ou=policies,dc=foo,dc=bar'),
|
|
|
|
'pwdchangedtime' => array((new \DateTime())->sub(new \DateInterval('P28D'))->format('Ymdhis').'Z'),
|
|
|
|
)
|
|
|
|
);
|
2017-03-31 10:16:22 +03:00
|
|
|
}
|
2017-04-07 13:06:50 +03:00
|
|
|
if($base === 'cn=custom,ou=policies,dc=foo,dc=bar') {
|
|
|
|
return array(
|
|
|
|
array(
|
|
|
|
'pwdmaxage' => array('2592000'),
|
|
|
|
'pwdexpirewarning' => array('2591999'),
|
|
|
|
)
|
|
|
|
);
|
2017-03-31 10:16:22 +03:00
|
|
|
}
|
|
|
|
return array();
|
|
|
|
}));
|
|
|
|
|
|
|
|
$notification = $this->getMockBuilder('OCP\Notification\INotification')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
$notification->expects($this->any())
|
|
|
|
->method('setApp')
|
|
|
|
->will($this->returnValue($notification));
|
|
|
|
$notification->expects($this->any())
|
|
|
|
->method('setUser')
|
|
|
|
->will($this->returnValue($notification));
|
|
|
|
$notification->expects($this->any())
|
|
|
|
->method('setObject')
|
|
|
|
->will($this->returnValue($notification));
|
|
|
|
$notification->expects($this->any())
|
|
|
|
->method('setDateTime')
|
|
|
|
->will($this->returnValue($notification));
|
|
|
|
$notiMgr->expects($this->exactly(2))
|
|
|
|
->method('createNotification')
|
|
|
|
->will($this->returnValue($notification));
|
|
|
|
$notiMgr->expects($this->exactly(1))
|
|
|
|
->method('notify');
|
|
|
|
|
|
|
|
$user = new User(
|
|
|
|
$uid, $dn, $access, $config, $filesys, $image, $log, $avaMgr, $userMgr, $notiMgr);
|
|
|
|
|
|
|
|
\OC_Hook::clear();//disconnect irrelevant hooks
|
|
|
|
\OCP\Util::connectHook('OC_User', 'post_login', $user, 'handlePasswordExpiry');
|
|
|
|
\OC_Hook::emit('OC_User', 'post_login', array('uid' => $uid));
|
|
|
|
}
|
2014-04-24 15:32:50 +04:00
|
|
|
}
|