mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-06 06:37:36 +03:00
Add: option [auth] uc_username for uppercase conversion (similar to existing lc_username)
This commit is contained in:
parent
0d29de6db9
commit
3ebe51a4cb
5 changed files with 30 additions and 0 deletions
|
@ -121,6 +121,11 @@ class TestBaseAuthRequests(BaseTest):
|
|||
self._test_htpasswd("plain", "tmp:bepo", (
|
||||
("tmp", "bepo", True), ("TMP", "bepo", True), ("tmp1", "bepo", False)))
|
||||
|
||||
def test_htpasswd_uc_username(self) -> None:
|
||||
self.configure({"auth": {"uc_username": "True"}})
|
||||
self._test_htpasswd("plain", "TMP:bepo", (
|
||||
("tmp", "bepo", True), ("TMP", "bepo", True), ("TMP1", "bepo", False)))
|
||||
|
||||
def test_htpasswd_strip_domain(self) -> None:
|
||||
self.configure({"auth": {"strip_domain": "True"}})
|
||||
self._test_htpasswd("plain", "tmp:bepo", (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue