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
861 B
XML
35 lines
861 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<multistatus xmlns="DAV:" xmlns:VC="urn:ietf:params:xml:ns:carddav">
|
|
<response>
|
|
<href>/caldav.php/user1/addressbook/andresenesq.vcf</href>
|
|
<propstat>
|
|
<prop>
|
|
<getetag>some valid etag</getetag>
|
|
<VC:address-data>BEGIN:VCARD
|
|
VERSION:4.0
|
|
FN:Sven Joseph Klaus Michael Andresen\, Esq.
|
|
FBURL:http://caldav.andresen.local/freebusy
|
|
END:VCARD
|
|
</VC:address-data>
|
|
</prop>
|
|
<status>HTTP/1.1 200 OK</status>
|
|
</propstat>
|
|
</response>
|
|
<response>
|
|
<href>/caldav.php/user1/addressbook/hans_dieter.vcf</href>
|
|
<propstat>
|
|
<prop>
|
|
<getetag>some valid etag</getetag>
|
|
<VC:address-data>BEGIN:VCARD
|
|
VERSION:4.0
|
|
FN:Hans Dieter Schmidt
|
|
FBURL:http://davical.hadi-schmist.home/freebusy
|
|
END:VCARD
|
|
</VC:address-data>
|
|
</prop>
|
|
<status>HTTP/1.1 200 OK</status>
|
|
</propstat>
|
|
</response>
|
|
</multistatus>
|
|
|