123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- * @copyright Copyright (c) 2018, Georg Ehrke
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Georg Ehrke <oc.list@georgehrke.com>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Julius Härtl <jus@bitgrid.net>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- *
- * @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\DAV\Tests\unit\Connector\Sabre;
- use OC\User\User;
- use OCA\DAV\CalDAV\Proxy\Proxy;
- use OCA\DAV\CalDAV\Proxy\ProxyMapper;
- use OCP\App\IAppManager;
- use OCP\IConfig;
- use OCP\IGroup;
- use OCP\IGroupManager;
- use OCP\IUser;
- use OCP\IUserManager;
- use OCP\IUserSession;
- use OCP\Share\IManager;
- use Sabre\DAV\PropPatch;
- use Test\TestCase;
- class PrincipalTest extends TestCase {
- /** @var IUserManager | \PHPUnit_Framework_MockObject_MockObject */
- private $userManager;
- /** @var \OCA\DAV\Connector\Sabre\Principal */
- private $connector;
- /** @var IGroupManager | \PHPUnit_Framework_MockObject_MockObject */
- private $groupManager;
- /** @var IManager | \PHPUnit_Framework_MockObject_MockObject */
- private $shareManager;
- /** @var IUserSession | \PHPUnit_Framework_MockObject_MockObject */
- private $userSession;
- /** @var IAppManager | \PHPUnit_Framework_MockObject_MockObject */
- private $appManager;
- /** @var ProxyMapper | \PHPUnit_Framework_MockObject_MockObject */
- private $proxyMapper;
- /** @var IConfig | \PHPUnit_Framework_MockObject_MockObject */
- private $config;
- protected function setUp(): void {
- $this->userManager = $this->createMock(IUserManager::class);
- $this->groupManager = $this->createMock(IGroupManager::class);
- $this->shareManager = $this->createMock(IManager::class);
- $this->userSession = $this->createMock(IUserSession::class);
- $this->appManager = $this->createMock(IAppManager::class);
- $this->proxyMapper = $this->createMock(ProxyMapper::class);
- $this->config = $this->createMock(IConfig::class);
- $this->connector = new \OCA\DAV\Connector\Sabre\Principal(
- $this->userManager,
- $this->groupManager,
- $this->shareManager,
- $this->userSession,
- $this->appManager,
- $this->proxyMapper,
- $this->config
- );
- parent::setUp();
- }
- public function testGetPrincipalsByPrefixWithoutPrefix() {
- $response = $this->connector->getPrincipalsByPrefix('');
- $this->assertSame([], $response);
- }
- public function testGetPrincipalsByPrefixWithUsers() {
- $fooUser = $this->createMock(User::class);
- $fooUser
- ->expects($this->exactly(1))
- ->method('getUID')
- ->willReturn('foo');
- $fooUser
- ->expects($this->exactly(1))
- ->method('getDisplayName')
- ->willReturn('Dr. Foo-Bar');
- $fooUser
- ->expects($this->exactly(1))
- ->method('getEMailAddress')
- ->willReturn('');
- $barUser = $this->createMock(User::class);
- $barUser
- ->expects($this->exactly(1))
- ->method('getUID')
- ->willReturn('bar');
- $barUser
- ->expects($this->exactly(1))
- ->method('getEMailAddress')
- ->willReturn('bar@nextcloud.com');
- $this->userManager
- ->expects($this->once())
- ->method('search')
- ->with('')
- ->willReturn([$fooUser, $barUser]);
- $expectedResponse = [
- 0 => [
- 'uri' => 'principals/users/foo',
- '{DAV:}displayname' => 'Dr. Foo-Bar',
- '{urn:ietf:params:xml:ns:caldav}calendar-user-type' => 'INDIVIDUAL',
- ],
- 1 => [
- 'uri' => 'principals/users/bar',
- '{DAV:}displayname' => 'bar',
- '{urn:ietf:params:xml:ns:caldav}calendar-user-type' => 'INDIVIDUAL',
- '{http://sabredav.org/ns}email-address' => 'bar@nextcloud.com',
- ]
- ];
- $response = $this->connector->getPrincipalsByPrefix('principals/users');
- $this->assertSame($expectedResponse, $response);
- }
- public function testGetPrincipalsByPrefixEmpty() {
- $this->userManager
- ->expects($this->once())
- ->method('search')
- ->with('')
- ->willReturn([]);
- $response = $this->connector->getPrincipalsByPrefix('principals/users');
- $this->assertSame([], $response);
- }
- public function testGetPrincipalsByPathWithoutMail() {
- $fooUser = $this->createMock(User::class);
- $fooUser
- ->expects($this->exactly(1))
- ->method('getUID')
- ->willReturn('foo');
- $this->userManager
- ->expects($this->once())
- ->method('get')
- ->with('foo')
- ->willReturn($fooUser);
- $expectedResponse = [
- 'uri' => 'principals/users/foo',
- '{DAV:}displayname' => 'foo',
- '{urn:ietf:params:xml:ns:caldav}calendar-user-type' => 'INDIVIDUAL',
- ];
- $response = $this->connector->getPrincipalByPath('principals/users/foo');
- $this->assertSame($expectedResponse, $response);
- }
- public function testGetPrincipalsByPathWithMail() {
- $fooUser = $this->createMock(User::class);
- $fooUser
- ->expects($this->exactly(1))
- ->method('getEMailAddress')
- ->willReturn('foo@nextcloud.com');
- $fooUser
- ->expects($this->exactly(1))
- ->method('getUID')
- ->willReturn('foo');
- $this->userManager
- ->expects($this->once())
- ->method('get')
- ->with('foo')
- ->willReturn($fooUser);
- $expectedResponse = [
- 'uri' => 'principals/users/foo',
- '{DAV:}displayname' => 'foo',
- '{urn:ietf:params:xml:ns:caldav}calendar-user-type' => 'INDIVIDUAL',
- '{http://sabredav.org/ns}email-address' => 'foo@nextcloud.com',
- ];
- $response = $this->connector->getPrincipalByPath('principals/users/foo');
- $this->assertSame($expectedResponse, $response);
- }
- public function testGetPrincipalsByPathEmpty() {
- $this->userManager
- ->expects($this->once())
- ->method('get')
- ->with('foo')
- ->willReturn(null);
- $response = $this->connector->getPrincipalByPath('principals/users/foo');
- $this->assertSame(null, $response);
- }
- public function testGetGroupMemberSet() {
- $response = $this->connector->getGroupMemberSet('principals/users/foo');
- $this->assertSame([], $response);
- }
- public function testGetGroupMemberSetEmpty() {
- $this->expectException(\Sabre\DAV\Exception::class);
- $this->expectExceptionMessage('Principal not found');
- $this->userManager
- ->expects($this->once())
- ->method('get')
- ->with('foo')
- ->willReturn(null);
- $this->connector->getGroupMemberSet('principals/users/foo/calendar-proxy-read');
- }
- public function testGetGroupMemberSetProxyRead() {
- $fooUser = $this->createMock(User::class);
- $fooUser
- ->expects($this->exactly(1))
- ->method('getUID')
- ->willReturn('foo');
- $this->userManager
- ->expects($this->once())
- ->method('get')
- ->with('foo')
- ->willReturn($fooUser);
- $proxy1 = new Proxy();
- $proxy1->setProxyId('proxyId1');
- $proxy1->setPermissions(1);
- $proxy2 = new Proxy();
- $proxy2->setProxyId('proxyId2');
- $proxy2->setPermissions(3);
- $proxy3 = new Proxy();
- $proxy3->setProxyId('proxyId3');
- $proxy3->setPermissions(3);
- $this->proxyMapper->expects($this->once())
- ->method('getProxiesOf')
- ->with('principals/users/foo')
- ->willReturn([$proxy1, $proxy2, $proxy3]);
- $this->assertEquals(['proxyId1'], $this->connector->getGroupMemberSet('principals/users/foo/calendar-proxy-read'));
- }
- public function testGetGroupMemberSetProxyWrite() {
- $fooUser = $this->createMock(User::class);
- $fooUser
- ->expects($this->exactly(1))
- ->method('getUID')
- ->willReturn('foo');
- $this->userManager
- ->expects($this->once())
- ->method('get')
- ->with('foo')
- ->willReturn($fooUser);
- $proxy1 = new Proxy();
- $proxy1->setProxyId('proxyId1');
- $proxy1->setPermissions(1);
- $proxy2 = new Proxy();
- $proxy2->setProxyId('proxyId2');
- $proxy2->setPermissions(3);
- $proxy3 = new Proxy();
- $proxy3->setProxyId('proxyId3');
- $proxy3->setPermissions(3);
- $this->proxyMapper->expects($this->once())
- ->method('getProxiesOf')
- ->with('principals/users/foo')
- ->willReturn([$proxy1, $proxy2, $proxy3]);
- $this->assertEquals(['proxyId2', 'proxyId3'], $this->connector->getGroupMemberSet('principals/users/foo/calendar-proxy-write'));
- }
- public function testGetGroupMembership() {
- $fooUser = $this->createMock(User::class);
- $group1 = $this->createMock(IGroup::class);
- $group1->expects($this->once())
- ->method('getGID')
- ->willReturn('group1');
- $group2 = $this->createMock(IGroup::class);
- $group2->expects($this->once())
- ->method('getGID')
- ->willReturn('foo/bar');
- $this->userManager
- ->expects($this->exactly(2))
- ->method('get')
- ->with('foo')
- ->willReturn($fooUser);
- $this->groupManager
- ->expects($this->once())
- ->method('getUserGroups')
- ->with($fooUser)
- ->willReturn([
- $group1,
- $group2,
- ]);
- $proxy1 = new Proxy();
- $proxy1->setOwnerId('proxyId1');
- $proxy1->setPermissions(1);
- $proxy2 = new Proxy();
- $proxy2->setOwnerId('proxyId2');
- $proxy2->setPermissions(3);
- $this->proxyMapper->expects($this->once())
- ->method('getProxiesFor')
- ->with('principals/users/foo')
- ->willReturn([$proxy1, $proxy2]);
- $expectedResponse = [
- 'principals/groups/group1',
- 'principals/groups/foo%2Fbar',
- 'proxyId1/calendar-proxy-read',
- 'proxyId2/calendar-proxy-write',
- ];
- $response = $this->connector->getGroupMembership('principals/users/foo');
- $this->assertSame($expectedResponse, $response);
- }
- public function testGetGroupMembershipEmpty() {
- $this->expectException(\Sabre\DAV\Exception::class);
- $this->expectExceptionMessage('Principal not found');
- $this->userManager
- ->expects($this->once())
- ->method('get')
- ->with('foo')
- ->willReturn(null);
- $this->connector->getGroupMembership('principals/users/foo');
- }
- public function testSetGroupMembership() {
- $this->expectException(\Sabre\DAV\Exception::class);
- $this->expectExceptionMessage('Setting members of the group is not supported yet');
- $this->connector->setGroupMemberSet('principals/users/foo', ['foo']);
- }
- public function testSetGroupMembershipProxy() {
- $fooUser = $this->createMock(User::class);
- $fooUser
- ->expects($this->exactly(1))
- ->method('getUID')
- ->willReturn('foo');
- $barUser = $this->createMock(User::class);
- $barUser
- ->expects($this->exactly(1))
- ->method('getUID')
- ->willReturn('bar');
- $this->userManager
- ->expects($this->at(0))
- ->method('get')
- ->with('foo')
- ->willReturn($fooUser);
- $this->userManager
- ->expects($this->at(1))
- ->method('get')
- ->with('bar')
- ->willReturn($barUser);
- $this->proxyMapper->expects($this->at(0))
- ->method('getProxiesOf')
- ->with('principals/users/foo')
- ->willReturn([]);
- $this->proxyMapper->expects($this->at(1))
- ->method('insert')
- ->with($this->callback(function ($proxy) {
- /** @var Proxy $proxy */
- if ($proxy->getOwnerId() !== 'principals/users/foo') {
- return false;
- }
- if ($proxy->getProxyId() !== 'principals/users/bar') {
- return false;
- }
- if ($proxy->getPermissions() !== 3) {
- return false;
- }
- return true;
- }));
- $this->connector->setGroupMemberSet('principals/users/foo/calendar-proxy-write', ['principals/users/bar']);
- }
- public function testUpdatePrincipal() {
- $this->assertSame(0, $this->connector->updatePrincipal('foo', new PropPatch([])));
- }
- public function testSearchPrincipalsWithEmptySearchProperties() {
- $this->assertSame([], $this->connector->searchPrincipals('principals/users', []));
- }
- public function testSearchPrincipalsWithWrongPrefixPath() {
- $this->assertSame([], $this->connector->searchPrincipals('principals/groups',
- ['{http://sabredav.org/ns}email-address' => 'foo']));
- }
- /**
- * @dataProvider searchPrincipalsDataProvider
- */
- public function testSearchPrincipals($sharingEnabled, $groupsOnly, $test, $result) {
- $this->shareManager->expects($this->once())
- ->method('shareAPIEnabled')
- ->willReturn($sharingEnabled);
- if ($sharingEnabled) {
- $this->shareManager->expects($this->once())
- ->method('allowEnumeration')
- ->willReturn(true);
- $this->shareManager->expects($this->once())
- ->method('shareWithGroupMembersOnly')
- ->willReturn($groupsOnly);
- if ($groupsOnly) {
- $user = $this->createMock(IUser::class);
- $this->userSession->expects($this->once())
- ->method('getUser')
- ->willReturn($user);
- $this->groupManager->expects($this->at(0))
- ->method('getUserGroupIds')
- ->with($user)
- ->willReturn(['group1', 'group2', 'group5']);
- }
- } else {
- $this->config->expects($this->never())
- ->method('getAppValue');
- $this->shareManager->expects($this->never())
- ->method('shareWithGroupMembersOnly');
- $this->groupManager->expects($this->never())
- ->method($this->anything());
- }
- $user2 = $this->createMock(IUser::class);
- $user2->method('getUID')->willReturn('user2');
- $user3 = $this->createMock(IUser::class);
- $user3->method('getUID')->willReturn('user3');
- $user4 = $this->createMock(IUser::class);
- $user4->method('getUID')->willReturn('user4');
- if ($sharingEnabled) {
- $this->userManager->expects($this->at(0))
- ->method('getByEmail')
- ->with('user@example.com')
- ->willReturn([$user2, $user3]);
- $this->userManager->expects($this->at(1))
- ->method('searchDisplayName')
- ->with('User 12')
- ->willReturn([$user3, $user4]);
- } else {
- $this->userManager->expects($this->never())
- ->method('getByEmail');
- $this->userManager->expects($this->never())
- ->method('searchDisplayName');
- }
- if ($sharingEnabled && $groupsOnly) {
- $this->groupManager->expects($this->at(1))
- ->method('getUserGroupIds')
- ->with($user2)
- ->willReturn(['group1', 'group3']);
- $this->groupManager->expects($this->at(2))
- ->method('getUserGroupIds')
- ->with($user3)
- ->willReturn(['group3', 'group4']);
- $this->groupManager->expects($this->at(3))
- ->method('getUserGroupIds')
- ->with($user3)
- ->willReturn(['group3', 'group4']);
- $this->groupManager->expects($this->at(4))
- ->method('getUserGroupIds')
- ->with($user4)
- ->willReturn(['group4', 'group5']);
- }
- $this->assertEquals($result, $this->connector->searchPrincipals('principals/users',
- ['{http://sabredav.org/ns}email-address' => 'user@example.com',
- '{DAV:}displayname' => 'User 12'], $test));
- }
- public function searchPrincipalsDataProvider() {
- return [
- [true, false, 'allof', ['principals/users/user3']],
- [true, false, 'anyof', ['principals/users/user2', 'principals/users/user3', 'principals/users/user4']],
- [true, true, 'allof', []],
- [true, true, 'anyof', ['principals/users/user2', 'principals/users/user4']],
- [false, false, 'allof', []],
- [false, false, 'anyof', []],
- ];
- }
- public function testSearchPrincipalByCalendarUserAddressSet() {
- $this->shareManager->expects($this->exactly(2))
- ->method('shareAPIEnabled')
- ->willReturn(true);
- $this->shareManager->expects($this->exactly(2))
- ->method('allowEnumeration')
- ->willReturn(true);
- $this->shareManager->expects($this->exactly(2))
- ->method('shareWithGroupMembersOnly')
- ->willReturn(false);
- $user2 = $this->createMock(IUser::class);
- $user2->method('getUID')->willReturn('user2');
- $user3 = $this->createMock(IUser::class);
- $user3->method('getUID')->willReturn('user3');
- $this->userManager->expects($this->at(0))
- ->method('getByEmail')
- ->with('user@example.com')
- ->willReturn([$user2, $user3]);
- $this->assertEquals([
- 'principals/users/user2',
- 'principals/users/user3',
- ], $this->connector->searchPrincipals('principals/users',
- ['{urn:ietf:params:xml:ns:caldav}calendar-user-address-set' => 'user@example.com']));
- }
- public function testSearchPrincipalWithEnumerationDisabledDisplayname() {
- $this->shareManager->expects($this->once())
- ->method('shareAPIEnabled')
- ->willReturn(true);
- $this->shareManager->expects($this->once())
- ->method('allowEnumeration')
- ->willReturn(false);
- $this->shareManager->expects($this->once())
- ->method('shareWithGroupMembersOnly')
- ->willReturn(false);
- $user2 = $this->createMock(IUser::class);
- $user2->method('getUID')->willReturn('user2');
- $user2->method('getDisplayName')->willReturn('User 2');
- $user2->method('getEMailAddress')->willReturn('user2@foo.bar');
- $user3 = $this->createMock(IUser::class);
- $user3->method('getUID')->willReturn('user3');
- $user2->method('getDisplayName')->willReturn('User 22');
- $user2->method('getEMailAddress')->willReturn('user2@foo.bar123');
- $user4 = $this->createMock(IUser::class);
- $user4->method('getUID')->willReturn('user4');
- $user2->method('getDisplayName')->willReturn('User 222');
- $user2->method('getEMailAddress')->willReturn('user2@foo.bar456');
- $this->userManager->expects($this->at(0))
- ->method('searchDisplayName')
- ->with('User 2')
- ->willReturn([$user2, $user3, $user4]);
- $this->assertEquals(['principals/users/user2'], $this->connector->searchPrincipals('principals/users',
- ['{DAV:}displayname' => 'User 2']));
- }
- public function testSearchPrincipalWithEnumerationDisabledEmail() {
- $this->shareManager->expects($this->once())
- ->method('shareAPIEnabled')
- ->willReturn(true);
- $this->shareManager->expects($this->once())
- ->method('allowEnumeration')
- ->willReturn(false);
- $this->shareManager->expects($this->once())
- ->method('shareWithGroupMembersOnly')
- ->willReturn(false);
- $user2 = $this->createMock(IUser::class);
- $user2->method('getUID')->willReturn('user2');
- $user2->method('getDisplayName')->willReturn('User 2');
- $user2->method('getEMailAddress')->willReturn('user2@foo.bar');
- $user3 = $this->createMock(IUser::class);
- $user3->method('getUID')->willReturn('user3');
- $user2->method('getDisplayName')->willReturn('User 22');
- $user2->method('getEMailAddress')->willReturn('user2@foo.bar123');
- $user4 = $this->createMock(IUser::class);
- $user4->method('getUID')->willReturn('user4');
- $user2->method('getDisplayName')->willReturn('User 222');
- $user2->method('getEMailAddress')->willReturn('user2@foo.bar456');
- $this->userManager->expects($this->at(0))
- ->method('getByEmail')
- ->with('user2@foo.bar')
- ->willReturn([$user2, $user3, $user4]);
- $this->assertEquals(['principals/users/user2'], $this->connector->searchPrincipals('principals/users',
- ['{http://sabredav.org/ns}email-address' => 'user2@foo.bar']));
- }
- public function testSearchPrincipalWithEnumerationLimitedDisplayname() {
- $this->shareManager->expects($this->at(0))
- ->method('shareAPIEnabled')
- ->willReturn(true);
- $this->shareManager->expects($this->at(1))
- ->method('allowEnumeration')
- ->willReturn(true);
- $this->shareManager->expects($this->at(2))
- ->method('limitEnumerationToGroups')
- ->willReturn(true);
- $this->shareManager->expects($this->once())
- ->method('shareWithGroupMembersOnly')
- ->willReturn(false);
- $user2 = $this->createMock(IUser::class);
- $user2->method('getUID')->willReturn('user2');
- $user2->method('getDisplayName')->willReturn('User 2');
- $user2->method('getEMailAddress')->willReturn('user2@foo.bar');
- $user3 = $this->createMock(IUser::class);
- $user3->method('getUID')->willReturn('user3');
- $user3->method('getDisplayName')->willReturn('User 22');
- $user3->method('getEMailAddress')->willReturn('user2@foo.bar123');
- $user4 = $this->createMock(IUser::class);
- $user4->method('getUID')->willReturn('user4');
- $user4->method('getDisplayName')->willReturn('User 222');
- $user4->method('getEMailAddress')->willReturn('user2@foo.bar456');
- $this->userSession->expects($this->at(0))
- ->method('getUser')
- ->willReturn($user2);
- $this->groupManager->expects($this->at(0))
- ->method('getUserGroupIds')
- ->willReturn(['group1']);
- $this->groupManager->expects($this->at(1))
- ->method('getUserGroupIds')
- ->willReturn(['group1']);
- $this->groupManager->expects($this->at(2))
- ->method('getUserGroupIds')
- ->willReturn(['group1']);
- $this->groupManager->expects($this->at(3))
- ->method('getUserGroupIds')
- ->willReturn(['group2']);
- $this->userManager->expects($this->at(0))
- ->method('searchDisplayName')
- ->with('User')
- ->willReturn([$user2, $user3, $user4]);
- $this->assertEquals([
- 'principals/users/user2',
- 'principals/users/user3',
- ], $this->connector->searchPrincipals('principals/users',
- ['{DAV:}displayname' => 'User']));
- }
- public function testSearchPrincipalWithEnumerationLimitedMail() {
- $this->shareManager->expects($this->at(0))
- ->method('shareAPIEnabled')
- ->willReturn(true);
- $this->shareManager->expects($this->at(1))
- ->method('allowEnumeration')
- ->willReturn(true);
- $this->shareManager->expects($this->at(2))
- ->method('limitEnumerationToGroups')
- ->willReturn(true);
- $this->shareManager->expects($this->once())
- ->method('shareWithGroupMembersOnly')
- ->willReturn(false);
- $user2 = $this->createMock(IUser::class);
- $user2->method('getUID')->willReturn('user2');
- $user2->method('getDisplayName')->willReturn('User 2');
- $user2->method('getEMailAddress')->willReturn('user2@foo.bar');
- $user3 = $this->createMock(IUser::class);
- $user3->method('getUID')->willReturn('user3');
- $user3->method('getDisplayName')->willReturn('User 22');
- $user3->method('getEMailAddress')->willReturn('user2@foo.bar123');
- $user4 = $this->createMock(IUser::class);
- $user4->method('getUID')->willReturn('user4');
- $user4->method('getDisplayName')->willReturn('User 222');
- $user4->method('getEMailAddress')->willReturn('user2@foo.bar456');
- $this->userSession->expects($this->at(0))
- ->method('getUser')
- ->willReturn($user2);
- $this->groupManager->expects($this->at(0))
- ->method('getUserGroupIds')
- ->willReturn(['group1']);
- $this->groupManager->expects($this->at(1))
- ->method('getUserGroupIds')
- ->willReturn(['group1']);
- $this->groupManager->expects($this->at(2))
- ->method('getUserGroupIds')
- ->willReturn(['group1']);
- $this->groupManager->expects($this->at(3))
- ->method('getUserGroupIds')
- ->willReturn(['group2']);
- $this->userManager->expects($this->at(0))
- ->method('getByEmail')
- ->with('user')
- ->willReturn([$user2, $user3, $user4]);
- $this->assertEquals([
- 'principals/users/user2',
- 'principals/users/user3'
- ], $this->connector->searchPrincipals('principals/users',
- ['{http://sabredav.org/ns}email-address' => 'user']));
- }
- public function testFindByUriSharingApiDisabled() {
- $this->shareManager->expects($this->once())
- ->method('shareApiEnabled')
- ->willReturn(false);
- $this->assertEquals(null, $this->connector->findByUri('mailto:user@foo.com', 'principals/users'));
- }
- /**
- * @dataProvider findByUriWithGroupRestrictionDataProvider
- */
- public function testFindByUriWithGroupRestriction($uri, $email, $expects) {
- $this->shareManager->expects($this->once())
- ->method('shareApiEnabled')
- ->willReturn(true);
- $this->shareManager->expects($this->once())
- ->method('shareWithGroupMembersOnly')
- ->willReturn(true);
- $user = $this->createMock(IUser::class);
- $this->userSession->expects($this->once())
- ->method('getUser')
- ->willReturn($user);
- $this->groupManager->expects($this->at(0))
- ->method('getUserGroupIds')
- ->with($user)
- ->willReturn(['group1', 'group2']);
- $user2 = $this->createMock(IUser::class);
- $user2->method('getUID')->willReturn('user2');
- $user3 = $this->createMock(IUser::class);
- $user3->method('getUID')->willReturn('user3');
- $this->userManager->expects($this->once())
- ->method('getByEmail')
- ->with($email)
- ->willReturn([$email === 'user2@foo.bar' ? $user2 : $user3]);
- if ($email === 'user2@foo.bar') {
- $this->groupManager->expects($this->at(1))
- ->method('getUserGroupIds')
- ->with($user2)
- ->willReturn(['group1', 'group3']);
- } else {
- $this->groupManager->expects($this->at(1))
- ->method('getUserGroupIds')
- ->with($user3)
- ->willReturn(['group3', 'group3']);
- }
- $this->assertEquals($expects, $this->connector->findByUri($uri, 'principals/users'));
- }
- public function findByUriWithGroupRestrictionDataProvider() {
- return [
- ['mailto:user2@foo.bar', 'user2@foo.bar', 'principals/users/user2'],
- ['mailto:user3@foo.bar', 'user3@foo.bar', null],
- ];
- }
- /**
- * @dataProvider findByUriWithoutGroupRestrictionDataProvider
- */
- public function testFindByUriWithoutGroupRestriction($uri, $email, $expects) {
- $this->shareManager->expects($this->once())
- ->method('shareApiEnabled')
- ->willReturn(true);
- $this->shareManager->expects($this->once())
- ->method('shareWithGroupMembersOnly')
- ->willReturn(false);
- $user2 = $this->createMock(IUser::class);
- $user2->method('getUID')->willReturn('user2');
- $user3 = $this->createMock(IUser::class);
- $user3->method('getUID')->willReturn('user3');
- $this->userManager->expects($this->once())
- ->method('getByEmail')
- ->with($email)
- ->willReturn([$email === 'user2@foo.bar' ? $user2 : $user3]);
- $this->assertEquals($expects, $this->connector->findByUri($uri, 'principals/users'));
- }
- public function findByUriWithoutGroupRestrictionDataProvider() {
- return [
- ['mailto:user2@foo.bar', 'user2@foo.bar', 'principals/users/user2'],
- ['mailto:user3@foo.bar', 'user3@foo.bar', 'principals/users/user3'],
- ];
- }
- }
|