123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- * @copyright Copyright (c) 2017, Georg Ehrke
- *
- * @author brad2014 <brad2014@users.noreply.github.com>
- * @author Brad Rubenstein <brad@wbr.tech>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Georg Ehrke <oc.list@georgehrke.com>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Thomas Citharel <nextcloud@tcit.fr>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * 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, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OCA\DAV\Tests\unit\CalDAV\Schedule;
- use OCA\DAV\CalDAV\EventComparisonService;
- use OCA\DAV\CalDAV\Schedule\IMipPlugin;
- use OCA\DAV\CalDAV\Schedule\IMipService;
- use OCP\AppFramework\Utility\ITimeFactory;
- use OCP\Defaults;
- use OCP\IConfig;
- use OCP\IUserManager;
- use OCP\Mail\IAttachment;
- use OCP\Mail\IEMailTemplate;
- use OCP\Mail\IMailer;
- use OCP\Mail\IMessage;
- use PHPUnit\Framework\MockObject\MockObject;
- use Psr\Log\LoggerInterface;
- use Sabre\VObject\Component\VCalendar;
- use Sabre\VObject\Component\VEvent;
- use Sabre\VObject\ITip\Message;
- use Test\TestCase;
- use function array_merge;
- class IMipPluginTest extends TestCase {
- /** @var IMessage|MockObject */
- private $mailMessage;
- /** @var IMailer|MockObject */
- private $mailer;
- /** @var IEMailTemplate|MockObject */
- private $emailTemplate;
- /** @var IAttachment|MockObject */
- private $emailAttachment;
- /** @var ITimeFactory|MockObject */
- private $timeFactory;
- /** @var IConfig|MockObject */
- private $config;
- /** @var IUserManager|MockObject */
- private $userManager;
- /** @var IMipPlugin */
- private $plugin;
- /** @var IMipService|MockObject */
- private $service;
- /** @var Defaults|MockObject */
- private $defaults;
- /** @var LoggerInterface|MockObject */
- private $logger;
- /** @var EventComparisonService|MockObject */
- private $eventComparisonService;
- protected function setUp(): void {
- $this->mailMessage = $this->createMock(IMessage::class);
- $this->mailMessage->method('setFrom')->willReturn($this->mailMessage);
- $this->mailMessage->method('setReplyTo')->willReturn($this->mailMessage);
- $this->mailMessage->method('setTo')->willReturn($this->mailMessage);
- $this->mailer = $this->createMock(IMailer::class);
- $this->mailer->method('createMessage')->willReturn($this->mailMessage);
- $this->emailTemplate = $this->createMock(IEMailTemplate::class);
- $this->mailer->method('createEMailTemplate')->willReturn($this->emailTemplate);
- $this->emailAttachment = $this->createMock(IAttachment::class);
- $this->mailer->method('createAttachment')->willReturn($this->emailAttachment);
- $this->logger = $this->createMock(LoggerInterface::class);
- $this->timeFactory = $this->createMock(ITimeFactory::class);
- $this->timeFactory->method('getTime')->willReturn(1496912528); // 2017-01-01
- $this->config = $this->createMock(IConfig::class);
- $this->userManager = $this->createMock(IUserManager::class);
- $this->defaults = $this->createMock(Defaults::class);
- $this->defaults->method('getName')
- ->willReturn('Instance Name 123');
- $this->service = $this->createMock(IMipService::class);
- $this->eventComparisonService = $this->createMock(EventComparisonService::class);
- $this->plugin = new IMipPlugin(
- $this->config,
- $this->mailer,
- $this->logger,
- $this->timeFactory,
- $this->defaults,
- $this->userManager,
- 'user123',
- $this->service,
- $this->eventComparisonService
- );
- }
- public function testDeliveryNoSignificantChange(): void {
- $message = new Message();
- $message->method = 'REQUEST';
- $message->message = new VCalendar();
- $message->message->add('VEVENT', array_merge([
- 'UID' => 'uid-1234',
- 'SEQUENCE' => 0,
- 'SUMMARY' => 'Fellowship meeting',
- 'DTSTART' => new \DateTime('2016-01-01 00:00:00')
- ], []));
- $message->message->VEVENT->add('ORGANIZER', 'mailto:gandalf@wiz.ard');
- $message->message->VEVENT->add('ATTENDEE', 'mailto:' . 'frodo@hobb.it', ['RSVP' => 'TRUE']);
- $message->sender = 'mailto:gandalf@wiz.ard';
- $message->senderName = 'Mr. Wizard';
- $message->recipient = 'mailto:' . 'frodo@hobb.it';
- $message->significantChange = false;
- $this->plugin->schedule($message);
- $this->assertEquals('1.0', $message->getScheduleStatus());
- }
- public function testParsingSingle(): void {
- $message = new Message();
- $message->method = 'REQUEST';
- $newVCalendar = new VCalendar();
- $newVevent = new VEvent($newVCalendar, 'one', array_merge([
- 'UID' => 'uid-1234',
- 'SEQUENCE' => 1,
- 'SUMMARY' => 'Fellowship meeting without (!) Boromir',
- 'DTSTART' => new \DateTime('2016-01-01 00:00:00')
- ], []));
- $newVevent->add('ORGANIZER', 'mailto:gandalf@wiz.ard');
- $newVevent->add('ATTENDEE', 'mailto:' . 'frodo@hobb.it', ['RSVP' => 'TRUE', 'CN' => 'Frodo']);
- $message->message = $newVCalendar;
- $message->sender = 'mailto:gandalf@wiz.ard';
- $message->senderName = 'Mr. Wizard';
- $message->recipient = 'mailto:' . 'frodo@hobb.it';
- // save the old copy in the plugin
- $oldVCalendar = new VCalendar();
- $oldVEvent = new VEvent($oldVCalendar, 'one', [
- 'UID' => 'uid-1234',
- 'SEQUENCE' => 0,
- 'SUMMARY' => 'Fellowship meeting',
- 'DTSTART' => new \DateTime('2016-01-01 00:00:00')
- ]);
- $oldVEvent->add('ORGANIZER', 'mailto:gandalf@wiz.ard');
- $oldVEvent->add('ATTENDEE', 'mailto:' . 'frodo@hobb.it', ['RSVP' => 'TRUE', 'CN' => 'Frodo']);
- $oldVEvent->add('ATTENDEE', 'mailto:' . 'boromir@tra.it.or', ['RSVP' => 'TRUE']);
- $oldVCalendar->add($oldVEvent);
- $data = ['invitee_name' => 'Mr. Wizard',
- 'meeting_title' => 'Fellowship meeting without (!) Boromir',
- 'attendee_name' => 'frodo@hobb.it'
- ];
- $attendees = $newVevent->select('ATTENDEE');
- $atnd = '';
- foreach ($attendees as $attendee) {
- if (strcasecmp($attendee->getValue(), $message->recipient) === 0) {
- $atnd = $attendee;
- }
- }
- $this->plugin->setVCalendar($oldVCalendar);
- $this->service->expects(self::once())
- ->method('getLastOccurrence')
- ->willReturn('1496912700');
- $this->mailer->expects(self::once())
- ->method('validateMailAddress')
- ->with('frodo@hobb.it')
- ->willReturn(true);
- $this->eventComparisonService->expects(self::once())
- ->method('findModified')
- ->willReturn(['new' => [$newVevent], 'old' => [$oldVEvent]]);
- $this->service->expects(self::once())
- ->method('getCurrentAttendee')
- ->with($message)
- ->willReturn($atnd);
- $this->service->expects(self::once())
- ->method('isRoomOrResource')
- ->with($atnd)
- ->willReturn(false);
- $this->service->expects(self::once())
- ->method('buildBodyData')
- ->with($newVevent, $oldVEvent)
- ->willReturn($data);
- $this->userManager->expects(self::never())
- ->method('getDisplayName');
- $this->service->expects(self::once())
- ->method('getFrom');
- $this->service->expects(self::once())
- ->method('addSubjectAndHeading')
- ->with($this->emailTemplate, 'request', 'Mr. Wizard', 'Fellowship meeting without (!) Boromir', true);
- $this->service->expects(self::once())
- ->method('addBulletList')
- ->with($this->emailTemplate, $newVevent, $data);
- $this->service->expects(self::once())
- ->method('getAttendeeRsvpOrReqForParticipant')
- ->willReturn(true);
- $this->config->expects(self::once())
- ->method('getAppValue')
- ->with('dav', 'invitation_link_recipients', 'yes')
- ->willReturn('yes');
- $this->service->expects(self::once())
- ->method('createInvitationToken')
- ->with($message, $newVevent, '1496912700')
- ->willReturn('token');
- $this->service->expects(self::once())
- ->method('addResponseButtons')
- ->with($this->emailTemplate, 'token');
- $this->service->expects(self::once())
- ->method('addMoreOptionsButton')
- ->with($this->emailTemplate, 'token');
- $this->mailer->expects(self::once())
- ->method('send')
- ->willReturn([]);
- $this->plugin->schedule($message);
- $this->assertEquals('1.1', $message->getScheduleStatus());
- }
- public function testAttendeeIsResource(): void {
- $message = new Message();
- $message->method = 'REQUEST';
- $newVCalendar = new VCalendar();
- $newVevent = new VEvent($newVCalendar, 'one', array_merge([
- 'UID' => 'uid-1234',
- 'SEQUENCE' => 1,
- 'SUMMARY' => 'Fellowship meeting without (!) Boromir',
- 'DTSTART' => new \DateTime('2016-01-01 00:00:00')
- ], []));
- $newVevent->add('ORGANIZER', 'mailto:gandalf@wiz.ard');
- $newVevent->add('ATTENDEE', 'mailto:' . 'the-shire@hobb.it', ['RSVP' => 'TRUE', 'CN' => 'The Shire', 'CUTYPE' => 'ROOM']);
- $message->message = $newVCalendar;
- $message->sender = 'mailto:gandalf@wiz.ard';
- $message->senderName = 'Mr. Wizard';
- $message->recipient = 'mailto:' . 'the-shire@hobb.it';
- // save the old copy in the plugin
- $oldVCalendar = new VCalendar();
- $oldVEvent = new VEvent($oldVCalendar, 'one', [
- 'UID' => 'uid-1234',
- 'SEQUENCE' => 0,
- 'SUMMARY' => 'Fellowship meeting',
- 'DTSTART' => new \DateTime('2016-01-01 00:00:00')
- ]);
- $oldVEvent->add('ORGANIZER', 'mailto:gandalf@wiz.ard');
- $oldVEvent->add('ATTENDEE', 'mailto:' . 'the-shire@hobb.it', ['RSVP' => 'TRUE', 'CN' => 'The Shire', 'CUTYPE' => 'ROOM']);
- $oldVEvent->add('ATTENDEE', 'mailto:' . 'boromir@tra.it.or', ['RSVP' => 'TRUE']);
- $oldVCalendar->add($oldVEvent);
- $data = ['invitee_name' => 'Mr. Wizard',
- 'meeting_title' => 'Fellowship meeting without (!) Boromir',
- 'attendee_name' => 'frodo@hobb.it'
- ];
- $attendees = $newVevent->select('ATTENDEE');
- $room = '';
- foreach ($attendees as $attendee) {
- if (strcasecmp($attendee->getValue(), $message->recipient) === 0) {
- $room = $attendee;
- }
- }
- $this->plugin->setVCalendar($oldVCalendar);
- $this->service->expects(self::once())
- ->method('getLastOccurrence')
- ->willReturn('1496912700');
- $this->mailer->expects(self::once())
- ->method('validateMailAddress')
- ->with('the-shire@hobb.it')
- ->willReturn(true);
- $this->eventComparisonService->expects(self::once())
- ->method('findModified')
- ->willReturn(['new' => [$newVevent], 'old' => [$oldVEvent]]);
- $this->service->expects(self::once())
- ->method('getCurrentAttendee')
- ->with($message)
- ->willReturn($room);
- $this->service->expects(self::once())
- ->method('isRoomOrResource')
- ->with($room)
- ->willReturn(true);
- $this->service->expects(self::never())
- ->method('buildBodyData');
- $this->userManager->expects(self::never())
- ->method('getDisplayName');
- $this->service->expects(self::never())
- ->method('getFrom');
- $this->service->expects(self::never())
- ->method('addSubjectAndHeading');
- $this->service->expects(self::never())
- ->method('addBulletList');
- $this->service->expects(self::never())
- ->method('getAttendeeRsvpOrReqForParticipant');
- $this->config->expects(self::never())
- ->method('getAppValue');
- $this->service->expects(self::never())
- ->method('createInvitationToken');
- $this->service->expects(self::never())
- ->method('addResponseButtons');
- $this->service->expects(self::never())
- ->method('addMoreOptionsButton');
- $this->mailer->expects(self::never())
- ->method('send');
- $this->plugin->schedule($message);
- $this->assertEquals('1.0', $message->getScheduleStatus());
- }
- public function testParsingRecurrence(): void {
- $message = new Message();
- $message->method = 'REQUEST';
- $newVCalendar = new VCalendar();
- $newVevent = new VEvent($newVCalendar, 'one', [
- 'UID' => 'uid-1234',
- 'LAST-MODIFIED' => 123456,
- 'SEQUENCE' => 2,
- 'SUMMARY' => 'Fellowship meeting',
- 'DTSTART' => new \DateTime('2016-01-01 00:00:00'),
- 'RRULE' => 'FREQ=DAILY;INTERVAL=1;UNTIL=20160201T000000Z'
- ]);
- $newVevent->add('ORGANIZER', 'mailto:gandalf@wiz.ard');
- $newVevent->add('ATTENDEE', 'mailto:' . 'frodo@hobb.it', ['RSVP' => 'TRUE', 'CN' => 'Frodo']);
- $newvEvent2 = new VEvent($newVCalendar, 'two', [
- 'UID' => 'uid-1234',
- 'SEQUENCE' => 1,
- 'SUMMARY' => 'Elevenses',
- 'DTSTART' => new \DateTime('2016-01-01 00:00:00'),
- 'RECURRENCE-ID' => new \DateTime('2016-01-01 00:00:00')
- ]);
- $newvEvent2->add('ORGANIZER', 'mailto:gandalf@wiz.ard');
- $newvEvent2->add('ATTENDEE', 'mailto:' . 'frodo@hobb.it', ['RSVP' => 'TRUE', 'CN' => 'Frodo']);
- $message->message = $newVCalendar;
- $message->sender = 'mailto:gandalf@wiz.ard';
- $message->recipient = 'mailto:' . 'frodo@hobb.it';
- // save the old copy in the plugin
- $oldVCalendar = new VCalendar();
- $oldVEvent = new VEvent($oldVCalendar, 'one', [
- 'UID' => 'uid-1234',
- 'LAST-MODIFIED' => 123456,
- 'SEQUENCE' => 2,
- 'SUMMARY' => 'Fellowship meeting',
- 'DTSTART' => new \DateTime('2016-01-01 00:00:00'),
- 'RRULE' => 'FREQ=DAILY;INTERVAL=1;UNTIL=20160201T000000Z'
- ]);
- $oldVEvent->add('ORGANIZER', 'mailto:gandalf@wiz.ard');
- $oldVEvent->add('ATTENDEE', 'mailto:' . 'frodo@hobb.it', ['RSVP' => 'TRUE', 'CN' => 'Frodo']);
- $data = ['invitee_name' => 'Mr. Wizard',
- 'meeting_title' => 'Elevenses',
- 'attendee_name' => 'frodo@hobb.it'
- ];
- $attendees = $newVevent->select('ATTENDEE');
- $atnd = '';
- foreach ($attendees as $attendee) {
- if (strcasecmp($attendee->getValue(), $message->recipient) === 0) {
- $atnd = $attendee;
- }
- }
- $this->plugin->setVCalendar($oldVCalendar);
- $this->service->expects(self::once())
- ->method('getLastOccurrence')
- ->willReturn('1496912700');
- $this->mailer->expects(self::once())
- ->method('validateMailAddress')
- ->with('frodo@hobb.it')
- ->willReturn(true);
- $this->eventComparisonService->expects(self::once())
- ->method('findModified')
- ->willReturn(['old' => [] ,'new' => [$newVevent]]);
- $this->service->expects(self::once())
- ->method('getCurrentAttendee')
- ->with($message)
- ->willReturn($atnd);
- $this->service->expects(self::once())
- ->method('isRoomOrResource')
- ->with($atnd)
- ->willReturn(false);
- $this->service->expects(self::once())
- ->method('buildBodyData')
- ->with($newVevent, null)
- ->willReturn($data);
- $this->userManager->expects(self::once())
- ->method('getDisplayName')
- ->willReturn('Mr. Wizard');
- $this->service->expects(self::once())
- ->method('getFrom');
- $this->service->expects(self::once())
- ->method('addSubjectAndHeading')
- ->with($this->emailTemplate, 'request', 'Mr. Wizard', 'Elevenses', false);
- $this->service->expects(self::once())
- ->method('addBulletList')
- ->with($this->emailTemplate, $newVevent, $data);
- $this->service->expects(self::once())
- ->method('getAttendeeRsvpOrReqForParticipant')
- ->willReturn(true);
- $this->config->expects(self::once())
- ->method('getAppValue')
- ->with('dav', 'invitation_link_recipients', 'yes')
- ->willReturn('yes');
- $this->service->expects(self::once())
- ->method('createInvitationToken')
- ->with($message, $newVevent, '1496912700')
- ->willReturn('token');
- $this->service->expects(self::once())
- ->method('addResponseButtons')
- ->with($this->emailTemplate, 'token');
- $this->service->expects(self::once())
- ->method('addMoreOptionsButton')
- ->with($this->emailTemplate, 'token');
- $this->mailer->expects(self::once())
- ->method('send')
- ->willReturn([]);
- $this->plugin->schedule($message);
- $this->assertEquals('1.1', $message->getScheduleStatus());
- }
- public function testEmailValidationFailed() {
- $message = new Message();
- $message->method = 'REQUEST';
- $message->message = new VCalendar();
- $message->message->add('VEVENT', array_merge([
- 'UID' => 'uid-1234',
- 'SEQUENCE' => 0,
- 'SUMMARY' => 'Fellowship meeting',
- 'DTSTART' => new \DateTime('2016-01-01 00:00:00')
- ], []));
- $message->message->VEVENT->add('ORGANIZER', 'mailto:gandalf@wiz.ard');
- $message->message->VEVENT->add('ATTENDEE', 'mailto:' . 'frodo@hobb.it', ['RSVP' => 'TRUE']);
- $message->sender = 'mailto:gandalf@wiz.ard';
- $message->senderName = 'Mr. Wizard';
- $message->recipient = 'mailto:' . 'frodo@hobb.it';
- $this->service->expects(self::once())
- ->method('getLastOccurrence')
- ->willReturn('1496912700');
- $this->mailer->expects(self::once())
- ->method('validateMailAddress')
- ->with('frodo@hobb.it')
- ->willReturn(false);
- $this->plugin->schedule($message);
- $this->assertEquals('5.0', $message->getScheduleStatus());
- }
- public function testFailedDelivery(): void {
- $message = new Message();
- $message->method = 'REQUEST';
- $newVcalendar = new VCalendar();
- $newVevent = new VEvent($newVcalendar, 'one', array_merge([
- 'UID' => 'uid-1234',
- 'SEQUENCE' => 1,
- 'SUMMARY' => 'Fellowship meeting without (!) Boromir',
- 'DTSTART' => new \DateTime('2016-01-01 00:00:00')
- ], []));
- $newVevent->add('ORGANIZER', 'mailto:gandalf@wiz.ard');
- $newVevent->add('ATTENDEE', 'mailto:' . 'frodo@hobb.it', ['RSVP' => 'TRUE', 'CN' => 'Frodo']);
- $message->message = $newVcalendar;
- $message->sender = 'mailto:gandalf@wiz.ard';
- $message->senderName = 'Mr. Wizard';
- $message->recipient = 'mailto:' . 'frodo@hobb.it';
- // save the old copy in the plugin
- $oldVcalendar = new VCalendar();
- $oldVevent = new VEvent($oldVcalendar, 'one', [
- 'UID' => 'uid-1234',
- 'SEQUENCE' => 0,
- 'SUMMARY' => 'Fellowship meeting',
- 'DTSTART' => new \DateTime('2016-01-01 00:00:00')
- ]);
- $oldVevent->add('ORGANIZER', 'mailto:gandalf@wiz.ard');
- $oldVevent->add('ATTENDEE', 'mailto:' . 'frodo@hobb.it', ['RSVP' => 'TRUE', 'CN' => 'Frodo']);
- $oldVevent->add('ATTENDEE', 'mailto:' . 'boromir@tra.it.or', ['RSVP' => 'TRUE']);
- $oldVcalendar->add($oldVevent);
- $data = ['invitee_name' => 'Mr. Wizard',
- 'meeting_title' => 'Fellowship meeting without (!) Boromir',
- 'attendee_name' => 'frodo@hobb.it'
- ];
- $attendees = $newVevent->select('ATTENDEE');
- $atnd = '';
- foreach ($attendees as $attendee) {
- if (strcasecmp($attendee->getValue(), $message->recipient) === 0) {
- $atnd = $attendee;
- }
- }
- $this->plugin->setVCalendar($oldVcalendar);
- $this->service->expects(self::once())
- ->method('getLastOccurrence')
- ->willReturn('1496912700');
- $this->mailer->expects(self::once())
- ->method('validateMailAddress')
- ->with('frodo@hobb.it')
- ->willReturn(true);
- $this->eventComparisonService->expects(self::once())
- ->method('findModified')
- ->willReturn(['old' => [] ,'new' => [$newVevent]]);
- $this->service->expects(self::once())
- ->method('getCurrentAttendee')
- ->with($message)
- ->willReturn($atnd);
- $this->service->expects(self::once())
- ->method('isRoomOrResource')
- ->with($atnd)
- ->willReturn(false);
- $this->service->expects(self::once())
- ->method('buildBodyData')
- ->with($newVevent, null)
- ->willReturn($data);
- $this->userManager->expects(self::never())
- ->method('getDisplayName');
- $this->service->expects(self::once())
- ->method('getFrom');
- $this->service->expects(self::once())
- ->method('addSubjectAndHeading')
- ->with($this->emailTemplate, 'request', 'Mr. Wizard', 'Fellowship meeting without (!) Boromir', false);
- $this->service->expects(self::once())
- ->method('addBulletList')
- ->with($this->emailTemplate, $newVevent, $data);
- $this->service->expects(self::once())
- ->method('getAttendeeRsvpOrReqForParticipant')
- ->willReturn(true);
- $this->config->expects(self::once())
- ->method('getAppValue')
- ->with('dav', 'invitation_link_recipients', 'yes')
- ->willReturn('yes');
- $this->service->expects(self::once())
- ->method('createInvitationToken')
- ->with($message, $newVevent, '1496912700')
- ->willReturn('token');
- $this->service->expects(self::once())
- ->method('addResponseButtons')
- ->with($this->emailTemplate, 'token');
- $this->service->expects(self::once())
- ->method('addMoreOptionsButton')
- ->with($this->emailTemplate, 'token');
- $this->mailer->expects(self::once())
- ->method('send')
- ->willReturn([]);
- $this->mailer
- ->method('send')
- ->willThrowException(new \Exception());
- $this->logger->expects(self::once())
- ->method('error');
- $this->plugin->schedule($message);
- $this->assertEquals('5.0', $message->getScheduleStatus());
- }
- public function testNoOldEvent(): void {
- $message = new Message();
- $message->method = 'REQUEST';
- $newVCalendar = new VCalendar();
- $newVevent = new VEvent($newVCalendar, 'VEVENT', array_merge([
- 'UID' => 'uid-1234',
- 'SEQUENCE' => 1,
- 'SUMMARY' => 'Fellowship meeting',
- 'DTSTART' => new \DateTime('2016-01-01 00:00:00')
- ], []));
- $newVevent->add('ORGANIZER', 'mailto:gandalf@wiz.ard');
- $newVevent->add('ATTENDEE', 'mailto:' . 'frodo@hobb.it', ['RSVP' => 'TRUE', 'CN' => 'Frodo']);
- $message->message = $newVCalendar;
- $message->sender = 'mailto:gandalf@wiz.ard';
- $message->senderName = 'Mr. Wizard';
- $message->recipient = 'mailto:' . 'frodo@hobb.it';
- $data = ['invitee_name' => 'Mr. Wizard',
- 'meeting_title' => 'Fellowship meeting',
- 'attendee_name' => 'frodo@hobb.it'
- ];
- $attendees = $newVevent->select('ATTENDEE');
- $atnd = '';
- foreach ($attendees as $attendee) {
- if (strcasecmp($attendee->getValue(), $message->recipient) === 0) {
- $atnd = $attendee;
- }
- }
- $this->service->expects(self::once())
- ->method('getLastOccurrence')
- ->willReturn('1496912700');
- $this->mailer->expects(self::once())
- ->method('validateMailAddress')
- ->with('frodo@hobb.it')
- ->willReturn(true);
- $this->eventComparisonService->expects(self::once())
- ->method('findModified')
- ->with($newVCalendar, null)
- ->willReturn(['old' => [] ,'new' => [$newVevent]]);
- $this->service->expects(self::once())
- ->method('getCurrentAttendee')
- ->with($message)
- ->willReturn($atnd);
- $this->service->expects(self::once())
- ->method('isRoomOrResource')
- ->with($atnd)
- ->willReturn(false);
- $this->service->expects(self::once())
- ->method('buildBodyData')
- ->with($newVevent, null)
- ->willReturn($data);
- $this->userManager->expects(self::never())
- ->method('getDisplayName');
- $this->service->expects(self::once())
- ->method('getFrom');
- $this->service->expects(self::once())
- ->method('addSubjectAndHeading')
- ->with($this->emailTemplate, 'request', 'Mr. Wizard', 'Fellowship meeting', false);
- $this->service->expects(self::once())
- ->method('addBulletList')
- ->with($this->emailTemplate, $newVevent, $data);
- $this->service->expects(self::once())
- ->method('getAttendeeRsvpOrReqForParticipant')
- ->willReturn(true);
- $this->config->expects(self::once())
- ->method('getAppValue')
- ->with('dav', 'invitation_link_recipients', 'yes')
- ->willReturn('yes');
- $this->service->expects(self::once())
- ->method('createInvitationToken')
- ->with($message, $newVevent, '1496912700')
- ->willReturn('token');
- $this->service->expects(self::once())
- ->method('addResponseButtons')
- ->with($this->emailTemplate, 'token');
- $this->service->expects(self::once())
- ->method('addMoreOptionsButton')
- ->with($this->emailTemplate, 'token');
- $this->mailer->expects(self::once())
- ->method('send')
- ->willReturn([]);
- $this->mailer
- ->method('send')
- ->willReturn([]);
- $this->plugin->schedule($message);
- $this->assertEquals('1.1', $message->getScheduleStatus());
- }
- public function testNoButtons(): void {
- $message = new Message();
- $message->method = 'REQUEST';
- $newVCalendar = new VCalendar();
- $newVevent = new VEvent($newVCalendar, 'VEVENT', array_merge([
- 'UID' => 'uid-1234',
- 'SEQUENCE' => 1,
- 'SUMMARY' => 'Fellowship meeting',
- 'DTSTART' => new \DateTime('2016-01-01 00:00:00')
- ], []));
- $newVevent->add('ORGANIZER', 'mailto:gandalf@wiz.ard');
- $newVevent->add('ATTENDEE', 'mailto:' . 'frodo@hobb.it', ['RSVP' => 'TRUE', 'CN' => 'Frodo']);
- $message->message = $newVCalendar;
- $message->sender = 'mailto:gandalf@wiz.ard';
- $message->recipient = 'mailto:' . 'frodo@hobb.it';
- $data = ['invitee_name' => 'Mr. Wizard',
- 'meeting_title' => 'Fellowship meeting',
- 'attendee_name' => 'frodo@hobb.it'
- ];
- $attendees = $newVevent->select('ATTENDEE');
- $atnd = '';
- foreach ($attendees as $attendee) {
- if (strcasecmp($attendee->getValue(), $message->recipient) === 0) {
- $atnd = $attendee;
- }
- }
- $this->service->expects(self::once())
- ->method('getLastOccurrence')
- ->willReturn('1496912700');
- $this->mailer->expects(self::once())
- ->method('validateMailAddress')
- ->with('frodo@hobb.it')
- ->willReturn(true);
- $this->eventComparisonService->expects(self::once())
- ->method('findModified')
- ->with($newVCalendar, null)
- ->willReturn(['old' => [] ,'new' => [$newVevent]]);
- $this->service->expects(self::once())
- ->method('getCurrentAttendee')
- ->with($message)
- ->willReturn($atnd);
- $this->service->expects(self::once())
- ->method('isRoomOrResource')
- ->with($atnd)
- ->willReturn(false);
- $this->service->expects(self::once())
- ->method('buildBodyData')
- ->with($newVevent, null)
- ->willReturn($data);
- $this->userManager->expects(self::once())
- ->method('getDisplayName')
- ->willReturn('Mr. Wizard');
- $this->service->expects(self::once())
- ->method('getFrom');
- $this->service->expects(self::once())
- ->method('addSubjectAndHeading')
- ->with($this->emailTemplate, 'request', 'Mr. Wizard', 'Fellowship meeting', false);
- $this->service->expects(self::once())
- ->method('addBulletList')
- ->with($this->emailTemplate, $newVevent, $data);
- $this->service->expects(self::once())
- ->method('getAttendeeRsvpOrReqForParticipant')
- ->willReturn(true);
- $this->config->expects(self::once())
- ->method('getAppValue')
- ->with('dav', 'invitation_link_recipients', 'yes')
- ->willReturn('no');
- $this->service->expects(self::never())
- ->method('createInvitationToken');
- $this->service->expects(self::never())
- ->method('addResponseButtons');
- $this->service->expects(self::never())
- ->method('addMoreOptionsButton');
- $this->mailer->expects(self::once())
- ->method('send')
- ->willReturn([]);
- $this->mailer
- ->method('send')
- ->willReturn([]);
- $this->plugin->schedule($message);
- $this->assertEquals('1.1', $message->getScheduleStatus());
- }
- }
|