123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618 |
- <?php
- /**
- * @copyright 2017, Georg Ehrke <oc.list@georgehrke.com>
- *
- * @author Georg Ehrke <oc.list@georgehrke.com>
- *
- * @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 Test\Calendar;
- use OC\AppFramework\Bootstrap\Coordinator;
- use OC\Calendar\Manager;
- use OCP\AppFramework\Utility\ITimeFactory;
- use OCP\Calendar\ICalendar;
- use OCP\Calendar\ICreateFromString;
- use OCP\Calendar\IHandleImipMessage;
- use PHPUnit\Framework\MockObject\MockObject;
- use Psr\Container\ContainerInterface;
- use Psr\Log\LoggerInterface;
- use Sabre\VObject\Document;
- use Sabre\VObject\Reader;
- use Test\TestCase;
- /*
- * This allows us to create Mock object supporting both interfaces
- */
- interface ICreateFromStringAndHandleImipMessage extends ICreateFromString, IHandleImipMessage {
- }
- class ManagerTest extends TestCase {
- /** @var Coordinator|MockObject */
- private $coordinator;
- /** @var MockObject|ContainerInterface */
- private $container;
- /** @var MockObject|LoggerInterface */
- private $logger;
- /** @var Manager */
- private $manager;
- /** @var ITimeFactory|ITimeFactory&MockObject|MockObject */
- private $time;
- protected function setUp(): void {
- parent::setUp();
- $this->coordinator = $this->createMock(Coordinator::class);
- $this->container = $this->createMock(ContainerInterface::class);
- $this->logger = $this->createMock(LoggerInterface::class);
- $this->time = $this->createMock(ITimeFactory::class);
- $this->manager = new Manager(
- $this->coordinator,
- $this->container,
- $this->logger,
- $this->time,
- );
- }
- /**
- * @dataProvider searchProvider
- */
- public function testSearch($search1, $search2, $expected) {
- /** @var ICalendar | MockObject $calendar1 */
- $calendar1 = $this->createMock(ICalendar::class);
- $calendar1->method('getKey')->willReturn('simple:1');
- $calendar1->expects($this->once())
- ->method('search')
- ->with('', [], [], null, null)
- ->willReturn($search1);
- /** @var ICalendar | MockObject $calendar2 */
- $calendar2 = $this->createMock(ICalendar::class);
- $calendar2->method('getKey')->willReturn('simple:2');
- $calendar2->expects($this->once())
- ->method('search')
- ->with('', [], [], null, null)
- ->willReturn($search2);
- $this->manager->registerCalendar($calendar1);
- $this->manager->registerCalendar($calendar2);
- $result = $this->manager->search('');
- $this->assertEquals($expected, $result);
- }
- /**
- * @dataProvider searchProvider
- */
- public function testSearchOptions($search1, $search2, $expected) {
- /** @var ICalendar | MockObject $calendar1 */
- $calendar1 = $this->createMock(ICalendar::class);
- $calendar1->method('getKey')->willReturn('simple:1');
- $calendar1->expects($this->once())
- ->method('search')
- ->with('searchTerm', ['SUMMARY', 'DESCRIPTION'],
- ['timerange' => ['start' => null, 'end' => null]], 5, 20)
- ->willReturn($search1);
- /** @var ICalendar | MockObject $calendar2 */
- $calendar2 = $this->createMock(ICalendar::class);
- $calendar2->method('getKey')->willReturn('simple:2');
- $calendar2->expects($this->once())
- ->method('search')
- ->with('searchTerm', ['SUMMARY', 'DESCRIPTION'],
- ['timerange' => ['start' => null, 'end' => null]], 5, 20)
- ->willReturn($search2);
- $this->manager->registerCalendar($calendar1);
- $this->manager->registerCalendar($calendar2);
- $result = $this->manager->search('searchTerm', ['SUMMARY', 'DESCRIPTION'],
- ['timerange' => ['start' => null, 'end' => null]], 5, 20);
- $this->assertEquals($expected, $result);
- }
- public function searchProvider() {
- $search1 = [
- [
- 'id' => 1,
- 'data' => 'foobar',
- ],
- [
- 'id' => 2,
- 'data' => 'barfoo',
- ]
- ];
- $search2 = [
- [
- 'id' => 3,
- 'data' => 'blablub',
- ],
- [
- 'id' => 4,
- 'data' => 'blubbla',
- ]
- ];
- $expected = [
- [
- 'id' => 1,
- 'data' => 'foobar',
- 'calendar-key' => 'simple:1',
- ],
- [
- 'id' => 2,
- 'data' => 'barfoo',
- 'calendar-key' => 'simple:1',
- ],
- [
- 'id' => 3,
- 'data' => 'blablub',
- 'calendar-key' => 'simple:2',
- ],
- [
- 'id' => 4,
- 'data' => 'blubbla',
- 'calendar-key' => 'simple:2',
- ]
- ];
- return [
- [
- $search1,
- $search2,
- $expected
- ]
- ];
- }
- public function testRegisterUnregister() {
- /** @var ICalendar | MockObject $calendar1 */
- $calendar1 = $this->createMock(ICalendar::class);
- $calendar1->method('getKey')->willReturn('key1');
- /** @var ICalendar | MockObject $calendar2 */
- $calendar2 = $this->createMock(ICalendar::class);
- $calendar2->method('getKey')->willReturn('key2');
- $this->manager->registerCalendar($calendar1);
- $this->manager->registerCalendar($calendar2);
- $result = $this->manager->getCalendars();
- $this->assertCount(2, $result);
- $this->assertContains($calendar1, $result);
- $this->assertContains($calendar2, $result);
- $this->manager->unregisterCalendar($calendar1);
- $result = $this->manager->getCalendars();
- $this->assertCount(1, $result);
- $this->assertContains($calendar2, $result);
- }
- public function testGetCalendars() {
- /** @var ICalendar | MockObject $calendar1 */
- $calendar1 = $this->createMock(ICalendar::class);
- $calendar1->method('getKey')->willReturn('key1');
- /** @var ICalendar | MockObject $calendar2 */
- $calendar2 = $this->createMock(ICalendar::class);
- $calendar2->method('getKey')->willReturn('key2');
- $this->manager->registerCalendar($calendar1);
- $this->manager->registerCalendar($calendar2);
- $result = $this->manager->getCalendars();
- $this->assertCount(2, $result);
- $this->assertContains($calendar1, $result);
- $this->assertContains($calendar2, $result);
- $this->manager->clear();
- $result = $this->manager->getCalendars();
- $this->assertCount(0, $result);
- }
- public function testEnabledIfNot() {
- $isEnabled = $this->manager->isEnabled();
- $this->assertFalse($isEnabled);
- }
- public function testIfEnabledIfSo() {
- /** @var ICalendar | MockObject $calendar */
- $calendar = $this->createMock(ICalendar::class);
- $this->manager->registerCalendar($calendar);
- $isEnabled = $this->manager->isEnabled();
- $this->assertTrue($isEnabled);
- }
- public function testHandleImipReplyWrongMethod(): void {
- $principalUri = 'principals/user/linus';
- $sender = 'pierre@general-store.com';
- $recipient = 'linus@stardew-tent-living.com';
- $calendarData = $this->getVCalendarReply();
- $calendarData->METHOD = 'REQUEST';
- $this->logger->expects(self::once())
- ->method('warning');
- $this->time->expects(self::never())
- ->method('getTime');
- $result = $this->manager->handleIMipReply($principalUri, $sender, $recipient, $calendarData->serialize());
- $this->assertFalse($result);
- }
- public function testHandleImipReplyOrganizerNotRecipient(): void {
- $principalUri = 'principals/user/linus';
- $recipient = 'pierre@general-store.com';
- $sender = 'linus@stardew-tent-living.com';
- $calendarData = $this->getVCalendarReply();
- $this->logger->expects(self::once())
- ->method('warning');
- $this->time->expects(self::never())
- ->method('getTime');
- $result = $this->manager->handleIMipReply($principalUri, $sender, $recipient, $calendarData->serialize());
- $this->assertFalse($result);
- }
- public function testHandleImipReplyDateInThePast(): void {
- $principalUri = 'principals/user/linus';
- $sender = 'pierre@general-store.com';
- $recipient = 'linus@stardew-tent-living.com';
- $calendarData = $this->getVCalendarReply();
- $calendarData->VEVENT->DTSTART = new \DateTime('2013-04-07'); // set to in the past
- $this->time->expects(self::once())
- ->method('getTime')
- ->willReturn(time());
- $this->logger->expects(self::once())
- ->method('warning');
- $result = $this->manager->handleIMipReply($principalUri, $sender, $recipient, $calendarData->serialize());
- $this->assertFalse($result);
- }
- public function testHandleImipReplyNoCalendars(): void {
- /** @var Manager | \PHPUnit\Framework\MockObject\MockObject $manager */
- $manager = $this->getMockBuilder(Manager::class)
- ->setConstructorArgs([
- $this->coordinator,
- $this->container,
- $this->logger,
- $this->time
- ])
- ->setMethods([
- 'getCalendarsForPrincipal'
- ])
- ->getMock();
- $principalUri = 'principals/user/linus';
- $sender = 'pierre@general-store.com';
- $recipient = 'linus@stardew-tent-living.com';
- $calendarData = $this->getVCalendarReply();
- $this->time->expects(self::once())
- ->method('getTime')
- ->willReturn(1628374233);
- $manager->expects(self::once())
- ->method('getCalendarsForPrincipal')
- ->willReturn([]);
- $this->logger->expects(self::once())
- ->method('warning');
- $result = $manager->handleIMipReply($principalUri, $sender, $recipient, $calendarData->serialize());
- $this->assertFalse($result);
- }
- public function testHandleImipReplyEventNotFound(): void {
- /** @var Manager | \PHPUnit\Framework\MockObject\MockObject $manager */
- $manager = $this->getMockBuilder(Manager::class)
- ->setConstructorArgs([
- $this->coordinator,
- $this->container,
- $this->logger,
- $this->time
- ])
- ->setMethods([
- 'getCalendarsForPrincipal'
- ])
- ->getMock();
- $calendar = $this->createMock(ICreateFromStringAndHandleImipMessage::class);
- $principalUri = 'principals/user/linus';
- $sender = 'pierre@general-store.com';
- $recipient = 'linus@stardew-tent-living.com';
- $calendarData = $this->getVCalendarReply();
- $this->time->expects(self::once())
- ->method('getTime')
- ->willReturn(1628374233);
- $manager->expects(self::once())
- ->method('getCalendarsForPrincipal')
- ->willReturn([$calendar]);
- $calendar->expects(self::once())
- ->method('search')
- ->willReturn([]);
- $this->logger->expects(self::once())
- ->method('info');
- $calendar->expects(self::never())
- ->method('handleIMipMessage');
- $result = $manager->handleIMipReply($principalUri, $sender, $recipient, $calendarData->serialize());
- $this->assertFalse($result);
- }
- public function testHandleImipReply(): void {
- /** @var Manager | \PHPUnit\Framework\MockObject\MockObject $manager */
- $manager = $this->getMockBuilder(Manager::class)
- ->setConstructorArgs([
- $this->coordinator,
- $this->container,
- $this->logger,
- $this->time
- ])
- ->setMethods([
- 'getCalendarsForPrincipal'
- ])
- ->getMock();
- $calendar = $this->createMock(ICreateFromStringAndHandleImipMessage::class);
- $principalUri = 'principals/user/linus';
- $sender = 'pierre@general-store.com';
- $recipient = 'linus@stardew-tent-living.com';
- $calendarData = $this->getVCalendarReply();
- $this->time->expects(self::once())
- ->method('getTime')
- ->willReturn(1628374233);
- $manager->expects(self::once())
- ->method('getCalendarsForPrincipal')
- ->willReturn([$calendar]);
- $calendar->expects(self::once())
- ->method('search')
- ->willReturn([['uri' => 'testname.ics']]);
- $calendar->expects(self::once())
- ->method('handleIMipMessage')
- ->with('testname.ics', $calendarData->serialize());
- $result = $manager->handleIMipReply($principalUri, $sender, $recipient, $calendarData->serialize());
- $this->assertTrue($result);
- }
- public function testHandleImipCancelWrongMethod(): void {
- $principalUri = 'principals/user/pierre';
- $sender = 'linus@stardew-tent-living.com';
- $recipient = 'pierre@general-store.com';
- $replyTo = null;
- $calendarData = $this->getVCalendarCancel();
- $calendarData->METHOD = 'REQUEST';
- $this->logger->expects(self::once())
- ->method('warning');
- $this->time->expects(self::never())
- ->method('getTime');
- $result = $this->manager->handleIMipCancel($principalUri, $sender, $replyTo, $recipient, $calendarData->serialize());
- $this->assertFalse($result);
- }
- public function testHandleImipCancelAttendeeNotRecipient(): void {
- $principalUri = '/user/admin';
- $sender = 'linus@stardew-tent-living.com';
- $recipient = 'leah@general-store.com';
- $replyTo = null;
- $calendarData = $this->getVCalendarCancel();
- $this->logger->expects(self::once())
- ->method('warning');
- $this->time->expects(self::never())
- ->method('getTime');
- $result = $this->manager->handleIMipCancel($principalUri, $sender, $replyTo, $recipient, $calendarData->serialize());
- $this->assertFalse($result);
- }
- public function testHandleImipCancelDateInThePast(): void {
- $principalUri = 'principals/user/pierre';
- $sender = 'linus@stardew-tent-living.com';
- $recipient = 'pierre@general-store.com';
- $replyTo = null;
- $calendarData = $this->getVCalendarCancel();
- $calendarData->VEVENT->DTSTART = new \DateTime('2013-04-07'); // set to in the past
- $this->time->expects(self::once())
- ->method('getTime')
- ->willReturn(time());
- $this->logger->expects(self::once())
- ->method('warning');
- $result = $this->manager->handleIMipCancel($principalUri, $sender, $replyTo, $recipient, $calendarData->serialize());
- $this->assertFalse($result);
- }
- public function testHandleImipCancelNoCalendars(): void {
- /** @var Manager | \PHPUnit\Framework\MockObject\MockObject $manager */
- $manager = $this->getMockBuilder(Manager::class)
- ->setConstructorArgs([
- $this->coordinator,
- $this->container,
- $this->logger,
- $this->time
- ])
- ->setMethods([
- 'getCalendarsForPrincipal'
- ])
- ->getMock();
- $principalUri = 'principals/user/pierre';
- $sender = 'linus@stardew-tent-living.com';
- $recipient = 'pierre@general-store.com';
- $replyTo = null;
- $calendarData = $this->getVCalendarCancel();
- $this->time->expects(self::once())
- ->method('getTime')
- ->willReturn(1628374233);
- $manager->expects(self::once())
- ->method('getCalendarsForPrincipal')
- ->with($principalUri)
- ->willReturn([]);
- $this->logger->expects(self::once())
- ->method('warning');
- $result = $manager->handleIMipCancel($principalUri, $sender, $replyTo, $recipient, $calendarData->serialize());
- $this->assertFalse($result);
- }
- public function testHandleImipCancelOrganiserInReplyTo(): void {
- /** @var Manager | \PHPUnit\Framework\MockObject\MockObject $manager */
- $manager = $this->getMockBuilder(Manager::class)
- ->setConstructorArgs([
- $this->coordinator,
- $this->container,
- $this->logger,
- $this->time
- ])
- ->setMethods([
- 'getCalendarsForPrincipal'
- ])
- ->getMock();
- $principalUri = 'principals/user/pierre';
- $sender = 'clint@stardew-blacksmiths.com';
- $recipient = 'pierre@general-store.com';
- $replyTo = 'linus@stardew-tent-living.com';
- $calendar = $this->createMock(ICreateFromStringAndHandleImipMessage::class);
- $calendarData = $this->getVCalendarCancel();
- $this->time->expects(self::once())
- ->method('getTime')
- ->willReturn(1628374233);
- $manager->expects(self::once())
- ->method('getCalendarsForPrincipal')
- ->with($principalUri)
- ->willReturn([$calendar]);
- $calendar->expects(self::once())
- ->method('search')
- ->willReturn([['uri' => 'testname.ics']]);
- $calendar->expects(self::once())
- ->method('handleIMipMessage')
- ->with('testname.ics', $calendarData->serialize());
- $result = $manager->handleIMipCancel($principalUri, $sender, $replyTo, $recipient, $calendarData->serialize());
- $this->assertTrue($result);
- }
- public function testHandleImipCancel(): void {
- /** @var Manager | \PHPUnit\Framework\MockObject\MockObject $manager */
- $manager = $this->getMockBuilder(Manager::class)
- ->setConstructorArgs([
- $this->coordinator,
- $this->container,
- $this->logger,
- $this->time
- ])
- ->setMethods([
- 'getCalendarsForPrincipal'
- ])
- ->getMock();
- $principalUri = 'principals/user/pierre';
- $sender = 'linus@stardew-tent-living.com';
- $recipient = 'pierre@general-store.com';
- $replyTo = null;
- $calendar = $this->createMock(ICreateFromStringAndHandleImipMessage::class);
- $calendarData = $this->getVCalendarCancel();
- $this->time->expects(self::once())
- ->method('getTime')
- ->willReturn(1628374233);
- $manager->expects(self::once())
- ->method('getCalendarsForPrincipal')
- ->with($principalUri)
- ->willReturn([$calendar]);
- $calendar->expects(self::once())
- ->method('search')
- ->willReturn([['uri' => 'testname.ics']]);
- $calendar->expects(self::once())
- ->method('handleIMipMessage')
- ->with('testname.ics', $calendarData->serialize());
- $result = $manager->handleIMipCancel($principalUri, $sender, $replyTo, $recipient, $calendarData->serialize());
- $this->assertTrue($result);
- }
- private function getVCalendarReply(): Document {
- $data = <<<EOF
- BEGIN:VCALENDAR
- PRODID:-//Nextcloud/Nextcloud CalDAV Server//EN
- VERSION:2.0
- CALSCALE:GREGORIAN
- METHOD:REPLY
- BEGIN:VEVENT
- DTSTART;VALUE=DATE:20210820
- DTEND;VALUE=DATE:20220821
- DTSTAMP:20210812T100040Z
- ORGANIZER;CN=admin:mailto:linus@stardew-tent-living.com
- UID:dcc733bf-b2b2-41f2-a8cf-550ae4b67aff
- ATTENDEE;CUTYPE=INDIVIDUAL;ROLE=REQ-PARTICIPANT;PARTSTAT=ACCEPTED;CN=pierr
- e@general-store.com;X-NUM-GUESTS=0:mailto:pierre@general-store.com
- CREATED:20220812T100021Z
- DESCRIPTION:
- LAST-MODIFIED:20220812T100040Z
- LOCATION:
- SEQUENCE:3
- STATUS:CONFIRMED
- SUMMARY:berry basket
- TRANSP:OPAQUE
- END:VEVENT
- END:VCALENDAR
- EOF;
- return Reader::read($data);
- }
- private function getVCalendarCancel(): Document {
- $data = <<<EOF
- BEGIN:VCALENDAR
- PRODID:-//Nextcloud/Nextcloud CalDAV Server//EN
- VERSION:2.0
- CALSCALE:GREGORIAN
- METHOD:CANCEL
- BEGIN:VEVENT
- DTSTART;VALUE=DATE:20210820
- DTEND;VALUE=DATE:20220821
- DTSTAMP:20210812T100040Z
- ORGANIZER;CN=admin:mailto:linus@stardew-tent-living.com
- UID:dcc733bf-b2b2-41f2-a8cf-550ae4b67aff
- ATTENDEE;CUTYPE=INDIVIDUAL;ROLE=REQ-PARTICIPANT;PARTSTAT=ACCEPTED;CN=pierr
- e@general-store.com;X-NUM-GUESTS=0:mailto:pierre@general-store.com
- CREATED:20220812T100021Z
- DESCRIPTION:
- LAST-MODIFIED:20220812T100040Z
- LOCATION:
- SEQUENCE:3
- STATUS:CANCELLED
- SUMMARY:berry basket
- TRANSP:OPAQUE
- END:VEVENT
- END:VCALENDAR
- EOF;
- return Reader::read($data);
- }
- }
|