mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-05-21 01:54:23 +00:00
This is to tickle #291. The only test that is actually required is 2603-GET-resource-confidential, but I want to make sure all the options were correct. In this commit 2603-GET-resource-confidential is expected to fail.
32 lines
1.2 KiB
Plaintext
32 lines
1.2 KiB
Plaintext
#
|
|
# Request a freebusy report by URL
|
|
#
|
|
#
|
|
TYPE=GET
|
|
URL=http://regression.host/freebusy.php/user1/291-test-fb-rr-changes/?start=20230415T000000&period=P10D
|
|
HEAD
|
|
|
|
AUTH=user4:user4
|
|
|
|
REPLACE=/^DTSTAMP:\d{8}T\d{6}Z\r?$/DTSTAMP:yyyymmddThhmmssZ/
|
|
#REPLACE=/^DTSTART:20210918T000000Z\r?$/DTSTART:correct/
|
|
#REPLACE=/^DTEND:20210921T000000Z\r?$/DTEND:correct/
|
|
|
|
QUERY
|
|
SELECT calendar_item.rrule, calendar_item.status,
|
|
dtstart AT TIME ZONE olson_name AS "a) Start",
|
|
olson_name AS "b) Location",
|
|
to_char(calendar_item.dtstart at time zone 'GMT','YYYYMMDD"T"HH24MISS"Z"') AS "c) UTC Start",
|
|
to_char(calendar_item.dtend at time zone 'GMT','YYYYMMDD"T"HH24MISS"Z"') AS "d) UTC End"
|
|
FROM usr INNER JOIN collection USING (user_no)
|
|
INNER JOIN caldav_data USING (collection_id)
|
|
INNER JOIN calendar_item USING(dav_id)
|
|
LEFT JOIN timezones ON (tz_id=tzid)
|
|
WHERE caldav_data.dav_name ~ '^/user1/291-test-fb-rr-changes/'
|
|
AND collection.is_calendar AND collection.schedule_transp = 'opaque'
|
|
AND caldav_data.caldav_type IN ( 'VEVENT', 'VFREEBUSY' )
|
|
AND (calendar_item.transp != 'TRANSPARENT' OR calendar_item.transp IS NULL)
|
|
AND (calendar_item.status != 'CANCELLED' OR calendar_item.status IS NULL)
|
|
ORDER BY 3
|
|
ENDQUERY
|