123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588 |
- <?php
- /**
- * @copyright Copyright (c) 2018, Georg Ehrke
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Georg Ehrke <oc.list@georgehrke.com>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @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 OCA\DAV\Tests\unit\CalDAV\ResourceBooking;
- use OCA\DAV\CalDAV\Proxy\Proxy;
- use OCA\DAV\CalDAV\Proxy\ProxyMapper;
- use OCP\IGroupManager;
- use OCP\ILogger;
- use OCP\IUser;
- use OCP\IUserSession;
- use Sabre\DAV\PropPatch;
- use Test\TestCase;
- abstract class AbstractPrincipalBackendTest extends TestCase {
- /** @var \OCA\DAV\CalDAV\ResourceBooking\ResourcePrincipalBackend|\OCA\DAV\CalDAV\ResourceBooking\RoomPrincipalBackend */
- protected $principalBackend;
- /** @var IUserSession|\PHPUnit_Framework_MockObject_MockObject */
- protected $userSession;
- /** @var IGroupManager|\PHPUnit_Framework_MockObject_MockObject */
- protected $groupManager;
- /** @var ILogger|\PHPUnit_Framework_MockObject_MockObject */
- protected $logger;
- /** @var ProxyMapper|\PHPUnit_Framework_MockObject_MockObject */
- protected $proxyMapper;
- /** @var string */
- protected $mainDbTable;
- /** @var string */
- protected $metadataDbTable;
- /** @var string */
- protected $foreignKey;
- /** @var string */
- protected $principalPrefix;
- /** @var string */
- protected $expectedCUType;
- protected function setUp(): void {
- parent::setUp();
- $this->userSession = $this->createMock(IUserSession::class);
- $this->groupManager = $this->createMock(IGroupManager::class);
- $this->logger = $this->createMock(ILogger::class);
- $this->proxyMapper = $this->createMock(ProxyMapper::class);
- }
- protected function tearDown(): void {
- $query = self::$realDatabase->getQueryBuilder();
- $query->delete('calendar_resources')->execute();
- $query->delete('calendar_resources_md')->execute();
- $query->delete('calendar_rooms')->execute();
- $query->delete('calendar_rooms_md')->execute();
- }
- public function testGetPrincipalsByPrefix() {
- $actual = $this->principalBackend->getPrincipalsByPrefix($this->principalPrefix);
- $this->assertEquals([
- [
- 'uri' => $this->principalPrefix . '/backend1-res1',
- '{DAV:}displayname' => 'Beamer1',
- '{http://sabredav.org/ns}email-address' => 'res1@foo.bar',
- '{urn:ietf:params:xml:ns:caldav}calendar-user-type' => $this->expectedCUType,
- ],
- [
- 'uri' => $this->principalPrefix . '/backend1-res2',
- '{DAV:}displayname' => 'TV1',
- '{http://sabredav.org/ns}email-address' => 'res2@foo.bar',
- '{urn:ietf:params:xml:ns:caldav}calendar-user-type' => $this->expectedCUType,
- ],
- [
- 'uri' => $this->principalPrefix . '/backend2-res3',
- '{DAV:}displayname' => 'Beamer2',
- '{http://sabredav.org/ns}email-address' => 'res3@foo.bar',
- '{urn:ietf:params:xml:ns:caldav}calendar-user-type' => $this->expectedCUType,
- '{http://nextcloud.com/ns}foo' => 'value1',
- '{http://nextcloud.com/ns}meta2' => 'value2',
- ],
- [
- 'uri' => $this->principalPrefix . '/backend2-res4',
- '{DAV:}displayname' => 'TV2',
- '{http://sabredav.org/ns}email-address' => 'res4@foo.bar',
- '{urn:ietf:params:xml:ns:caldav}calendar-user-type' => $this->expectedCUType,
- '{http://nextcloud.com/ns}meta1' => 'value1',
- '{http://nextcloud.com/ns}meta3' => 'value3-old',
- ],
- [
- 'uri' => $this->principalPrefix . '/backend3-res5',
- '{DAV:}displayname' => 'Beamer3',
- '{http://sabredav.org/ns}email-address' => 'res5@foo.bar',
- '{urn:ietf:params:xml:ns:caldav}calendar-user-type' => $this->expectedCUType,
- ],
- [
- 'uri' => $this->principalPrefix . '/backend3-res6',
- '{DAV:}displayname' => 'Pointer',
- '{http://sabredav.org/ns}email-address' => 'res6@foo.bar',
- '{urn:ietf:params:xml:ns:caldav}calendar-user-type' => $this->expectedCUType,
- '{http://nextcloud.com/ns}meta99' => 'value99'
- ]
- ], $actual);
- }
- public function testGetNoPrincipalsByPrefixForWrongPrincipalPrefix() {
- $actual = $this->principalBackend->getPrincipalsByPrefix('principals/users');
- $this->assertEquals([], $actual);
- }
- public function testGetPrincipalByPath() {
- $actual = $this->principalBackend->getPrincipalByPath($this->principalPrefix . '/backend2-res3');
- $this->assertEquals([
- 'uri' => $this->principalPrefix . '/backend2-res3',
- '{DAV:}displayname' => 'Beamer2',
- '{http://sabredav.org/ns}email-address' => 'res3@foo.bar',
- '{urn:ietf:params:xml:ns:caldav}calendar-user-type' => $this->expectedCUType,
- '{http://nextcloud.com/ns}foo' => 'value1',
- '{http://nextcloud.com/ns}meta2' => 'value2',
- ], $actual);
- }
- public function testGetPrincipalByPathNotFound() {
- $actual = $this->principalBackend->getPrincipalByPath($this->principalPrefix . '/db-123');
- $this->assertEquals(null, $actual);
- }
- public function testGetPrincipalByPathWrongPrefix() {
- $actual = $this->principalBackend->getPrincipalByPath('principals/users/foo-bar');
- $this->assertEquals(null, $actual);
- }
- public function testGetGroupMemberSet() {
- $actual = $this->principalBackend->getGroupMemberSet($this->principalPrefix . '/backend1-res1');
- $this->assertEquals([], $actual);
- }
- public function testGetGroupMemberSetProxyRead() {
- $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($this->principalPrefix . '/backend1-res1')
- ->willReturn([$proxy1, $proxy2, $proxy3]);
- $actual = $this->principalBackend->getGroupMemberSet($this->principalPrefix . '/backend1-res1/calendar-proxy-read');
- $this->assertEquals(['proxyId1'], $actual);
- }
- public function testGetGroupMemberSetProxyWrite() {
- $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($this->principalPrefix . '/backend1-res1')
- ->willReturn([$proxy1, $proxy2, $proxy3]);
- $actual = $this->principalBackend->getGroupMemberSet($this->principalPrefix . '/backend1-res1/calendar-proxy-write');
- $this->assertEquals(['proxyId2', 'proxyId3'], $actual);
- }
- public function testGetGroupMembership() {
- $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($this->principalPrefix . '/backend1-res1')
- ->willReturn([$proxy1, $proxy2]);
- $actual = $this->principalBackend->getGroupMembership($this->principalPrefix . '/backend1-res1');
- $this->assertEquals(['proxyId1/calendar-proxy-read', 'proxyId2/calendar-proxy-write'], $actual);
- }
- public function testSetGroupMemberSet() {
- $this->proxyMapper->expects($this->at(0))
- ->method('getProxiesOf')
- ->with($this->principalPrefix . '/backend1-res1')
- ->willReturn([]);
- $this->proxyMapper->expects($this->at(1))
- ->method('insert')
- ->with($this->callback(function ($proxy) {
- /** @var Proxy $proxy */
- if ($proxy->getOwnerId() !== $this->principalPrefix . '/backend1-res1') {
- return false;
- }
- if ($proxy->getProxyId() !== $this->principalPrefix . '/backend1-res2') {
- return false;
- }
- if ($proxy->getPermissions() !== 3) {
- return false;
- }
- return true;
- }));
- $this->proxyMapper->expects($this->at(2))
- ->method('insert')
- ->with($this->callback(function ($proxy) {
- /** @var Proxy $proxy */
- if ($proxy->getOwnerId() !== $this->principalPrefix . '/backend1-res1') {
- return false;
- }
- if ($proxy->getProxyId() !== $this->principalPrefix . '/backend2-res3') {
- return false;
- }
- if ($proxy->getPermissions() !== 3) {
- return false;
- }
- return true;
- }));
- $this->principalBackend->setGroupMemberSet($this->principalPrefix . '/backend1-res1/calendar-proxy-write', [$this->principalPrefix . '/backend1-res2', $this->principalPrefix . '/backend2-res3']);
- }
- public function testUpdatePrincipal() {
- $propPatch = $this->createMock(PropPatch::class);
- $actual = $this->principalBackend->updatePrincipal($this->principalPrefix . '/foo-bar', $propPatch);
- $this->assertEquals(0, $actual);
- }
- /**
- * @dataProvider dataSearchPrincipals
- */
- public function testSearchPrincipals($expected, $test) {
- $user = $this->createMock(IUser::class);
- $this->userSession->expects($this->once())
- ->method('getUser')
- ->with()
- ->willReturn($user);
- $this->groupManager->expects($this->once())
- ->method('getUserGroupIds')
- ->with($user)
- ->willReturn(['group1', 'group2']);
- $actual = $this->principalBackend->searchPrincipals($this->principalPrefix, [
- '{http://sabredav.org/ns}email-address' => 'foo',
- '{DAV:}displayname' => 'Beamer',
- ], $test);
- $this->assertEquals(
- str_replace('%prefix%', $this->principalPrefix, $expected),
- $actual);
- }
- public function dataSearchPrincipals() {
- // data providers are called before we subclass
- // this class, $this->principalPrefix is null
- // at that point, so we need this hack
- return [
- [[
- '%prefix%/backend1-res1',
- '%prefix%/backend2-res3',
- ], 'allof'],
- [[
- '%prefix%/backend1-res1',
- '%prefix%/backend1-res2',
- '%prefix%/backend2-res3',
- '%prefix%/backend2-res4',
- '%prefix%/backend3-res6',
- ], 'anyof'],
- ];
- }
- public function testSearchPrincipalsByMetadataKey() {
- $user = $this->createMock(IUser::class);
- $this->userSession->expects($this->once())
- ->method('getUser')
- ->with()
- ->willReturn($user);
- $this->groupManager->expects($this->once())
- ->method('getUserGroupIds')
- ->with($user)
- ->willReturn(['group1', 'group2']);
- $actual = $this->principalBackend->searchPrincipals($this->principalPrefix, [
- '{http://nextcloud.com/ns}meta3' => 'value',
- ]);
- $this->assertEquals([
- $this->principalPrefix . '/backend2-res4',
- ], $actual);
- }
- public function testSearchPrincipalsByCalendarUserAddressSet() {
- $user = $this->createMock(IUser::class);
- $this->userSession->method('getUser')
- ->with()
- ->willReturn($user);
- $this->groupManager->method('getUserGroupIds')
- ->with($user)
- ->willReturn(['group1', 'group2']);
- $actual = $this->principalBackend->searchPrincipals($this->principalPrefix, [
- '{urn:ietf:params:xml:ns:caldav}calendar-user-address-set' => 'res2@foo.bar',
- ]);
- $this->assertEquals(
- str_replace('%prefix%', $this->principalPrefix, [
- '%prefix%/backend1-res2',
- ]),
- $actual);
- }
- public function testSearchPrincipalsEmptySearchProperties() {
- $this->userSession->expects($this->never())
- ->method('getUser');
- $this->groupManager->expects($this->never())
- ->method('getUserGroupIds');
- $this->principalBackend->searchPrincipals($this->principalPrefix, []);
- }
- public function testSearchPrincipalsWrongPrincipalPrefix() {
- $this->userSession->expects($this->never())
- ->method('getUser');
- $this->groupManager->expects($this->never())
- ->method('getUserGroupIds');
- $this->principalBackend->searchPrincipals('principals/users', [
- '{http://sabredav.org/ns}email-address' => 'foo'
- ]);
- }
- public function testFindByUriByEmail() {
- $user = $this->createMock(IUser::class);
- $this->userSession->expects($this->once())
- ->method('getUser')
- ->with()
- ->willReturn($user);
- $this->groupManager->expects($this->once())
- ->method('getUserGroupIds')
- ->with($user)
- ->willReturn(['group1', 'group2']);
- $actual = $this->principalBackend->findByUri('mailto:res1@foo.bar', $this->principalPrefix);
- $this->assertEquals($this->principalPrefix . '/backend1-res1', $actual);
- }
- public function testFindByUriByEmailForbiddenResource() {
- $user = $this->createMock(IUser::class);
- $this->userSession->expects($this->once())
- ->method('getUser')
- ->with()
- ->willReturn($user);
- $this->groupManager->expects($this->once())
- ->method('getUserGroupIds')
- ->with($user)
- ->willReturn(['group1', 'group2']);
- $actual = $this->principalBackend->findByUri('mailto:res5@foo.bar', $this->principalPrefix);
- $this->assertEquals(null, $actual);
- }
- public function testFindByUriByEmailNotFound() {
- $user = $this->createMock(IUser::class);
- $this->userSession->expects($this->once())
- ->method('getUser')
- ->with()
- ->willReturn($user);
- $this->groupManager->expects($this->once())
- ->method('getUserGroupIds')
- ->with($user)
- ->willReturn(['group1', 'group2']);
- $actual = $this->principalBackend->findByUri('mailto:res99@foo.bar', $this->principalPrefix);
- $this->assertEquals(null, $actual);
- }
- public function testFindByUriByPrincipal() {
- $user = $this->createMock(IUser::class);
- $this->userSession->expects($this->once())
- ->method('getUser')
- ->with()
- ->willReturn($user);
- $this->groupManager->expects($this->once())
- ->method('getUserGroupIds')
- ->with($user)
- ->willReturn(['group1', 'group2']);
- $actual = $this->principalBackend->findByUri('mailto:res6@foo.bar', $this->principalPrefix);
- $this->assertEquals($this->principalPrefix . '/backend3-res6', $actual);
- }
- public function testFindByUriByPrincipalForbiddenResource() {
- $user = $this->createMock(IUser::class);
- $this->userSession->expects($this->once())
- ->method('getUser')
- ->with()
- ->willReturn($user);
- $this->groupManager->expects($this->once())
- ->method('getUserGroupIds')
- ->with($user)
- ->willReturn(['group1', 'group2']);
- $actual = $this->principalBackend->findByUri('principal:' . $this->principalPrefix . '/backend3-res5', $this->principalPrefix);
- $this->assertEquals(null, $actual);
- }
- public function testFindByUriByPrincipalNotFound() {
- $user = $this->createMock(IUser::class);
- $this->userSession->expects($this->once())
- ->method('getUser')
- ->with()
- ->willReturn($user);
- $this->groupManager->expects($this->once())
- ->method('getUserGroupIds')
- ->with($user)
- ->willReturn(['group1', 'group2']);
- $actual = $this->principalBackend->findByUri('principal:' . $this->principalPrefix . '/db-123', $this->principalPrefix);
- $this->assertEquals(null, $actual);
- }
- public function testFindByUriByUnknownUri() {
- $user = $this->createMock(IUser::class);
- $this->userSession->expects($this->once())
- ->method('getUser')
- ->with()
- ->willReturn($user);
- $this->groupManager->expects($this->once())
- ->method('getUserGroupIds')
- ->with($user)
- ->willReturn(['group1', 'group2']);
- $actual = $this->principalBackend->findByUri('foobar:blub', $this->principalPrefix);
- $this->assertEquals(null, $actual);
- }
- protected function createTestDatasetInDb() {
- $query = self::$realDatabase->getQueryBuilder();
- $query->insert($this->mainDbTable)
- ->values([
- 'backend_id' => $query->createNamedParameter('backend1'),
- 'resource_id' => $query->createNamedParameter('res1'),
- 'email' => $query->createNamedParameter('res1@foo.bar'),
- 'displayname' => $query->createNamedParameter('Beamer1'),
- 'group_restrictions' => $query->createNamedParameter('[]'),
- ])
- ->execute();
- $query->insert($this->mainDbTable)
- ->values([
- 'backend_id' => $query->createNamedParameter('backend1'),
- 'resource_id' => $query->createNamedParameter('res2'),
- 'email' => $query->createNamedParameter('res2@foo.bar'),
- 'displayname' => $query->createNamedParameter('TV1'),
- 'group_restrictions' => $query->createNamedParameter('[]'),
- ])
- ->execute();
- $query->insert($this->mainDbTable)
- ->values([
- 'backend_id' => $query->createNamedParameter('backend2'),
- 'resource_id' => $query->createNamedParameter('res3'),
- 'email' => $query->createNamedParameter('res3@foo.bar'),
- 'displayname' => $query->createNamedParameter('Beamer2'),
- 'group_restrictions' => $query->createNamedParameter('[]'),
- ])
- ->execute();
- $id3 = $query->getLastInsertId();
- $query->insert($this->mainDbTable)
- ->values([
- 'backend_id' => $query->createNamedParameter('backend2'),
- 'resource_id' => $query->createNamedParameter('res4'),
- 'email' => $query->createNamedParameter('res4@foo.bar'),
- 'displayname' => $query->createNamedParameter('TV2'),
- 'group_restrictions' => $query->createNamedParameter('[]'),
- ])
- ->execute();
- $id4 = $query->getLastInsertId();
- $query->insert($this->mainDbTable)
- ->values([
- 'backend_id' => $query->createNamedParameter('backend3'),
- 'resource_id' => $query->createNamedParameter('res5'),
- 'email' => $query->createNamedParameter('res5@foo.bar'),
- 'displayname' => $query->createNamedParameter('Beamer3'),
- 'group_restrictions' => $query->createNamedParameter('["foo", "bar"]'),
- ])
- ->execute();
- $query->insert($this->mainDbTable)
- ->values([
- 'backend_id' => $query->createNamedParameter('backend3'),
- 'resource_id' => $query->createNamedParameter('res6'),
- 'email' => $query->createNamedParameter('res6@foo.bar'),
- 'displayname' => $query->createNamedParameter('Pointer'),
- 'group_restrictions' => $query->createNamedParameter('["group1", "bar"]'),
- ])
- ->execute();
- $id6 = $query->getLastInsertId();
- $query->insert($this->metadataDbTable)
- ->values([
- $this->foreignKey => $query->createNamedParameter($id3),
- 'key' => $query->createNamedParameter('{http://nextcloud.com/ns}foo'),
- 'value' => $query->createNamedParameter('value1')
- ])
- ->execute();
- $query->insert($this->metadataDbTable)
- ->values([
- $this->foreignKey => $query->createNamedParameter($id3),
- 'key' => $query->createNamedParameter('{http://nextcloud.com/ns}meta2'),
- 'value' => $query->createNamedParameter('value2')
- ])
- ->execute();
- $query->insert($this->metadataDbTable)
- ->values([
- $this->foreignKey => $query->createNamedParameter($id4),
- 'key' => $query->createNamedParameter('{http://nextcloud.com/ns}meta1'),
- 'value' => $query->createNamedParameter('value1')
- ])
- ->execute();
- $query->insert($this->metadataDbTable)
- ->values([
- $this->foreignKey => $query->createNamedParameter($id4),
- 'key' => $query->createNamedParameter('{http://nextcloud.com/ns}meta3'),
- 'value' => $query->createNamedParameter('value3-old')
- ])
- ->execute();
- $query->insert($this->metadataDbTable)
- ->values([
- $this->foreignKey => $query->createNamedParameter($id6),
- 'key' => $query->createNamedParameter('{http://nextcloud.com/ns}meta99'),
- 'value' => $query->createNamedParameter('value99')
- ])
- ->execute();
- }
- }
|