coordinator = $this->createMock(Coordinator::class); $this->container = $this->createMock(ContainerInterface::class); $this->logger = $this->createMock(LoggerInterface::class); $this->time = $this->createMock(ITimeFactory::class); $this->secureRandom = $this->createMock(ISecureRandom::class); $this->userManager = $this->createMock(IUserManager::class); $this->serverFactory = $this->createMock(ServerFactory::class); $this->manager = new Manager( $this->coordinator, $this->container, $this->logger, $this->time, $this->secureRandom, $this->userManager, $this->serverFactory, ); // 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('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' ]); } /** * @dataProvider searchProvider */ public function testSearch($search1, $search2, $expected): void { /** @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): void { /** @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(): void { /** @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(): void { /** @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(): void { $isEnabled = $this->manager->isEnabled(); $this->assertFalse($isEnabled); } public function testIfEnabledIfSo(): void { /** @var ICalendar | MockObject $calendar */ $calendar = $this->createMock(ICalendar::class); $this->manager->registerCalendar($calendar); $isEnabled = $this->manager->isEnabled(); $this->assertTrue($isEnabled); } public function testHandleImipRequestWithNoCalendars(): void { // construct calendar manager returns /** @var Manager&MockObject $manager */ $manager = $this->getMockBuilder(Manager::class) ->setConstructorArgs([ $this->coordinator, $this->container, $this->logger, $this->time, $this->secureRandom, $this->userManager, $this->serverFactory, ]) ->onlyMethods(['getCalendarsForPrincipal']) ->getMock(); $manager->expects(self::once()) ->method('getCalendarsForPrincipal') ->willReturn([]); // construct logger returns $this->logger->expects(self::once())->method('warning') ->with('iMip message could not be processed because user has no calendars'); // construct parameters $principalUri = 'principals/user/attendee1'; $sender = 'organizer@testing.com'; $recipient = 'attendee1@testing.com'; $calendar = $this->vCalendar1a; $calendar->add('METHOD', 'REQUEST'); // test method $result = $manager->handleIMipRequest($principalUri, $sender, $recipient, $calendar->serialize()); $this->assertFalse($result); } public function testHandleImipRequestWithNoMethod(): void { // construct mock user calendar $userCalendar = $this->createMock(ITestCalendar::class); // construct mock calendar manager and returns /** @var Manager&MockObject $manager */ $manager = $this->getMockBuilder(Manager::class) ->setConstructorArgs([ $this->coordinator, $this->container, $this->logger, $this->time, $this->secureRandom, $this->userManager, $this->serverFactory, ]) ->onlyMethods(['getCalendarsForPrincipal']) ->getMock(); $manager->expects(self::once()) ->method('getCalendarsForPrincipal') ->willReturn([$userCalendar]); // construct logger returns $this->logger->expects(self::once())->method('warning') ->with('iMip message contains an incorrect or invalid method'); // construct parameters $principalUri = 'principals/user/attendee1'; $sender = 'organizer@testing.com'; $recipient = 'attendee1@testing.com'; $calendar = $this->vCalendar1a; // test method $result = $manager->handleIMipRequest($principalUri, $sender, $recipient, $calendar->serialize()); $this->assertFalse($result); } public function testHandleImipRequestWithInvalidMethod(): void { // construct mock user calendar $userCalendar = $this->createMock(ITestCalendar::class); // construct mock calendar manager and returns /** @var Manager&MockObject $manager */ $manager = $this->getMockBuilder(Manager::class) ->setConstructorArgs([ $this->coordinator, $this->container, $this->logger, $this->time, $this->secureRandom, $this->userManager, $this->serverFactory, ]) ->onlyMethods(['getCalendarsForPrincipal']) ->getMock(); $manager->expects(self::once()) ->method('getCalendarsForPrincipal') ->willReturn([$userCalendar]); // construct logger returns $this->logger->expects(self::once())->method('warning') ->with('iMip message contains an incorrect or invalid method'); // construct parameters $principalUri = 'principals/user/attendee1'; $sender = 'organizer@testing.com'; $recipient = 'attendee1@testing.com'; $calendar = $this->vCalendar1a; $calendar->add('METHOD', 'CANCEL'); // test method $result = $manager->handleIMipRequest($principalUri, $sender, $recipient, $calendar->serialize()); $this->assertFalse($result); } public function testHandleImipRequestWithNoEvent(): void { // construct mock user calendar $userCalendar = $this->createMock(ITestCalendar::class); // construct mock calendar manager and returns /** @var Manager&MockObject $manager */ $manager = $this->getMockBuilder(Manager::class) ->setConstructorArgs([ $this->coordinator, $this->container, $this->logger, $this->time, $this->secureRandom, $this->userManager, $this->serverFactory, ]) ->onlyMethods(['getCalendarsForPrincipal']) ->getMock(); $manager->expects(self::once()) ->method('getCalendarsForPrincipal') ->willReturn([$userCalendar]); // construct logger returns $this->logger->expects(self::once())->method('warning') ->with('iMip message contains no event'); // construct parameters $principalUri = 'principals/user/attendee1'; $sender = 'organizer@testing.com'; $recipient = 'attendee1@testing.com'; $calendar = $this->vCalendar1a; $calendar->add('METHOD', 'REQUEST'); $calendar->remove('VEVENT'); // test method $result = $manager->handleIMipRequest($principalUri, $sender, $recipient, $calendar->serialize()); $this->assertFalse($result); } public function testHandleImipRequestWithNoUid(): void { // construct mock user calendar $userCalendar = $this->createMock(ITestCalendar::class); // construct mock calendar manager and returns /** @var Manager&MockObject $manager */ $manager = $this->getMockBuilder(Manager::class) ->setConstructorArgs([ $this->coordinator, $this->container, $this->logger, $this->time, $this->secureRandom, $this->userManager, $this->serverFactory, ]) ->onlyMethods(['getCalendarsForPrincipal']) ->getMock(); $manager->expects(self::once()) ->method('getCalendarsForPrincipal') ->willReturn([$userCalendar]); // construct logger returns $this->logger->expects(self::once())->method('warning') ->with('iMip message event dose not contains a UID'); // construct parameters $principalUri = 'principals/user/attendee1'; $sender = 'organizer@testing.com'; $recipient = 'attendee1@testing.com'; $calendar = $this->vCalendar1a; $calendar->add('METHOD', 'REQUEST'); $calendar->VEVENT->remove('UID'); // test method $result = $manager->handleIMipRequest($principalUri, $sender, $recipient, $calendar->serialize()); $this->assertFalse($result); } public function testHandleImipRequestWithNoAttendee(): void { // construct mock user calendar $userCalendar = $this->createMock(ITestCalendar::class); // construct mock calendar manager and returns /** @var Manager&MockObject $manager */ $manager = $this->getMockBuilder(Manager::class) ->setConstructorArgs([ $this->coordinator, $this->container, $this->logger, $this->time, $this->secureRandom, $this->userManager, $this->serverFactory, ]) ->onlyMethods(['getCalendarsForPrincipal']) ->getMock(); $manager->expects(self::once()) ->method('getCalendarsForPrincipal') ->willReturn([$userCalendar]); // construct logger returns $this->logger->expects(self::once())->method('warning') ->with('iMip message event dose not contains any attendees'); // construct parameters $principalUri = 'principals/user/attendee1'; $sender = 'organizer@testing.com'; $recipient = 'attendee1@testing.com'; $calendar = $this->vCalendar1a; $calendar->add('METHOD', 'REQUEST'); $calendar->VEVENT->remove('ATTENDEE'); // test method $result = $manager->handleIMipRequest($principalUri, $sender, $recipient, $calendar->serialize()); $this->assertFalse($result); } public function testHandleImipRequestWithInvalidAttendee(): void { // construct mock user calendar $userCalendar = $this->createMock(ITestCalendar::class); // construct mock calendar manager and returns /** @var Manager&MockObject $manager */ $manager = $this->getMockBuilder(Manager::class) ->setConstructorArgs([ $this->coordinator, $this->container, $this->logger, $this->time, $this->secureRandom, $this->userManager, $this->serverFactory, ]) ->onlyMethods(['getCalendarsForPrincipal']) ->getMock(); $manager->expects(self::once()) ->method('getCalendarsForPrincipal') ->willReturn([$userCalendar]); // construct logger returns $this->logger->expects(self::once())->method('warning') ->with('iMip message event does not contain a attendee that matches the recipient'); // construct parameters $principalUri = 'principals/user/attendee1'; $sender = 'organizer@testing.com'; $recipient = 'attendee2@testing.com'; $calendar = $this->vCalendar1a; $calendar->add('METHOD', 'REQUEST'); // test method $result = $manager->handleIMipRequest($principalUri, $sender, $recipient, $calendar->serialize()); $this->assertFalse($result); } public function testHandleImipRequestWithNoMatch(): void { // construct mock user calendar $userCalendar = $this->createMock(ITestCalendar::class); $userCalendar->expects(self::once()) ->method('isDeleted') ->willReturn(false); $userCalendar->expects(self::once()) ->method('isWritable') ->willReturn(true); $userCalendar->expects(self::once()) ->method('isShared') ->willReturn(false); $userCalendar->expects(self::once()) ->method('search') ->willReturn([]); // construct mock calendar manager and returns /** @var Manager&MockObject $manager */ $manager = $this->getMockBuilder(Manager::class) ->setConstructorArgs([ $this->coordinator, $this->container, $this->logger, $this->time, $this->secureRandom, $this->userManager, $this->serverFactory, ]) ->onlyMethods(['getCalendarsForPrincipal']) ->getMock(); $manager->expects(self::once()) ->method('getCalendarsForPrincipal') ->willReturn([$userCalendar]); // construct logger returns $this->logger->expects(self::once())->method('warning') ->with('iMip message event could not be processed because the no corresponding event was found in any calendar'); // construct parameters $principalUri = 'principals/user/attendee1'; $sender = 'organizer@testing.com'; $recipient = 'attendee1@testing.com'; $calendar = $this->vCalendar1a; $calendar->add('METHOD', 'REQUEST'); // test method $result = $manager->handleIMipRequest($principalUri, $sender, $recipient, $calendar->serialize()); $this->assertFalse($result); } public function testHandleImipRequest(): void { // construct mock user calendar $userCalendar = $this->createMock(ITestCalendar::class); $userCalendar->expects(self::once()) ->method('isDeleted') ->willReturn(false); $userCalendar->expects(self::once()) ->method('isWritable') ->willReturn(true); $userCalendar->expects(self::once()) ->method('isShared') ->willReturn(false); $userCalendar->expects(self::once()) ->method('search') ->willReturn([['uri' => 'principals/user/attendee1/personal']]); // construct mock calendar manager and returns /** @var Manager&MockObject $manager */ $manager = $this->getMockBuilder(Manager::class) ->setConstructorArgs([ $this->coordinator, $this->container, $this->logger, $this->time, $this->secureRandom, $this->userManager, $this->serverFactory, ]) ->onlyMethods(['getCalendarsForPrincipal']) ->getMock(); $manager->expects(self::once()) ->method('getCalendarsForPrincipal') ->willReturn([$userCalendar]); // construct parameters $principalUri = 'principals/user/attendee1'; $sender = 'organizer@testing.com'; $recipient = 'attendee1@testing.com'; $calendar = $this->vCalendar1a; $calendar->add('METHOD', 'REQUEST'); // construct user calendar returns $userCalendar->expects(self::once()) ->method('handleIMipMessage') ->with('', $calendar->serialize()); // test method $result = $manager->handleIMipRequest($principalUri, $sender, $recipient, $calendar->serialize()); $this->assertTrue($result); } 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, $this->secureRandom, $this->userManager, $this->serverFactory, ]) ->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, $this->secureRandom, $this->userManager, $this->serverFactory, ]) ->setMethods([ 'getCalendarsForPrincipal' ]) ->getMock(); $calendar = $this->createMock(ITestCalendar::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, $this->secureRandom, $this->userManager, $this->serverFactory, ]) ->setMethods([ 'getCalendarsForPrincipal' ]) ->getMock(); $calendar = $this->createMock(ITestCalendar::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, $this->secureRandom, $this->userManager, $this->serverFactory, ]) ->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, $this->secureRandom, $this->userManager, $this->serverFactory, ]) ->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(ITestCalendar::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, $this->secureRandom, $this->userManager, $this->serverFactory, ]) ->setMethods([ 'getCalendarsForPrincipal' ]) ->getMock(); $principalUri = 'principals/user/pierre'; $sender = 'linus@stardew-tent-living.com'; $recipient = 'pierre@general-store.com'; $replyTo = null; $calendar = $this->createMock(ITestCalendar::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 = << mailto:admin@imap.localhost 2.0;Success BEGIN:VCALENDAR VERSION:2.0 PRODID:-//Sabre//Sabre VObject 4.5.6//EN CALSCALE:GREGORIAN METHOD:REPLY BEGIN:VFREEBUSY DTSTART:20250116T060000Z DTEND:20250117T060000Z DTSTAMP:20250111T125634Z FREEBUSY:20250116T060000Z/20250116T230000Z FREEBUSY;FBTYPE=BUSY-UNAVAILABLE:20250116T230000Z/20250117T060000Z ATTENDEE:mailto:admin@imap.localhost UID:6099eab3-9bf1-4c7a-809e-4d46957cc372 ORGANIZER;CN=admin:mailto:admin@imap.localhost END:VFREEBUSY END:VCALENDAR mailto:empty@imap.localhost 2.0;Success BEGIN:VCALENDAR VERSION:2.0 PRODID:-//Sabre//Sabre VObject 4.5.6//EN CALSCALE:GREGORIAN METHOD:REPLY BEGIN:VFREEBUSY DTSTART:20250116T060000Z DTEND:20250117T060000Z DTSTAMP:20250111T125634Z ATTENDEE:mailto:empty@imap.localhost UID:6099eab3-9bf1-4c7a-809e-4d46957cc372 ORGANIZER;CN=admin:mailto:admin@imap.localhost END:VFREEBUSY END:VCALENDAR mailto:user@imap.localhost 2.0;Success BEGIN:VCALENDAR VERSION:2.0 PRODID:-//Sabre//Sabre VObject 4.5.6//EN CALSCALE:GREGORIAN METHOD:REPLY BEGIN:VFREEBUSY DTSTART:20250116T060000Z DTEND:20250117T060000Z DTSTAMP:20250111T125634Z FREEBUSY:20250116T060000Z/20250116T230000Z FREEBUSY;FBTYPE=BUSY-UNAVAILABLE:20250116T230000Z/20250117T060000Z ATTENDEE:mailto:user@imap.localhost UID:6099eab3-9bf1-4c7a-809e-4d46957cc372 ORGANIZER;CN=admin:mailto:admin@imap.localhost END:VFREEBUSY END:VCALENDAR mailto:nouser@domain.tld 3.7;Could not find principal EOF; } public function testCheckAvailability(): void { $organizer = $this->createMock(IUser::class); $organizer->expects(self::once()) ->method('getUID') ->willReturn('admin'); $organizer->expects(self::once()) ->method('getEMailAddress') ->willReturn('admin@imap.localhost'); $user1 = $this->createMock(IUser::class); $user2 = $this->createMock(IUser::class); $this->userManager->expects(self::exactly(3)) ->method('getByEmail') ->willReturnMap([ ['user@imap.localhost', [$user1]], ['empty@imap.localhost', [$user2]], ['nouser@domain.tld', []], ]); $authPlugin = $this->createMock(CustomPrincipalPlugin::class); $authPlugin->expects(self::once()) ->method('setCurrentPrincipal') ->with('principals/users/admin'); $server = $this->createMock(\OCA\DAV\Connector\Sabre\Server::class); $server->expects(self::once()) ->method('getPlugin') ->with('auth') ->willReturn($authPlugin); $server->expects(self::once()) ->method('invokeMethod') ->willReturnCallback(function ( RequestInterface $request, ResponseInterface $response, bool $sendResponse, ) { $requestBody = file_get_contents(__DIR__ . '/../../data/ics/free-busy-request.ics'); $this->assertEquals('POST', $request->getMethod()); $this->assertEquals('calendars/admin/outbox', $request->getPath()); $this->assertEquals('text/calendar', $request->getHeader('Content-Type')); $this->assertEquals('0', $request->getHeader('Depth')); $this->assertEquals($requestBody, $request->getBodyAsString()); $this->assertFalse($sendResponse); $response->setStatus(200); $response->setBody($this->getFreeBusyResponse()); }); $this->serverFactory->expects(self::once()) ->method('createAttendeeAvailabilityServer') ->willReturn($server); $start = new DateTimeImmutable('2025-01-16T06:00:00Z'); $end = new DateTimeImmutable('2025-01-17T06:00:00Z'); $actual = $this->manager->checkAvailability($start, $end, $organizer, [ 'user@imap.localhost', 'empty@imap.localhost', 'nouser@domain.tld', ]); $expected = [ new AvailabilityResult('admin@imap.localhost', false), new AvailabilityResult('empty@imap.localhost', true), new AvailabilityResult('user@imap.localhost', false), ]; $this->assertEquals($expected, $actual); } public function testCheckAvailabilityWithMailtoPrefix(): void { $organizer = $this->createMock(IUser::class); $organizer->expects(self::once()) ->method('getUID') ->willReturn('admin'); $organizer->expects(self::once()) ->method('getEMailAddress') ->willReturn('admin@imap.localhost'); $user1 = $this->createMock(IUser::class); $user2 = $this->createMock(IUser::class); $this->userManager->expects(self::exactly(3)) ->method('getByEmail') ->willReturnMap([ ['user@imap.localhost', [$user1]], ['empty@imap.localhost', [$user2]], ['nouser@domain.tld', []], ]); $authPlugin = $this->createMock(CustomPrincipalPlugin::class); $authPlugin->expects(self::once()) ->method('setCurrentPrincipal') ->with('principals/users/admin'); $server = $this->createMock(\OCA\DAV\Connector\Sabre\Server::class); $server->expects(self::once()) ->method('getPlugin') ->with('auth') ->willReturn($authPlugin); $server->expects(self::once()) ->method('invokeMethod') ->willReturnCallback(function ( RequestInterface $request, ResponseInterface $response, bool $sendResponse, ) { $requestBody = file_get_contents(__DIR__ . '/../../data/ics/free-busy-request.ics'); $this->assertEquals('POST', $request->getMethod()); $this->assertEquals('calendars/admin/outbox', $request->getPath()); $this->assertEquals('text/calendar', $request->getHeader('Content-Type')); $this->assertEquals('0', $request->getHeader('Depth')); $this->assertEquals($requestBody, $request->getBodyAsString()); $this->assertFalse($sendResponse); $response->setStatus(200); $response->setBody($this->getFreeBusyResponse()); }); $this->serverFactory->expects(self::once()) ->method('createAttendeeAvailabilityServer') ->willReturn($server); $start = new DateTimeImmutable('2025-01-16T06:00:00Z'); $end = new DateTimeImmutable('2025-01-17T06:00:00Z'); $actual = $this->manager->checkAvailability($start, $end, $organizer, [ 'mailto:user@imap.localhost', 'mailto:empty@imap.localhost', 'mailto:nouser@domain.tld', ]); $expected = [ new AvailabilityResult('admin@imap.localhost', false), new AvailabilityResult('empty@imap.localhost', true), new AvailabilityResult('user@imap.localhost', false), ]; $this->assertEquals($expected, $actual); } }