2013-09-11 20:51:45 +04:00
|
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* ownCloud
|
|
|
|
|
*
|
|
|
|
|
* @author Arthur Schiwon
|
|
|
|
|
* @copyright 2013 Arthur Schiwon blizzz@owncloud.com
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library 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 along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace OCA\user_ldap\tests;
|
|
|
|
|
|
|
|
|
|
use \OCA\user_ldap\USER_LDAP as UserLDAP;
|
|
|
|
|
use \OCA\user_ldap\lib\Access;
|
|
|
|
|
use \OCA\user_ldap\lib\Connection;
|
|
|
|
|
use \OCA\user_ldap\lib\ILDAPWrapper;
|
|
|
|
|
|
|
|
|
|
class Test_User_Ldap_Direct extends \PHPUnit_Framework_TestCase {
|
|
|
|
|
protected $backend;
|
2014-04-01 14:28:23 +04:00
|
|
|
|
protected $access;
|
2013-09-11 20:51:45 +04:00
|
|
|
|
|
|
|
|
|
public function setUp() {
|
|
|
|
|
\OC_User::clearBackends();
|
|
|
|
|
\OC_Group::clearBackends();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private function getAccessMock() {
|
|
|
|
|
static $conMethods;
|
|
|
|
|
static $accMethods;
|
2014-04-01 14:28:23 +04:00
|
|
|
|
static $uMethods;
|
2013-09-11 20:51:45 +04:00
|
|
|
|
|
2014-04-25 20:52:00 +04:00
|
|
|
|
if(is_null($conMethods) || is_null($accMethods)) {
|
2013-09-11 20:51:45 +04:00
|
|
|
|
$conMethods = get_class_methods('\OCA\user_ldap\lib\Connection');
|
|
|
|
|
$accMethods = get_class_methods('\OCA\user_ldap\lib\Access');
|
2014-04-01 14:28:23 +04:00
|
|
|
|
unset($accMethods[array_search('getConnection', $accMethods)]);
|
|
|
|
|
$uMethods = get_class_methods('\OCA\user_ldap\lib\user\User');
|
|
|
|
|
unset($uMethods[array_search('getUsername', $uMethods)]);
|
|
|
|
|
unset($uMethods[array_search('getDN', $uMethods)]);
|
|
|
|
|
unset($uMethods[array_search('__construct', $uMethods)]);
|
2013-09-11 20:51:45 +04:00
|
|
|
|
}
|
|
|
|
|
$lw = $this->getMock('\OCA\user_ldap\lib\ILDAPWrapper');
|
|
|
|
|
$connector = $this->getMock('\OCA\user_ldap\lib\Connection',
|
|
|
|
|
$conMethods,
|
|
|
|
|
array($lw, null, null));
|
2014-04-01 14:28:23 +04:00
|
|
|
|
|
|
|
|
|
$um = new \OCA\user_ldap\lib\user\Manager(
|
|
|
|
|
$this->getMock('\OCP\IConfig'),
|
|
|
|
|
$this->getMock('\OCA\user_ldap\lib\FilesystemHelper'),
|
|
|
|
|
$this->getMock('\OCA\user_ldap\lib\LogWrapper'),
|
|
|
|
|
$this->getMock('\OCP\IAvatarManager'),
|
|
|
|
|
$this->getMock('\OCP\Image')
|
|
|
|
|
);
|
|
|
|
|
|
2013-09-11 20:51:45 +04:00
|
|
|
|
$access = $this->getMock('\OCA\user_ldap\lib\Access',
|
|
|
|
|
$accMethods,
|
2014-04-01 14:28:23 +04:00
|
|
|
|
array($connector, $lw, $um));
|
|
|
|
|
|
|
|
|
|
$um->setLdapAccess($access);
|
2013-09-11 20:51:45 +04:00
|
|
|
|
|
|
|
|
|
return $access;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private function prepareMockForUserExists(&$access) {
|
|
|
|
|
$access->expects($this->any())
|
|
|
|
|
->method('username2dn')
|
|
|
|
|
->will($this->returnCallback(function($uid) {
|
|
|
|
|
switch ($uid) {
|
|
|
|
|
case 'gunslinger':
|
2014-04-01 14:28:23 +04:00
|
|
|
|
return 'dnOfRoland,dc=test';
|
2013-09-11 20:51:45 +04:00
|
|
|
|
break;
|
|
|
|
|
case 'formerUser':
|
2014-04-01 14:28:23 +04:00
|
|
|
|
return 'dnOfFormerUser,dc=test';
|
2013-09-11 20:51:45 +04:00
|
|
|
|
break;
|
|
|
|
|
case 'newyorker':
|
2014-04-01 14:28:23 +04:00
|
|
|
|
return 'dnOfNewYorker,dc=test';
|
2013-09-11 20:51:45 +04:00
|
|
|
|
break;
|
|
|
|
|
case 'ladyofshadows':
|
2014-04-01 14:28:23 +04:00
|
|
|
|
return 'dnOfLadyOfShadows,dc=test';
|
2013-09-11 20:51:45 +04:00
|
|
|
|
break;
|
2014-05-11 17:24:42 +04:00
|
|
|
|
default:
|
2013-09-11 20:51:45 +04:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-26 00:14:02 +04:00
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
|
* Prepares the Access mock for checkPassword tests
|
2014-05-13 15:29:25 +04:00
|
|
|
|
* @param \OCA\user_ldap\lib\Access $access mock
|
2013-09-26 00:14:02 +04:00
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
private function prepareAccessForCheckPassword(&$access) {
|
2014-02-20 17:05:45 +04:00
|
|
|
|
$access->expects($this->once())
|
|
|
|
|
->method('escapeFilterPart')
|
|
|
|
|
->will($this->returnCallback(function($uid) {
|
|
|
|
|
return $uid;
|
|
|
|
|
}));
|
|
|
|
|
|
2013-09-11 20:51:45 +04:00
|
|
|
|
$access->connection->expects($this->any())
|
|
|
|
|
->method('__get')
|
|
|
|
|
->will($this->returnCallback(function($name) {
|
|
|
|
|
if($name === 'ldapLoginFilter') {
|
|
|
|
|
return '%uid';
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
$access->expects($this->any())
|
|
|
|
|
->method('fetchListOfUsers')
|
|
|
|
|
->will($this->returnCallback(function($filter) {
|
|
|
|
|
if($filter === 'roland') {
|
2014-04-01 14:28:23 +04:00
|
|
|
|
return array('dnOfRoland,dc=test');
|
2013-09-11 20:51:45 +04:00
|
|
|
|
}
|
|
|
|
|
return array();
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
$access->expects($this->any())
|
|
|
|
|
->method('dn2username')
|
2014-04-01 14:28:23 +04:00
|
|
|
|
->with($this->equalTo('dnOfRoland,dc=test'))
|
2013-09-11 20:51:45 +04:00
|
|
|
|
->will($this->returnValue('gunslinger'));
|
|
|
|
|
|
2014-08-12 18:13:17 +04:00
|
|
|
|
$access->expects($this->any())
|
|
|
|
|
->method('stringResemblesDN')
|
|
|
|
|
->with($this->equalTo('dnOfRoland,dc=test'))
|
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
|
2013-09-11 20:51:45 +04:00
|
|
|
|
$access->expects($this->any())
|
|
|
|
|
->method('areCredentialsValid')
|
|
|
|
|
->will($this->returnCallback(function($dn, $pwd) {
|
|
|
|
|
if($pwd === 'dt19') {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}));
|
2013-09-26 00:14:02 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-20 17:05:45 +04:00
|
|
|
|
public function testCheckPasswordUidReturn() {
|
2013-09-26 00:14:02 +04:00
|
|
|
|
$access = $this->getAccessMock();
|
2014-02-20 17:05:45 +04:00
|
|
|
|
|
2013-09-26 00:14:02 +04:00
|
|
|
|
$this->prepareAccessForCheckPassword($access);
|
|
|
|
|
$backend = new UserLDAP($access);
|
|
|
|
|
\OC_User::useBackend($backend);
|
2013-09-11 20:51:45 +04:00
|
|
|
|
|
|
|
|
|
$result = $backend->checkPassword('roland', 'dt19');
|
|
|
|
|
$this->assertEquals('gunslinger', $result);
|
2014-02-20 17:05:45 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testCheckPasswordWrongPassword() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
|
|
|
|
|
$this->prepareAccessForCheckPassword($access);
|
|
|
|
|
$backend = new UserLDAP($access);
|
|
|
|
|
\OC_User::useBackend($backend);
|
2013-09-11 20:51:45 +04:00
|
|
|
|
|
|
|
|
|
$result = $backend->checkPassword('roland', 'wrong');
|
|
|
|
|
$this->assertFalse($result);
|
2014-02-20 17:05:45 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testCheckPasswordWrongUser() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
|
|
|
|
|
$this->prepareAccessForCheckPassword($access);
|
|
|
|
|
$backend = new UserLDAP($access);
|
|
|
|
|
\OC_User::useBackend($backend);
|
2013-09-11 20:51:45 +04:00
|
|
|
|
|
|
|
|
|
$result = $backend->checkPassword('mallory', 'evil');
|
|
|
|
|
$this->assertFalse($result);
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-26 00:14:02 +04:00
|
|
|
|
public function testCheckPasswordPublicAPI() {
|
2013-09-11 20:51:45 +04:00
|
|
|
|
$access = $this->getAccessMock();
|
2013-09-26 00:14:02 +04:00
|
|
|
|
$this->prepareAccessForCheckPassword($access);
|
2013-09-11 20:51:45 +04:00
|
|
|
|
$backend = new UserLDAP($access);
|
2013-09-26 00:14:02 +04:00
|
|
|
|
\OC_User::useBackend($backend);
|
2013-09-11 20:51:45 +04:00
|
|
|
|
|
2013-09-26 00:14:02 +04:00
|
|
|
|
$result = \OCP\User::checkPassword('roland', 'dt19');
|
|
|
|
|
$this->assertEquals('gunslinger', $result);
|
2014-02-20 17:05:45 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testCheckPasswordPublicAPIWrongPassword() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
$this->prepareAccessForCheckPassword($access);
|
|
|
|
|
$backend = new UserLDAP($access);
|
|
|
|
|
\OC_User::useBackend($backend);
|
2013-09-26 00:14:02 +04:00
|
|
|
|
|
|
|
|
|
$result = \OCP\User::checkPassword('roland', 'wrong');
|
|
|
|
|
$this->assertFalse($result);
|
2014-02-20 17:05:45 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testCheckPasswordPublicAPIWrongUser() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
$this->prepareAccessForCheckPassword($access);
|
|
|
|
|
$backend = new UserLDAP($access);
|
|
|
|
|
\OC_User::useBackend($backend);
|
2013-09-26 00:14:02 +04:00
|
|
|
|
|
|
|
|
|
$result = \OCP\User::checkPassword('mallory', 'evil');
|
|
|
|
|
$this->assertFalse($result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
|
* Prepares the Access mock for getUsers tests
|
2014-05-13 15:29:25 +04:00
|
|
|
|
* @param \OCA\user_ldap\lib\Access $access mock
|
2013-09-26 00:14:02 +04:00
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
private function prepareAccessForGetUsers(&$access) {
|
2014-02-20 17:05:45 +04:00
|
|
|
|
$access->expects($this->once())
|
|
|
|
|
->method('escapeFilterPart')
|
|
|
|
|
->will($this->returnCallback(function($search) {
|
|
|
|
|
return $search;
|
|
|
|
|
}));
|
|
|
|
|
|
2013-09-11 20:51:45 +04:00
|
|
|
|
$access->expects($this->any())
|
|
|
|
|
->method('getFilterPartForUserSearch')
|
|
|
|
|
->will($this->returnCallback(function($search) {
|
|
|
|
|
return $search;
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
$access->expects($this->any())
|
|
|
|
|
->method('combineFilterWithAnd')
|
|
|
|
|
->will($this->returnCallback(function($param) {
|
|
|
|
|
return $param[1];
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
$access->expects($this->any())
|
|
|
|
|
->method('fetchListOfUsers')
|
|
|
|
|
->will($this->returnCallback(function($search, $a, $l, $o) {
|
|
|
|
|
$users = array('gunslinger', 'newyorker', 'ladyofshadows');
|
|
|
|
|
if(empty($search)) {
|
|
|
|
|
$result = $users;
|
|
|
|
|
} else {
|
|
|
|
|
$result = array();
|
|
|
|
|
foreach($users as $user) {
|
|
|
|
|
if(stripos($user, $search) !== false) {
|
|
|
|
|
$result[] = $user;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(!is_null($l) || !is_null($o)) {
|
|
|
|
|
$result = array_slice($result, $o, $l);
|
|
|
|
|
}
|
|
|
|
|
return $result;
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
$access->expects($this->any())
|
|
|
|
|
->method('ownCloudUserNames')
|
|
|
|
|
->will($this->returnArgument(0));
|
2013-09-26 00:14:02 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-20 17:05:45 +04:00
|
|
|
|
public function testGetUsersNoParam() {
|
2013-09-26 00:14:02 +04:00
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
$this->prepareAccessForGetUsers($access);
|
|
|
|
|
$backend = new UserLDAP($access);
|
2013-09-11 20:51:45 +04:00
|
|
|
|
|
|
|
|
|
$result = $backend->getUsers();
|
|
|
|
|
$this->assertEquals(3, count($result));
|
2014-02-20 17:05:45 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testGetUsersLimitOffset() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
$this->prepareAccessForGetUsers($access);
|
|
|
|
|
$backend = new UserLDAP($access);
|
2013-09-11 20:51:45 +04:00
|
|
|
|
|
|
|
|
|
$result = $backend->getUsers('', 1, 2);
|
|
|
|
|
$this->assertEquals(1, count($result));
|
2014-02-20 17:05:45 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testGetUsersLimitOffset2() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
$this->prepareAccessForGetUsers($access);
|
|
|
|
|
$backend = new UserLDAP($access);
|
2013-09-11 20:51:45 +04:00
|
|
|
|
|
|
|
|
|
$result = $backend->getUsers('', 2, 1);
|
|
|
|
|
$this->assertEquals(2, count($result));
|
2014-02-20 17:05:45 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testGetUsersSearchWithResult() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
$this->prepareAccessForGetUsers($access);
|
|
|
|
|
$backend = new UserLDAP($access);
|
2013-09-11 20:51:45 +04:00
|
|
|
|
|
|
|
|
|
$result = $backend->getUsers('yo');
|
|
|
|
|
$this->assertEquals(2, count($result));
|
2014-02-20 17:05:45 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testGetUsersSearchEmptyResult() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
$this->prepareAccessForGetUsers($access);
|
|
|
|
|
$backend = new UserLDAP($access);
|
2013-09-11 20:51:45 +04:00
|
|
|
|
|
|
|
|
|
$result = $backend->getUsers('nix');
|
|
|
|
|
$this->assertEquals(0, count($result));
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-20 17:05:45 +04:00
|
|
|
|
public function testGetUsersViaAPINoParam() {
|
2013-09-26 00:14:02 +04:00
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
$this->prepareAccessForGetUsers($access);
|
|
|
|
|
$backend = new UserLDAP($access);
|
|
|
|
|
\OC_User::useBackend($backend);
|
|
|
|
|
|
|
|
|
|
$result = \OCP\User::getUsers();
|
|
|
|
|
$this->assertEquals(3, count($result));
|
2014-02-20 17:05:45 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testGetUsersViaAPILimitOffset() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
$this->prepareAccessForGetUsers($access);
|
|
|
|
|
$backend = new UserLDAP($access);
|
|
|
|
|
\OC_User::useBackend($backend);
|
2013-09-26 00:14:02 +04:00
|
|
|
|
|
|
|
|
|
$result = \OCP\User::getUsers('', 1, 2);
|
|
|
|
|
$this->assertEquals(1, count($result));
|
2014-02-20 17:05:45 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testGetUsersViaAPILimitOffset2() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
$this->prepareAccessForGetUsers($access);
|
|
|
|
|
$backend = new UserLDAP($access);
|
|
|
|
|
\OC_User::useBackend($backend);
|
2013-09-26 00:14:02 +04:00
|
|
|
|
|
|
|
|
|
$result = \OCP\User::getUsers('', 2, 1);
|
|
|
|
|
$this->assertEquals(2, count($result));
|
2014-02-20 17:05:45 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testGetUsersViaAPISearchWithResult() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
$this->prepareAccessForGetUsers($access);
|
|
|
|
|
$backend = new UserLDAP($access);
|
|
|
|
|
\OC_User::useBackend($backend);
|
2013-09-26 00:14:02 +04:00
|
|
|
|
|
|
|
|
|
$result = \OCP\User::getUsers('yo');
|
|
|
|
|
$this->assertEquals(2, count($result));
|
2014-02-20 17:05:45 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testGetUsersViaAPISearchEmptyResult() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
$this->prepareAccessForGetUsers($access);
|
|
|
|
|
$backend = new UserLDAP($access);
|
|
|
|
|
\OC_User::useBackend($backend);
|
2013-09-26 00:14:02 +04:00
|
|
|
|
|
|
|
|
|
$result = \OCP\User::getUsers('nix');
|
|
|
|
|
$this->assertEquals(0, count($result));
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-11 20:51:45 +04:00
|
|
|
|
public function testUserExists() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
$backend = new UserLDAP($access);
|
|
|
|
|
$this->prepareMockForUserExists($access);
|
|
|
|
|
|
|
|
|
|
$access->expects($this->any())
|
|
|
|
|
->method('readAttribute')
|
|
|
|
|
->will($this->returnCallback(function($dn) {
|
2014-04-01 14:28:23 +04:00
|
|
|
|
if($dn === 'dnOfRoland,dc=test') {
|
2013-09-11 20:51:45 +04:00
|
|
|
|
return array();
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
//test for existing user
|
|
|
|
|
$result = $backend->userExists('gunslinger');
|
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
|
|
//test for deleted user
|
|
|
|
|
$result = $backend->userExists('formerUser');
|
|
|
|
|
$this->assertFalse($result);
|
|
|
|
|
|
|
|
|
|
//test for never-existing user
|
|
|
|
|
$result = $backend->userExists('mallory');
|
|
|
|
|
$this->assertFalse($result);
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-26 00:14:02 +04:00
|
|
|
|
public function testUserExistsPublicAPI() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
$backend = new UserLDAP($access);
|
|
|
|
|
$this->prepareMockForUserExists($access);
|
|
|
|
|
\OC_User::useBackend($backend);
|
|
|
|
|
|
|
|
|
|
$access->expects($this->any())
|
|
|
|
|
->method('readAttribute')
|
|
|
|
|
->will($this->returnCallback(function($dn) {
|
2014-04-01 14:28:23 +04:00
|
|
|
|
if($dn === 'dnOfRoland,dc=test') {
|
2013-09-26 00:14:02 +04:00
|
|
|
|
return array();
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
//test for existing user
|
|
|
|
|
$result = \OCP\User::userExists('gunslinger');
|
|
|
|
|
$this->assertTrue($result);
|
|
|
|
|
|
|
|
|
|
//test for deleted user
|
|
|
|
|
$result = \OCP\User::userExists('formerUser');
|
|
|
|
|
$this->assertFalse($result);
|
|
|
|
|
|
|
|
|
|
//test for never-existing user
|
|
|
|
|
$result = \OCP\User::userExists('mallory');
|
|
|
|
|
$this->assertFalse($result);
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-11 20:51:45 +04:00
|
|
|
|
public function testDeleteUser() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
$backend = new UserLDAP($access);
|
|
|
|
|
|
|
|
|
|
//we do not support deleting users at all
|
|
|
|
|
$result = $backend->deleteUser('gunslinger');
|
|
|
|
|
$this->assertFalse($result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testGetHome() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
$backend = new UserLDAP($access);
|
|
|
|
|
$this->prepareMockForUserExists($access);
|
|
|
|
|
|
|
|
|
|
$access->connection->expects($this->any())
|
|
|
|
|
->method('__get')
|
|
|
|
|
->will($this->returnCallback(function($name) {
|
|
|
|
|
if($name === 'homeFolderNamingRule') {
|
|
|
|
|
return 'attr:testAttribute';
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
$access->expects($this->any())
|
|
|
|
|
->method('readAttribute')
|
|
|
|
|
->will($this->returnCallback(function($dn, $attr) {
|
|
|
|
|
switch ($dn) {
|
2014-04-01 14:28:23 +04:00
|
|
|
|
case 'dnOfRoland,dc=test':
|
2013-09-11 20:51:45 +04:00
|
|
|
|
if($attr === 'testAttribute') {
|
|
|
|
|
return array('/tmp/rolandshome/');
|
|
|
|
|
}
|
|
|
|
|
return array();
|
|
|
|
|
break;
|
2014-04-01 14:28:23 +04:00
|
|
|
|
case 'dnOfLadyOfShadows,dc=test':
|
2013-09-11 20:51:45 +04:00
|
|
|
|
if($attr === 'testAttribute') {
|
|
|
|
|
return array('susannah/');
|
|
|
|
|
}
|
|
|
|
|
return array();
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
//absolut path
|
|
|
|
|
$result = $backend->getHome('gunslinger');
|
|
|
|
|
$this->assertEquals('/tmp/rolandshome/', $result);
|
|
|
|
|
|
|
|
|
|
//datadir-relativ path
|
|
|
|
|
$result = $backend->getHome('ladyofshadows');
|
|
|
|
|
$datadir = \OCP\Config::getSystemValue('datadirectory',
|
|
|
|
|
\OC::$SERVERROOT.'/data');
|
|
|
|
|
$this->assertEquals($datadir.'/susannah/', $result);
|
|
|
|
|
|
|
|
|
|
//no path at all – triggers OC default behaviour
|
|
|
|
|
$result = $backend->getHome('newyorker');
|
|
|
|
|
$this->assertFalse($result);
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-26 00:14:02 +04:00
|
|
|
|
private function prepareAccessForGetDisplayName(&$access) {
|
2013-09-11 20:51:45 +04:00
|
|
|
|
$access->connection->expects($this->any())
|
|
|
|
|
->method('__get')
|
|
|
|
|
->will($this->returnCallback(function($name) {
|
|
|
|
|
if($name === 'ldapUserDisplayName') {
|
|
|
|
|
return 'displayname';
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
$access->expects($this->any())
|
|
|
|
|
->method('readAttribute')
|
|
|
|
|
->will($this->returnCallback(function($dn, $attr) {
|
|
|
|
|
switch ($dn) {
|
2014-04-01 14:28:23 +04:00
|
|
|
|
case 'dnOfRoland,dc=test':
|
2013-09-11 20:51:45 +04:00
|
|
|
|
if($attr === 'displayname') {
|
|
|
|
|
return array('Roland Deschain');
|
|
|
|
|
}
|
|
|
|
|
return array();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}));
|
2013-09-26 00:14:02 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testGetDisplayName() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
$this->prepareAccessForGetDisplayName($access);
|
|
|
|
|
$backend = new UserLDAP($access);
|
|
|
|
|
$this->prepareMockForUserExists($access);
|
2013-09-11 20:51:45 +04:00
|
|
|
|
|
|
|
|
|
//with displayName
|
|
|
|
|
$result = $backend->getDisplayName('gunslinger');
|
|
|
|
|
$this->assertEquals('Roland Deschain', $result);
|
|
|
|
|
|
|
|
|
|
//empty displayname retrieved
|
|
|
|
|
$result = $backend->getDisplayName('newyorker');
|
|
|
|
|
$this->assertEquals(null, $result);
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-26 00:14:02 +04:00
|
|
|
|
public function testGetDisplayNamePublicAPI() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
$this->prepareAccessForGetDisplayName($access);
|
|
|
|
|
$backend = new UserLDAP($access);
|
|
|
|
|
$this->prepareMockForUserExists($access);
|
|
|
|
|
\OC_User::useBackend($backend);
|
|
|
|
|
|
|
|
|
|
//with displayName
|
|
|
|
|
$result = \OCP\User::getDisplayName('gunslinger');
|
|
|
|
|
$this->assertEquals('Roland Deschain', $result);
|
|
|
|
|
|
|
|
|
|
//empty displayname retrieved
|
|
|
|
|
$result = \OCP\User::getDisplayName('newyorker');
|
|
|
|
|
$this->assertEquals('newyorker', $result);
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-11 20:51:45 +04:00
|
|
|
|
//no test for getDisplayNames, because it just invokes getUsers and
|
|
|
|
|
//getDisplayName
|
2014-01-08 15:24:29 +04:00
|
|
|
|
|
|
|
|
|
public function testCountUsers() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
|
|
|
|
|
$access->connection->expects($this->once())
|
|
|
|
|
->method('__get')
|
|
|
|
|
->will($this->returnCallback(function($name) {
|
|
|
|
|
if($name === 'ldapLoginFilter') {
|
|
|
|
|
return 'uid=%uid';
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
$access->expects($this->once())
|
|
|
|
|
->method('countUsers')
|
|
|
|
|
->will($this->returnCallback(function($filter, $a, $b, $c) {
|
|
|
|
|
if($filter !== 'uid=*') {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return 5;
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
$backend = new UserLDAP($access);
|
|
|
|
|
|
|
|
|
|
$result = $backend->countUsers();
|
|
|
|
|
$this->assertEquals(5, $result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testCountUsersFailing() {
|
|
|
|
|
$access = $this->getAccessMock();
|
|
|
|
|
|
|
|
|
|
$access->connection->expects($this->once())
|
|
|
|
|
->method('__get')
|
|
|
|
|
->will($this->returnCallback(function($name) {
|
|
|
|
|
if($name === 'ldapLoginFilter') {
|
|
|
|
|
return 'invalidFilter';
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
$access->expects($this->once())
|
|
|
|
|
->method('countUsers')
|
|
|
|
|
->will($this->returnCallback(function($filter, $a, $b, $c) {
|
|
|
|
|
if($filter !== 'uid=*') {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return 5;
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
$backend = new UserLDAP($access);
|
|
|
|
|
|
|
|
|
|
$result = $backend->countUsers();
|
|
|
|
|
$this->assertFalse($result);
|
|
|
|
|
}
|
2014-05-13 15:29:25 +04:00
|
|
|
|
}
|