aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2024-12-16 08:36:25 +0100
committerJoas Schilling <coding@schilljs.com>2024-12-16 08:36:25 +0100
commitfddbc54003996c59302ed459c361118e99a52b6f (patch)
treeea90905fa656d785306df4d027d791d47469611e /apps
parent4fd84e47bf01958058f6e26b5655fa3671e15f67 (diff)
downloadnextcloud-server-fddbc54003996c59302ed459c361118e99a52b6f.tar.gz
nextcloud-server-fddbc54003996c59302ed459c361118e99a52b6f.zip
test: Adjust tests to proof exclusion of other principal permissionsbugfix/noid/allow-to-get-permissions-of-a-principal
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/dav/tests/unit/CalDAV/CalendarImplTest.php19
1 files changed, 13 insertions, 6 deletions
diff --git a/apps/dav/tests/unit/CalDAV/CalendarImplTest.php b/apps/dav/tests/unit/CalDAV/CalendarImplTest.php
index a0b2965f223..ee9b85fafe8 100644
--- a/apps/dav/tests/unit/CalDAV/CalendarImplTest.php
+++ b/apps/dav/tests/unit/CalDAV/CalendarImplTest.php
@@ -40,7 +40,8 @@ class CalendarImplTest extends \Test\TestCase {
'id' => 'fancy_id_123',
'{DAV:}displayname' => 'user readable name 123',
'{http://apple.com/ns/ical/}calendar-color' => '#AABBCC',
- 'uri' => '/this/is/a/uri'
+ 'uri' => '/this/is/a/uri',
+ 'principaluri' => 'principal/users/foobar'
];
$this->backend = $this->createMock(CalDavBackend::class);
@@ -76,7 +77,10 @@ class CalendarImplTest extends \Test\TestCase {
->method('getACL')
->with()
->willReturn([
- ['privilege' => '{DAV:}read']
+ ['privilege' => '{DAV:}read', 'principal' => 'principal/users/foobar'],
+ ['privilege' => '{DAV:}read', 'principal' => 'principal/users/other'],
+ ['privilege' => '{DAV:}write', 'principal' => 'principal/users/other'],
+ ['privilege' => '{DAV:}all', 'principal' => 'principal/users/other'],
]);
$this->assertEquals(1, $this->calendarImpl->getPermissions());
@@ -87,7 +91,9 @@ class CalendarImplTest extends \Test\TestCase {
->method('getACL')
->with()
->willReturn([
- ['privilege' => '{DAV:}write']
+ ['privilege' => '{DAV:}write', 'principal' => 'principal/users/foobar'],
+ ['privilege' => '{DAV:}read', 'principal' => 'principal/users/other'],
+ ['privilege' => '{DAV:}all', 'principal' => 'principal/users/other'],
]);
$this->assertEquals(6, $this->calendarImpl->getPermissions());
@@ -98,8 +104,9 @@ class CalendarImplTest extends \Test\TestCase {
->method('getACL')
->with()
->willReturn([
- ['privilege' => '{DAV:}read'],
- ['privilege' => '{DAV:}write']
+ ['privilege' => '{DAV:}write', 'principal' => 'principal/users/foobar'],
+ ['privilege' => '{DAV:}read', 'principal' => 'principal/users/foobar'],
+ ['privilege' => '{DAV:}all', 'principal' => 'principal/users/other'],
]);
$this->assertEquals(7, $this->calendarImpl->getPermissions());
@@ -110,7 +117,7 @@ class CalendarImplTest extends \Test\TestCase {
->method('getACL')
->with()
->willReturn([
- ['privilege' => '{DAV:}all']
+ ['privilege' => '{DAV:}all', 'principal' => 'principal/users/foobar'],
]);
$this->assertEquals(31, $this->calendarImpl->getPermissions());