123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645 |
- <?php
- /**
- * @copyright Copyright (c) 2016, Roger Szabo (roger.szabo@web.de)
- *
- * @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 OCA\User_LDAP\IGroupLDAP;
- use OCP\IConfig;
- use OCP\IServerContainer;
- use OCA\User_LDAP\IUserLDAP;
- /**
- * Class LDAPProviderTest
- *
- * @group DB
- *
- * @package OCA\User_LDAP\Tests
- */
- class LDAPProviderTest extends \Test\TestCase {
- protected function setUp() {
- 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->at(1))
- ->method('getBackends')
- ->willReturn([$userBackend]);
- $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('OC\User\Manager')
- ->setMethods(['getBackends'])
- ->setConstructorArgs([$this->createMock(IConfig::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();
- }
-
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage User id not found in LDAP
- */
- public function testGetUserDNUserIDNotFound() {
- $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->at(0))
- ->method('userExists')
- ->willReturn(true);
- $userBackend->expects($this->at(2))
- ->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'));
- }
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage Group id not found in LDAP
- */
- public function testGetGroupDNGroupIDNotFound() {
- $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->at(0))
- ->method('groupExists')
- ->willReturn(true);
- $groupBackend->expects($this->at(2))
- ->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());
-
- $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());
-
- $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'));
- }
-
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage User id not found in LDAP
- */
- public function testGetLDAPConnectionUserIDNotFound() {
- $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);
- $userBackend->expects($this->any())
- ->method('getNewLDAPConnection')
- ->willReturn(true);
-
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
-
- $ldapProvider = $this->getLDAPProvider($server);
- $this->assertTrue($ldapProvider->getLDAPConnection('existing_user'));
- }
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage Group id not found in LDAP
- */
- public function testGetGroupLDAPConnectionGroupIDNotFound() {
- $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);
- $groupBackend->expects($this->any())
- ->method('getNewLDAPConnection')
- ->willReturn(true);
- $server = $this->getServerMock($userBackend, $groupBackend);
- $ldapProvider = $this->getLDAPProvider($server);
- $this->assertTrue($ldapProvider->getGroupLDAPConnection('existing_group'));
- }
-
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage User id not found in LDAP
- */
- public function testGetLDAPBaseUsersUserIDNotFound() {
- $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() {
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['userExists', 'getLDAPAccess', 'getConnection', 'getConfiguration'])
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->expects($this->at(0))
- ->method('userExists')
- ->willReturn(true);
- $userBackend->expects($this->at(3))
- ->method('getConfiguration')
- ->willReturn(array('ldap_base_users'=>'ou=users,dc=example,dc=org'));
- $userBackend->expects($this->any())
- ->method($this->anything())
- ->willReturnSelf();
-
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
-
- $ldapProvider = $this->getLDAPProvider($server);
- $this->assertEquals('ou=users,dc=example,dc=org', $ldapProvider->getLDAPBaseUsers('existing_user'));
- }
-
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage User id not found in LDAP
- */
- public function testGetLDAPBaseGroupsUserIDNotFound() {
- $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() {
- $userBackend = $this->getMockBuilder('OCA\User_LDAP\User_LDAP')
- ->setMethods(['userExists', 'getLDAPAccess', 'getConnection', 'getConfiguration'])
- ->disableOriginalConstructor()
- ->getMock();
- $userBackend->expects($this->at(0))
- ->method('userExists')
- ->willReturn(true);
- $userBackend->expects($this->at(3))
- ->method('getConfiguration')
- ->willReturn(array('ldap_base_groups'=>'ou=groups,dc=example,dc=org'));
- $userBackend->expects($this->any())
- ->method($this->anything())
- ->willReturnSelf();
-
- $server = $this->getServerMock($userBackend, $this->getDefaultGroupBackendMock());
-
- $ldapProvider = $this->getLDAPProvider($server);
- $this->assertEquals('ou=groups,dc=example,dc=org', $ldapProvider->getLDAPBaseGroups('existing_user'));
- }
-
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage User id not found in LDAP
- */
- public function testClearCacheUserIDNotFound() {
- $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->at(0))
- ->method('userExists')
- ->willReturn(true);
- $userBackend->expects($this->at(3))
- ->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->assertTrue(TRUE);
- }
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage Group id not found in LDAP
- */
- public function testClearGroupCacheGroupIDNotFound() {
- $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->at(0))
- ->method('groupExists')
- ->willReturn(true);
- $groupBackend->expects($this->at(3))
- ->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->assertTrue(TRUE);
- }
-
- 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->assertTrue(TRUE);
- }
-
- 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->assertTrue(TRUE);
- }
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage User id not found in LDAP
- */
- public function testGetLDAPDisplayNameFieldUserIDNotFound() {
- $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->at(0))
- ->method('userExists')
- ->willReturn(true);
- $userBackend->expects($this->at(3))
- ->method('getConfiguration')
- ->willReturn(array('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'));
- }
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage User id not found in LDAP
- */
- public function testGetLDAPEmailFieldUserIDNotFound() {
- $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->at(0))
- ->method('userExists')
- ->willReturn(true);
- $userBackend->expects($this->at(3))
- ->method('getConfiguration')
- ->willReturn(array('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'));
- }
- /**
- * @expectedException \Exception
- * @expectedExceptionMessage Group id not found in LDAP
- */
- public function testGetLDAPGroupMemberAssocUserIDNotFound() {
- $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->at(0))
- ->method('groupExists')
- ->willReturn(true);
- $groupBackend->expects($this->any())
- ->method('getConfiguration')
- ->willReturn(array('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'));
- }
- }
|