mirror of
https://github.com/kc1awv/rrcd.git
synced 2026-07-26 01:08:11 -07:00
enforce fixed hub destination namespace
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
|
||||
from rrcd.config import ConfigManager, HubRuntimeConfig
|
||||
from rrcd.constants import HUB_DEST_NAME
|
||||
from rrcd.service import HubService
|
||||
|
||||
|
||||
class _FakeHub:
|
||||
def __init__(self) -> None:
|
||||
self.log = logging.getLogger("test")
|
||||
self.config = HubRuntimeConfig()
|
||||
|
||||
|
||||
def test_apply_config_data_ignores_dest_name_override() -> None:
|
||||
manager = ConfigManager(_FakeHub())
|
||||
base = HubRuntimeConfig()
|
||||
|
||||
updated = manager.apply_config_data(
|
||||
base,
|
||||
{
|
||||
"dest_name": "custom.hub",
|
||||
"hub": {"dest_name": "custom.hub"},
|
||||
"hub_name": "custom-name",
|
||||
},
|
||||
)
|
||||
|
||||
assert updated.dest_name == HUB_DEST_NAME
|
||||
assert updated.hub_name == "custom-name"
|
||||
|
||||
|
||||
def test_service_normalizes_custom_dest_name() -> None:
|
||||
service = HubService(HubRuntimeConfig(dest_name="custom.hub"))
|
||||
|
||||
assert service.config.dest_name == HUB_DEST_NAME
|
||||
Reference in New Issue
Block a user