From 64761ae119c43c259c6daa837d5ca17c0e17ff31 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Tue, 9 Jun 2026 21:49:39 +0200 Subject: [PATCH] sharing/update: positive test with equal conversion --- radicale/tests/test_sharing.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/radicale/tests/test_sharing.py b/radicale/tests/test_sharing.py index 05108d57..d44f53f5 100644 --- a/radicale/tests/test_sharing.py +++ b/radicale/tests/test_sharing.py @@ -4783,6 +4783,15 @@ permissions: RrWw""") json_dict['Conversion'] = "none" _, headers, answer = self._sharing_api_json("map", "update", check=400, login="owner:ownerpw", json_dict=json_dict) + # update map with same conversion + logging.info("\n*** update map(bday) with equal Conversion -> ok") + json_dict = {} + json_dict['User'] = "user" + json_dict['PathMapped'] = path_mapped + json_dict['PathOrToken'] = path_shared_r + json_dict['Conversion'] = "bday" + _, headers, answer = self._sharing_api_json("map", "update", check=200, login="owner:ownerpw", json_dict=json_dict) + # enable map by user logging.info("\n*** enable map(bday) by user") json_dict = {}