aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/tests/unit
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-02-20 18:52:23 +0100
committerJulius Härtl <jus@bitgrid.net>2020-03-20 10:43:56 +0100
commit0fa897fcfcfc404c3b8bb3d25a61328cb43949f2 (patch)
tree692c3c152fa30d90b5d83e90bf4027511839d943 /apps/dav/tests/unit
parent8edc824526570fcfbd0b5f48606015ba0ae2b81b (diff)
downloadnextcloud-server-0fa897fcfcfc404c3b8bb3d25a61328cb43949f2.tar.gz
nextcloud-server-0fa897fcfcfc404c3b8bb3d25a61328cb43949f2.zip
Limit enumeration in principal search
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/dav/tests/unit')
-rw-r--r--apps/dav/tests/unit/Connector/Sabre/PrincipalTest.php122
1 files changed, 122 insertions, 0 deletions
diff --git a/apps/dav/tests/unit/Connector/Sabre/PrincipalTest.php b/apps/dav/tests/unit/Connector/Sabre/PrincipalTest.php
index 5198b031859..6228ff275f1 100644
--- a/apps/dav/tests/unit/Connector/Sabre/PrincipalTest.php
+++ b/apps/dav/tests/unit/Connector/Sabre/PrincipalTest.php
@@ -624,6 +624,128 @@ class PrincipalTest extends TestCase {
['{http://sabredav.org/ns}email-address' => 'user2@foo.bar']));
}
+ public function testSearchPrincipalWithEnumerationLimitedDisplayname() {
+ $this->shareManager->expects($this->at(0))
+ ->method('shareAPIEnabled')
+ ->will($this->returnValue(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')
+ ->will($this->returnValue(false));
+
+ $user2 = $this->createMock(IUser::class);
+ $user2->method('getUID')->will($this->returnValue('user2'));
+ $user2->method('getDisplayName')->will($this->returnValue('User 2'));
+ $user2->method('getEMailAddress')->will($this->returnValue('user2@foo.bar'));
+ $user3 = $this->createMock(IUser::class);
+ $user3->method('getUID')->will($this->returnValue('user3'));
+ $user3->method('getDisplayName')->will($this->returnValue('User 22'));
+ $user3->method('getEMailAddress')->will($this->returnValue('user2@foo.bar123'));
+ $user4 = $this->createMock(IUser::class);
+ $user4->method('getUID')->will($this->returnValue('user4'));
+ $user4->method('getDisplayName')->will($this->returnValue('User 222'));
+ $user4->method('getEMailAddress')->will($this->returnValue('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')
+ ->will($this->returnValue(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')
+ ->will($this->returnValue(false));
+
+ $user2 = $this->createMock(IUser::class);
+ $user2->method('getUID')->will($this->returnValue('user2'));
+ $user2->method('getDisplayName')->will($this->returnValue('User 2'));
+ $user2->method('getEMailAddress')->will($this->returnValue('user2@foo.bar'));
+ $user3 = $this->createMock(IUser::class);
+ $user3->method('getUID')->will($this->returnValue('user3'));
+ $user3->method('getDisplayName')->will($this->returnValue('User 22'));
+ $user3->method('getEMailAddress')->will($this->returnValue('user2@foo.bar123'));
+ $user4 = $this->createMock(IUser::class);
+ $user4->method('getUID')->will($this->returnValue('user4'));
+ $user4->method('getDisplayName')->will($this->returnValue('User 222'));
+ $user4->method('getEMailAddress')->will($this->returnValue('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')