mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-01-27 00:33:34 +00:00
This allows us to have more complex test files where an action is taken, then we test something, then another action is taken, etc. Changes to test files are required so that URL is defined after all the required settings are set. Changes to the result files are either whitespace changes due to above logic changes, or printing out a SQL Result header before each result. I figured it was useful.
35 lines
937 B
Plaintext
35 lines
937 B
Plaintext
#
|
|
# Request a report for a text-match on a grouped property
|
|
#
|
|
# (only Jonny3 has item1.EMAIL set or a matching address)
|
|
#
|
|
TYPE=REPORT
|
|
|
|
HEADER=Accept: text/xml,application/xml
|
|
HEADER=Content-Type: text/xml
|
|
HEADER=Depth: 1
|
|
|
|
AUTH=user5:user5
|
|
|
|
# HEAD
|
|
|
|
BEGINDATA
|
|
<?xml version="1.0"?>
|
|
<CARDDAV:addressbook-query xmlns:DAV="DAV:" xmlns:CARDDAV="urn:ietf:params:xml:ns:carddav" xmlns:CS="http://calendarserver.org/ns/">
|
|
<DAV:prop>
|
|
<DAV:getetag/>
|
|
<CARDDAV:address-data/>
|
|
</DAV:prop>
|
|
<CARDDAV:filter test="anyof">
|
|
<CARDDAV:prop-filter name="item1.EMAIL" test="anyof">
|
|
<CARDDAV:text-match negate-condition="no" collation="i;unicode-casemap" match-type="equals">foo@ex.com</CARDDAV:text-match>
|
|
</CARDDAV:prop-filter>
|
|
</CARDDAV:filter>
|
|
</CARDDAV:addressbook-query>
|
|
ENDDATA
|
|
|
|
REPLACE=_<getetag>"[0-9a-f]+"</getetag>_<getetag>some valid etag</getetag>_
|
|
REPLACE=/^REV:.*$/REV:date/
|
|
|
|
URL=http://regression.host/caldav.php/user5/addresses/
|