summaryrefslogtreecommitdiff
path: root/testenv/tests
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2019-04-16 00:28:13 +0300
committerDevaev Maxim <[email protected]>2019-04-16 00:28:13 +0300
commitda46733840764fd646d5fed7bcae8111ef86c273 (patch)
tree1f0eba7c7e7a072334137efad92c14d016d22ae4 /testenv/tests
parentb1e2d5967a938c62fe47b784565b5bdc5ed55cb2 (diff)
refactoring
Diffstat (limited to 'testenv/tests')
-rw-r--r--testenv/tests/auth/test_manager.py21
1 files changed, 10 insertions, 11 deletions
diff --git a/testenv/tests/auth/test_manager.py b/testenv/tests/auth/test_manager.py
index 26306731..45978828 100644
--- a/testenv/tests/auth/test_manager.py
+++ b/testenv/tests/auth/test_manager.py
@@ -24,6 +24,7 @@ import os
import contextlib
from typing import List
+from typing import Dict
from typing import AsyncGenerator
from typing import Optional
@@ -39,6 +40,12 @@ from kvmd.plugins.auth import get_auth_service_class
# =====
+def _make_service_kwargs(path: str) -> Dict:
+ cls = get_auth_service_class("htpasswd")
+ scheme = cls.get_options()
+ return make_config({"file": path}, scheme)._unpack() # pylint: disable=protected-access
+
+
@contextlib.asynccontextmanager
async def _get_configured_manager(
internal_path: str,
@@ -46,22 +53,14 @@ async def _get_configured_manager(
internal_users: Optional[List[str]]=None,
) -> AsyncGenerator[AuthManager, None]:
- internal_class = get_auth_service_class("htpasswd")
- internal = make_config({"file": internal_path}, internal_class.get_options())._unpack() # pylint: disable=protected-access
- internal.update(internal)
-
- if external_path:
- external_class = get_auth_service_class("htpasswd")
- external = make_config({"file": external_path}, external_class.get_options())._unpack() # pylint: disable=protected-access
- external.update(external)
-
manager = AuthManager(
internal_type="htpasswd",
- internal=internal,
+ internal_kwargs=_make_service_kwargs(internal_path),
external_type=("htpasswd" if external_path else ""),
- external=(external if external_path else {}),
+ external_kwargs=(_make_service_kwargs(external_path) if external_path else {}),
internal_users=(internal_users or []),
)
+
try:
yield manager
finally: