123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967 |
- <?php
- /**
- * @copyright 2017 Christoph Wurst <christoph@winzerhof-wurst.at>
- * @copyright 2017 Lukas Reschke <lukas@statuscode.ch>
- *
- * @author 2017 Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author 2017 Lukas Reschke <lukas@statuscode.ch>
- *
- * @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 Tests\Contacts\ContactsMenu;
- use OC\Contacts\ContactsMenu\ContactsStore;
- use OC\KnownUser\KnownUserService;
- use OC\Profile\ProfileManager;
- use OCP\Contacts\IManager;
- use OCP\IConfig;
- use OCP\IGroupManager;
- use OCP\IURLGenerator;
- use OCP\IUser;
- use OCP\IUserManager;
- use OCP\L10N\IFactory as IL10NFactory;
- use PHPUnit\Framework\MockObject\MockObject;
- use Test\TestCase;
- class ContactsStoreTest extends TestCase {
- private ContactsStore $contactsStore;
- /** @var IManager|MockObject */
- private $contactsManager;
- /** @var ProfileManager */
- private $profileManager;
- /** @var IUserManager|MockObject */
- private $userManager;
- /** @var IURLGenerator */
- private $urlGenerator;
- /** @var IGroupManager|MockObject */
- private $groupManager;
- /** @var IConfig|MockObject */
- private $config;
- /** @var KnownUserService|MockObject */
- private $knownUserService;
- /** @var IL10NFactory */
- private $l10nFactory;
- protected function setUp(): void {
- parent::setUp();
- $this->contactsManager = $this->createMock(IManager::class);
- $this->userManager = $this->createMock(IUserManager::class);
- $this->profileManager = $this->createMock(ProfileManager::class);
- $this->urlGenerator = $this->createMock(IURLGenerator::class);
- $this->groupManager = $this->createMock(IGroupManager::class);
- $this->config = $this->createMock(IConfig::class);
- $this->knownUserService = $this->createMock(KnownUserService::class);
- $this->l10nFactory = $this->createMock(IL10NFactory::class);
- $this->contactsStore = new ContactsStore(
- $this->contactsManager,
- $this->config,
- $this->profileManager,
- $this->userManager,
- $this->urlGenerator,
- $this->groupManager,
- $this->knownUserService,
- $this->l10nFactory
- );
- }
- public function testGetContactsWithoutFilter() {
- /** @var IUser|MockObject $user */
- $user = $this->createMock(IUser::class);
- $this->contactsManager->expects($this->once())
- ->method('search')
- ->with($this->equalTo(''), $this->equalTo(['FN', 'EMAIL']))
- ->willReturn([
- [
- 'UID' => 123,
- ],
- [
- 'UID' => 567,
- 'FN' => 'Darren Roner',
- 'EMAIL' => [
- 'darren@roner.au'
- ],
- ],
- ]);
- $user->expects($this->exactly(2))
- ->method('getUID')
- ->willReturn('user123');
- $entries = $this->contactsStore->getContacts($user, '');
- $this->assertCount(2, $entries);
- $this->assertEquals([
- 'darren@roner.au'
- ], $entries[1]->getEMailAddresses());
- }
- public function testGetContactsHidesOwnEntry() {
- /** @var IUser|MockObject $user */
- $user = $this->createMock(IUser::class);
- $this->contactsManager->expects($this->once())
- ->method('search')
- ->with($this->equalTo(''), $this->equalTo(['FN', 'EMAIL']))
- ->willReturn([
- [
- 'UID' => 'user123',
- ],
- [
- 'UID' => 567,
- 'FN' => 'Darren Roner',
- 'EMAIL' => [
- 'darren@roner.au'
- ],
- ],
- ]);
- $user->expects($this->exactly(2))
- ->method('getUID')
- ->willReturn('user123');
- $entries = $this->contactsStore->getContacts($user, '');
- $this->assertCount(1, $entries);
- }
- public function testGetContactsWithoutBinaryImage() {
- /** @var IUser|MockObject $user */
- $user = $this->createMock(IUser::class);
- $this->urlGenerator->expects($this->any())
- ->method('linkToRouteAbsolute')
- ->with('core.GuestAvatar.getAvatar', $this->anything())
- ->willReturn('https://urlToNcAvatar.test');
- $this->contactsManager->expects($this->once())
- ->method('search')
- ->with($this->equalTo(''), $this->equalTo(['FN', 'EMAIL']))
- ->willReturn([
- [
- 'UID' => 123,
- ],
- [
- 'UID' => 567,
- 'FN' => 'Darren Roner',
- 'EMAIL' => [
- 'darren@roner.au'
- ],
- 'PHOTO' => base64_encode('photophotophoto'),
- ],
- ]);
- $user->expects($this->exactly(2))
- ->method('getUID')
- ->willReturn('user123');
- $entries = $this->contactsStore->getContacts($user, '');
- $this->assertCount(2, $entries);
- $this->assertSame('https://urlToNcAvatar.test', $entries[1]->getAvatar());
- }
- public function testGetContactsWithoutAvatarURI() {
- /** @var IUser|MockObject $user */
- $user = $this->createMock(IUser::class);
- $this->contactsManager->expects($this->once())
- ->method('search')
- ->with($this->equalTo(''), $this->equalTo(['FN', 'EMAIL']))
- ->willReturn([
- [
- 'UID' => 123,
- ],
- [
- 'UID' => 567,
- 'FN' => 'Darren Roner',
- 'EMAIL' => [
- 'darren@roner.au'
- ],
- 'PHOTO' => 'VALUE=uri:https://photo',
- ],
- ]);
- $user->expects($this->exactly(2))
- ->method('getUID')
- ->willReturn('user123');
- $entries = $this->contactsStore->getContacts($user, '');
- $this->assertCount(2, $entries);
- $this->assertEquals('https://photo', $entries[1]->getAvatar());
- }
- public function testGetContactsWhenUserIsInExcludeGroups() {
- $this->config
- ->method('getAppValue')
- ->willReturnMap([
- ['core', 'shareapi_allow_share_dialog_user_enumeration', 'yes', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_to_group', 'no', 'no'],
- ['core', 'shareapi_restrict_user_enumeration_to_phone', 'no', 'no'],
- ['core', 'shareapi_exclude_groups', 'no', 'yes'],
- ['core', 'shareapi_only_share_with_group_members', 'no', 'yes'],
- ['core', 'shareapi_exclude_groups_list', '', '["group1", "group5", "group6"]'],
- ]);
- /** @var IUser|MockObject $currentUser */
- $currentUser = $this->createMock(IUser::class);
- $currentUser->expects($this->exactly(2))
- ->method('getUID')
- ->willReturn('user001');
- $this->groupManager->expects($this->once())
- ->method('getUserGroupIds')
- ->with($this->equalTo($currentUser))
- ->willReturn(['group1', 'group2', 'group3']);
- $this->contactsManager->expects($this->once())
- ->method('search')
- ->with($this->equalTo(''), $this->equalTo(['FN', 'EMAIL']))
- ->willReturn([
- [
- 'UID' => 'user123',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'user12345',
- 'isLocalSystemBook' => true
- ],
- ]);
- $entries = $this->contactsStore->getContacts($currentUser, '');
- $this->assertCount(0, $entries);
- }
- public function testGetContactsOnlyShareIfInTheSameGroup() {
- $this->config
- ->method('getAppValue')
- ->willReturnMap([
- ['core', 'shareapi_allow_share_dialog_user_enumeration', 'yes', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_to_group', 'no', 'no'],
- ['core', 'shareapi_restrict_user_enumeration_to_phone', 'no', 'no'],
- ['core', 'shareapi_exclude_groups', 'no', 'no'],
- ['core', 'shareapi_only_share_with_group_members', 'no', 'yes'],
- ]);
- /** @var IUser|MockObject $currentUser */
- $currentUser = $this->createMock(IUser::class);
- $currentUser->expects($this->exactly(2))
- ->method('getUID')
- ->willReturn('user001');
- $user1 = $this->createMock(IUser::class);
- $user2 = $this->createMock(IUser::class);
- $user3 = $this->createMock(IUser::class);
- $this->groupManager->expects($this->exactly(4))
- ->method('getUserGroupIds')
- ->withConsecutive(
- [$this->equalTo($currentUser)],
- [$this->equalTo($user1)],
- [$this->equalTo($user2)],
- [$this->equalTo($user3)]
- )
- ->willReturnOnConsecutiveCalls(
- ['group1', 'group2', 'group3'],
- ['group1'],
- ['group2', 'group3'],
- ['group8', 'group9']
- );
- $this->userManager->expects($this->exactly(3))
- ->method('get')
- ->withConsecutive(
- ['user1'],
- ['user2'],
- ['user3']
- )
- ->willReturnOnConsecutiveCalls($user1, $user2, $user3);
- $this->contactsManager->expects($this->once())
- ->method('search')
- ->with($this->equalTo(''), $this->equalTo(['FN', 'EMAIL']))
- ->willReturn([
- [
- 'UID' => 'user1',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'user2',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'user3',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'contact',
- ],
- ]);
- $entries = $this->contactsStore->getContacts($currentUser, '');
- $this->assertCount(3, $entries);
- $this->assertEquals('user1', $entries[0]->getProperty('UID'));
- $this->assertEquals('user2', $entries[1]->getProperty('UID'));
- $this->assertEquals('contact', $entries[2]->getProperty('UID'));
- }
- public function testGetContactsOnlyEnumerateIfInTheSameGroup() {
- $this->config
- ->method('getAppValue')
- ->willReturnMap([
- ['core', 'shareapi_allow_share_dialog_user_enumeration', 'yes', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_to_group', 'no', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_to_phone', 'no', 'no'],
- ['core', 'shareapi_exclude_groups', 'no', 'no'],
- ['core', 'shareapi_only_share_with_group_members', 'no', 'yes'],
- ]);
- /** @var IUser|MockObject $currentUser */
- $currentUser = $this->createMock(IUser::class);
- $currentUser->expects($this->exactly(2))
- ->method('getUID')
- ->willReturn('user001');
- $user1 = $this->createMock(IUser::class);
- $user2 = $this->createMock(IUser::class);
- $user3 = $this->createMock(IUser::class);
- $this->groupManager->expects($this->exactly(4))
- ->method('getUserGroupIds')
- ->withConsecutive(
- [$this->equalTo($currentUser)],
- [$this->equalTo($user1)],
- [$this->equalTo($user2)],
- [$this->equalTo($user3)]
- )
- ->willReturnOnConsecutiveCalls(
- ['group1', 'group2', 'group3'],
- ['group1'],
- ['group2', 'group3'],
- ['group8', 'group9']
- );
- $this->userManager->expects($this->exactly(3))
- ->method('get')
- ->withConsecutive(
- ['user1'],
- ['user2'],
- ['user3']
- )
- ->willReturn($user1, $user2, $user3);
- $this->contactsManager->expects($this->once())
- ->method('search')
- ->with($this->equalTo(''), $this->equalTo(['FN', 'EMAIL']))
- ->willReturn([
- [
- 'UID' => 'user1',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'user2',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'user3',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'contact',
- ],
- ]);
- $entries = $this->contactsStore->getContacts($currentUser, '');
- $this->assertCount(3, $entries);
- $this->assertEquals('user1', $entries[0]->getProperty('UID'));
- $this->assertEquals('user2', $entries[1]->getProperty('UID'));
- $this->assertEquals('contact', $entries[2]->getProperty('UID'));
- }
- public function testGetContactsOnlyEnumerateIfPhoneBookMatch() {
- $this->config
- ->method('getAppValue')
- ->willReturnMap([
- ['core', 'shareapi_allow_share_dialog_user_enumeration', 'yes', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_to_group', 'no', 'no'],
- ['core', 'shareapi_restrict_user_enumeration_to_phone', 'no', 'yes'],
- ['core', 'shareapi_exclude_groups', 'no', 'no'],
- ['core', 'shareapi_only_share_with_group_members', 'no', 'no'],
- ]);
- /** @var IUser|MockObject $currentUser */
- $currentUser = $this->createMock(IUser::class);
- $currentUser->expects($this->exactly(2))
- ->method('getUID')
- ->willReturn('user001');
- $this->groupManager->expects($this->once())
- ->method('getUserGroupIds')
- ->with($this->equalTo($currentUser))
- ->willReturn(['group1', 'group2', 'group3']);
- $this->knownUserService->method('isKnownToUser')
- ->willReturnMap([
- ['user001', 'user1', true],
- ['user001', 'user2', true],
- ['user001', 'user3', false],
- ]);
- $this->contactsManager->expects($this->once())
- ->method('search')
- ->with($this->equalTo(''), $this->equalTo(['FN', 'EMAIL']))
- ->willReturn([
- [
- 'UID' => 'user1',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'user2',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'user3',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'contact',
- ],
- ]);
- $entries = $this->contactsStore->getContacts($currentUser, '');
- $this->assertCount(3, $entries);
- $this->assertEquals('user1', $entries[0]->getProperty('UID'));
- $this->assertEquals('user2', $entries[1]->getProperty('UID'));
- $this->assertEquals('contact', $entries[2]->getProperty('UID'));
- }
- public function testGetContactsOnlyEnumerateIfPhoneBookMatchWithOwnGroupsOnly() {
- $this->config
- ->method('getAppValue')
- ->willReturnMap([
- ['core', 'shareapi_allow_share_dialog_user_enumeration', 'yes', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_to_group', 'no', 'no'],
- ['core', 'shareapi_restrict_user_enumeration_to_phone', 'no', 'yes'],
- ['core', 'shareapi_exclude_groups', 'no', 'no'],
- ['core', 'shareapi_only_share_with_group_members', 'no', 'yes'],
- ]);
- /** @var IUser|MockObject $currentUser */
- $currentUser = $this->createMock(IUser::class);
- $currentUser->expects($this->exactly(2))
- ->method('getUID')
- ->willReturn('user001');
- $user1 = $this->createMock(IUser::class);
- $user2 = $this->createMock(IUser::class);
- $user3 = $this->createMock(IUser::class);
- $this->groupManager->expects($this->exactly(4))
- ->method('getUserGroupIds')
- ->withConsecutive(
- [$this->equalTo($currentUser)],
- [$this->equalTo($user1)],
- [$this->equalTo($user2)],
- [$this->equalTo($user3)]
- )
- ->willReturnOnConsecutiveCalls(
- ['group1', 'group2', 'group3'],
- ['group1'],
- ['group2', 'group3'],
- ['group8', 'group9']
- );
- $this->userManager->expects($this->exactly(3))
- ->method('get')
- ->withConsecutive(
- ['user1'],
- ['user2'],
- ['user3']
- )
- ->willReturnOnConsecutiveCalls($user1, $user2, $user3);
- $this->knownUserService->method('isKnownToUser')
- ->willReturnMap([
- ['user001', 'user1', true],
- ['user001', 'user2', true],
- ['user001', 'user3', true],
- ]);
- $this->contactsManager->expects($this->once())
- ->method('search')
- ->with($this->equalTo(''), $this->equalTo(['FN', 'EMAIL']))
- ->willReturn([
- [
- 'UID' => 'user1',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'user2',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'user3',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'contact',
- ],
- ]);
- $entries = $this->contactsStore->getContacts($currentUser, '');
- $this->assertCount(3, $entries);
- $this->assertEquals('user1', $entries[0]->getProperty('UID'));
- $this->assertEquals('user2', $entries[1]->getProperty('UID'));
- $this->assertEquals('contact', $entries[2]->getProperty('UID'));
- }
- public function testGetContactsOnlyEnumerateIfPhoneBookOrSameGroup() {
- $this->config
- ->method('getAppValue')
- ->willReturnMap([
- ['core', 'shareapi_allow_share_dialog_user_enumeration', 'yes', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_to_group', 'no', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_to_phone', 'no', 'yes'],
- ['core', 'shareapi_exclude_groups', 'no', 'no'],
- ['core', 'shareapi_only_share_with_group_members', 'no', 'no'],
- ]);
- /** @var IUser|MockObject $currentUser */
- $currentUser = $this->createMock(IUser::class);
- $currentUser->expects($this->exactly(2))
- ->method('getUID')
- ->willReturn('user001');
- $user1 = $this->createMock(IUser::class);
- $this->groupManager->expects($this->exactly(2))
- ->method('getUserGroupIds')
- ->withConsecutive(
- [$this->equalTo($currentUser)],
- [$this->equalTo($user1)]
- )
- ->willReturnOnConsecutiveCalls(
- ['group1', 'group2', 'group3'],
- ['group1']
- );
- $this->userManager->expects($this->once())
- ->method('get')
- ->with('user1')
- ->willReturn($user1);
- $this->knownUserService->method('isKnownToUser')
- ->willReturnMap([
- ['user001', 'user1', false],
- ['user001', 'user2', true],
- ['user001', 'user3', true],
- ]);
- $this->contactsManager->expects($this->once())
- ->method('search')
- ->with($this->equalTo(''), $this->equalTo(['FN', 'EMAIL']))
- ->willReturn([
- [
- 'UID' => 'user1',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'user2',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'user3',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'contact',
- ],
- ]);
- $entries = $this->contactsStore->getContacts($currentUser, '');
- $this->assertCount(4, $entries);
- $this->assertEquals('user1', $entries[0]->getProperty('UID'));
- $this->assertEquals('user2', $entries[1]->getProperty('UID'));
- $this->assertEquals('user3', $entries[2]->getProperty('UID'));
- $this->assertEquals('contact', $entries[3]->getProperty('UID'));
- }
- public function testGetContactsOnlyEnumerateIfPhoneBookOrSameGroupInOwnGroupsOnly() {
- $this->config
- ->method('getAppValue')
- ->willReturnMap([
- ['core', 'shareapi_allow_share_dialog_user_enumeration', 'yes', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_to_group', 'no', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_to_phone', 'no', 'yes'],
- ['core', 'shareapi_exclude_groups', 'no', 'no'],
- ['core', 'shareapi_only_share_with_group_members', 'no', 'yes'],
- ]);
- /** @var IUser|MockObject $currentUser */
- $currentUser = $this->createMock(IUser::class);
- $currentUser->expects($this->exactly(2))
- ->method('getUID')
- ->willReturn('user001');
- $user1 = $this->createMock(IUser::class);
- $user2 = $this->createMock(IUser::class);
- $user3 = $this->createMock(IUser::class);
- $this->groupManager->expects($this->exactly(4))
- ->method('getUserGroupIds')
- ->withConsecutive(
- [$this->equalTo($currentUser)],
- [$this->equalTo($user1)],
- [$this->equalTo($user2)],
- [$this->equalTo($user3)]
- )
- ->willReturnOnConsecutiveCalls(
- ['group1', 'group2', 'group3'],
- ['group1'],
- ['group2', 'group3'],
- ['group8', 'group9']
- );
- $this->userManager->expects($this->exactly(3))
- ->method('get')
- ->withConsecutive(
- ['user1'],
- ['user2'],
- ['user3']
- )
- ->willReturnOnConsecutiveCalls($user1, $user2, $user3);
- $this->knownUserService->method('isKnownToUser')
- ->willReturnMap([
- ['user001', 'user1', false],
- ['user001', 'user2', true],
- ['user001', 'user3', true],
- ]);
- $this->contactsManager->expects($this->once())
- ->method('search')
- ->with($this->equalTo(''), $this->equalTo(['FN', 'EMAIL']))
- ->willReturn([
- [
- 'UID' => 'user1',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'user2',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'user3',
- 'isLocalSystemBook' => true
- ],
- [
- 'UID' => 'contact',
- ],
- ]);
- $entries = $this->contactsStore->getContacts($currentUser, '');
- $this->assertCount(3, $entries);
- $this->assertEquals('user1', $entries[0]->getProperty('UID'));
- $this->assertEquals('user2', $entries[1]->getProperty('UID'));
- $this->assertEquals('contact', $entries[2]->getProperty('UID'));
- }
- public function testGetContactsWithFilter() {
- $this->config
- ->method('getAppValue')
- ->willReturnMap([
- ['core', 'shareapi_allow_share_dialog_user_enumeration', 'yes', 'no'],
- ['core', 'shareapi_restrict_user_enumeration_full_match', 'yes', 'yes'],
- ]);
- /** @var IUser|MockObject $user */
- $user = $this->createMock(IUser::class);
- $this->contactsManager->expects($this->any())
- ->method('search')
- ->willReturn([
- [
- 'UID' => 'a567',
- 'FN' => 'Darren Roner',
- 'EMAIL' => [
- 'darren@roner.au',
- ],
- 'isLocalSystemBook' => true,
- ],
- [
- 'UID' => 'john',
- 'FN' => 'John Doe',
- 'EMAIL' => [
- 'john@example.com',
- ],
- 'isLocalSystemBook' => true,
- ],
- [
- 'FN' => 'Anne D',
- 'EMAIL' => [
- 'anne@example.com',
- ],
- 'isLocalSystemBook' => false,
- ],
- ]);
- $user->expects($this->any())
- ->method('getUID')
- ->willReturn('user123');
- // Complete match on UID should match
- $entry = $this->contactsStore->getContacts($user, 'a567');
- $this->assertSame(2, count($entry));
- $this->assertEquals([
- 'darren@roner.au'
- ], $entry[0]->getEMailAddresses());
- // Partial match on UID should not match
- $entry = $this->contactsStore->getContacts($user, 'a56');
- $this->assertSame(1, count($entry));
- $this->assertEquals([
- 'anne@example.com'
- ], $entry[0]->getEMailAddresses());
- // Complete match on email should match
- $entry = $this->contactsStore->getContacts($user, 'john@example.com');
- $this->assertSame(2, count($entry));
- $this->assertEquals([
- 'john@example.com'
- ], $entry[0]->getEMailAddresses());
- $this->assertEquals([
- 'anne@example.com'
- ], $entry[1]->getEMailAddresses());
- // Partial match on email should not match
- $entry = $this->contactsStore->getContacts($user, 'john@example.co');
- $this->assertSame(1, count($entry));
- $this->assertEquals([
- 'anne@example.com'
- ], $entry[0]->getEMailAddresses());
- // Match on FN should not match
- $entry = $this->contactsStore->getContacts($user, 'Darren Roner');
- $this->assertSame(1, count($entry));
- $this->assertEquals([
- 'anne@example.com'
- ], $entry[0]->getEMailAddresses());
- // Don't filter users in local addressbook
- $entry = $this->contactsStore->getContacts($user, 'Anne D');
- $this->assertSame(1, count($entry));
- $this->assertEquals([
- 'anne@example.com'
- ], $entry[0]->getEMailAddresses());
- }
- public function testGetContactsWithFilterWithoutFullMatch() {
- $this->config
- ->method('getAppValue')
- ->willReturnMap([
- ['core', 'shareapi_allow_share_dialog_user_enumeration', 'yes', 'no'],
- ['core', 'shareapi_restrict_user_enumeration_full_match', 'yes', 'no'],
- ]);
- /** @var IUser|MockObject $user */
- $user = $this->createMock(IUser::class);
- $this->contactsManager->expects($this->any())
- ->method('search')
- ->willReturn([
- [
- 'UID' => 'a567',
- 'FN' => 'Darren Roner',
- 'EMAIL' => [
- 'darren@roner.au',
- ],
- 'isLocalSystemBook' => true,
- ],
- [
- 'UID' => 'john',
- 'FN' => 'John Doe',
- 'EMAIL' => [
- 'john@example.com',
- ],
- 'isLocalSystemBook' => true,
- ],
- [
- 'FN' => 'Anne D',
- 'EMAIL' => [
- 'anne@example.com',
- ],
- 'isLocalSystemBook' => false,
- ],
- ]);
- $user->expects($this->any())
- ->method('getUID')
- ->willReturn('user123');
- // Complete match on UID should not match
- $entry = $this->contactsStore->getContacts($user, 'a567');
- $this->assertSame(1, count($entry));
- $this->assertEquals([
- 'anne@example.com'
- ], $entry[0]->getEMailAddresses());
- // Partial match on UID should not match
- $entry = $this->contactsStore->getContacts($user, 'a56');
- $this->assertSame(1, count($entry));
- $this->assertEquals([
- 'anne@example.com'
- ], $entry[0]->getEMailAddresses());
- // Complete match on email should not match
- $entry = $this->contactsStore->getContacts($user, 'john@example.com');
- $this->assertSame(1, count($entry));
- $this->assertEquals([
- 'anne@example.com'
- ], $entry[0]->getEMailAddresses());
- // Partial match on email should not match
- $entry = $this->contactsStore->getContacts($user, 'john@example.co');
- $this->assertSame(1, count($entry));
- $this->assertEquals([
- 'anne@example.com'
- ], $entry[0]->getEMailAddresses());
- // Match on FN should not match
- $entry = $this->contactsStore->getContacts($user, 'Darren Roner');
- $this->assertSame(1, count($entry));
- $this->assertEquals([
- 'anne@example.com'
- ], $entry[0]->getEMailAddresses());
- // Don't filter users in local addressbook
- $entry = $this->contactsStore->getContacts($user, 'Anne D');
- $this->assertSame(1, count($entry));
- $this->assertEquals([
- 'anne@example.com'
- ], $entry[0]->getEMailAddresses());
- }
- public function testFindOneUser() {
- $this->config
- ->method('getAppValue')
- ->willReturnMap([
- ['core', 'shareapi_allow_share_dialog_user_enumeration', 'yes', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_to_group', 'no', 'no'],
- ['core', 'shareapi_restrict_user_enumeration_to_phone', 'no', 'no'],
- ['core', 'shareapi_restrict_user_enumeration_full_match', 'yes', 'yes'],
- ['core', 'shareapi_exclude_groups', 'no', 'yes'],
- ['core', 'shareapi_exclude_groups_list', '', ''],
- ['core', 'shareapi_only_share_with_group_members', 'no', 'no'],
- ]);
- /** @var IUser|MockObject $user */
- $user = $this->createMock(IUser::class);
- $this->contactsManager->expects($this->once())
- ->method('search')
- ->with($this->equalTo('a567'), $this->equalTo(['UID']))
- ->willReturn([
- [
- 'UID' => 123,
- 'isLocalSystemBook' => false
- ],
- [
- 'UID' => 'a567',
- 'FN' => 'Darren Roner',
- 'EMAIL' => [
- 'darren@roner.au'
- ],
- 'isLocalSystemBook' => true
- ],
- ]);
- $user->expects($this->any())
- ->method('getUID')
- ->willReturn('user123');
- $entry = $this->contactsStore->findOne($user, 0, 'a567');
- $this->assertEquals([
- 'darren@roner.au'
- ], $entry->getEMailAddresses());
- }
- public function testFindOneEMail() {
- /** @var IUser|MockObject $user */
- $user = $this->createMock(IUser::class);
- $this->contactsManager->expects($this->once())
- ->method('search')
- ->with($this->equalTo('darren@roner.au'), $this->equalTo(['EMAIL']))
- ->willReturn([
- [
- 'UID' => 123,
- 'isLocalSystemBook' => false
- ],
- [
- 'UID' => 'a567',
- 'FN' => 'Darren Roner',
- 'EMAIL' => [
- 'darren@roner.au'
- ],
- 'isLocalSystemBook' => false
- ],
- ]);
- $user->expects($this->any())
- ->method('getUID')
- ->willReturn('user123');
- $entry = $this->contactsStore->findOne($user, 4, 'darren@roner.au');
- $this->assertEquals([
- 'darren@roner.au'
- ], $entry->getEMailAddresses());
- }
- public function testFindOneNotSupportedType() {
- /** @var IUser|MockObject $user */
- $user = $this->createMock(IUser::class);
- $entry = $this->contactsStore->findOne($user, 42, 'darren@roner.au');
- $this->assertEquals(null, $entry);
- }
- public function testFindOneNoMatches() {
- /** @var IUser|MockObject $user */
- $user = $this->createMock(IUser::class);
- $this->contactsManager->expects($this->once())
- ->method('search')
- ->with($this->equalTo('a567'), $this->equalTo(['UID']))
- ->willReturn([
- [
- 'UID' => 123,
- 'isLocalSystemBook' => false
- ],
- [
- 'UID' => 'a567',
- 'FN' => 'Darren Roner',
- 'EMAIL' => [
- 'darren@roner.au123'
- ],
- 'isLocalSystemBook' => false
- ],
- ]);
- $user->expects($this->never())
- ->method('getUID');
- $entry = $this->contactsStore->findOne($user, 0, 'a567');
- $this->assertEquals(null, $entry);
- }
- }
|