diff --git a/CHANGELOG.md b/CHANGELOG.md index 42a159fe..b6ae0ad9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,6 +53,10 @@ * Dependency: limit typegard version < 3 * General: code cosmetics +## 3.2.0.a2 + +* Fix for free-busy `fbtype` statuses + ## 3.2.0.a1 * Added free-busy report diff --git a/radicale/app/report.py b/radicale/app/report.py index c8789d33..ef0adc2f 100644 --- a/radicale/app/report.py +++ b/radicale/app/report.py @@ -94,11 +94,11 @@ def free_busy_report(base_prefix: str, path: str, xml_request: Optional[ET.Eleme fbtype = None if item.component_name == 'VEVENT': - transp = getattr(item.vobject_item, 'transp', None) + transp = getattr(item.vobject_item.vevent, 'transp', None) if transp and transp.value != 'OPAQUE': continue - status = getattr(item.vobject_item, 'status', None) + status = getattr(item.vobject_item.vevent, 'status', None) if not status or status.value == 'CONFIRMED': fbtype = 'BUSY' elif status.value == 'CANCELLED': diff --git a/radicale/tests/static/event10.ics b/radicale/tests/static/event10.ics new file mode 100644 index 00000000..3faa034d --- /dev/null +++ b/radicale/tests/static/event10.ics @@ -0,0 +1,36 @@ +BEGIN:VCALENDAR +PRODID:-//Mozilla.org/NONSGML Mozilla Calendar V1.1//EN +VERSION:2.0 +BEGIN:VTIMEZONE +TZID:Europe/Paris +X-LIC-LOCATION:Europe/Paris +BEGIN:DAYLIGHT +TZOFFSETFROM:+0100 +TZOFFSETTO:+0200 +TZNAME:CEST +DTSTART:19700329T020000 +RRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=3 +END:DAYLIGHT +BEGIN:STANDARD +TZOFFSETFROM:+0200 +TZOFFSETTO:+0100 +TZNAME:CET +DTSTART:19701025T030000 +RRULE:FREQ=YEARLY;BYDAY=-1SU;BYMONTH=10 +END:STANDARD +END:VTIMEZONE +BEGIN:VEVENT +CREATED:20130902T150157Z +LAST-MODIFIED:20130902T150158Z +DTSTAMP:20130902T150158Z +UID:event10 +SUMMARY:Event +CATEGORIES:some_category1,another_category2 +ORGANIZER:mailto:unclesam@example.com +ATTENDEE;ROLE=REQ-PARTICIPANT;PARTSTAT=TENTATIVE;CN=Jane Doe:MAILTO:janedoe@example.com +ATTENDEE;ROLE=REQ-PARTICIPANT;DELEGATED-FROM="MAILTO:bob@host.com";PARTSTAT=ACCEPTED;CN=John Doe:MAILTO:johndoe@example.com +DTSTART;TZID=Europe/Paris:20130901T180000 +DTEND;TZID=Europe/Paris:20130901T190000 +STATUS:CANCELLED +END:VEVENT +END:VCALENDAR diff --git a/radicale/tests/test_base.py b/radicale/tests/test_base.py index 94fca05e..479893f6 100644 --- a/radicale/tests/test_base.py +++ b/radicale/tests/test_base.py @@ -1369,7 +1369,7 @@ permissions: RrWw""") """Test free busy report on a few items""" calendar_path = "/calendar.ics/" self.mkcalendar(calendar_path) - for i in (1,2): + for i in (1,2,10): filename = "event{}.ics".format(i) event = get_file_content(filename) self.put(posixpath.join(calendar_path, filename), event) @@ -1382,9 +1382,13 @@ permissions: RrWw""") assert isinstance(response, vobject.base.Component) assert len(responses) == 1 vcalendar = list(responses.values())[0] - assert len(vcalendar.vfreebusy_list) == 2 + assert len(vcalendar.vfreebusy_list) == 3 + types = {} for vfb in vcalendar.vfreebusy_list: - assert vfb.fbtype.value == 'BUSY' + if vfb.fbtype.value not in types: + types[vfb.fbtype.value] = 0 + types[vfb.fbtype.value] += 1 + assert types == {'BUSY':2, 'FREE':1} def _report_sync_token( self, calendar_path: str, sync_token: Optional[str] = None diff --git a/setup.py b/setup.py index 7aa5d391..cc3b1c25 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ from setuptools import find_packages, setup # When the version is updated, a new section in the CHANGELOG.md file must be # added too. -VERSION = "3.2.0.a1" +VERSION = "3.2.0.a2" with open("README.md", encoding="utf-8") as f: long_description = f.read()