123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888 |
- <?php
- /**
- * @copyright Copyright (c) 2016, Roger Szabo (roger.szabo@web.de)
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Julius Härtl <jus@bitgrid.net>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author root <root@localhost.localdomain>
- * @author Vinicius Cubas Brand <vinicius@eita.org.br>
- *
- * @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
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- namespace OCA\User_LDAP\Tests;
- use OC\User\Manager;
- use OCA\User_LDAP\Access;
- use OCA\User_LDAP\Connection;
- use OCA\User_LDAP\Group_LDAP;
- use OCA\User_LDAP\IGroupLDAP;
- use OCA\User_LDAP\IUserLDAP;
- use OCA\User_LDAP\User_LDAP;
- use OCP\EventDispatcher\IEventDispatcher;
- use OCP\ICacheFactory;
- use OCP\IConfig;
- use OCP\IServerContainer;
- /**
- * Class LDAPProviderTest
- *
- * @group DB
- *
- * @package OCA\User_LDAP\Tests
- */
- class LDAPProviderTest extends \Test\TestCase {
- protected function setUp(): void {
- parent::setUp();
- }
- private function getServerMock(IUserLDAP $userBackend, IGroupLDAP $groupBackend) {
- $server = $this->getMockBuilder('OC\Server')
- ->setMethods(['getUserManager', 'getBackends', 'getGroupManager'])
- ->setConstructorArgs(['', new \OC\Config(\OC::$configDir)])
- ->getMock();
- $server->expects($this->any())
- ->method('getUserManager')
- ->willReturn($this->getUserManagerMock($userBackend));
- $server->expects($this->any())
- ->method('getGroupManager')
- ->willReturn($this->getGroupManagerMock($groupBackend));
- $server->expects($this->any())
- ->method($this->anything())
- ->willReturnSelf();
- return $server;
- }
- private function getUserManagerMock(IUserLDAP $userBackend) {
- $userManager = $this->getMockBuilder(Manager::class)
- ->setMethods(['getBackends'])
- ->setConstructorArgs([
- $this->createMock(IConfig::class),
- $this->createMock(ICacheFactory::class),
- $this->createMock(IEventDispatcher::class),
- ])
- ->getMock();
- $userManager->expects($this->any())
- ->method('getBackends')
- ->willReturn([$userBackend]);
- return $userManager;
- }
- private function getGroupManagerMock(IGroupLDAP $groupBackend) {
- $groupManager = $this->getMockBuilder('OC\Group\Manager')
- ->setMethods(['getBackends'])
- ->disableOriginalConstructor()
- ->getMock();
- $groupManager->expects($this->any())
- ->method('getBackends')
- ->willReturn([$groupBackend]);
- return $groupManager;
- }
- private function getDefaultGroupBackendMock() {
- $groupBackend = $this->getMockBuilder('OCA\User_LDAP\Group_LDAP')
- ->disableOriginalConstructor()
- ->getMock();
- return $groupBackend;
- }
- private function getLDAPProvider(IServerContainer $serverContainer) {
- $factory = new \OCA\User_LDAP\LDAPProviderFactory($serverContainer);
- return $factory->getLDAPProvider();
- }
- public function testGetUserDNUserIDNotFound() {
- $this->expectException(\Exception::class);
- $this->expectExceptionMessage('User id not found in LDAP');
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['userExists'])
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->expects($this->any())->method('userExists')->willReturn(false);
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $ldapProvider = $this->getLDAPProvider($server);
- $ldapProvider->getUserDN('nonexisting_user');
- }
- public function testGetUserDN() {
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['userExists', 'getLDAPAccess', 'username2dn'])
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->expects($this->once())
- ->method('userExists')
- ->willReturn(true);
- $userBackend->expects($this->once())
- ->method('username2dn')
- ->willReturn('cn=existing_user,ou=Are Sufficient To,ou=Test,dc=example,dc=org');
- $userBackend->expects($this->any())
- ->method($this->anything())
- ->willReturnSelf();
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $ldapProvider = $this->getLDAPProvider($server);
- $this->assertEquals('cn=existing_user,ou=Are Sufficient To,ou=Test,dc=example,dc=org',
- $ldapProvider->getUserDN('existing_user'));
- }
- public function testGetGroupDNGroupIDNotFound() {
- $this->expectException(\Exception::class);
- $this->expectExceptionMessage('Group id not found in LDAP');
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->disableOriginalConstructor()
- ->getMock();
- $groupBackend = $this->getMockBuilder('OCA\User_LDAP\Group_LDAP')
- ->setMethods(['groupExists'])
- ->disableOriginalConstructor()
- ->getMock();
- $groupBackend->expects($this->any())->method('groupExists')->willReturn(false);
- $server = $this->getServerMock($userBackend, $groupBackend);
- $ldapProvider = $this->getLDAPProvider($server);
- $ldapProvider->getGroupDN('nonexisting_group');
- }
- public function testGetGroupDN() {
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['userExists', 'getLDAPAccess', 'username2dn'])
- ->disableOriginalConstructor()
- ->getMock();
- $groupBackend = $this->getMockBuilder('OCA\User_LDAP\Group_LDAP')
- ->setMethods(['groupExists', 'getLDAPAccess', 'groupname2dn'])
- ->disableOriginalConstructor()
- ->getMock();
- $groupBackend->expects($this->once())
- ->method('groupExists')
- ->willReturn(true);
- $groupBackend->expects($this->once())
- ->method('groupname2dn')
- ->willReturn('cn=existing_group,ou=Are Sufficient To,ou=Test,dc=example,dc=org');
- $groupBackend->expects($this->any())
- ->method($this->anything())
- ->willReturnSelf();
- $server = $this->getServerMock($userBackend, $groupBackend);
- $ldapProvider = $this->getLDAPProvider($server);
- $this->assertEquals('cn=existing_group,ou=Are Sufficient To,ou=Test,dc=example,dc=org',
- $ldapProvider->getGroupDN('existing_group'));
- }
- public function testGetUserName() {
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['dn2UserName'])
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->expects($this->any())
- ->method('dn2UserName')
- ->willReturn('existing_user');
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $ldapProvider = $this->getLDAPProvider($server);
- $this->assertEquals('existing_user',
- $ldapProvider->getUserName('cn=existing_user,ou=Are Sufficient To,ou=Test,dc=example,dc=org'));
- }
- public function testDNasBaseParameter() {
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods([])
- ->disableOriginalConstructor()
- ->getMock();
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $helper = new \OCA\User_LDAP\Helper(\OC::$server->getConfig(), \OC::$server->getDatabaseConnection());
- $ldapProvider = $this->getLDAPProvider($server);
- $this->assertEquals(
- $helper->DNasBaseParameter('cn=existing_user,ou=Are Sufficient To,ou=Test,dc=example,dc=org'),
- $ldapProvider->DNasBaseParameter('cn=existing_user,ou=Are Sufficient To,ou=Test,dc=example,dc=org'));
- }
- public function testSanitizeDN() {
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods([])
- ->disableOriginalConstructor()
- ->getMock();
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $helper = new \OCA\User_LDAP\Helper(\OC::$server->getConfig(), \OC::$server->getDatabaseConnection());
- $ldapProvider = $this->getLDAPProvider($server);
- $this->assertEquals(
- $helper->sanitizeDN('cn=existing_user,ou=Are Sufficient To,ou=Test,dc=example,dc=org'),
- $ldapProvider->sanitizeDN('cn=existing_user,ou=Are Sufficient To,ou=Test,dc=example,dc=org'));
- }
- public function testGetLDAPConnectionUserIDNotFound() {
- $this->expectException(\Exception::class);
- $this->expectExceptionMessage('User id not found in LDAP');
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['userExists'])
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->expects($this->any())->method('userExists')->willReturn(false);
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $ldapProvider = $this->getLDAPProvider($server);
- $ldapProvider->getLDAPConnection('nonexisting_user');
- }
- public function testGetLDAPConnection() {
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['userExists', 'getNewLDAPConnection'])
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->expects($this->any())
- ->method('userExists')
- ->willReturn(true);
- $ldapConnection = ldap_connect('ldap://example.com');
- $userBackend->expects($this->any())
- ->method('getNewLDAPConnection')
- ->willReturn($ldapConnection);
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $ldapProvider = $this->getLDAPProvider($server);
- $this->assertEquals($ldapConnection, $ldapProvider->getLDAPConnection('existing_user'));
- }
- public function testGetGroupLDAPConnectionGroupIDNotFound() {
- $this->expectException(\Exception::class);
- $this->expectExceptionMessage('Group id not found in LDAP');
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->disableOriginalConstructor()
- ->getMock();
- $groupBackend = $this->getMockBuilder('OCA\User_LDAP\Group_LDAP')
- ->setMethods(['groupExists'])
- ->disableOriginalConstructor()
- ->getMock();
- $groupBackend->expects($this->any())->method('groupExists')->willReturn(false);
- $server = $this->getServerMock($userBackend, $groupBackend);
- $ldapProvider = $this->getLDAPProvider($server);
- $ldapProvider->getGroupLDAPConnection('nonexisting_group');
- }
- public function testGetGroupLDAPConnection() {
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->disableOriginalConstructor()
- ->getMock();
- $groupBackend = $this->getMockBuilder('OCA\User_LDAP\Group_LDAP')
- ->setMethods(['groupExists','getNewLDAPConnection'])
- ->disableOriginalConstructor()
- ->getMock();
- $groupBackend->expects($this->any())
- ->method('groupExists')
- ->willReturn(true);
- $ldapConnection = ldap_connect('ldap://example.com');
- $groupBackend->expects($this->any())
- ->method('getNewLDAPConnection')
- ->willReturn($ldapConnection);
- $server = $this->getServerMock($userBackend, $groupBackend);
- $ldapProvider = $this->getLDAPProvider($server);
- $this->assertEquals($ldapConnection, $ldapProvider->getGroupLDAPConnection('existing_group'));
- }
- public function testGetLDAPBaseUsersUserIDNotFound() {
- $this->expectException(\Exception::class);
- $this->expectExceptionMessage('User id not found in LDAP');
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['userExists'])
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->expects($this->any())->method('userExists')->willReturn(false);
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $ldapProvider = $this->getLDAPProvider($server);
- $ldapProvider->getLDAPBaseUsers('nonexisting_user');
- }
- public function testGetLDAPBaseUsers() {
- $bases = [
- 'ou=users,ou=foobar,dc=example,dc=org',
- 'ou=users,ou=barfoo,dc=example,dc=org',
- ];
- $dn = 'uid=malik,' . $bases[1];
- $connection = $this->createMock(Connection::class);
- $connection->expects($this->any())
- ->method('__get')
- ->willReturnCallback(function ($key) use ($bases) {
- switch ($key) {
- case 'ldapBaseUsers':
- return $bases;
- }
- return null;
- });
- $access = $this->createMock(Access::class);
- $access->expects($this->any())
- ->method('getConnection')
- ->willReturn($connection);
- $access->expects($this->exactly(2))
- ->method('isDNPartOfBase')
- ->willReturnOnConsecutiveCalls(false, true);
- $access->expects($this->atLeastOnce())
- ->method('username2dn')
- ->willReturn($dn);
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['userExists', 'getLDAPAccess', 'getConnection', 'getConfiguration'])
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->expects($this->atLeastOnce())
- ->method('userExists')
- ->willReturn(true);
- $userBackend->expects($this->any())
- ->method('getLDAPAccess')
- ->willReturn($access);
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $ldapProvider = $this->getLDAPProvider($server);
- $this->assertEquals($bases[1], $ldapProvider->getLDAPBaseUsers('existing_user'));
- }
- public function testGetLDAPBaseGroupsUserIDNotFound() {
- $this->expectException(\Exception::class);
- $this->expectExceptionMessage('User id not found in LDAP');
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['userExists'])
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->expects($this->any())->method('userExists')->willReturn(false);
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $ldapProvider = $this->getLDAPProvider($server);
- $ldapProvider->getLDAPBaseGroups('nonexisting_user');
- }
- public function testGetLDAPBaseGroups() {
- $bases = [
- 'ou=groupd,ou=foobar,dc=example,dc=org',
- 'ou=groups,ou=barfoo,dc=example,dc=org',
- ];
- $connection = $this->createMock(Connection::class);
- $connection->expects($this->any())
- ->method('__get')
- ->willReturnCallback(function ($key) use ($bases) {
- switch ($key) {
- case 'ldapBaseGroups':
- return $bases;
- }
- return null;
- });
- $access = $this->createMock(Access::class);
- $access->expects($this->any())
- ->method('getConnection')
- ->willReturn($connection);
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['userExists', 'getLDAPAccess', 'getConnection', 'getConfiguration'])
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->expects($this->any())
- ->method('userExists')
- ->willReturn(true);
- $userBackend->expects($this->any())
- ->method('getLDAPAccess')
- ->willReturn($access);
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $ldapProvider = $this->getLDAPProvider($server);
- $this->assertEquals($bases[0], $ldapProvider->getLDAPBaseGroups('existing_user'));
- }
- public function testClearCacheUserIDNotFound() {
- $this->expectException(\Exception::class);
- $this->expectExceptionMessage('User id not found in LDAP');
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['userExists'])
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->expects($this->any())->method('userExists')->willReturn(false);
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $ldapProvider = $this->getLDAPProvider($server);
- $ldapProvider->clearCache('nonexisting_user');
- }
- public function testClearCache() {
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['userExists', 'getLDAPAccess', 'getConnection', 'clearCache'])
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->expects($this->once())
- ->method('userExists')
- ->willReturn(true);
- $userBackend->expects($this->once())
- ->method('clearCache')
- ->willReturn(true);
- $userBackend->expects($this->any())
- ->method($this->anything())
- ->willReturnSelf();
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $ldapProvider = $this->getLDAPProvider($server);
- $ldapProvider->clearCache('existing_user');
- $this->addToAssertionCount(1);
- }
- public function testClearGroupCacheGroupIDNotFound() {
- $this->expectException(\Exception::class);
- $this->expectExceptionMessage('Group id not found in LDAP');
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->disableOriginalConstructor()
- ->getMock();
- $groupBackend = $this->getMockBuilder('OCA\User_LDAP\Group_LDAP')
- ->setMethods(['groupExists'])
- ->disableOriginalConstructor()
- ->getMock();
- $groupBackend->expects($this->any())->method('groupExists')->willReturn(false);
- $server = $this->getServerMock($userBackend, $groupBackend);
- $ldapProvider = $this->getLDAPProvider($server);
- $ldapProvider->clearGroupCache('nonexisting_group');
- }
- public function testClearGroupCache() {
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->disableOriginalConstructor()
- ->getMock();
- $groupBackend = $this->getMockBuilder('OCA\User_LDAP\Group_LDAP')
- ->setMethods(['groupExists', 'getLDAPAccess', 'getConnection', 'clearCache'])
- ->disableOriginalConstructor()
- ->getMock();
- $groupBackend->expects($this->once())
- ->method('groupExists')
- ->willReturn(true);
- $groupBackend->expects($this->once())
- ->method('clearCache')
- ->willReturn(true);
- $groupBackend->expects($this->any())
- ->method($this->anything())
- ->willReturnSelf();
- $server = $this->getServerMock($userBackend, $groupBackend);
- $ldapProvider = $this->getLDAPProvider($server);
- $ldapProvider->clearGroupCache('existing_group');
- $this->addToAssertionCount(1);
- }
- public function testDnExists() {
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['dn2UserName'])
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->expects($this->any())
- ->method('dn2UserName')
- ->willReturn('existing_user');
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $ldapProvider = $this->getLDAPProvider($server);
- $this->assertTrue($ldapProvider->dnExists('cn=existing_user,ou=Are Sufficient To,ou=Test,dc=example,dc=org'));
- }
- public function testFlagRecord() {
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods([])
- ->disableOriginalConstructor()
- ->getMock();
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $ldapProvider = $this->getLDAPProvider($server);
- $ldapProvider->flagRecord('existing_user');
- $this->addToAssertionCount(1);
- }
- public function testUnflagRecord() {
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods([])
- ->disableOriginalConstructor()
- ->getMock();
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $ldapProvider = $this->getLDAPProvider($server);
- $ldapProvider->unflagRecord('existing_user');
- $this->addToAssertionCount(1);
- }
- public function testGetLDAPDisplayNameFieldUserIDNotFound() {
- $this->expectException(\Exception::class);
- $this->expectExceptionMessage('User id not found in LDAP');
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['userExists'])
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->expects($this->any())->method('userExists')->willReturn(false);
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $ldapProvider = $this->getLDAPProvider($server);
- $ldapProvider->getLDAPDisplayNameField('nonexisting_user');
- }
- public function testGetLDAPDisplayNameField() {
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['userExists', 'getLDAPAccess', 'getConnection', 'getConfiguration'])
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->expects($this->once())
- ->method('userExists')
- ->willReturn(true);
- $userBackend->expects($this->once())
- ->method('getConfiguration')
- ->willReturn(['ldap_display_name' => 'displayName']);
- $userBackend->expects($this->any())
- ->method($this->anything())
- ->willReturnSelf();
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $ldapProvider = $this->getLDAPProvider($server);
- $this->assertEquals('displayName', $ldapProvider->getLDAPDisplayNameField('existing_user'));
- }
- public function testGetLDAPEmailFieldUserIDNotFound() {
- $this->expectException(\Exception::class);
- $this->expectExceptionMessage('User id not found in LDAP');
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['userExists'])
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->expects($this->any())->method('userExists')->willReturn(false);
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $ldapProvider = $this->getLDAPProvider($server);
- $ldapProvider->getLDAPEmailField('nonexisting_user');
- }
- public function testGetLDAPEmailField() {
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['userExists', 'getLDAPAccess', 'getConnection', 'getConfiguration'])
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->expects($this->once())
- ->method('userExists')
- ->willReturn(true);
- $userBackend->expects($this->once())
- ->method('getConfiguration')
- ->willReturn(['ldap_email_attr' => 'mail']);
- $userBackend->expects($this->any())
- ->method($this->anything())
- ->willReturnSelf();
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
- $ldapProvider = $this->getLDAPProvider($server);
- $this->assertEquals('mail', $ldapProvider->getLDAPEmailField('existing_user'));
- }
- public function testGetLDAPGroupMemberAssocUserIDNotFound() {
- $this->expectException(\Exception::class);
- $this->expectExceptionMessage('Group id not found in LDAP');
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->disableOriginalConstructor()
- ->getMock();
- $groupBackend = $this->getMockBuilder('OCA\User_LDAP\Group_LDAP')
- ->setMethods(['groupExists'])
- ->disableOriginalConstructor()
- ->getMock();
- $groupBackend->expects($this->any())->method('groupExists')->willReturn(false);
- $server = $this->getServerMock($userBackend, $groupBackend);
- $ldapProvider = $this->getLDAPProvider($server);
- $ldapProvider->getLDAPGroupMemberAssoc('nonexisting_group');
- }
- public function testgetLDAPGroupMemberAssoc() {
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->disableOriginalConstructor()
- ->getMock();
- $groupBackend = $this->getMockBuilder('OCA\User_LDAP\Group_LDAP')
- ->setMethods(['groupExists', 'getLDAPAccess', 'getConnection', 'getConfiguration'])
- ->disableOriginalConstructor()
- ->getMock();
- $groupBackend->expects($this->once())
- ->method('groupExists')
- ->willReturn(true);
- $groupBackend->expects($this->any())
- ->method('getConfiguration')
- ->willReturn(['ldap_group_member_assoc_attribute' => 'assoc_type']);
- $groupBackend->expects($this->any())
- ->method($this->anything())
- ->willReturnSelf();
- $server = $this->getServerMock($userBackend, $groupBackend);
- $ldapProvider = $this->getLDAPProvider($server);
- $this->assertEquals('assoc_type', $ldapProvider->getLDAPGroupMemberAssoc('existing_group'));
- }
- public function testGetMultiValueUserAttributeUserNotFound() {
- $this->expectException(\Exception::class);
- $this->expectExceptionMessage('User id not found in LDAP');
- $userBackend = $this->createMock(User_LDAP::class);
- $userBackend->expects(self::once())
- ->method('userExists')
- ->with('admin')
- ->willReturn(false);
- $groupBackend = $this->createMock(Group_LDAP::class);
- $server = $this->getServerMock($userBackend, $groupBackend);
- $ldapProvider = $this->getLDAPProvider($server);
- $ldapProvider->getMultiValueUserAttribute('admin', 'mailAlias');
- }
- public function testGetMultiValueUserAttributeCacheHit() {
- $connection = $this->createMock(Connection::class);
- $connection->expects(self::once())
- ->method('getFromCache')
- ->with('admin-mailAlias')
- ->willReturn(['aliasA@test.local', 'aliasB@test.local']);
- $access = $this->createMock(Access::class);
- $access->expects(self::once())
- ->method('getConnection')
- ->willReturn($connection);
- $userBackend = $this->createMock(User_LDAP::class);
- $userBackend->expects(self::once())
- ->method('userExists')
- ->with('admin')
- ->willReturn(true);
- $userBackend->expects(self::once())
- ->method('getLDAPAccess')
- ->willReturn($access);
- $groupBackend = $this->createMock(Group_LDAP::class);
- $server = $this->getServerMock($userBackend, $groupBackend);
- $ldapProvider = $this->getLDAPProvider($server);
- $ldapProvider->getMultiValueUserAttribute('admin', 'mailAlias');
- }
- public function testGetMultiValueUserAttributeLdapError() {
- $connection = $this->createMock(Connection::class);
- $connection->expects(self::once())
- ->method('getFromCache')
- ->with('admin-mailAlias')
- ->willReturn(null);
- $access = $this->createMock(Access::class);
- $access->expects(self::once())
- ->method('getConnection')
- ->willReturn($connection);
- $access->expects(self::once())
- ->method('username2dn')
- ->with('admin')
- ->willReturn('admin');
- $access->expects(self::once())
- ->method('readAttribute')
- ->with('admin', 'mailAlias')
- ->willReturn(false);
- $userBackend = $this->getMockBuilder(User_LDAP::class)
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->method('userExists')
- ->with('admin')
- ->willReturn(true);
- $userBackend->method('getLDAPAccess')
- ->willReturn($access);
- $groupBackend = $this->getMockBuilder(Group_LDAP::class)
- ->disableOriginalConstructor()
- ->getMock();
- $server = $this->getServerMock($userBackend, $groupBackend);
- $ldapProvider = $this->getLDAPProvider($server);
- $values = $ldapProvider->getMultiValueUserAttribute('admin', 'mailAlias');
- self::assertCount(0, $values);
- }
- public function testGetMultiValueUserAttribute() {
- $connection = $this->createMock(Connection::class);
- $connection->expects(self::once())
- ->method('getFromCache')
- ->with('admin-mailAlias')
- ->willReturn(null);
- $access = $this->createMock(Access::class);
- $access->expects(self::once())
- ->method('getConnection')
- ->willReturn($connection);
- $access->expects(self::once())
- ->method('username2dn')
- ->with('admin')
- ->willReturn('admin');
- $access->expects(self::once())
- ->method('readAttribute')
- ->with('admin', 'mailAlias')
- ->willReturn(['aliasA@test.local', 'aliasB@test.local']);
- $userBackend = $this->getMockBuilder(User_LDAP::class)
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->method('userExists')
- ->with('admin')
- ->willReturn(true);
- $userBackend->method('getLDAPAccess')
- ->willReturn($access);
- $groupBackend = $this->getMockBuilder(Group_LDAP::class)
- ->disableOriginalConstructor()
- ->getMock();
- $server = $this->getServerMock($userBackend, $groupBackend);
- $ldapProvider = $this->getLDAPProvider($server);
- $values = $ldapProvider->getMultiValueUserAttribute('admin', 'mailAlias');
- self::assertCount(2, $values);
- }
- public function testGetUserAttributeLdapError() {
- $connection = $this->createMock(Connection::class);
- $connection->expects(self::once())
- ->method('getFromCache')
- ->with('admin-mailAlias')
- ->willReturn(null);
- $access = $this->createMock(Access::class);
- $access->expects(self::once())
- ->method('getConnection')
- ->willReturn($connection);
- $access->expects(self::once())
- ->method('username2dn')
- ->with('admin')
- ->willReturn('admin');
- $access->expects(self::once())
- ->method('readAttribute')
- ->with('admin', 'mailAlias')
- ->willReturn(false);
- $userBackend = $this->getMockBuilder(User_LDAP::class)
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->method('userExists')
- ->with('admin')
- ->willReturn(true);
- $userBackend->method('getLDAPAccess')
- ->willReturn($access);
- $groupBackend = $this->getMockBuilder(Group_LDAP::class)
- ->disableOriginalConstructor()
- ->getMock();
- $server = $this->getServerMock($userBackend, $groupBackend);
- $ldapProvider = $this->getLDAPProvider($server);
- $value = $ldapProvider->getUserAttribute('admin', 'mailAlias');
- self::assertNull($value);
- }
- public function testGetUserAttribute() {
- $connection = $this->createMock(Connection::class);
- $connection->expects(self::once())
- ->method('getFromCache')
- ->with('admin-mailAlias')
- ->willReturn(null);
- $access = $this->createMock(Access::class);
- $access->expects(self::once())
- ->method('getConnection')
- ->willReturn($connection);
- $access->expects(self::once())
- ->method('username2dn')
- ->with('admin')
- ->willReturn('admin');
- $access->expects(self::once())
- ->method('readAttribute')
- ->with('admin', 'mailAlias')
- ->willReturn(['aliasA@test.local', 'aliasB@test.local']);
- $userBackend = $this->getMockBuilder(User_LDAP::class)
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->method('userExists')
- ->with('admin')
- ->willReturn(true);
- $userBackend->method('getLDAPAccess')
- ->willReturn($access);
- $groupBackend = $this->getMockBuilder(Group_LDAP::class)
- ->disableOriginalConstructor()
- ->getMock();
- $server = $this->getServerMock($userBackend, $groupBackend);
- $ldapProvider = $this->getLDAPProvider($server);
- $value = $ldapProvider->getUserAttribute('admin', 'mailAlias');
- self::assertEquals('aliasA@test.local', $value);
- }
- }
|