kanidm/pykanidm/tests/test_radius_config.py

49 lines
1.2 KiB
Python
Raw Normal View History

2024-09-10 02:36:50 +02:00
"""tests the config file things"""
from pathlib import Path
import sys
import toml
import pytest
from kanidm.types import KanidmClientConfig
from kanidm.utils import load_config
EXAMPLE_CONFIG_FILE = Path(__file__).parent.parent.parent / "examples/config"
2022-09-29 02:08:15 +02:00
2024-09-10 02:36:50 +02:00
def test_radius_groups() -> None:
2022-09-29 02:08:15 +02:00
"""testing loading a config file with radius groups defined"""
config_toml = """
radius_groups = [
2022-10-02 03:28:58 +02:00
{ spn = "hello world", "vlan" = 1234 },
]
"""
config_parsed = toml.loads(config_toml)
print(config_parsed)
2023-07-24 09:09:43 +02:00
kanidm_config = KanidmClientConfig.model_validate(config_parsed)
for group in kanidm_config.radius_groups:
2022-10-02 03:28:58 +02:00
print(group.spn)
assert group.spn == "hello world"
2022-09-29 02:08:15 +02:00
def test_radius_clients() -> None:
2022-09-29 02:08:15 +02:00
"""testing loading a config file with radius groups defined"""
config_toml = """
radius_clients = [ { name = "hello world", ipaddr = "10.0.0.5", secret = "cr4bj0oz" },
]
"""
config_parsed = toml.loads(config_toml)
print(config_parsed)
2023-07-24 09:09:43 +02:00
kanidm_config = KanidmClientConfig.model_validate(config_parsed)
client = kanidm_config.radius_clients[0]
print(client.name)
assert client.name == "hello world"
assert client.ipaddr == "10.0.0.5"
assert client.secret == "cr4bj0oz"