davical/testing/tests/carddav/2040-PUT-addressbook.test
Andrew Ruthven 7c47658bee Make the curl and SQL requests when we see them
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.
2024-04-01 22:57:10 +13:00

56 lines
1.0 KiB
Plaintext

#
# PUT three VCARD records into an addressbook
#
TYPE=PUT
HEADER=User-Agent: DAViCalTester/public
HEADER=Content-Type: text/vcard; charset=utf-8
HEAD
BEGINDATA
begin:vcard
fn:Donald Kelly
n:Kelly;Donald
org:Esposo Designs Ltd
adr:Newtown;;25 Rintoul St;Wellington;;;New Zealand
email;internet:donald@example.co.nz
title:Proprietor
tel;work:+64 4 347 4747
tel;cell:+64 2 1234-4321
x-mozilla-html:TRUE
url:www.example.co.nz
version:2.1
end:vcard
BEGIN:VCARD
VERSION:2.1
N:Weasley;George
FN:George Weasley
EMAIL;PREF;INTERNET:gweasley@example.org
REV:20030909T234634Z
END:VCARD
BEGIN:VCARD
VERSION:2.1
N:Weasley;Fred
FN:Fred Weasley
EMAIL;PREF;INTERNET:fweasley@example.org
REV:20030909T234507Z
END:VCARD
ENDDATA
URL=http://regression.host/caldav.php/user1/addresses/
QUERY
SELECT COUNT(caldav_data.dav_name)
FROM caldav_data
WHERE caldav_data.dav_name ~ '/user1/addresses/'
ENDQUERY
QUERY
SELECT fn
FROM caldav_data JOIN addressbook_resource USING(dav_id)
WHERE caldav_data.dav_name ~ '/user1/addresses/'
ORDER BY fn
ENDQUERY