mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-03 21:27:36 +03:00
Test current-user-principal prop authentication workaround
This commit is contained in:
parent
6ec63ccc9b
commit
b9bb017edf
2 changed files with 15 additions and 2 deletions
|
@ -1303,6 +1303,19 @@ class BaseRequestsMixIn:
|
|||
"""Verify existence of the principal collection."""
|
||||
self.propfind("/user/", login="user:")
|
||||
|
||||
def test_authentication_current_user_principal_workaround(self):
|
||||
"""Test if server sends authentication request when accessing
|
||||
current-user-principal prop (workaround for DAVx5)."""
|
||||
status, headers, _ = self.request("PROPFIND", "/", """\
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<propfind xmlns="DAV:">
|
||||
<prop>
|
||||
<current-user-principal />
|
||||
</prop>
|
||||
</propfind>""")
|
||||
assert status in (401, 403)
|
||||
assert headers.get("WWW-Authenticate")
|
||||
|
||||
def test_existence_of_root_collections(self):
|
||||
"""Verify that the root collection always exists."""
|
||||
# Use PROPFIND because GET returns message
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue