123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482 |
- <?php
- declare(strict_types=1);
- /**
- * @copyright Copyright (c) 2020, Georg Ehrke
- *
- * @author Georg Ehrke <oc.list@georgehrke.com>
- * @author John Molakvoæ <skjnldsv@protonmail.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 OCA\DAV\Tests\unit\Search;
- use OCA\DAV\CalDAV\CalDavBackend;
- use OCA\DAV\Search\EventsSearchProvider;
- use OCP\App\IAppManager;
- use OCP\IL10N;
- use OCP\IURLGenerator;
- use OCP\IUser;
- use OCP\Search\IFilter;
- use OCP\Search\ISearchQuery;
- use OCP\Search\SearchResult;
- use OCP\Search\SearchResultEntry;
- use Sabre\VObject\Reader;
- use Test\TestCase;
- class EventsSearchProviderTest extends TestCase {
- /** @var IAppManager|\PHPUnit\Framework\MockObject\MockObject */
- private $appManager;
- /** @var IL10N|\PHPUnit\Framework\MockObject\MockObject */
- private $l10n;
- /** @var IURLGenerator|\PHPUnit\Framework\MockObject\MockObject */
- private $urlGenerator;
- /** @var CalDavBackend|\PHPUnit\Framework\MockObject\MockObject */
- private $backend;
- /** @var EventsSearchProvider */
- private $provider;
- // NO SUMMARY
- private $vEvent0 = 'BEGIN:VCALENDAR'.PHP_EOL.
- 'VERSION:2.0'.PHP_EOL.
- 'PRODID:-//Apple Inc.//Mac OS X 10.11.6//EN'.PHP_EOL.
- 'CALSCALE:GREGORIAN'.PHP_EOL.
- 'BEGIN:VEVENT'.PHP_EOL.
- 'CREATED:20161004T144433Z'.PHP_EOL.
- 'UID:85560E76-1B0D-47E1-A735-21625767FCA4'.PHP_EOL.
- 'DTEND;VALUE=DATE:20161008'.PHP_EOL.
- 'TRANSP:TRANSPARENT'.PHP_EOL.
- 'DTSTART;VALUE=DATE:20161005'.PHP_EOL.
- 'DTSTAMP:20161004T144437Z'.PHP_EOL.
- 'SEQUENCE:0'.PHP_EOL.
- 'END:VEVENT'.PHP_EOL.
- 'END:VCALENDAR';
- // TIMED SAME DAY
- private $vEvent1 = 'BEGIN:VCALENDAR'.PHP_EOL.
- 'VERSION:2.0'.PHP_EOL.
- 'PRODID:-//Tests//'.PHP_EOL.
- 'CALSCALE:GREGORIAN'.PHP_EOL.
- 'BEGIN:VTIMEZONE'.PHP_EOL.
- 'TZID:Europe/Berlin'.PHP_EOL.
- 'BEGIN:DAYLIGHT'.PHP_EOL.
- 'TZOFFSETFROM:+0100'.PHP_EOL.
- 'RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU'.PHP_EOL.
- 'DTSTART:19810329T020000'.PHP_EOL.
- 'TZNAME:GMT+2'.PHP_EOL.
- 'TZOFFSETTO:+0200'.PHP_EOL.
- 'END:DAYLIGHT'.PHP_EOL.
- 'BEGIN:STANDARD'.PHP_EOL.
- 'TZOFFSETFROM:+0200'.PHP_EOL.
- 'RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU'.PHP_EOL.
- 'DTSTART:19961027T030000'.PHP_EOL.
- 'TZNAME:GMT+1'.PHP_EOL.
- 'TZOFFSETTO:+0100'.PHP_EOL.
- 'END:STANDARD'.PHP_EOL.
- 'END:VTIMEZONE'.PHP_EOL.
- 'BEGIN:VEVENT'.PHP_EOL.
- 'CREATED:20160809T163629Z'.PHP_EOL.
- 'UID:0AD16F58-01B3-463B-A215-FD09FC729A02'.PHP_EOL.
- 'DTEND;TZID=Europe/Berlin:20160816T100000'.PHP_EOL.
- 'TRANSP:OPAQUE'.PHP_EOL.
- 'SUMMARY:Test Europe Berlin'.PHP_EOL.
- 'DTSTART;TZID=Europe/Berlin:20160816T090000'.PHP_EOL.
- 'DTSTAMP:20160809T163632Z'.PHP_EOL.
- 'SEQUENCE:0'.PHP_EOL.
- 'END:VEVENT'.PHP_EOL.
- 'END:VCALENDAR';
- // TIMED DIFFERENT DAY
- private $vEvent2 = 'BEGIN:VCALENDAR'.PHP_EOL.
- 'VERSION:2.0'.PHP_EOL.
- 'PRODID:-//Tests//'.PHP_EOL.
- 'CALSCALE:GREGORIAN'.PHP_EOL.
- 'BEGIN:VTIMEZONE'.PHP_EOL.
- 'TZID:Europe/Berlin'.PHP_EOL.
- 'BEGIN:DAYLIGHT'.PHP_EOL.
- 'TZOFFSETFROM:+0100'.PHP_EOL.
- 'RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU'.PHP_EOL.
- 'DTSTART:19810329T020000'.PHP_EOL.
- 'TZNAME:GMT+2'.PHP_EOL.
- 'TZOFFSETTO:+0200'.PHP_EOL.
- 'END:DAYLIGHT'.PHP_EOL.
- 'BEGIN:STANDARD'.PHP_EOL.
- 'TZOFFSETFROM:+0200'.PHP_EOL.
- 'RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU'.PHP_EOL.
- 'DTSTART:19961027T030000'.PHP_EOL.
- 'TZNAME:GMT+1'.PHP_EOL.
- 'TZOFFSETTO:+0100'.PHP_EOL.
- 'END:STANDARD'.PHP_EOL.
- 'END:VTIMEZONE'.PHP_EOL.
- 'BEGIN:VEVENT'.PHP_EOL.
- 'CREATED:20160809T163629Z'.PHP_EOL.
- 'UID:0AD16F58-01B3-463B-A215-FD09FC729A02'.PHP_EOL.
- 'DTEND;TZID=Europe/Berlin:20160817T100000'.PHP_EOL.
- 'TRANSP:OPAQUE'.PHP_EOL.
- 'SUMMARY:Test Europe Berlin'.PHP_EOL.
- 'DTSTART;TZID=Europe/Berlin:20160816T090000'.PHP_EOL.
- 'DTSTAMP:20160809T163632Z'.PHP_EOL.
- 'SEQUENCE:0'.PHP_EOL.
- 'END:VEVENT'.PHP_EOL.
- 'END:VCALENDAR';
- // ALL-DAY ONE-DAY
- private $vEvent3 = 'BEGIN:VCALENDAR'.PHP_EOL.
- 'VERSION:2.0'.PHP_EOL.
- 'PRODID:-//Apple Inc.//Mac OS X 10.11.6//EN'.PHP_EOL.
- 'CALSCALE:GREGORIAN'.PHP_EOL.
- 'BEGIN:VEVENT'.PHP_EOL.
- 'CREATED:20161004T144433Z'.PHP_EOL.
- 'UID:85560E76-1B0D-47E1-A735-21625767FCA4'.PHP_EOL.
- 'DTEND;VALUE=DATE:20161006'.PHP_EOL.
- 'TRANSP:TRANSPARENT'.PHP_EOL.
- 'DTSTART;VALUE=DATE:20161005'.PHP_EOL.
- 'DTSTAMP:20161004T144437Z'.PHP_EOL.
- 'SEQUENCE:0'.PHP_EOL.
- 'END:VEVENT'.PHP_EOL.
- 'END:VCALENDAR';
- // ALL-DAY MULTIPLE DAYS
- private $vEvent4 = 'BEGIN:VCALENDAR'.PHP_EOL.
- 'VERSION:2.0'.PHP_EOL.
- 'PRODID:-//Apple Inc.//Mac OS X 10.11.6//EN'.PHP_EOL.
- 'CALSCALE:GREGORIAN'.PHP_EOL.
- 'BEGIN:VEVENT'.PHP_EOL.
- 'CREATED:20161004T144433Z'.PHP_EOL.
- 'UID:85560E76-1B0D-47E1-A735-21625767FCA4'.PHP_EOL.
- 'DTEND;VALUE=DATE:20161008'.PHP_EOL.
- 'TRANSP:TRANSPARENT'.PHP_EOL.
- 'DTSTART;VALUE=DATE:20161005'.PHP_EOL.
- 'DTSTAMP:20161004T144437Z'.PHP_EOL.
- 'SEQUENCE:0'.PHP_EOL.
- 'END:VEVENT'.PHP_EOL.
- 'END:VCALENDAR';
- // DURATION
- private $vEvent5 = 'BEGIN:VCALENDAR'.PHP_EOL.
- 'VERSION:2.0'.PHP_EOL.
- 'PRODID:-//Apple Inc.//Mac OS X 10.11.6//EN'.PHP_EOL.
- 'CALSCALE:GREGORIAN'.PHP_EOL.
- 'BEGIN:VEVENT'.PHP_EOL.
- 'CREATED:20161004T144433Z'.PHP_EOL.
- 'UID:85560E76-1B0D-47E1-A735-21625767FCA4'.PHP_EOL.
- 'DURATION:P5D'.PHP_EOL.
- 'TRANSP:TRANSPARENT'.PHP_EOL.
- 'DTSTART;VALUE=DATE:20161005'.PHP_EOL.
- 'DTSTAMP:20161004T144437Z'.PHP_EOL.
- 'SEQUENCE:0'.PHP_EOL.
- 'END:VEVENT'.PHP_EOL.
- 'END:VCALENDAR';
- // NO DTEND - DATE
- private $vEvent6 = 'BEGIN:VCALENDAR'.PHP_EOL.
- 'VERSION:2.0'.PHP_EOL.
- 'PRODID:-//Apple Inc.//Mac OS X 10.11.6//EN'.PHP_EOL.
- 'CALSCALE:GREGORIAN'.PHP_EOL.
- 'BEGIN:VEVENT'.PHP_EOL.
- 'CREATED:20161004T144433Z'.PHP_EOL.
- 'UID:85560E76-1B0D-47E1-A735-21625767FCA4'.PHP_EOL.
- 'TRANSP:TRANSPARENT'.PHP_EOL.
- 'DTSTART;VALUE=DATE:20161005'.PHP_EOL.
- 'DTSTAMP:20161004T144437Z'.PHP_EOL.
- 'SEQUENCE:0'.PHP_EOL.
- 'END:VEVENT'.PHP_EOL.
- 'END:VCALENDAR';
- // NO DTEND - DATE-TIME
- private $vEvent7 = 'BEGIN:VCALENDAR'.PHP_EOL.
- 'VERSION:2.0'.PHP_EOL.
- 'PRODID:-//Tests//'.PHP_EOL.
- 'CALSCALE:GREGORIAN'.PHP_EOL.
- 'BEGIN:VTIMEZONE'.PHP_EOL.
- 'TZID:Europe/Berlin'.PHP_EOL.
- 'BEGIN:DAYLIGHT'.PHP_EOL.
- 'TZOFFSETFROM:+0100'.PHP_EOL.
- 'RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU'.PHP_EOL.
- 'DTSTART:19810329T020000'.PHP_EOL.
- 'TZNAME:GMT+2'.PHP_EOL.
- 'TZOFFSETTO:+0200'.PHP_EOL.
- 'END:DAYLIGHT'.PHP_EOL.
- 'BEGIN:STANDARD'.PHP_EOL.
- 'TZOFFSETFROM:+0200'.PHP_EOL.
- 'RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU'.PHP_EOL.
- 'DTSTART:19961027T030000'.PHP_EOL.
- 'TZNAME:GMT+1'.PHP_EOL.
- 'TZOFFSETTO:+0100'.PHP_EOL.
- 'END:STANDARD'.PHP_EOL.
- 'END:VTIMEZONE'.PHP_EOL.
- 'BEGIN:VEVENT'.PHP_EOL.
- 'CREATED:20160809T163629Z'.PHP_EOL.
- 'UID:0AD16F58-01B3-463B-A215-FD09FC729A02'.PHP_EOL.
- 'TRANSP:OPAQUE'.PHP_EOL.
- 'SUMMARY:Test Europe Berlin'.PHP_EOL.
- 'DTSTART;TZID=Europe/Berlin:20160816T090000'.PHP_EOL.
- 'DTSTAMP:20160809T163632Z'.PHP_EOL.
- 'SEQUENCE:0'.PHP_EOL.
- 'END:VEVENT'.PHP_EOL.
- 'END:VCALENDAR';
- protected function setUp(): void {
- parent::setUp();
- $this->appManager = $this->createMock(IAppManager::class);
- $this->l10n = $this->createMock(IL10N::class);
- $this->urlGenerator = $this->createMock(IURLGenerator::class);
- $this->backend = $this->createMock(CalDavBackend::class);
- $this->provider = new EventsSearchProvider(
- $this->appManager,
- $this->l10n,
- $this->urlGenerator,
- $this->backend
- );
- }
- public function testGetId(): void {
- $this->assertEquals('calendar', $this->provider->getId());
- }
- public function testGetName(): void {
- $this->l10n->expects($this->exactly(1))
- ->method('t')
- ->with('Events')
- ->willReturnArgument(0);
- $this->assertEquals('Events', $this->provider->getName());
- }
- public function testSearchAppDisabled(): void {
- $user = $this->createMock(IUser::class);
- $query = $this->createMock(ISearchQuery::class);
- $this->appManager->expects($this->once())
- ->method('isEnabledForUser')
- ->with('calendar', $user)
- ->willReturn(false);
- $this->l10n->expects($this->exactly(1))
- ->method('t')
- ->willReturnArgument(0);
- $this->backend->expects($this->never())
- ->method('getCalendarsForUser');
- $this->backend->expects($this->never())
- ->method('getSubscriptionsForUser');
- $this->backend->expects($this->never())
- ->method('searchPrincipalUri');
- $actual = $this->provider->search($user, $query);
- $data = $actual->jsonSerialize();
- $this->assertInstanceOf(SearchResult::class, $actual);
- $this->assertEquals('Events', $data['name']);
- $this->assertEmpty($data['entries']);
- $this->assertFalse($data['isPaginated']);
- $this->assertNull($data['cursor']);
- }
- public function testSearch(): void {
- $user = $this->createMock(IUser::class);
- $user->method('getUID')->willReturn('john.doe');
- $query = $this->createMock(ISearchQuery::class);
- $seachTermFilter = $this->createMock(IFilter::class);
- $query->method('getFilter')->willReturnCallback(function ($name) use ($seachTermFilter) {
- return match ($name) {
- 'term' => $seachTermFilter,
- default => null,
- };
- });
- $seachTermFilter->method('get')->willReturn('search term');
- $query->method('getLimit')->willReturn(5);
- $query->method('getCursor')->willReturn(20);
- $this->appManager->expects($this->once())
- ->method('isEnabledForUser')
- ->with('calendar', $user)
- ->willReturn(true);
- $this->l10n->method('t')->willReturnArgument(0);
- $this->backend->expects($this->once())
- ->method('getCalendarsForUser')
- ->with('principals/users/john.doe')
- ->willReturn([
- [
- 'id' => 99,
- 'principaluri' => 'principals/users/john.doe',
- 'uri' => 'calendar-uri-99',
- ], [
- 'id' => 123,
- 'principaluri' => 'principals/users/john.doe',
- 'uri' => 'calendar-uri-123',
- ]
- ]);
- $this->backend->expects($this->once())
- ->method('getSubscriptionsForUser')
- ->with('principals/users/john.doe')
- ->willReturn([
- [
- 'id' => 1337,
- 'principaluri' => 'principals/users/john.doe',
- 'uri' => 'subscription-uri-1337',
- ]
- ]);
- $this->backend->expects($this->once())
- ->method('searchPrincipalUri')
- ->with('principals/users/john.doe', 'search term', ['VEVENT'],
- ['SUMMARY', 'LOCATION', 'DESCRIPTION', 'ATTENDEE', 'ORGANIZER', 'CATEGORIES'],
- ['ATTENDEE' => ['CN'], 'ORGANIZER' => ['CN']],
- ['limit' => 5, 'offset' => 20, 'timerange' => ['start' => null, 'end' => null]])
- ->willReturn([
- [
- 'calendarid' => 99,
- 'calendartype' => CalDavBackend::CALENDAR_TYPE_CALENDAR,
- 'uri' => 'event0.ics',
- 'calendardata' => $this->vEvent0,
- ],
- [
- 'calendarid' => 123,
- 'calendartype' => CalDavBackend::CALENDAR_TYPE_CALENDAR,
- 'uri' => 'event1.ics',
- 'calendardata' => $this->vEvent1,
- ],
- [
- 'calendarid' => 1337,
- 'calendartype' => CalDavBackend::CALENDAR_TYPE_SUBSCRIPTION,
- 'uri' => 'event2.ics',
- 'calendardata' => $this->vEvent2,
- ]
- ]);
- $provider = $this->getMockBuilder(EventsSearchProvider::class)
- ->setConstructorArgs([
- $this->appManager,
- $this->l10n,
- $this->urlGenerator,
- $this->backend,
- ])
- ->setMethods([
- 'getDeepLinkToCalendarApp',
- 'generateSubline',
- ])
- ->getMock();
- $provider->expects($this->exactly(3))
- ->method('generateSubline')
- ->willReturn('subline');
- $provider->expects($this->exactly(3))
- ->method('getDeepLinkToCalendarApp')
- ->withConsecutive(
- ['principals/users/john.doe', 'calendar-uri-99', 'event0.ics'],
- ['principals/users/john.doe', 'calendar-uri-123', 'event1.ics'],
- ['principals/users/john.doe', 'subscription-uri-1337', 'event2.ics']
- )
- ->willReturn('deep-link-to-calendar');
- $actual = $provider->search($user, $query);
- $data = $actual->jsonSerialize();
- $this->assertInstanceOf(SearchResult::class, $actual);
- $this->assertEquals('Events', $data['name']);
- $this->assertCount(3, $data['entries']);
- $this->assertTrue($data['isPaginated']);
- $this->assertEquals(23, $data['cursor']);
- $result0 = $data['entries'][0];
- $result0Data = $result0->jsonSerialize();
- $result1 = $data['entries'][1];
- $result1Data = $result1->jsonSerialize();
- $result2 = $data['entries'][2];
- $result2Data = $result2->jsonSerialize();
- $this->assertInstanceOf(SearchResultEntry::class, $result0);
- $this->assertEmpty($result0Data['thumbnailUrl']);
- $this->assertEquals('Untitled event', $result0Data['title']);
- $this->assertEquals('subline', $result0Data['subline']);
- $this->assertEquals('deep-link-to-calendar', $result0Data['resourceUrl']);
- $this->assertEquals('icon-calendar-dark', $result0Data['icon']);
- $this->assertFalse($result0Data['rounded']);
- $this->assertInstanceOf(SearchResultEntry::class, $result1);
- $this->assertEmpty($result1Data['thumbnailUrl']);
- $this->assertEquals('Test Europe Berlin', $result1Data['title']);
- $this->assertEquals('subline', $result1Data['subline']);
- $this->assertEquals('deep-link-to-calendar', $result1Data['resourceUrl']);
- $this->assertEquals('icon-calendar-dark', $result1Data['icon']);
- $this->assertFalse($result1Data['rounded']);
- $this->assertInstanceOf(SearchResultEntry::class, $result2);
- $this->assertEmpty($result2Data['thumbnailUrl']);
- $this->assertEquals('Test Europe Berlin', $result2Data['title']);
- $this->assertEquals('subline', $result2Data['subline']);
- $this->assertEquals('deep-link-to-calendar', $result2Data['resourceUrl']);
- $this->assertEquals('icon-calendar-dark', $result2Data['icon']);
- $this->assertFalse($result2Data['rounded']);
- }
- public function testGetDeepLinkToCalendarApp(): void {
- $this->urlGenerator->expects($this->once())
- ->method('linkTo')
- ->with('', 'remote.php')
- ->willReturn('link-to-remote.php');
- $this->urlGenerator->expects($this->once())
- ->method('linkToRoute')
- ->with('calendar.view.index')
- ->willReturn('link-to-route-calendar/');
- $this->urlGenerator->expects($this->once())
- ->method('getAbsoluteURL')
- ->with('link-to-route-calendar/edit/bGluay10by1yZW1vdGUucGhwL2Rhdi9jYWxlbmRhcnMvam9obi5kb2UvZm9vL2Jhci5pY3M=')
- ->willReturn('absolute-url-to-route');
- $actual = self::invokePrivate($this->provider, 'getDeepLinkToCalendarApp', ['principals/users/john.doe', 'foo', 'bar.ics']);
- $this->assertEquals('absolute-url-to-route', $actual);
- }
- /**
- * @param string $ics
- * @param string $expectedSubline
- *
- * @dataProvider generateSublineDataProvider
- */
- public function testGenerateSubline(string $ics, string $expectedSubline): void {
- $vCalendar = Reader::read($ics, Reader::OPTION_FORGIVING);
- $eventComponent = $vCalendar->VEVENT;
- $this->l10n->method('l')
- ->willReturnCallback(static function (string $type, \DateTime $date, $_):string {
- if ($type === 'time') {
- return $date->format('H:i');
- }
- return $date->format('m-d');
- });
- $actual = self::invokePrivate($this->provider, 'generateSubline', [$eventComponent]);
- $this->assertEquals($expectedSubline, $actual);
- }
- public function generateSublineDataProvider(): array {
- return [
- [$this->vEvent1, '08-16 09:00 - 10:00'],
- [$this->vEvent2, '08-16 09:00 - 08-17 10:00'],
- [$this->vEvent3, '10-05'],
- [$this->vEvent4, '10-05 - 10-07'],
- [$this->vEvent5, '10-05 - 10-09'],
- [$this->vEvent6, '10-05'],
- [$this->vEvent7, '08-16 09:00 - 09:00'],
- ];
- }
- }
|