Add: option [auth] uc_username for uppercase conversion (similar to existing lc_username)

This commit is contained in:
Peter Bieringer 2024-12-14 09:25:36 +01:00
parent 0d29de6db9
commit 3ebe51a4cb
5 changed files with 30 additions and 0 deletions

View file

@ -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", (