2016-11-23 21:58:43 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2016 Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2020-08-24 15:54:25 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2017-11-06 17:56:42 +03:00
|
|
|
*
|
2016-11-23 21:58:43 +03:00
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2016-11-23 21:58:43 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\User_LDAP\Tests;
|
|
|
|
|
|
|
|
use OCA\User_LDAP\LDAP;
|
|
|
|
use Test\TestCase;
|
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
class LDAPTest extends TestCase {
|
2020-08-11 22:32:18 +03:00
|
|
|
/** @var LDAP|\PHPUnit\Framework\MockObject\MockObject */
|
2016-11-23 21:58:43 +03:00
|
|
|
private $ldap;
|
|
|
|
|
2019-11-27 17:27:18 +03:00
|
|
|
protected function setUp(): void {
|
2016-11-23 21:58:43 +03:00
|
|
|
parent::setUp();
|
|
|
|
$this->ldap = $this->getMockBuilder(LDAP::class)
|
|
|
|
->setMethods(['invokeLDAPMethod'])
|
|
|
|
->getMock();
|
|
|
|
}
|
|
|
|
|
2018-11-05 20:35:50 +03:00
|
|
|
public function errorProvider() {
|
|
|
|
return [
|
|
|
|
[
|
|
|
|
'ldap_search(): Partial search results returned: Sizelimit exceeded at /srv/http/nextcloud/master/apps/user_ldap/lib/LDAP.php#292',
|
|
|
|
false
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'Some other error', true
|
|
|
|
]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $errorMessage
|
|
|
|
* @param bool $passThrough
|
|
|
|
* @dataProvider errorProvider
|
|
|
|
*/
|
|
|
|
public function testSearchWithErrorHandler(string $errorMessage, bool $passThrough) {
|
|
|
|
$wasErrorHandlerCalled = false;
|
2020-04-09 14:53:40 +03:00
|
|
|
$errorHandler = function ($number, $message, $file, $line) use (&$wasErrorHandlerCalled) {
|
2018-11-05 20:35:50 +03:00
|
|
|
$wasErrorHandlerCalled = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
set_error_handler($errorHandler);
|
|
|
|
|
|
|
|
$this->ldap
|
|
|
|
->expects($this->once())
|
|
|
|
->method('invokeLDAPMethod')
|
|
|
|
->with('search', $this->anything(), $this->anything(), $this->anything(), $this->anything(), $this->anything())
|
2020-04-09 14:53:40 +03:00
|
|
|
->willReturnCallback(function () use ($errorMessage) {
|
2018-11-05 20:35:50 +03:00
|
|
|
trigger_error($errorMessage);
|
|
|
|
});
|
|
|
|
|
2020-03-18 19:40:23 +03:00
|
|
|
$fakeResource = ldap_connect();
|
|
|
|
$this->ldap->search($fakeResource, 'base', 'filter', []);
|
2018-11-05 20:35:50 +03:00
|
|
|
$this->assertSame($wasErrorHandlerCalled, $passThrough);
|
|
|
|
|
|
|
|
restore_error_handler();
|
|
|
|
}
|
|
|
|
|
2016-11-23 21:58:43 +03:00
|
|
|
public function testModReplace() {
|
|
|
|
$link = $this->createMock(LDAP::class);
|
|
|
|
$userDN = 'CN=user';
|
|
|
|
$password = 'MyPassword';
|
|
|
|
$this->ldap
|
|
|
|
->expects($this->once())
|
|
|
|
->method('invokeLDAPMethod')
|
2020-03-26 11:30:18 +03:00
|
|
|
->with('mod_replace', $link, $userDN, ['userPassword' => $password])
|
2016-11-23 21:58:43 +03:00
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$this->assertTrue($this->ldap->modReplace($link, $userDN, $password));
|
|
|
|
}
|
|
|
|
}
|