123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342 |
- <?php
- /**
- * @copyright Copyright (c) 2017 Georg Ehrke <oc.list@georgehrke.com>
- *
- * @author Georg Ehrke <oc.list@georgehrke.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @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\CalDAV\Search\Xml\Request;
- use OCA\DAV\CalDAV\Search\Xml\Request\CalendarSearchReport;
- use Sabre\Xml\Reader;
- use Test\TestCase;
- class CalendarSearchReportTest extends TestCase {
- private $elementMap = [
- '{http://nextcloud.com/ns}calendar-search' =>
- 'OCA\\DAV\\CalDAV\\Search\\Xml\\Request\\CalendarSearchReport',
- ];
- public function testFoo() {
- $xml = <<<XML
- <?xml version="1.0" encoding="UTF-8"?>
- <nc:calendar-search xmlns:nc="http://nextcloud.com/ns" xmlns:c="urn:ietf:params:xml:ns:caldav" xmlns:d="DAV:">
- <d:prop>
- <d:getetag />
- <c:calendar-data />
- </d:prop>
- <nc:filter>
- <nc:comp-filter name="VEVENT" />
- <nc:comp-filter name="VTODO" />
- <nc:prop-filter name="SUMMARY" />
- <nc:prop-filter name="LOCATION" />
- <nc:prop-filter name="ATTENDEE" />
- <nc:param-filter property="ATTENDEE" name="CN" />
- <nc:search-term>foo</nc:search-term>
- </nc:filter>
- <nc:limit>10</nc:limit>
- <nc:offset>5</nc:offset>
- </nc:calendar-search>
- XML;
- $result = $this->parse($xml);
- $calendarSearchReport = new CalendarSearchReport();
- $calendarSearchReport->properties = [
- '{DAV:}getetag',
- '{urn:ietf:params:xml:ns:caldav}calendar-data',
- ];
- $calendarSearchReport->filters = [
- 'comps' => [
- 'VEVENT',
- 'VTODO'
- ],
- 'props' => [
- 'SUMMARY',
- 'LOCATION',
- 'ATTENDEE'
- ],
- 'params' => [
- [
- 'property' => 'ATTENDEE',
- 'parameter' => 'CN'
- ]
- ],
- 'search-term' => 'foo'
- ];
- $calendarSearchReport->limit = 10;
- $calendarSearchReport->offset = 5;
- $this->assertEquals(
- $calendarSearchReport,
- $result['value']
- );
- }
- public function testNoLimitOffset() {
- $xml = <<<XML
- <?xml version="1.0" encoding="UTF-8"?>
- <nc:calendar-search xmlns:nc="http://nextcloud.com/ns" xmlns:c="urn:ietf:params:xml:ns:caldav" xmlns:d="DAV:">
- <d:prop>
- <d:getetag />
- <c:calendar-data />
- </d:prop>
- <nc:filter>
- <nc:comp-filter name="VEVENT" />
- <nc:prop-filter name="SUMMARY" />
- <nc:search-term>foo</nc:search-term>
- </nc:filter>
- </nc:calendar-search>
- XML;
- $result = $this->parse($xml);
- $calendarSearchReport = new CalendarSearchReport();
- $calendarSearchReport->properties = [
- '{DAV:}getetag',
- '{urn:ietf:params:xml:ns:caldav}calendar-data',
- ];
- $calendarSearchReport->filters = [
- 'comps' => [
- 'VEVENT',
- ],
- 'props' => [
- 'SUMMARY',
- ],
- 'search-term' => 'foo'
- ];
- $calendarSearchReport->limit = null;
- $calendarSearchReport->offset = null;
- $this->assertEquals(
- $calendarSearchReport,
- $result['value']
- );
- }
-
- public function testRequiresCompFilter() {
- $this->expectException(\Sabre\DAV\Exception\BadRequest::class);
- $this->expectExceptionMessage('{http://nextcloud.com/ns}prop-filter or {http://nextcloud.com/ns}param-filter given without any {http://nextcloud.com/ns}comp-filter');
- $xml = <<<XML
- <?xml version="1.0" encoding="UTF-8"?>
- <nc:calendar-search xmlns:nc="http://nextcloud.com/ns" xmlns:c="urn:ietf:params:xml:ns:caldav" xmlns:d="DAV:">
- <d:prop>
- <d:getetag />
- <c:calendar-data />
- </d:prop>
- <nc:filter>
- <nc:prop-filter name="SUMMARY" />
- <nc:prop-filter name="LOCATION" />
- <nc:prop-filter name="ATTENDEE" />
- <nc:param-filter property="ATTENDEE" name="CN" />
- <nc:search-term>foo</nc:search-term>
- </nc:filter>
- <nc:limit>10</nc:limit>
- <nc:offset>5</nc:offset>
- </nc:calendar-search>
- XML;
- $this->parse($xml);
- }
-
- public function testRequiresFilter() {
- $this->expectException(\Sabre\DAV\Exception\BadRequest::class);
- $this->expectExceptionMessage('The {http://nextcloud.com/ns}filter element is required for this request');
- $xml = <<<XML
- <?xml version="1.0" encoding="UTF-8"?>
- <nc:calendar-search xmlns:nc="http://nextcloud.com/ns" xmlns:c="urn:ietf:params:xml:ns:caldav" xmlns:d="DAV:">
- <d:prop>
- <d:getetag />
- <c:calendar-data />
- </d:prop>
- </nc:calendar-search>
- XML;
- $this->parse($xml);
- }
-
- public function testNoSearchTerm() {
- $this->expectException(\Sabre\DAV\Exception\BadRequest::class);
- $this->expectExceptionMessage('{http://nextcloud.com/ns}search-term is required for this request');
- $xml = <<<XML
- <?xml version="1.0" encoding="UTF-8"?>
- <nc:calendar-search xmlns:nc="http://nextcloud.com/ns" xmlns:c="urn:ietf:params:xml:ns:caldav" xmlns:d="DAV:">
- <d:prop>
- <d:getetag />
- <c:calendar-data />
- </d:prop>
- <nc:filter>
- <nc:comp-filter name="VEVENT" />
- <nc:comp-filter name="VTODO" />
- <nc:prop-filter name="SUMMARY" />
- <nc:prop-filter name="LOCATION" />
- <nc:prop-filter name="ATTENDEE" />
- <nc:param-filter property="ATTENDEE" name="CN" />
- </nc:filter>
- <nc:limit>10</nc:limit>
- <nc:offset>5</nc:offset>
- </nc:calendar-search>
- XML;
- $this->parse($xml);
- }
-
- public function testCompOnly() {
- $this->expectException(\Sabre\DAV\Exception\BadRequest::class);
- $this->expectExceptionMessage('At least one{http://nextcloud.com/ns}prop-filter or {http://nextcloud.com/ns}param-filter is required for this request');
- $xml = <<<XML
- <?xml version="1.0" encoding="UTF-8"?>
- <nc:calendar-search xmlns:nc="http://nextcloud.com/ns" xmlns:c="urn:ietf:params:xml:ns:caldav" xmlns:d="DAV:">
- <d:prop>
- <d:getetag />
- <c:calendar-data />
- </d:prop>
- <nc:filter>
- <nc:comp-filter name="VEVENT" />
- <nc:comp-filter name="VTODO" />
- <nc:search-term>foo</nc:search-term>
- </nc:filter>
- </nc:calendar-search>
- XML;
- $result = $this->parse($xml);
- $calendarSearchReport = new CalendarSearchReport();
- $calendarSearchReport->properties = [
- '{DAV:}getetag',
- '{urn:ietf:params:xml:ns:caldav}calendar-data',
- ];
- $calendarSearchReport->filters = [
- 'comps' => [
- 'VEVENT',
- 'VTODO'
- ],
- 'search-term' => 'foo'
- ];
- $calendarSearchReport->limit = null;
- $calendarSearchReport->offset = null;
- $this->assertEquals(
- $calendarSearchReport,
- $result['value']
- );
- }
- public function testPropOnly() {
- $xml = <<<XML
- <?xml version="1.0" encoding="UTF-8"?>
- <nc:calendar-search xmlns:nc="http://nextcloud.com/ns" xmlns:c="urn:ietf:params:xml:ns:caldav" xmlns:d="DAV:">
- <d:prop>
- <d:getetag />
- <c:calendar-data />
- </d:prop>
- <nc:filter>
- <nc:comp-filter name="VEVENT" />
- <nc:prop-filter name="SUMMARY" />
- <nc:search-term>foo</nc:search-term>
- </nc:filter>
- </nc:calendar-search>
- XML;
- $result = $this->parse($xml);
- $calendarSearchReport = new CalendarSearchReport();
- $calendarSearchReport->properties = [
- '{DAV:}getetag',
- '{urn:ietf:params:xml:ns:caldav}calendar-data',
- ];
- $calendarSearchReport->filters = [
- 'comps' => [
- 'VEVENT',
- ],
- 'props' => [
- 'SUMMARY',
- ],
- 'search-term' => 'foo'
- ];
- $calendarSearchReport->limit = null;
- $calendarSearchReport->offset = null;
- $this->assertEquals(
- $calendarSearchReport,
- $result['value']
- );
- }
- public function testParamOnly() {
- $xml = <<<XML
- <?xml version="1.0" encoding="UTF-8"?>
- <nc:calendar-search xmlns:nc="http://nextcloud.com/ns" xmlns:c="urn:ietf:params:xml:ns:caldav" xmlns:d="DAV:">
- <d:prop>
- <d:getetag />
- <c:calendar-data />
- </d:prop>
- <nc:filter>
- <nc:comp-filter name="VEVENT" />
- <nc:param-filter property="ATTENDEE" name="CN" />
- <nc:search-term>foo</nc:search-term>
- </nc:filter>
- </nc:calendar-search>
- XML;
- $result = $this->parse($xml);
- $calendarSearchReport = new CalendarSearchReport();
- $calendarSearchReport->properties = [
- '{DAV:}getetag',
- '{urn:ietf:params:xml:ns:caldav}calendar-data',
- ];
- $calendarSearchReport->filters = [
- 'comps' => [
- 'VEVENT',
- ],
- 'params' => [
- [
- 'property' => 'ATTENDEE',
- 'parameter' => 'CN'
- ]
- ],
- 'search-term' => 'foo'
- ];
- $calendarSearchReport->limit = null;
- $calendarSearchReport->offset = null;
- $this->assertEquals(
- $calendarSearchReport,
- $result['value']
- );
- }
- private function parse($xml, array $elementMap = []) {
- $reader = new Reader();
- $reader->elementMap = array_merge($this->elementMap, $elementMap);
- $reader->xml($xml);
- return $reader->parse();
- }
- }
|