diff --git a/radicale/tests/test_sharing.py b/radicale/tests/test_sharing.py index 2ed781e3..cdf60d70 100644 --- a/radicale/tests/test_sharing.py +++ b/radicale/tests/test_sharing.py @@ -812,6 +812,7 @@ class TestSharingApiSanity(BaseTest): path_owner = "/owner/calendar.ics/" path_user = "/user/calendar-owner.ics/" + path_user2 = "/user/calendar-owner2.ics/" self.mkcalendar(path_owner, login="owner:ownerpw") for db_type in list(filter(lambda item: item != "none", sharing.INTERNAL_TYPES)): @@ -864,6 +865,13 @@ class TestSharingApiSanity(BaseTest): json_dict['PathMapped'] = path_owner _, headers, answer = self._sharing_api_json("map", "create", 200, login="owner:ownerpw", json_dict=json_dict) + logging.info("\n*** create map with PathMapped, User, PathOrToken2 (json) -> 409") + json_dict = {} + json_dict['User'] = "user" + json_dict['PathOrToken'] = path_user2 + json_dict['PathMapped'] = path_owner + _, headers, answer = self._sharing_api_json("map", "create", 409, login="owner:ownerpw", json_dict=json_dict) + logging.info("\n*** create map with PathMapped, User, PathOrToken=PathOwner (json) -> 409") json_dict = {} json_dict['User'] = "owner"