12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- * @author Victor Dubiniuk <dubiniuk@owncloud.com>
- * @author Vincent Petry <vincent@nextcloud.com>
- * @author Vinicius Cubas Brand <vinicius@eita.org.br>
- * @author Xuanwo <xuanwo@yunify.com>
- *
- * @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/>
- *
- */
- namespace OCA\User_LDAP\Tests;
- use OCA\User_LDAP\Access;
- use OCA\User_LDAP\Connection;
- use OCA\User_LDAP\Group_LDAP as GroupLDAP;
- use OCA\User_LDAP\GroupPluginManager;
- use OCA\User_LDAP\ILDAPWrapper;
- use OCA\User_LDAP\Mapping\GroupMapping;
- use OCA\User_LDAP\User\Manager;
- use OCP\GroupInterface;
- use PHPUnit\Framework\MockObject\MockObject;
- use Test\TestCase;
- /**
- * Class GroupLDAPTest
- *
- * @group DB
- *
- * @package OCA\User_LDAP\Tests
- */
- class Group_LDAPTest extends TestCase {
- public function testCountEmptySearchString() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $groupDN = 'cn=group,dc=foo,dc=bar';
- $this->enableGroups($access);
- $access->expects($this->any())
- ->method('groupname2dn')
- ->willReturn($groupDN);
- $access->expects($this->any())
- ->method('readAttribute')
- ->willReturnCallback(function ($dn) use ($groupDN) {
- if ($dn === $groupDN) {
- return [
- 'uid=u11,ou=users,dc=foo,dc=bar',
- 'uid=u22,ou=users,dc=foo,dc=bar',
- 'uid=u33,ou=users,dc=foo,dc=bar',
- 'uid=u34,ou=users,dc=foo,dc=bar'
- ];
- }
- return [];
- });
- $access->expects($this->any())
- ->method('isDNPartOfBase')
- ->willReturn(true);
- // for primary groups
- $access->expects($this->once())
- ->method('countUsers')
- ->willReturn(2);
- $access->userManager->expects($this->any())
- ->method('getAttributes')
- ->willReturn(['displayName', 'mail']);
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $users = $groupBackend->countUsersInGroup('group');
- $this->assertSame(6, $users);
- }
- /**
- * @return MockObject|Access
- */
- private function getAccessMock() {
- static $conMethods;
- static $accMethods;
- if (is_null($conMethods) || is_null($accMethods)) {
- $conMethods = get_class_methods(Connection::class);
- $accMethods = get_class_methods(Access::class);
- }
- $lw = $this->createMock(ILDAPWrapper::class);
- $connector = $this->getMockBuilder(Connection::class)
- ->setMethods($conMethods)
- ->setConstructorArgs([$lw, '', null])
- ->getMock();
- $access = $this->createMock(Access::class);
- $access->connection = $connector;
- $access->userManager = $this->createMock(Manager::class);
- return $access;
- }
- /**
- * @return MockObject|GroupPluginManager
- */
- private function getPluginManagerMock() {
- return $this->createMock(GroupPluginManager::class);
- }
- private function enableGroups(Access $access) {
- $access->connection = $this->createMock(Connection::class);
- $access->connection->expects($this->any())
- ->method('__get')
- ->willReturnCallback(function ($name) {
- if ($name === 'ldapDynamicGroupMemberURL') {
- return '';
- } elseif ($name === 'ldapBaseGroups') {
- return [];
- }
- return 1;
- });
- }
- public function testCountWithSearchString() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $access->expects($this->any())
- ->method('groupname2dn')
- ->willReturn('cn=group,dc=foo,dc=bar');
- $access->expects($this->any())
- ->method('fetchListOfUsers')
- ->willReturn([]);
- $access->expects($this->any())
- ->method('readAttribute')
- ->willReturnCallback(function ($name) {
- //the search operation will call readAttribute, thus we need
- //to analyze the "dn". All other times we just need to return
- //something that is neither null or false, but once an array
- //with the users in the group – so we do so all other times for
- //simplicicity.
- if (strpos($name, 'u') === 0) {
- return strpos($name, '3');
- }
- return ['u11', 'u22', 'u33', 'u34'];
- });
- $access->expects($this->any())
- ->method('dn2username')
- ->willReturnCallback(function () {
- return 'foobar' . \OC::$server->getSecureRandom()->generate(7);
- });
- $access->expects($this->any())
- ->method('isDNPartOfBase')
- ->willReturn(true);
- $access->expects($this->any())
- ->method('escapeFilterPart')
- ->willReturnArgument(0);
- $access->userManager->expects($this->any())
- ->method('getAttributes')
- ->willReturn(['displayName', 'mail']);
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $users = $groupBackend->countUsersInGroup('group', '3');
- $this->assertSame(2, $users);
- }
- public function testCountUsersWithPlugin() {
- /** @var GroupPluginManager|MockObject $pluginManager */
- $pluginManager = $this->getMockBuilder(GroupPluginManager::class)
- ->setMethods(['implementsActions', 'countUsersInGroup'])
- ->getMock();
- $pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(GroupInterface::COUNT_USERS)
- ->willReturn(true);
- $pluginManager->expects($this->once())
- ->method('countUsersInGroup')
- ->with('gid', 'search')
- ->willReturn(42);
- $access = $this->getAccessMock();
- $access->connection = $this->createMock(Connection::class);
- $ldap = new GroupLDAP($access, $pluginManager);
- $this->assertEquals($ldap->countUsersInGroup('gid', 'search'), 42);
- }
- public function testGidNumber2NameSuccess() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $userDN = 'cn=alice,cn=foo,dc=barfoo,dc=bar';
- $access->expects($this->once())
- ->method('searchGroups')
- ->willReturn([['dn' => ['cn=foo,dc=barfoo,dc=bar']]]);
- $access->expects($this->once())
- ->method('dn2groupname')
- ->with('cn=foo,dc=barfoo,dc=bar')
- ->willReturn('MyGroup');
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $group = $groupBackend->gidNumber2Name('3117', $userDN);
- $this->assertSame('MyGroup', $group);
- }
- public function testGidNumberID2NameNoGroup() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $userDN = 'cn=alice,cn=foo,dc=barfoo,dc=bar';
- $access->expects($this->once())
- ->method('searchGroups')
- ->willReturn([]);
- $access->expects($this->never())
- ->method('dn2groupname');
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $group = $groupBackend->gidNumber2Name('3117', $userDN);
- $this->assertSame(false, $group);
- }
- public function testGidNumberID2NameNoName() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $userDN = 'cn=alice,cn=foo,dc=barfoo,dc=bar';
- $access->expects($this->once())
- ->method('searchGroups')
- ->willReturn([['dn' => ['cn=foo,dc=barfoo,dc=bar']]]);
- $access->expects($this->once())
- ->method('dn2groupname')
- ->willReturn(false);
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $group = $groupBackend->gidNumber2Name('3117', $userDN);
- $this->assertSame(false, $group);
- }
- public function testGetEntryGidNumberValue() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $dn = 'cn=foobar,cn=foo,dc=barfoo,dc=bar';
- $attr = 'gidNumber';
- $access->expects($this->once())
- ->method('readAttribute')
- ->with($dn, $attr)
- ->willReturn(['3117']);
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $gid = $groupBackend->getGroupGidNumber($dn);
- $this->assertSame('3117', $gid);
- }
- public function testGetEntryGidNumberNoValue() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $dn = 'cn=foobar,cn=foo,dc=barfoo,dc=bar';
- $attr = 'gidNumber';
- $access->expects($this->once())
- ->method('readAttribute')
- ->with($dn, $attr)
- ->willReturn(false);
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $gid = $groupBackend->getGroupGidNumber($dn);
- $this->assertSame(false, $gid);
- }
- public function testPrimaryGroupID2NameSuccessCache() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $userDN = 'cn=alice,cn=foo,dc=barfoo,dc=bar';
- $gid = '3117';
- $groupDN = 'cn=foo,dc=barfoo,dc=bar';
- /** @var MockObject $connection */
- $connection = $access->connection;
- $connection->expects($this->once())
- ->method('getFromCache')
- ->with('primaryGroupIDtoName_' . $gid)
- ->willReturn('MyGroup');
- $access->expects($this->never())
- ->method('getSID');
- $access->expects($this->never())
- ->method('searchGroups');
- $access->expects($this->never())
- ->method('dn2groupname');
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $group = $groupBackend->primaryGroupID2Name($gid, $userDN);
- $this->assertSame('MyGroup', $group);
- }
- public function testPrimaryGroupID2NameSuccess() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $userDN = 'cn=alice,cn=foo,dc=barfoo,dc=bar';
- $access->expects($this->once())
- ->method('getSID')
- ->with($userDN)
- ->willReturn('S-1-5-21-249921958-728525901-1594176202');
- $access->expects($this->once())
- ->method('searchGroups')
- ->willReturn([['dn' => ['cn=foo,dc=barfoo,dc=bar']]]);
- $access->expects($this->once())
- ->method('dn2groupname')
- ->with('cn=foo,dc=barfoo,dc=bar')
- ->willReturn('MyGroup');
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $group = $groupBackend->primaryGroupID2Name('3117', $userDN);
- $this->assertSame('MyGroup', $group);
- }
- public function testPrimaryGroupID2NameNoSID() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $userDN = 'cn=alice,cn=foo,dc=barfoo,dc=bar';
- $access->expects($this->once())
- ->method('getSID')
- ->with($userDN)
- ->willReturn(false);
- $access->expects($this->never())
- ->method('searchGroups');
- $access->expects($this->never())
- ->method('dn2groupname');
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $group = $groupBackend->primaryGroupID2Name('3117', $userDN);
- $this->assertSame(false, $group);
- }
- public function testPrimaryGroupID2NameNoGroup() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $userDN = 'cn=alice,cn=foo,dc=barfoo,dc=bar';
- $access->expects($this->once())
- ->method('getSID')
- ->with($userDN)
- ->willReturn('S-1-5-21-249921958-728525901-1594176202');
- $access->expects($this->once())
- ->method('searchGroups')
- ->willReturn([]);
- $access->expects($this->never())
- ->method('dn2groupname');
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $group = $groupBackend->primaryGroupID2Name('3117', $userDN);
- $this->assertSame(false, $group);
- }
- public function testPrimaryGroupID2NameNoName() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $userDN = 'cn=alice,cn=foo,dc=barfoo,dc=bar';
- $access->expects($this->once())
- ->method('getSID')
- ->with($userDN)
- ->willReturn('S-1-5-21-249921958-728525901-1594176202');
- $access->expects($this->once())
- ->method('searchGroups')
- ->willReturn([['dn' => ['cn=foo,dc=barfoo,dc=bar']]]);
- $access->expects($this->once())
- ->method('dn2groupname')
- ->willReturn(false);
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $group = $groupBackend->primaryGroupID2Name('3117', $userDN);
- $this->assertSame(false, $group);
- }
- public function testGetEntryGroupIDValue() {
- //tests getEntryGroupID via getGroupPrimaryGroupID
- //which is basically identical to getUserPrimaryGroupIDs
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $dn = 'cn=foobar,cn=foo,dc=barfoo,dc=bar';
- $attr = 'primaryGroupToken';
- $access->expects($this->once())
- ->method('readAttribute')
- ->with($dn, $attr)
- ->willReturn(['3117']);
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $gid = $groupBackend->getGroupPrimaryGroupID($dn);
- $this->assertSame('3117', $gid);
- }
- public function testGetEntryGroupIDNoValue() {
- //tests getEntryGroupID via getGroupPrimaryGroupID
- //which is basically identical to getUserPrimaryGroupIDs
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $dn = 'cn=foobar,cn=foo,dc=barfoo,dc=bar';
- $attr = 'primaryGroupToken';
- $access->expects($this->once())
- ->method('readAttribute')
- ->with($dn, $attr)
- ->willReturn(false);
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $gid = $groupBackend->getGroupPrimaryGroupID($dn);
- $this->assertSame(false, $gid);
- }
- /**
- * tests whether Group Backend behaves correctly when cache with uid and gid
- * is hit
- */
- public function testInGroupHitsUidGidCache() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $uid = 'someUser';
- $gid = 'someGroup';
- $cacheKey = 'inGroup' . $uid . ':' . $gid;
- $access->connection->expects($this->once())
- ->method('getFromCache')
- ->with($cacheKey)
- ->willReturn(true);
- $access->expects($this->never())
- ->method('username2dn');
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $groupBackend->inGroup($uid, $gid);
- }
- public function groupWithMembersProvider() {
- return [
- [
- 'someGroup',
- 'cn=someGroup,ou=allTheGroups,ou=someDepartment,dc=someDomain,dc=someTld',
- [
- 'uid=oneUser,ou=someTeam,ou=someDepartment,dc=someDomain,dc=someTld',
- 'uid=someUser,ou=someTeam,ou=someDepartment,dc=someDomain,dc=someTld',
- 'uid=anotherUser,ou=someTeam,ou=someDepartment,dc=someDomain,dc=someTld',
- 'uid=differentUser,ou=someTeam,ou=someDepartment,dc=someDomain,dc=someTld',
- ],
- ],
- ];
- }
- /**
- * @dataProvider groupWithMembersProvider
- */
- public function testInGroupMember(string $gid, string $groupDn, array $memberDNs) {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $access->connection = $this->createMock(Connection::class);
- $uid = 'someUser';
- $userDn = $memberDNs[0];
- $access->connection->expects($this->any())
- ->method('__get')
- ->willReturnCallback(function ($name) {
- switch ($name) {
- case 'ldapGroupMemberAssocAttr':
- return 'member';
- case 'ldapDynamicGroupMemberURL':
- return '';
- case 'hasPrimaryGroups':
- case 'ldapNestedGroups':
- return 0;
- default:
- return 1;
- }
- });
- $access->connection->expects($this->any())
- ->method('getFromCache')
- ->willReturn(null);
- $access->expects($this->once())
- ->method('username2dn')
- ->with($uid)
- ->willReturn($userDn);
- $access->expects($this->once())
- ->method('groupname2dn')
- ->willReturn($groupDn);
- $access->expects($this->any())
- ->method('readAttribute')
- ->willReturn($memberDNs);
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $this->assertTrue($groupBackend->inGroup($uid, $gid));
- }
- /**
- * @dataProvider groupWithMembersProvider
- */
- public function testInGroupMemberNot(string $gid, string $groupDn, array $memberDNs) {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $access->connection = $this->createMock(Connection::class);
- $uid = 'unelatedUser';
- $userDn = 'uid=unrelatedUser,ou=unrelatedTeam,ou=unrelatedDepartment,dc=someDomain,dc=someTld';
- $access->connection->expects($this->any())
- ->method('__get')
- ->willReturnCallback(function ($name) {
- switch ($name) {
- case 'ldapGroupMemberAssocAttr':
- return 'member';
- case 'ldapDynamicGroupMemberURL':
- return '';
- case 'hasPrimaryGroups':
- case 'ldapNestedGroups':
- return 0;
- default:
- return 1;
- }
- });
- $access->connection->expects($this->any())
- ->method('getFromCache')
- ->willReturn(null);
- $access->expects($this->once())
- ->method('username2dn')
- ->with($uid)
- ->willReturn($userDn);
- $access->expects($this->once())
- ->method('groupname2dn')
- ->willReturn($groupDn);
- $access->expects($this->any())
- ->method('readAttribute')
- ->willReturn($memberDNs);
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $this->assertFalse($groupBackend->inGroup($uid, $gid));
- }
- /**
- * @dataProvider groupWithMembersProvider
- */
- public function testInGroupMemberUid(string $gid, string $groupDn, array $memberDNs) {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $memberUids = [];
- $userRecords = [];
- foreach ($memberDNs as $dn) {
- $memberUids[] = ldap_explode_dn($dn, false)[0];
- $userRecords[] = ['dn' => [$dn]];
- }
- $access->connection = $this->createMock(Connection::class);
- $uid = 'someUser';
- $userDn = $memberDNs[0];
- $access->connection->expects($this->any())
- ->method('__get')
- ->willReturnCallback(function ($name) {
- switch ($name) {
- case 'ldapGroupMemberAssocAttr':
- return 'memberUid';
- case 'ldapDynamicGroupMemberURL':
- return '';
- case 'ldapLoginFilter':
- return 'uid=%uid';
- case 'hasPrimaryGroups':
- case 'ldapNestedGroups':
- return 0;
- default:
- return 1;
- }
- });
- $access->connection->expects($this->any())
- ->method('getFromCache')
- ->willReturn(null);
- $access->userManager->expects($this->any())
- ->method('getAttributes')
- ->willReturn(['uid', 'mail', 'displayname']);
- $access->expects($this->once())
- ->method('username2dn')
- ->with($uid)
- ->willReturn($userDn);
- $access->expects($this->once())
- ->method('groupname2dn')
- ->willReturn($groupDn);
- $access->expects($this->any())
- ->method('readAttribute')
- ->willReturn($memberUids);
- $access->expects($this->any())
- ->method('fetchListOfUsers')
- ->willReturn($userRecords);
- $access->expects($this->any())
- ->method('combineFilterWithOr')
- ->willReturn('(|(pseudo=filter)(filter=pseudo))');
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $this->assertTrue($groupBackend->inGroup($uid, $gid));
- }
- public function testGetGroupsWithOffset() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $access->expects($this->once())
- ->method('nextcloudGroupNames')
- ->willReturn(['group1', 'group2']);
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $groups = $groupBackend->getGroups('', 2, 2);
- $this->assertSame(2, count($groups));
- }
- /**
- * tests that a user listing is complete, if all its members have the group
- * as their primary.
- */
- public function testUsersInGroupPrimaryMembersOnly() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $access->connection->expects($this->any())
- ->method('getFromCache')
- ->willReturn(null);
- $access->expects($this->any())
- ->method('readAttribute')
- ->willReturnCallback(function ($dn, $attr) {
- if ($attr === 'primaryGroupToken') {
- return [1337];
- } elseif ($attr === 'gidNumber') {
- return [4211];
- }
- return [];
- });
- $access->expects($this->any())
- ->method('groupname2dn')
- ->willReturn('cn=foobar,dc=foo,dc=bar');
- $access->expects($this->exactly(2))
- ->method('nextcloudUserNames')
- ->willReturnOnConsecutiveCalls(['lisa', 'bart', 'kira', 'brad'], ['walle', 'dino', 'xenia']);
- $access->expects($this->any())
- ->method('isDNPartOfBase')
- ->willReturn(true);
- $access->expects($this->any())
- ->method('combineFilterWithAnd')
- ->willReturn('pseudo=filter');
- $access->userManager->expects($this->any())
- ->method('getAttributes')
- ->willReturn(['displayName', 'mail']);
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $users = $groupBackend->usersInGroup('foobar');
- $this->assertSame(7, count($users));
- }
- /**
- * tests that a user listing is complete, if all its members have the group
- * as their primary.
- */
- public function testUsersInGroupPrimaryAndUnixMembers() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $access->connection->expects($this->any())
- ->method('getFromCache')
- ->willReturn(null);
- $access->expects($this->any())
- ->method('readAttribute')
- ->willReturnCallback(function ($dn, $attr) {
- if ($attr === 'primaryGroupToken') {
- return [1337];
- }
- return [];
- });
- $access->expects($this->any())
- ->method('groupname2dn')
- ->willReturn('cn=foobar,dc=foo,dc=bar');
- $access->expects($this->once())
- ->method('nextcloudUserNames')
- ->willReturn(['lisa', 'bart', 'kira', 'brad']);
- $access->expects($this->any())
- ->method('isDNPartOfBase')
- ->willReturn(true);
- $access->expects($this->any())
- ->method('combineFilterWithAnd')
- ->willReturn('pseudo=filter');
- $access->userManager->expects($this->any())
- ->method('getAttributes')
- ->willReturn(['displayName', 'mail']);
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $users = $groupBackend->usersInGroup('foobar');
- $this->assertSame(4, count($users));
- }
- /**
- * tests that a user counting is complete, if all its members have the group
- * as their primary.
- */
- public function testCountUsersInGroupPrimaryMembersOnly() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $access->connection->expects($this->any())
- ->method('getFromCache')
- ->willReturn(null);
- $access->expects($this->any())
- ->method('readAttribute')
- ->willReturnCallback(function ($dn, $attr) {
- if ($attr === 'primaryGroupToken') {
- return [1337];
- }
- return [];
- });
- $access->expects($this->any())
- ->method('groupname2dn')
- ->willReturn('cn=foobar,dc=foo,dc=bar');
- $access->expects($this->once())
- ->method('countUsers')
- ->willReturn(4);
- $access->expects($this->any())
- ->method('isDNPartOfBase')
- ->willReturn(true);
- $access->userManager->expects($this->any())
- ->method('getAttributes')
- ->willReturn(['displayName', 'mail']);
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $users = $groupBackend->countUsersInGroup('foobar');
- $this->assertSame(4, $users);
- }
- public function testGetUserGroupsMemberOf() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $this->enableGroups($access);
- $dn = 'cn=userX,dc=foobar';
- $access->connection->hasPrimaryGroups = false;
- $access->connection->hasGidNumber = false;
- $access->expects($this->any())
- ->method('username2dn')
- ->willReturn($dn);
- $access->expects($this->exactly(5))
- ->method('readAttribute')
- ->will($this->onConsecutiveCalls(['cn=groupA,dc=foobar', 'cn=groupB,dc=foobar'], [], [], [], []));
- $access->expects($this->any())
- ->method('dn2groupname')
- ->willReturnArgument(0);
- $access->expects($this->any())
- ->method('groupname2dn')
- ->willReturnArgument(0);
- $access->expects($this->any())
- ->method('isDNPartOfBase')
- ->willReturn(true);
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $groups = $groupBackend->getUserGroups('userX');
- $this->assertSame(2, count($groups));
- }
- public function testGetUserGroupsMemberOfDisabled() {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $access->connection = $this->createMock(Connection::class);
- $access->connection->expects($this->any())
- ->method('__get')
- ->willReturnCallback(function ($name) {
- if ($name === 'useMemberOfToDetectMembership') {
- return 0;
- } elseif ($name === 'ldapDynamicGroupMemberURL') {
- return '';
- }
- return 1;
- });
- $dn = 'cn=userX,dc=foobar';
- $access->connection->hasPrimaryGroups = false;
- $access->connection->hasGidNumber = false;
- $access->expects($this->once())
- ->method('username2dn')
- ->willReturn($dn);
- $access->expects($this->never())
- ->method('readAttribute')
- ->with($dn, 'memberOf');
- $access->expects($this->once())
- ->method('nextcloudGroupNames')
- ->willReturn([]);
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $groupBackend->getUserGroups('userX');
- }
- public function nestedGroupsProvider(): array {
- return [
- [true],
- [false],
- ];
- }
- /**
- * @dataProvider nestedGroupsProvider
- */
- public function testGetGroupsByMember(bool $nestedGroups) {
- $access = $this->getAccessMock();
- $pluginManager = $this->getPluginManagerMock();
- $groupFilter = '(&(objectclass=nextcloudGroup)(nextcloudEnabled=TRUE))';
- $access->connection = $this->createMock(Connection::class);
- $access->connection->expects($this->any())
- ->method('__get')
- ->willReturnCallback(function ($name) use ($nestedGroups, $groupFilter) {
- switch ($name) {
- case 'useMemberOfToDetectMembership':
- return 0;
- case 'ldapDynamicGroupMemberURL':
- return '';
- case 'ldapNestedGroups':
- return $nestedGroups;
- case 'ldapGroupMemberAssocAttr':
- return 'member';
- case 'ldapGroupFilter':
- return $groupFilter;
- case 'ldapBaseGroups':
- return [];
- }
- return 1;
- });
- $dn = 'cn=userX,dc=foobar';
- $access->connection->hasPrimaryGroups = false;
- $access->connection->hasGidNumber = false;
- $access->expects($this->exactly(2))
- ->method('username2dn')
- ->willReturn($dn);
- $access->expects($this->any())
- ->method('readAttribute')
- ->willReturn([]);
- $access->expects($this->any())
- ->method('combineFilterWithAnd')
- ->willReturnCallback(function (array $filterParts) {
- // ⚠ returns a pseudo-filter only, not real LDAP Filter syntax
- return implode('&', $filterParts);
- });
- $group1 = [
- 'cn' => 'group1',
- 'dn' => ['cn=group1,ou=groups,dc=domain,dc=com'],
- ];
- $group2 = [
- 'cn' => 'group2',
- 'dn' => ['cn=group2,ou=groups,dc=domain,dc=com'],
- ];
- $access->expects($this->once())
- ->method('nextcloudGroupNames')
- ->with([$group1, $group2])
- ->willReturn(['group1', 'group2']);
- $access->expects($nestedGroups ? $this->atLeastOnce() : $this->once())
- ->method('fetchListOfGroups')
- ->willReturnCallback(function ($filter, $attr, $limit, $offset) use ($nestedGroups, $groupFilter, $group1, $group2) {
- static $firstRun = true;
- if (!$nestedGroups) {
- // When nested groups are enabled, groups cannot be filtered early as it would
- // exclude intermediate groups. But we can, and should, when working with flat groups.
- $this->assertTrue(strpos($filter, $groupFilter) !== false);
- }
- if ($firstRun) {
- $firstRun = false;
- return [$group1, $group2];
- }
- return [];
- });
- $access->expects($this->any())
- ->method('dn2groupname')
- ->willReturnCallback(function (string $dn) {
- return ldap_explode_dn($dn, 1)[0];
- });
- $access->expects($this->any())
- ->method('groupname2dn')
- ->willReturnCallback(function (string $gid) use ($group1, $group2) {
- if ($gid === $group1['cn']) {
- return $group1['dn'][0];
- }
- if ($gid === $group2['cn']) {
- return $group2['dn'][0];
- }
- });
- $access->expects($this->any())
- ->method('isDNPartOfBase')
- ->willReturn(true);
- $groupBackend = new GroupLDAP($access, $pluginManager);
- $groups = $groupBackend->getUserGroups('userX');
- $this->assertEquals(['group1', 'group2'], $groups);
- $groupsAgain = $groupBackend->getUserGroups('userX');
- $this->assertEquals(['group1', 'group2'], $groupsAgain);
- }
- public function testCreateGroupWithPlugin() {
- /** @var GroupPluginManager|MockObject $pluginManager */
- $pluginManager = $this->getMockBuilder(GroupPluginManager::class)
- ->setMethods(['implementsActions', 'createGroup'])
- ->getMock();
- $pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(GroupInterface::CREATE_GROUP)
- ->willReturn(true);
- $pluginManager->expects($this->once())
- ->method('createGroup')
- ->with('gid')
- ->willReturn('result');
- $access = $this->getAccessMock();
- $access->connection = $this->createMock(Connection::class);
- $ldap = new GroupLDAP($access, $pluginManager);
- $this->assertEquals($ldap->createGroup('gid'), true);
- }
- public function testCreateGroupFailing() {
- $this->expectException(\Exception::class);
- /** @var GroupPluginManager|MockObject $pluginManager */
- $pluginManager = $this->getMockBuilder(GroupPluginManager::class)
- ->setMethods(['implementsActions', 'createGroup'])
- ->getMock();
- $pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(GroupInterface::CREATE_GROUP)
- ->willReturn(false);
- $access = $this->getAccessMock();
- $access->connection = $this->createMock(Connection::class);
- $ldap = new GroupLDAP($access, $pluginManager);
- $ldap->createGroup('gid');
- }
- public function testDeleteGroupWithPlugin() {
- /** @var GroupPluginManager|MockObject $pluginManager */
- $pluginManager = $this->getMockBuilder(GroupPluginManager::class)
- ->setMethods(['implementsActions', 'deleteGroup'])
- ->getMock();
- $pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(GroupInterface::DELETE_GROUP)
- ->willReturn(true);
- $pluginManager->expects($this->once())
- ->method('deleteGroup')
- ->with('gid')
- ->willReturn(true);
- $mapper = $this->getMockBuilder(GroupMapping::class)
- ->setMethods(['unmap'])
- ->disableOriginalConstructor()
- ->getMock();
- $access = $this->getAccessMock();
- $access->expects($this->any())
- ->method('getGroupMapper')
- ->willReturn($mapper);
- $access->connection = $this->createMock(Connection::class);
- $ldap = new GroupLDAP($access, $pluginManager);
- $this->assertTrue($ldap->deleteGroup('gid'));
- }
- public function testDeleteGroupFailing() {
- $this->expectException(\Exception::class);
- /** @var GroupPluginManager|MockObject $pluginManager */
- $pluginManager = $this->getMockBuilder(GroupPluginManager::class)
- ->setMethods(['implementsActions', 'deleteGroup'])
- ->getMock();
- $pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(GroupInterface::DELETE_GROUP)
- ->willReturn(false);
- $access = $this->getAccessMock();
- $access->connection = $this->createMock(Connection::class);
- $ldap = new GroupLDAP($access, $pluginManager);
- $ldap->deleteGroup('gid');
- }
- public function testAddToGroupWithPlugin() {
- /** @var GroupPluginManager|MockObject $pluginManager */
- $pluginManager = $this->getMockBuilder(GroupPluginManager::class)
- ->setMethods(['implementsActions', 'addToGroup'])
- ->getMock();
- $pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(GroupInterface::ADD_TO_GROUP)
- ->willReturn(true);
- $pluginManager->expects($this->once())
- ->method('addToGroup')
- ->with('uid', 'gid')
- ->willReturn('result');
- $access = $this->getAccessMock();
- $access->connection = $this->createMock(Connection::class);
- $ldap = new GroupLDAP($access, $pluginManager);
- $this->assertEquals($ldap->addToGroup('uid', 'gid'), 'result');
- }
- public function testAddToGroupFailing() {
- $this->expectException(\Exception::class);
- /** @var GroupPluginManager|MockObject $pluginManager */
- $pluginManager = $this->getMockBuilder(GroupPluginManager::class)
- ->setMethods(['implementsActions', 'addToGroup'])
- ->getMock();
- $pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(GroupInterface::ADD_TO_GROUP)
- ->willReturn(false);
- $access = $this->getAccessMock();
- $access->connection = $this->createMock(Connection::class);
- $ldap = new GroupLDAP($access, $pluginManager);
- $ldap->addToGroup('uid', 'gid');
- }
- public function testRemoveFromGroupWithPlugin() {
- /** @var GroupPluginManager|MockObject $pluginManager */
- $pluginManager = $this->getMockBuilder(GroupPluginManager::class)
- ->setMethods(['implementsActions', 'removeFromGroup'])
- ->getMock();
- $pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(GroupInterface::REMOVE_FROM_GROUP)
- ->willReturn(true);
- $pluginManager->expects($this->once())
- ->method('removeFromGroup')
- ->with('uid', 'gid')
- ->willReturn('result');
- $access = $this->getAccessMock();
- $access->connection = $this->createMock(Connection::class);
- $ldap = new GroupLDAP($access, $pluginManager);
- $this->assertEquals($ldap->removeFromGroup('uid', 'gid'), 'result');
- }
- public function testRemoveFromGroupFailing() {
- $this->expectException(\Exception::class);
- /** @var GroupPluginManager|MockObject $pluginManager */
- $pluginManager = $this->getMockBuilder(GroupPluginManager::class)
- ->setMethods(['implementsActions', 'removeFromGroup'])
- ->getMock();
- $pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(GroupInterface::REMOVE_FROM_GROUP)
- ->willReturn(false);
- $access = $this->getAccessMock();
- $access->connection = $this->createMock(Connection::class);
- $ldap = new GroupLDAP($access, $pluginManager);
- $ldap->removeFromGroup('uid', 'gid');
- }
- public function testGetGroupDetailsWithPlugin() {
- /** @var GroupPluginManager|MockObject $pluginManager */
- $pluginManager = $this->getMockBuilder(GroupPluginManager::class)
- ->setMethods(['implementsActions', 'getGroupDetails'])
- ->getMock();
- $pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(GroupInterface::GROUP_DETAILS)
- ->willReturn(true);
- $pluginManager->expects($this->once())
- ->method('getGroupDetails')
- ->with('gid')
- ->willReturn('result');
- $access = $this->getAccessMock();
- $access->connection = $this->createMock(Connection::class);
- $ldap = new GroupLDAP($access, $pluginManager);
- $this->assertEquals($ldap->getGroupDetails('gid'), 'result');
- }
- public function testGetGroupDetailsFailing() {
- $this->expectException(\Exception::class);
- /** @var GroupPluginManager|MockObject $pluginManager */
- $pluginManager = $this->getMockBuilder(GroupPluginManager::class)
- ->setMethods(['implementsActions', 'getGroupDetails'])
- ->getMock();
- $pluginManager->expects($this->once())
- ->method('implementsActions')
- ->with(GroupInterface::GROUP_DETAILS)
- ->willReturn(false);
- $access = $this->getAccessMock();
- $access->connection = $this->createMock(Connection::class);
- $ldap = new GroupLDAP($access, $pluginManager);
- $ldap->getGroupDetails('gid');
- }
- public function groupMemberProvider() {
- $base = 'dc=species,dc=earth';
- $groups0 = [
- 'uid=3723,' . $base,
- 'uid=8372,' . $base,
- 'uid=8427,' . $base,
- 'uid=2333,' . $base,
- 'uid=4754,' . $base,
- ];
- $groups1 = [
- '3723',
- '8372',
- '8427',
- '2333',
- '4754',
- ];
- $groups2Nested = ['6642', '1424'];
- $expGroups2 = array_merge($groups1, $groups2Nested);
- return [
- [ #0 – test DNs
- 'cn=Birds,' . $base,
- $groups0,
- ['cn=Birds,' . $base => $groups0]
- ],
- [ #1 – test uids
- 'cn=Birds,' . $base,
- $groups1,
- ['cn=Birds,' . $base => $groups1]
- ],
- ];
- }
- /**
- * @param string $groupDN
- * @param string[] $expectedMembers
- * @param array $groupsInfo
- * @dataProvider groupMemberProvider
- */
- public function testGroupMembers($groupDN, $expectedMembers, $groupsInfo = null) {
- $access = $this->getAccessMock();
- $access->expects($this->any())
- ->method('readAttribute')
- ->willReturnCallback(function ($group) use ($groupDN, $expectedMembers, $groupsInfo) {
- if (isset($groupsInfo[$group])) {
- return $groupsInfo[$group];
- }
- return [];
- });
- $access->connection = $this->createMock(Connection::class);
- $access->connection->expects($this->any())
- ->method('__get')
- ->willReturnCallback(function ($name) {
- if ($name === 'ldapNestedGroups') {
- return 1;
- } elseif ($name === 'ldapGroupMemberAssocAttr') {
- return 'attr';
- }
- return null;
- });
- /** @var GroupPluginManager $pluginManager */
- $pluginManager = $this->createMock(GroupPluginManager::class);
- $ldap = new GroupLDAP($access, $pluginManager);
- $resultingMembers = $this->invokePrivate($ldap, '_groupMembers', [$groupDN]);
- $this->assertEqualsCanonicalizing($expectedMembers, $resultingMembers);
- }
- public function displayNameProvider() {
- return [
- ['Graphic Novelists', ['Graphic Novelists']],
- ['', false],
- ];
- }
- /**
- * @dataProvider displayNameProvider
- */
- public function testGetDisplayName(string $expected, $ldapResult) {
- $gid = 'graphic_novelists';
- $access = $this->getAccessMock();
- $access->expects($this->atLeastOnce())
- ->method('readAttribute')
- ->willReturn($ldapResult);
- $access->connection = $this->createMock(Connection::class);
- $access->connection->expects($this->any())
- ->method('__get')
- ->willReturnCallback(function ($name) {
- if ($name === 'ldapGroupMemberAssocAttr') {
- return 'member';
- } elseif ($name === 'ldapGroupFilter') {
- return 'objectclass=nextcloudGroup';
- } elseif ($name === 'ldapGroupDisplayName') {
- return 'cn';
- }
- return null;
- });
- $access->expects($this->any())
- ->method('groupname2dn')
- ->willReturn('fakedn');
- /** @var GroupPluginManager $pluginManager */
- $pluginManager = $this->createMock(GroupPluginManager::class);
- $ldap = new GroupLDAP($access, $pluginManager);
- $this->assertSame($expected, $ldap->getDisplayName($gid));
- }
- }
|