~aw/ubuntu/lucid/davical/trunk

« back to all changes in this revision

Viewing changes to testing/tests/regression-suite/000-Setup-PUT-collection.test

  • Committer: Bazaar Package Importer
  • Author(s): Andrew McMillan
  • Date: 2008-11-18 18:33:17 UTC
  • Revision ID: james.westby@ubuntu.com-20081118183317-8cbi6iy140mcnr4e
Tags: 0.9.6.2
* Fix creation of database when template1 has pl/pgsql installed.
* Improvements to regression testing.
* Switch to use iCalComponent object rather than iCalendar, in many cases.
* Calculate DTEND when it is not set according to RFC2445.
* Much improved XML namespace handling.
* Configuration setting to control whether I should see appointments where I
  am organizer/attendee, even if they are PRIVATE and not in my own calendar.
* Updated French translation (closes: #505861)
* Add facility to delete collections through the management interface.

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
END:VEVENT
69
69
END:VCALENDAR
70
70
ENDDATA
 
71
 
 
72
QUERY
 
73
SELECT caldav_data.user_no, caldav_type, logged_user, 
 
74
       uid, dtstamp, dtstart, dtend, due, summary, location,
 
75
       description, priority, class, transp, rrule, url,
 
76
       percent_complete, tz_id, status,
 
77
       caldav_data AS "A1 CalDAV DATA"
 
78
FROM caldav_data JOIN calendar_item USING(dav_name)
 
79
WHERE caldav_data.dav_name ~ '^/user2/home/'
 
80
ENDQUERY
 
81
 
 
82
QUERY
 
83
SELECT count(*)
 
84
  FROM caldav_data JOIN calendar_item USING(dav_name)
 
85
  WHERE caldav_data.dav_name ~ '^/user2/home/'
 
86
ENDQUERY
 
87