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>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
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>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
* @author Roger Szabo <roger.szabo@web.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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
*/
|
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
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
use OCA\User_LDAP\Access;
|
|
|
|
use OCA\User_LDAP\Connection;
|
2016-09-02 12:02:12 +03:00
|
|
|
use OCA\User_LDAP\FilesystemHelper;
|
|
|
|
use OCA\User_LDAP\ILDAPWrapper;
|
|
|
|
use OCA\User_LDAP\LogWrapper;
|
2016-05-12 12:25:50 +03:00
|
|
|
use OCA\User_LDAP\User\Manager;
|
2018-10-31 00:42:24 +03:00
|
|
|
use OCA\User_LDAP\User\User;
|
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 {
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var Access|\PHPUnit\Framework\MockObject\MockObject */
|
2018-10-31 00:42:24 +03:00
|
|
|
protected $access;
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IConfig|\PHPUnit\Framework\MockObject\MockObject */
|
2018-10-31 00:42:24 +03:00
|
|
|
protected $config;
|
2015-08-21 01:55:42 +03:00
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var FilesystemHelper|\PHPUnit\Framework\MockObject\MockObject */
|
2018-10-31 00:42:24 +03:00
|
|
|
protected $fileSystemHelper;
|
2015-08-21 01:55:42 +03:00
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var LogWrapper|\PHPUnit\Framework\MockObject\MockObject */
|
2018-10-31 00:42:24 +03:00
|
|
|
protected $log;
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IAvatarManager|\PHPUnit\Framework\MockObject\MockObject */
|
2018-10-31 00:42:24 +03:00
|
|
|
protected $avatarManager;
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var Image|\PHPUnit\Framework\MockObject\MockObject */
|
2018-10-31 00:42:24 +03:00
|
|
|
protected $image;
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IDBConnection|\PHPUnit\Framework\MockObject\MockObject */
|
2018-10-31 00:42:24 +03:00
|
|
|
protected $dbc;
|
2014-08-11 18:40:41 +04:00
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var IUserManager|\PHPUnit\Framework\MockObject\MockObject */
|
2018-10-31 00:42:24 +03:00
|
|
|
protected $ncUserManager;
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var INotificationManager|\PHPUnit\Framework\MockObject\MockObject */
|
2018-10-31 00:42:24 +03:00
|
|
|
protected $notificationManager;
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var ILDAPWrapper|\PHPUnit\Framework\MockObject\MockObject */
|
2018-10-31 00:42:24 +03:00
|
|
|
protected $ldapWrapper;
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
/** @var Connection */
|
|
|
|
protected $connection;
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
/** @var Manager */
|
|
|
|
protected $manager;
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2019-11-27 17:27:18 +03:00
|
|
|
protected function setUp(): void {
|
2018-10-31 00:42:24 +03:00
|
|
|
parent::setUp();
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
$this->access = $this->createMock(Access::class);
|
|
|
|
$this->config = $this->createMock(IConfig::class);
|
|
|
|
$this->fileSystemHelper = $this->createMock(FilesystemHelper::class);
|
|
|
|
$this->log = $this->createMock(LogWrapper::class);
|
|
|
|
$this->avatarManager = $this->createMock(IAvatarManager::class);
|
|
|
|
$this->image = $this->createMock(Image::class);
|
|
|
|
$this->dbc = $this->createMock(IDBConnection::class);
|
|
|
|
$this->ncUserManager = $this->createMock(IUserManager::class);
|
|
|
|
$this->notificationManager = $this->createMock(INotificationManager::class);
|
2014-08-11 18:40:41 +04:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
$this->ldapWrapper = $this->createMock(ILDAPWrapper::class);
|
|
|
|
$this->connection = new Connection($this->ldapWrapper, '', null);
|
2014-08-11 18:40:41 +04:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
$this->access->expects($this->any())
|
|
|
|
->method('getConnection')
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn($this->connection);
|
2018-10-31 00:42:24 +03:00
|
|
|
|
|
|
|
/** @noinspection PhpUnhandledExceptionInspection */
|
|
|
|
$this->manager = new Manager(
|
|
|
|
$this->config,
|
|
|
|
$this->fileSystemHelper,
|
|
|
|
$this->log,
|
|
|
|
$this->avatarManager,
|
|
|
|
$this->image,
|
|
|
|
$this->dbc,
|
|
|
|
$this->ncUserManager,
|
|
|
|
$this->notificationManager
|
|
|
|
);
|
2014-08-11 18:40:41 +04:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
$this->manager->setLdapAccess($this->access);
|
2015-07-20 02:21:34 +03:00
|
|
|
}
|
2014-08-11 18:40:41 +04:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
public function dnProvider() {
|
|
|
|
return [
|
|
|
|
['cn=foo,dc=foobar,dc=bar'],
|
|
|
|
['uid=foo,o=foobar,c=bar'],
|
|
|
|
['ab=cde,f=ghei,mno=pq'],
|
|
|
|
];
|
|
|
|
}
|
2014-08-11 18:40:41 +04:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider dnProvider
|
|
|
|
*/
|
|
|
|
public function testGetByDNExisting(string $inputDN) {
|
2015-07-20 02:21:34 +03:00
|
|
|
$uid = '563418fc-423b-1033-8d1c-ad5f418ee02e';
|
2014-08-11 18:40:41 +04:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
$this->access->expects($this->once())
|
2015-07-20 02:21:34 +03:00
|
|
|
->method('stringResemblesDN')
|
|
|
|
->with($this->equalTo($inputDN))
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn(true);
|
2018-10-31 00:42:24 +03:00
|
|
|
$this->access->expects($this->once())
|
2015-07-20 02:21:34 +03:00
|
|
|
->method('dn2username')
|
|
|
|
->with($this->equalTo($inputDN))
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn($uid);
|
2018-10-31 00:42:24 +03:00
|
|
|
$this->access->expects($this->never())
|
2015-07-20 02:21:34 +03:00
|
|
|
->method('username2dn');
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
/** @noinspection PhpUnhandledExceptionInspection */
|
|
|
|
$this->manager->get($inputDN);
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
// Now we fetch the user again. If this leads to a failing test,
|
|
|
|
// runtime caching the manager is broken.
|
|
|
|
/** @noinspection PhpUnhandledExceptionInspection */
|
|
|
|
$user = $this->manager->get($inputDN);
|
|
|
|
|
|
|
|
$this->assertInstanceOf(User::class, $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() {
|
|
|
|
$inputDN = 'cn=gone,dc=foobar,dc=bar';
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
$this->access->expects($this->once())
|
2015-07-20 02:21:34 +03:00
|
|
|
->method('stringResemblesDN')
|
|
|
|
->with($this->equalTo($inputDN))
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn(true);
|
2018-10-31 00:42:24 +03:00
|
|
|
$this->access->expects($this->once())
|
2015-07-20 02:21:34 +03:00
|
|
|
->method('dn2username')
|
|
|
|
->with($this->equalTo($inputDN))
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn(false);
|
2018-10-31 00:42:24 +03:00
|
|
|
$this->access->expects($this->once())
|
2015-07-20 02:21:34 +03:00
|
|
|
->method('username2dn')
|
|
|
|
->with($this->equalTo($inputDN))
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn(false);
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
/** @noinspection PhpUnhandledExceptionInspection */
|
|
|
|
$user = $this->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() {
|
|
|
|
$dn = 'cn=foo,dc=foobar,dc=bar';
|
|
|
|
$uid = '563418fc-423b-1033-8d1c-ad5f418ee02e';
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
$this->access->expects($this->never())
|
2015-07-20 02:21:34 +03:00
|
|
|
->method('dn2username');
|
2018-10-31 00:42:24 +03:00
|
|
|
$this->access->expects($this->once())
|
2015-07-20 02:21:34 +03:00
|
|
|
->method('username2dn')
|
|
|
|
->with($this->equalTo($uid))
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn($dn);
|
2018-10-31 00:42:24 +03:00
|
|
|
$this->access->expects($this->once())
|
2015-07-20 02:21:34 +03:00
|
|
|
->method('stringResemblesDN')
|
|
|
|
->with($this->equalTo($uid))
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn(false);
|
2014-08-11 18:40:41 +04:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
/** @noinspection PhpUnhandledExceptionInspection */
|
|
|
|
$this->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.
|
2018-10-31 00:42:24 +03:00
|
|
|
/** @noinspection PhpUnhandledExceptionInspection */
|
|
|
|
$user = $this->manager->get($uid);
|
2015-07-17 19:57:56 +03:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
$this->assertInstanceOf(User::class, $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() {
|
|
|
|
$uid = 'gone';
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
$this->access->expects($this->never())
|
2015-07-20 02:21:34 +03:00
|
|
|
->method('dn2username');
|
2018-10-31 00:42:24 +03:00
|
|
|
$this->access->expects($this->exactly(1))
|
2015-07-20 02:21:34 +03:00
|
|
|
->method('username2dn')
|
|
|
|
->with($this->equalTo($uid))
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn(false);
|
2014-07-15 00:21:56 +04:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
/** @noinspection PhpUnhandledExceptionInspection */
|
|
|
|
$user = $this->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
|
|
|
|
2018-07-04 01:10:43 +03:00
|
|
|
public function attributeRequestProvider() {
|
|
|
|
return [
|
2018-10-31 00:42:24 +03:00
|
|
|
[false],
|
|
|
|
[true],
|
2018-07-04 01:10:43 +03:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider attributeRequestProvider
|
|
|
|
*/
|
|
|
|
public function testGetAttributes($minimal) {
|
2018-10-31 00:42:24 +03:00
|
|
|
$this->connection->setConfiguration([
|
2019-02-14 16:02:03 +03:00
|
|
|
'ldapEmailAttribute' => 'MAIL',
|
2018-10-29 15:21:02 +03:00
|
|
|
'ldapUserAvatarRule' => 'default',
|
|
|
|
'ldapQuotaAttribute' => '',
|
2019-02-14 16:02:03 +03:00
|
|
|
'ldapUserDisplayName2' => 'Mail',
|
2018-10-29 15:21:02 +03:00
|
|
|
]);
|
2015-08-21 01:55:42 +03:00
|
|
|
|
2018-10-31 00:42:24 +03:00
|
|
|
$attributes = $this->manager->getAttributes($minimal);
|
2015-08-21 01:55:42 +03:00
|
|
|
|
|
|
|
$this->assertTrue(in_array('dn', $attributes));
|
2019-02-14 16:02:03 +03:00
|
|
|
$this->assertTrue(in_array(strtolower($this->access->getConnection()->ldapEmailAttribute), $attributes));
|
|
|
|
$this->assertTrue(!in_array($this->access->getConnection()->ldapEmailAttribute, $attributes)); #cases check
|
2018-10-29 15:21:02 +03:00
|
|
|
$this->assertFalse(in_array('', $attributes));
|
2018-07-04 01:10:43 +03:00
|
|
|
$this->assertSame(!$minimal, in_array('jpegphoto', $attributes));
|
|
|
|
$this->assertSame(!$minimal, in_array('thumbnailphoto', $attributes));
|
2019-02-14 16:02:03 +03:00
|
|
|
$valueCounts = array_count_values($attributes);
|
|
|
|
$this->assertSame(1, $valueCounts['mail']);
|
2015-08-21 01:55:42 +03:00
|
|
|
}
|
2014-07-15 00:21:56 +04:00
|
|
|
}
|