b4fbd6fe9f
Deploy Site / deploy-vercel (push) Has been skipped
Deploy Site / deploy-docs (push) Has been skipped
Build Skills Index / build-index (push) Has been skipped
CI / Deny unrelated histories (push) Has been skipped
CI / Detect affected areas (push) Successful in 27m35s
CI / OSV scan (push) Failing after 4s
CI / Build&Test Docker image (push) Successful in 9s
CI / Supply-chain scan (push) Has been skipped
CI / Lint Docker scripts (push) Failing after 5m13s
CI / Check contributors (push) Failing after 12m8s
CI / Docs Site (push) Failing after 12m8s
CI / TypeScript (push) Failing after 12m8s
CI / Python lints (push) Failing after 12m9s
CI / Python tests (push) Failing after 12m9s
CI / Check uv.lock (push) Failing after 23m22s
CI / CI timing report (push) Has been cancelled
Build Skills Index / trigger-deploy (push) Has been cancelled
CI / All required checks pass (push) Has been cancelled
44 lines
1.7 KiB
Python
44 lines
1.7 KiB
Python
"""Regression test for #25676 — nested gateway.streaming config must be loaded."""
|
|
from pathlib import Path
|
|
from unittest.mock import patch, MagicMock
|
|
|
|
|
|
|
|
def _load_with_yaml_dict(yaml_dict: dict):
|
|
"""Patch filesystem so load_gateway_config() sees *yaml_dict* as config.yaml."""
|
|
from gateway.config import load_gateway_config
|
|
|
|
fake_home = Path("/tmp/fake_hermes_home_25676")
|
|
|
|
def fake_exists(self):
|
|
return str(self).endswith("config.yaml")
|
|
|
|
with patch("gateway.config.get_hermes_home", return_value=fake_home), \
|
|
patch.object(Path, "exists", fake_exists), \
|
|
patch("builtins.open", create=True) as mock_file:
|
|
mock_file.return_value.__enter__ = lambda s: s
|
|
mock_file.return_value.__exit__ = MagicMock(return_value=False)
|
|
with patch("yaml.safe_load", return_value=yaml_dict):
|
|
return load_gateway_config()
|
|
|
|
|
|
class TestStreamingConfigNested:
|
|
def test_top_level_streaming(self):
|
|
cfg = _load_with_yaml_dict({"streaming": {"enabled": True, "transport": "draft"}})
|
|
assert cfg.streaming.enabled is True
|
|
assert cfg.streaming.transport == "draft"
|
|
|
|
def test_nested_gateway_streaming(self):
|
|
"""Regression for #25676."""
|
|
cfg = _load_with_yaml_dict({"gateway": {"streaming": {"enabled": True, "transport": "draft"}}})
|
|
assert cfg.streaming.enabled is True
|
|
assert cfg.streaming.transport == "draft"
|
|
|
|
def test_top_level_takes_precedence(self):
|
|
cfg = _load_with_yaml_dict({
|
|
"streaming": {"enabled": True, "transport": "edit"},
|
|
"gateway": {"streaming": {"enabled": False, "transport": "draft"}},
|
|
})
|
|
assert cfg.streaming.enabled is True
|
|
assert cfg.streaming.transport == "edit"
|