From 81b3c2873737fc00b2426d9d81795fe389ab39b2 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Fri, 12 Dec 2025 08:49:23 +0100 Subject: [PATCH] test RFC4791#5.2.5: SHOULD NOT be returned by a PROPFIND DAV:allprop request --- radicale/tests/test_base.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/radicale/tests/test_base.py b/radicale/tests/test_base.py index 158d228b..c1d4e5ab 100644 --- a/radicale/tests/test_base.py +++ b/radicale/tests/test_base.py @@ -692,11 +692,13 @@ permissions: RrWw""") assert not isinstance(response, int) status, prop = response["D:sync-token"] assert status == 200 and prop.text + assert "C:max-resource-size" not in response _, responses = self.propfind("/calendar.ics/event.ics", propfind) response = responses["/calendar.ics/event.ics"] assert not isinstance(response, int) status, prop = response["D:getetag"] assert status == 200 and prop.text + assert "C:max-resource-size" not in response def test_propfind_nonexistent(self) -> None: """Read a property that does not exist."""