mirror of
https://github.com/nextcloud/server.git
synced 2026-02-22 01:11:23 -05:00
270 lines
8.7 KiB
PHP
270 lines
8.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCA\DAV\Tests\unit\CalDAV;
|
|
|
|
use OCA\DAV\CalDAV\Auth\CustomPrincipalPlugin;
|
|
use OCA\DAV\CalDAV\CalDavBackend;
|
|
use OCA\DAV\CalDAV\Calendar;
|
|
use OCA\DAV\CalDAV\CalendarImpl;
|
|
use OCA\DAV\CalDAV\InvitationResponse\InvitationResponseServer;
|
|
use OCA\DAV\Connector\Sabre\Server;
|
|
use OCP\Calendar\Exceptions\CalendarException;
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use Sabre\VObject\Component\VCalendar;
|
|
use Sabre\VObject\Component\VEvent;
|
|
use Sabre\VObject\ITip\Message;
|
|
|
|
class CalendarImplTest extends \Test\TestCase {
|
|
private CalDavBackend|MockObject $backend;
|
|
private Calendar|MockObject $calendar;
|
|
private CalendarImpl|MockObject $calendarImpl;
|
|
private array $calendarInfo;
|
|
private VCalendar $vCalendar1a;
|
|
private array $mockExportCollection;
|
|
|
|
protected function setUp(): void {
|
|
parent::setUp();
|
|
|
|
$this->backend = $this->createMock(CalDavBackend::class);
|
|
$this->calendar = $this->createMock(Calendar::class);
|
|
$this->calendarInfo = [
|
|
'id' => 'fancy_id_123',
|
|
'{DAV:}displayname' => 'user readable name 123',
|
|
'{http://apple.com/ns/ical/}calendar-color' => '#AABBCC',
|
|
'uri' => '/this/is/a/uri',
|
|
'principaluri' => 'principal/users/foobar'
|
|
];
|
|
$this->calendarImpl = new CalendarImpl($this->calendar, $this->calendarInfo, $this->backend);
|
|
|
|
// construct calendar with a 1 hour event and same start/end time zones
|
|
$this->vCalendar1a = new VCalendar();
|
|
/** @var VEvent $vEvent */
|
|
$vEvent = $this->vCalendar1a->add('VEVENT', []);
|
|
$vEvent->UID->setValue('96a0e6b1-d886-4a55-a60d-152b31401dcc');
|
|
$vEvent->add('DTSTART', '20240701T080000', ['TZID' => 'America/Toronto']);
|
|
$vEvent->add('DTEND', '20240701T090000', ['TZID' => 'America/Toronto']);
|
|
$vEvent->add('SEQUENCE', 1);
|
|
$vEvent->add('SUMMARY', 'Test Event');
|
|
$vEvent->add('ORGANIZER', 'mailto:organizer@testing.com', ['CN' => 'Organizer']);
|
|
$vEvent->add('ATTENDEE', 'mailto:attendee1@testing.com', [
|
|
'CN' => 'Attendee One',
|
|
'CUTYPE' => 'INDIVIDUAL',
|
|
'PARTSTAT' => 'NEEDS-ACTION',
|
|
'ROLE' => 'REQ-PARTICIPANT',
|
|
'RSVP' => 'TRUE'
|
|
]);
|
|
}
|
|
|
|
|
|
public function testGetKey(): void {
|
|
$this->assertEquals($this->calendarImpl->getKey(), 'fancy_id_123');
|
|
}
|
|
|
|
public function testGetDisplayname(): void {
|
|
$this->assertEquals($this->calendarImpl->getDisplayName(), 'user readable name 123');
|
|
}
|
|
|
|
public function testGetDisplayColor(): void {
|
|
$this->assertEquals($this->calendarImpl->getDisplayColor(), '#AABBCC');
|
|
}
|
|
|
|
public function testSearch(): void {
|
|
$this->backend->expects($this->once())
|
|
->method('search')
|
|
->with($this->calendarInfo, 'abc', ['def'], ['ghi'], 42, 1337)
|
|
->willReturn(['SEARCHRESULTS']);
|
|
|
|
$result = $this->calendarImpl->search('abc', ['def'], ['ghi'], 42, 1337);
|
|
$this->assertEquals($result, ['SEARCHRESULTS']);
|
|
}
|
|
|
|
public function testGetPermissionRead(): void {
|
|
$this->calendar->expects($this->once())
|
|
->method('getACL')
|
|
->with()
|
|
->willReturn([
|
|
['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());
|
|
}
|
|
|
|
public function testGetPermissionWrite(): void {
|
|
$this->calendar->expects($this->once())
|
|
->method('getACL')
|
|
->with()
|
|
->willReturn([
|
|
['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());
|
|
}
|
|
|
|
public function testGetPermissionReadWrite(): void {
|
|
$this->calendar->expects($this->once())
|
|
->method('getACL')
|
|
->with()
|
|
->willReturn([
|
|
['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());
|
|
}
|
|
|
|
public function testGetPermissionAll(): void {
|
|
$this->calendar->expects($this->once())
|
|
->method('getACL')
|
|
->with()
|
|
->willReturn([
|
|
['privilege' => '{DAV:}all', 'principal' => 'principal/users/foobar'],
|
|
]);
|
|
|
|
$this->assertEquals(31, $this->calendarImpl->getPermissions());
|
|
}
|
|
|
|
public function testHandleImipNoMethod(): void {
|
|
// Arrange
|
|
$vObject = $this->vCalendar1a;
|
|
|
|
$this->expectException(CalendarException::class);
|
|
$this->expectExceptionMessage('iMip message contains no valid method');
|
|
|
|
// Act
|
|
$this->calendarImpl->handleIMipMessage('fakeUser', $vObject->serialize());
|
|
}
|
|
|
|
public function testHandleImipNoEvent(): void {
|
|
// Arrange
|
|
$vObject = $this->vCalendar1a;
|
|
$vObject->add('METHOD', 'REQUEST');
|
|
$vObject->remove('VEVENT');
|
|
|
|
$this->expectException(CalendarException::class);
|
|
$this->expectExceptionMessage('iMip message contains no event');
|
|
|
|
// Act
|
|
$this->calendarImpl->handleIMipMessage('fakeUser', $vObject->serialize());
|
|
}
|
|
|
|
public function testHandleImipNoUid(): void {
|
|
// Arrange
|
|
$vObject = $this->vCalendar1a;
|
|
$vObject->add('METHOD', 'REQUEST');
|
|
$vObject->VEVENT->remove('UID');
|
|
|
|
$this->expectException(CalendarException::class);
|
|
$this->expectExceptionMessage('iMip message event dose not contain a UID');
|
|
|
|
// Act
|
|
$this->calendarImpl->handleIMipMessage('fakeUser', $vObject->serialize());
|
|
}
|
|
|
|
public function testHandleImipNoOrganizer(): void {
|
|
// Arrange
|
|
$vObject = $this->vCalendar1a;
|
|
$vObject->add('METHOD', 'REQUEST');
|
|
$vObject->VEVENT->remove('ORGANIZER');
|
|
|
|
$this->expectException(CalendarException::class);
|
|
$this->expectExceptionMessage('iMip message event dose not contain an organizer');
|
|
|
|
// Act
|
|
$this->calendarImpl->handleIMipMessage('fakeUser', $vObject->serialize());
|
|
}
|
|
|
|
public function testHandleImipNoAttendee(): void {
|
|
// Arrange
|
|
$vObject = $this->vCalendar1a;
|
|
$vObject->add('METHOD', 'REQUEST');
|
|
$vObject->VEVENT->remove('ATTENDEE');
|
|
|
|
$this->expectException(CalendarException::class);
|
|
$this->expectExceptionMessage('iMip message event dose not contain an attendee');
|
|
|
|
// Act
|
|
$this->calendarImpl->handleIMipMessage('fakeUser', $vObject->serialize());
|
|
}
|
|
|
|
public function testHandleImipRequest(): void {
|
|
$userAddressSet = new class([ 'mailto:attendee1@testing.com', '/remote.php/dav/principals/users/attendee1/', ]) {
|
|
public function __construct(
|
|
private array $hrefs,
|
|
) {
|
|
}
|
|
public function getHrefs(): array {
|
|
return $this->hrefs;
|
|
}
|
|
};
|
|
|
|
$vObject = $this->vCalendar1a;
|
|
$vObject->add('METHOD', 'REQUEST');
|
|
|
|
$iTip = new Message();
|
|
$iTip->method = 'REQUEST';
|
|
$iTip->sender = $vObject->VEVENT->ORGANIZER->getValue();
|
|
$iTip->recipient = $vObject->VEVENT->ATTENDEE->getValue();
|
|
$iTip->component = 'VEVENT';
|
|
$iTip->uid = $vObject->VEVENT->UID->getValue();
|
|
$iTip->sequence = (int)$vObject->VEVENT->SEQUENCE->getValue() ?? 0;
|
|
$iTip->message = $vObject;
|
|
|
|
/** @var CustomPrincipalPlugin|MockObject $authPlugin */
|
|
$authPlugin = $this->createMock(CustomPrincipalPlugin::class);
|
|
$authPlugin->expects(self::once())
|
|
->method('setCurrentPrincipal')
|
|
->with($this->calendar->getPrincipalURI());
|
|
/** @var \Sabre\DAVACL\Plugin|MockObject $aclPlugin */
|
|
$aclPlugin = $this->createMock(\Sabre\DAVACL\Plugin::class);
|
|
|
|
$server = $this->createMock(Server::class);
|
|
$server->expects($this->any())
|
|
->method('getPlugin')
|
|
->willReturnMap([
|
|
['auth', $authPlugin],
|
|
['acl', $aclPlugin],
|
|
]);
|
|
|
|
$server->expects(self::once())
|
|
->method('getProperties')
|
|
->with(
|
|
$this->calendar->getPrincipalURI(),
|
|
[
|
|
'{http://sabredav.org/ns}email-address',
|
|
'{urn:ietf:params:xml:ns:caldav}calendar-user-address-set'
|
|
]
|
|
)
|
|
->willReturn([
|
|
'{http://sabredav.org/ns}email-address' => 'attendee1@testing.com',
|
|
'{urn:ietf:params:xml:ns:caldav}calendar-user-address-set' => $userAddressSet,
|
|
]);
|
|
$server->expects(self::once())
|
|
->method('emit');
|
|
$invitationResponseServer = $this->createMock(InvitationResponseServer::class, ['getServer']);
|
|
$invitationResponseServer->server = $server;
|
|
$invitationResponseServer->expects($this->any())
|
|
->method('getServer')
|
|
->willReturn($server);
|
|
$calendarImpl = $this->getMockBuilder(CalendarImpl::class)
|
|
->setConstructorArgs([$this->calendar, $this->calendarInfo, $this->backend])
|
|
->onlyMethods(['getInvitationResponseServer'])
|
|
->getMock();
|
|
$calendarImpl->expects($this->once())
|
|
->method('getInvitationResponseServer')
|
|
->willReturn($invitationResponseServer);
|
|
|
|
$calendarImpl->handleIMipMessage('fakeUser', $vObject->serialize());
|
|
}
|
|
|
|
}
|