mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-13 17:50:29 +08:00
better auth tests, refactoring
This commit is contained in:
parent
c59f8bdaf1
commit
060140d654
20
tests/apps/__init__.py
Normal file
20
tests/apps/__init__.py
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# ========================================================================== #
|
||||||
|
# #
|
||||||
|
# KVMD - The main Pi-KVM daemon. #
|
||||||
|
# #
|
||||||
|
# Copyright (C) 2018 Maxim Devaev <mdevaev@gmail.com> #
|
||||||
|
# #
|
||||||
|
# This program is free software: you can redistribute it and/or modify #
|
||||||
|
# it under the terms of the GNU General Public License as published by #
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or #
|
||||||
|
# (at your option) any later version. #
|
||||||
|
# #
|
||||||
|
# This program is distributed in the hope that it will be useful, #
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
||||||
|
# GNU General Public License for more details. #
|
||||||
|
# #
|
||||||
|
# You should have received a copy of the GNU General Public License #
|
||||||
|
# along with this program. If not, see <https://www.gnu.org/licenses/>. #
|
||||||
|
# #
|
||||||
|
# ========================================================================== #
|
||||||
43
tests/auth/__init__.py
Normal file
43
tests/auth/__init__.py
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
# ========================================================================== #
|
||||||
|
# #
|
||||||
|
# KVMD - The main Pi-KVM daemon. #
|
||||||
|
# #
|
||||||
|
# Copyright (C) 2018 Maxim Devaev <mdevaev@gmail.com> #
|
||||||
|
# #
|
||||||
|
# This program is free software: you can redistribute it and/or modify #
|
||||||
|
# it under the terms of the GNU General Public License as published by #
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or #
|
||||||
|
# (at your option) any later version. #
|
||||||
|
# #
|
||||||
|
# This program is distributed in the hope that it will be useful, #
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
||||||
|
# GNU General Public License for more details. #
|
||||||
|
# #
|
||||||
|
# You should have received a copy of the GNU General Public License #
|
||||||
|
# along with this program. If not, see <https://www.gnu.org/licenses/>. #
|
||||||
|
# #
|
||||||
|
# ========================================================================== #
|
||||||
|
|
||||||
|
|
||||||
|
import contextlib
|
||||||
|
|
||||||
|
from typing import AsyncGenerator
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
|
from kvmd.yamlconf import make_config
|
||||||
|
|
||||||
|
from kvmd.plugins.auth import BaseAuthService
|
||||||
|
from kvmd.plugins.auth import get_auth_service_class
|
||||||
|
|
||||||
|
|
||||||
|
# =====
|
||||||
|
@contextlib.asynccontextmanager
|
||||||
|
async def get_configured_auth_service(name: str, **kwargs: Any) -> AsyncGenerator[BaseAuthService, None]:
|
||||||
|
service_class = get_auth_service_class(name)
|
||||||
|
config = make_config(kwargs, service_class.get_options())
|
||||||
|
service = service_class(**config._unpack()) # pylint: disable=protected-access
|
||||||
|
try:
|
||||||
|
yield service
|
||||||
|
finally:
|
||||||
|
await service.cleanup()
|
||||||
@ -26,7 +26,7 @@ import passlib.apache
|
|||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from kvmd.plugins.auth import get_auth_service_class
|
from . import get_configured_auth_service
|
||||||
|
|
||||||
|
|
||||||
# =====
|
# =====
|
||||||
@ -38,8 +38,7 @@ async def test_ok__htpasswd_service(tmpdir) -> None: # type: ignore
|
|||||||
htpasswd.set_password("admin", "foo")
|
htpasswd.set_password("admin", "foo")
|
||||||
htpasswd.save()
|
htpasswd.save()
|
||||||
|
|
||||||
service = get_auth_service_class("htpasswd")(path=path)
|
async with get_configured_auth_service("htpasswd", file=path) as service:
|
||||||
|
|
||||||
assert (await service.login("admin", "foo"))
|
assert (await service.login("admin", "foo"))
|
||||||
assert not (await service.login("user", "foo"))
|
assert not (await service.login("user", "foo"))
|
||||||
|
|
||||||
@ -51,5 +50,3 @@ async def test_ok__htpasswd_service(tmpdir) -> None: # type: ignore
|
|||||||
assert (await service.login("user", "bar"))
|
assert (await service.login("user", "bar"))
|
||||||
assert not (await service.login("admin", "foo"))
|
assert not (await service.login("admin", "foo"))
|
||||||
assert not (await service.login("user", "foo"))
|
assert not (await service.login("user", "foo"))
|
||||||
|
|
||||||
await service.cleanup()
|
|
||||||
@ -26,7 +26,7 @@ import aiohttp.web
|
|||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from kvmd.plugins.auth import get_auth_service_class
|
from . import get_configured_auth_service
|
||||||
|
|
||||||
|
|
||||||
# =====
|
# =====
|
||||||
@ -53,17 +53,8 @@ async def _auth_server_port_fixture(aiohttp_server) -> AsyncGenerator[int, None]
|
|||||||
# =====
|
# =====
|
||||||
@pytest.mark.asyncio
|
@pytest.mark.asyncio
|
||||||
async def test_ok__http_service(auth_server_port: int) -> None:
|
async def test_ok__http_service(auth_server_port: int) -> None:
|
||||||
service = get_auth_service_class("http")(
|
url = "http://localhost:%d/auth_post" % (auth_server_port)
|
||||||
url="http://localhost:%d/auth_post" % (auth_server_port),
|
async with get_configured_auth_service("http", url=url) as service:
|
||||||
verify=False,
|
|
||||||
post=True,
|
|
||||||
user="",
|
|
||||||
passwd="",
|
|
||||||
timeout=5.0,
|
|
||||||
)
|
|
||||||
|
|
||||||
assert not (await service.login("admin", "foo"))
|
assert not (await service.login("admin", "foo"))
|
||||||
assert not (await service.login("user", "foo"))
|
assert not (await service.login("user", "foo"))
|
||||||
assert (await service.login("admin", "foobar"))
|
assert (await service.login("admin", "foobar"))
|
||||||
|
|
||||||
await service.cleanup()
|
|
||||||
20
tests/validators/__init__.py
Normal file
20
tests/validators/__init__.py
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# ========================================================================== #
|
||||||
|
# #
|
||||||
|
# KVMD - The main Pi-KVM daemon. #
|
||||||
|
# #
|
||||||
|
# Copyright (C) 2018 Maxim Devaev <mdevaev@gmail.com> #
|
||||||
|
# #
|
||||||
|
# This program is free software: you can redistribute it and/or modify #
|
||||||
|
# it under the terms of the GNU General Public License as published by #
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or #
|
||||||
|
# (at your option) any later version. #
|
||||||
|
# #
|
||||||
|
# This program is distributed in the hope that it will be useful, #
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
||||||
|
# GNU General Public License for more details. #
|
||||||
|
# #
|
||||||
|
# You should have received a copy of the GNU General Public License #
|
||||||
|
# along with this program. If not, see <https://www.gnu.org/licenses/>. #
|
||||||
|
# #
|
||||||
|
# ========================================================================== #
|
||||||
Loading…
x
Reference in New Issue
Block a user