fix(channels): let UI runtime channel config win over config.yaml (#3674)

* fix(channels): let UI runtime channel config win over config.yaml

Signed-off-by: Yufeng He <40085740+he-yufeng@users.noreply.github.com>

* test(channels): update assertion to expect runtime/UI value to win over yaml

The test was written when yaml took precedence over runtime config.
This PR inverts that precedence so UI-entered credentials win; the
assertion now correctly reflects that runtime value (xapp-ui) beats
the yaml value (xapp) on a shared key.

---------

Signed-off-by: Yufeng He <40085740+he-yufeng@users.noreply.github.com>
This commit is contained in:
Yufeng He 2026-06-24 10:24:36 +08:00 committed by GitHub
parent 11415875c4
commit 7be73fcf19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 47 additions and 4 deletions

View file

@ -125,9 +125,8 @@ def merge_runtime_channel_configs(
channels_config.pop(provider, None)
continue
existing = channels_config.get(provider)
merged = dict(runtime_config)
if isinstance(existing, dict):
merged.update(existing)
merged = dict(existing) if isinstance(existing, dict) else {}
merged.update(runtime_config)
channels_config[provider] = merged

View file

@ -4528,7 +4528,8 @@ class TestChannelService:
service = ChannelService.from_app_config(app_config)
assert service._config["telegram"]["bot_token"] == "telegram-token"
assert service._config["slack"]["app_token"] == "xapp"
# The runtime (UI-entered) value must win over the yaml value.
assert service._config["slack"]["app_token"] == "xapp-ui"
assert service._config["discord"]["bot_token"] == "discord-bot-token"
def test_from_app_config_loads_persisted_runtime_channel_config(self, monkeypatch, tmp_path):

View file

@ -0,0 +1,43 @@
"""Precedence tests for merge_runtime_channel_configs (pure, no event loop)."""
from __future__ import annotations
from types import SimpleNamespace
from app.channels.runtime_config_store import merge_runtime_channel_configs
def _store(data):
return SimpleNamespace(load_all=lambda: data)
def test_runtime_config_wins_over_yaml_on_shared_keys():
# The runtime store holds credentials entered from the UI, which exist so a
# deployment can configure a channel "without needing a config.yaml edit".
# When the same provider is also present in config.yaml, the UI value the
# user just saved must win; the yaml value must not silently override it.
channels_config = {
"telegram": {"bot_token": "yaml_token", "webhook_secret": "from_yaml"},
}
connections = SimpleNamespace(enabled=True, telegram=SimpleNamespace(enabled=True))
store = _store({"telegram": {"bot_token": "user_token", "bot_username": "mybot"}})
merge_runtime_channel_configs(channels_config, connections, store=store)
merged = channels_config["telegram"]
# UI-entered value wins on the shared key
assert merged["bot_token"] == "user_token"
# runtime-only key is added
assert merged["bot_username"] == "mybot"
# yaml-only key the UI never set is preserved
assert merged["webhook_secret"] == "from_yaml"
def test_runtime_only_provider_is_added():
channels_config: dict = {}
connections = SimpleNamespace(enabled=True, telegram=SimpleNamespace(enabled=True))
store = _store({"telegram": {"bot_token": "user_token"}})
merge_runtime_channel_configs(channels_config, connections, store=store)
assert channels_config["telegram"] == {"bot_token": "user_token"}