2014-07-15 00:21:56 +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>
|
|
|
|
* @author Philippe Jung <phil.jung@free.fr>
|
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-07-15 00:21:56 +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\Manager;
|
2016-09-02 12:02:12 +03:00
|
|
|
use OCP\IAvatarManager;
|
|
|
|
use OCP\IConfig;
|
|
|
|
use OCP\IDBConnection;
|
|
|
|
use OCP\Image;
|
|
|
|
use OCP\IUserManager;
|
2017-03-31 10:16:22 +03:00
|
|
|
use OCP\Notification\IManager as INotificationManager;
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-11-25 18:58:54 +03:00
|
|
|
/**
|
|
|
|
* Class Test_User_Manager
|
|
|
|
*
|
|
|
|
* @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 ManagerTest extends \Test\TestCase {
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03: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-07-15 00:21:56 +04:00
|
|
|
|
2016-05-12 17:35:33 +03:00
|
|
|
$connection = new \OCA\User_LDAP\Connection(
|
2016-09-02 12:02:12 +03:00
|
|
|
$lw = $this->createMock(ILDAPWrapper::class),
|
2015-08-21 01:55:42 +03:00
|
|
|
'',
|
|
|
|
null
|
|
|
|
);
|
|
|
|
|
|
|
|
$access->expects($this->any())
|
|
|
|
->method('getConnection')
|
|
|
|
->will($this->returnValue($connection));
|
|
|
|
|
2017-03-31 10:16:22 +03:00
|
|
|
return array($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr);
|
2015-07-20 02:21:34 +03:00
|
|
|
}
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
public function testGetByDNExisting() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2015-07-20 02:21:34 +03:00
|
|
|
$this->getTestInstances();
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$inputDN = 'cn=foo,dc=foobar,dc=bar';
|
|
|
|
$uid = '563418fc-423b-1033-8d1c-ad5f418ee02e';
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2014-08-11 18:40:41 +04:00
|
|
|
$access->expects($this->once())
|
2015-07-20 02:21:34 +03:00
|
|
|
->method('stringResemblesDN')
|
|
|
|
->with($this->equalTo($inputDN))
|
|
|
|
->will($this->returnValue(true));
|
2014-08-11 18:40:41 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$access->expects($this->once())
|
|
|
|
->method('dn2username')
|
|
|
|
->with($this->equalTo($inputDN))
|
|
|
|
->will($this->returnValue($uid));
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$access->expects($this->never())
|
|
|
|
->method('username2dn');
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2017-03-31 10:16:22 +03:00
|
|
|
$manager = new Manager($config, $filesys, $log, $avaMgr, $image, $dbc, $userMgr, $notiMgr);
|
2015-07-20 02:21:34 +03:00
|
|
|
$manager->setLdapAccess($access);
|
|
|
|
$user = $manager->get($inputDN);
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
// Now we fetch the user again. If this leads to a failing test,
|
|
|
|
// runtime caching the manager is broken.
|
|
|
|
$user = $manager->get($inputDN);
|
2015-07-17 19:57:56 +03:00
|
|
|
|
2016-05-12 12:25:50 +03:00
|
|
|
$this->assertInstanceOf('\OCA\User_LDAP\User\User', $user);
|
2015-07-20 02:21:34 +03:00
|
|
|
}
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
public function testGetByEDirectoryDN() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2015-07-20 02:21:34 +03:00
|
|
|
$this->getTestInstances();
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$inputDN = 'uid=foo,o=foobar,c=bar';
|
|
|
|
$uid = '563418fc-423b-1033-8d1c-ad5f418ee02e';
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2014-08-11 18:40:41 +04:00
|
|
|
$access->expects($this->once())
|
2015-07-20 02:21:34 +03:00
|
|
|
->method('stringResemblesDN')
|
|
|
|
->with($this->equalTo($inputDN))
|
|
|
|
->will($this->returnValue(true));
|
2014-08-11 18:40:41 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$access->expects($this->once())
|
|
|
|
->method('dn2username')
|
|
|
|
->with($this->equalTo($inputDN))
|
|
|
|
->will($this->returnValue($uid));
|
2014-08-11 18:40:41 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$access->expects($this->never())
|
|
|
|
->method('username2dn');
|
2014-08-11 18:40:41 +04:00
|
|
|
|
2017-03-31 10:16:22 +03:00
|
|
|
$manager = new Manager($config, $filesys, $log, $avaMgr, $image, $dbc, $userMgr, $notiMgr);
|
2015-07-20 02:21:34 +03:00
|
|
|
$manager->setLdapAccess($access);
|
|
|
|
$user = $manager->get($inputDN);
|
2014-08-11 18:40:41 +04:00
|
|
|
|
2016-05-12 12:25:50 +03:00
|
|
|
$this->assertInstanceOf('\OCA\User_LDAP\User\User', $user);
|
2015-07-20 02:21:34 +03:00
|
|
|
}
|
2014-08-11 18:40:41 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
public function testGetByExoticDN() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2015-07-20 02:21:34 +03:00
|
|
|
$this->getTestInstances();
|
2014-08-11 18:40:41 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$inputDN = 'ab=cde,f=ghei,mno=pq';
|
|
|
|
$uid = '563418fc-423b-1033-8d1c-ad5f418ee02e';
|
2014-08-11 18:40:41 +04:00
|
|
|
|
|
|
|
$access->expects($this->once())
|
2015-07-20 02:21:34 +03:00
|
|
|
->method('stringResemblesDN')
|
|
|
|
->with($this->equalTo($inputDN))
|
|
|
|
->will($this->returnValue(true));
|
2014-08-11 18:40:41 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$access->expects($this->once())
|
|
|
|
->method('dn2username')
|
|
|
|
->with($this->equalTo($inputDN))
|
|
|
|
->will($this->returnValue($uid));
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$access->expects($this->never())
|
|
|
|
->method('username2dn');
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2017-03-31 10:16:22 +03:00
|
|
|
$manager = new Manager($config, $filesys, $log, $avaMgr, $image, $dbc, $userMgr, $notiMgr);
|
2015-07-20 02:21:34 +03:00
|
|
|
$manager->setLdapAccess($access);
|
|
|
|
$user = $manager->get($inputDN);
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2016-05-12 12:25:50 +03:00
|
|
|
$this->assertInstanceOf('\OCA\User_LDAP\User\User', $user);
|
2015-07-20 02:21:34 +03:00
|
|
|
}
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
public function testGetByDNNotExisting() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2015-07-20 02:21:34 +03:00
|
|
|
$this->getTestInstances();
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$inputDN = 'cn=gone,dc=foobar,dc=bar';
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2014-08-11 18:40:41 +04:00
|
|
|
$access->expects($this->once())
|
2015-07-20 02:21:34 +03:00
|
|
|
->method('stringResemblesDN')
|
|
|
|
->with($this->equalTo($inputDN))
|
|
|
|
->will($this->returnValue(true));
|
2014-08-11 18:40:41 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$access->expects($this->once())
|
|
|
|
->method('dn2username')
|
|
|
|
->with($this->equalTo($inputDN))
|
|
|
|
->will($this->returnValue(false));
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$access->expects($this->once())
|
|
|
|
->method('username2dn')
|
|
|
|
->with($this->equalTo($inputDN))
|
|
|
|
->will($this->returnValue(false));
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2017-03-31 10:16:22 +03:00
|
|
|
$manager = new Manager($config, $filesys, $log, $avaMgr, $image, $dbc, $userMgr, $notiMgr);
|
2015-07-20 02:21:34 +03:00
|
|
|
$manager->setLdapAccess($access);
|
|
|
|
$user = $manager->get($inputDN);
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$this->assertNull($user);
|
|
|
|
}
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
public function testGetByUidExisting() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2015-07-20 02:21:34 +03:00
|
|
|
$this->getTestInstances();
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$dn = 'cn=foo,dc=foobar,dc=bar';
|
|
|
|
$uid = '563418fc-423b-1033-8d1c-ad5f418ee02e';
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$access->expects($this->never())
|
|
|
|
->method('dn2username');
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$access->expects($this->once())
|
|
|
|
->method('username2dn')
|
|
|
|
->with($this->equalTo($uid))
|
|
|
|
->will($this->returnValue($dn));
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$access->expects($this->once())
|
|
|
|
->method('stringResemblesDN')
|
|
|
|
->with($this->equalTo($uid))
|
|
|
|
->will($this->returnValue(false));
|
2014-08-11 18:40:41 +04:00
|
|
|
|
2017-03-31 10:16:22 +03:00
|
|
|
$manager = new Manager($config, $filesys, $log, $avaMgr, $image, $dbc, $userMgr, $notiMgr);
|
2015-07-20 02:21:34 +03:00
|
|
|
$manager->setLdapAccess($access);
|
|
|
|
$user = $manager->get($uid);
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-17 19:57:56 +03:00
|
|
|
// Now we fetch the user again. If this leads to a failing test,
|
|
|
|
// runtime caching the manager is broken.
|
|
|
|
$user = $manager->get($uid);
|
|
|
|
|
2016-05-12 12:25:50 +03:00
|
|
|
$this->assertInstanceOf('\OCA\User_LDAP\User\User', $user);
|
2015-07-20 02:21:34 +03:00
|
|
|
}
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
public function testGetByUidNotExisting() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2015-07-20 02:21:34 +03:00
|
|
|
$this->getTestInstances();
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$uid = 'gone';
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$access->expects($this->never())
|
|
|
|
->method('dn2username');
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$access->expects($this->exactly(1))
|
|
|
|
->method('username2dn')
|
|
|
|
->with($this->equalTo($uid))
|
|
|
|
->will($this->returnValue(false));
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2017-03-31 10:16:22 +03:00
|
|
|
$manager = new Manager($config, $filesys, $log, $avaMgr, $image, $dbc, $userMgr, $notiMgr);
|
2015-07-20 02:21:34 +03:00
|
|
|
$manager->setLdapAccess($access);
|
|
|
|
$user = $manager->get($uid);
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-07-20 02:21:34 +03:00
|
|
|
$this->assertNull($user);
|
|
|
|
}
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2015-08-21 01:55:42 +03:00
|
|
|
public function testGetAttributesAll() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2015-08-21 01:55:42 +03:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
2017-03-31 10:16:22 +03:00
|
|
|
$manager = new Manager($config, $filesys, $log, $avaMgr, $image, $dbc, $userMgr, $notiMgr);
|
2015-08-21 01:55:42 +03:00
|
|
|
$manager->setLdapAccess($access);
|
|
|
|
|
|
|
|
$connection = $access->getConnection();
|
|
|
|
$connection->setConfiguration(array('ldapEmailAttribute' => 'mail'));
|
|
|
|
|
|
|
|
$attributes = $manager->getAttributes();
|
|
|
|
|
|
|
|
$this->assertTrue(in_array('dn', $attributes));
|
|
|
|
$this->assertTrue(in_array($access->getConnection()->ldapEmailAttribute, $attributes));
|
|
|
|
$this->assertTrue(in_array('jpegphoto', $attributes));
|
|
|
|
$this->assertTrue(in_array('thumbnailphoto', $attributes));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetAttributesMinimal() {
|
2017-03-31 10:16:22 +03:00
|
|
|
list($access, $config, $filesys, $image, $log, $avaMgr, $dbc, $userMgr, $notiMgr) =
|
2015-08-21 01:55:42 +03:00
|
|
|
$this->getTestInstances();
|
|
|
|
|
2017-03-31 10:16:22 +03:00
|
|
|
$manager = new Manager($config, $filesys, $log, $avaMgr, $image, $dbc, $userMgr, $notiMgr);
|
2015-08-21 01:55:42 +03:00
|
|
|
$manager->setLdapAccess($access);
|
|
|
|
|
|
|
|
$attributes = $manager->getAttributes(true);
|
|
|
|
|
|
|
|
$this->assertTrue(in_array('dn', $attributes));
|
|
|
|
$this->assertTrue(!in_array('jpegphoto', $attributes));
|
|
|
|
$this->assertTrue(!in_array('thumbnailphoto', $attributes));
|
|
|
|
}
|
|
|
|
|
2014-07-15 00:21:56 +04:00
|
|
|
}
|