headroom/tests/test_provider_registry.py
nangsontay e5b3a634df
fix(proxy): dedupe Codex WS request logging for accurate mixed-provider dashboards (#2189)
## Description

Running Claude Code (Anthropic) and Codex (OpenAI) against the **same**
Headroom proxy instance on one port produced incorrect, unstable
dashboard data. The proxy core is provider-isolated and
multi-provider-safe by design; the defect was in the observability
layer. The Codex `/v1/responses` **WebSocket** handler was the only path
in the proxy that wrote to the request logger by hand instead of through
the unified `emit_request_outcome` funnel, and it did so twice per
session close: the per-turn funnel record plus an unconditional
cumulative session-summary `RequestLog`. This PR removes the duplicate
summary log so Codex WS emits exactly one request log per turn, matching
the HTTP provider paths.

## Type of Change

- [x] Bug fix (non-breaking change that fixes an issue)
- [ ] New feature (non-breaking change that adds functionality)
- [ ] Breaking change (fix or feature that would cause existing
functionality to change)
- [ ] Documentation update
- [ ] Performance improvement
- [ ] Code refactoring (no functional changes)

## Changes Made

- Dropped the duplicate cumulative session-summary `RequestLog` in the
Codex WS handler while preserving the per-turn `emit_request_outcome`
path.
- Preserved gated `request_messages` and `turn_id` on residual outcomes
so dashboard telemetry keeps the useful attribution without
double-counting tokens.
- Ensured explicit `--anyllm-provider` wins over a leaked
`HEADROOM_ANYLLM_PROVIDER` environment variable.
- Registered retry delay settings that had drifted out of the settings
registry.
- Hardened tests against developer-shell `HEADROOM_*` /
`ANTHROPIC_CUSTOM_HEADERS` leakage and stabilized several focused
proxy/wrap test fixtures.

## Testing

- [x] Unit tests pass (`pytest`)
- [x] Linting passes (`ruff check .`)
- [ ] Type checking passes (`mypy headroom`)
- [x] New tests added for new functionality
- [x] Manual testing performed

### Test Output

```text
$ .venv/bin/pytest tests/ -q -p no:cacheprovider
8529 passed, 537 skipped, 5831 warnings in 276.25s (0:04:36)

$ .venv/bin/ruff check <touched files>
All checks passed!
```

## Real Behavior Proof

- Environment: macOS (Darwin 25.4.0), Python 3.13.14, pytest 9.0.3, ruff
via project venv, branch `fix/multi-provider-runtime`.
- Exact command / steps: Ran the full test suite without pytest cache
provider and Ruff on all touched files; used `git stash` to confirm the
stale fake-config failures pre-existed this change.
- Observed result: Full suite passed with no failures; Ruff passed;
Codex WS now routes end-of-session logging through
`emit_request_outcome`, emitting one request log per turn with the same
accounting model as Anthropic HTTP turns.
- Not tested: Live simultaneous Claude + Codex dashboard run. `mypy
headroom` was not run to completion; a scoped run reported one
pre-existing `settings_store.py:470` coercion error outside this diff.

## Review Readiness

- [x] I have performed a self-review
- [x] This PR is ready for human review

## Checklist

- [x] My code follows the project's style guidelines
- [x] I have performed a self-review of my code
- [x] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [x] I have added tests that prove my fix is effective or that my
feature works
- [x] New and existing unit tests pass locally with my changes
- [ ] I have updated the CHANGELOG.md if applicable

## Screenshots (if applicable)

N/A - server-side observability fix; no UI markup changed.

## Additional Notes

- The proxy's multi-provider routing, header/auth isolation, and
per-model cache keying are already correct and unchanged here; only the
WS observability write path was double-counting.
- Architectural assessment:
`plans/reports/research-260714-0004-multi-provider-upstream-compression-report.md`;
root-cause + resolution trail:
`plans/reports/debug-assessment-260714-0011-dashboard-instability-mixed-claude-codex-report.md`.
- No live simultaneous Claude + Codex dashboard run was performed;
validation is from test coverage and code review of the WS logging path.

---------

Co-authored-by: JerrettDavis <mxjerrett@gmail.com>
2026-07-15 18:18:34 +00:00

455 lines
15 KiB
Python

from __future__ import annotations
import logging
import pytest
from headroom.providers.registry import (
ProviderApiOverrides,
build_proxy_provider_runtime,
create_proxy_backend,
format_backend_status,
resolve_api_overrides,
resolve_api_targets,
resolve_extra_headers,
)
from headroom.proxy.models import ProxyConfig
def test_resolve_api_overrides_prefers_explicit_values_over_environment(monkeypatch) -> None:
monkeypatch.setenv("ANTHROPIC_TARGET_API_URL", "https://env.anthropic.example/v1")
monkeypatch.setenv("OPENAI_TARGET_API_URL", "https://env.openai.example/v1")
monkeypatch.setenv("VERTEX_TARGET_API_URL", "https://env-vertex-aiplatform.example/v1")
overrides = resolve_api_overrides(
anthropic_api_url="https://cli.anthropic.example/v1",
openai_api_url=None,
gemini_api_url=None,
cloudcode_api_url=None,
vertex_api_url="https://cli-vertex-aiplatform.example/v1",
)
assert overrides == ProviderApiOverrides(
anthropic="https://cli.anthropic.example/v1",
openai="https://env.openai.example/v1",
gemini=None,
cloudcode=None,
vertex="https://cli-vertex-aiplatform.example/v1",
)
def test_resolve_api_targets_normalizes_trailing_v1() -> None:
targets = resolve_api_targets(
ProviderApiOverrides(
anthropic="https://anthropic.example/v1/",
openai="https://openai.example/v1",
gemini="https://gemini.example/v1",
cloudcode="https://cloudcode.example/v1/",
vertex="https://vertex.example/v1/",
)
)
assert targets.anthropic == "https://anthropic.example"
assert targets.openai == "https://openai.example"
assert targets.gemini == "https://gemini.example"
assert targets.cloudcode == "https://cloudcode.example"
assert targets.vertex == "https://vertex.example"
def test_proxy_config_exposes_provider_api_overrides() -> None:
config = ProxyConfig(
anthropic_api_url="https://anthropic.example",
openai_api_url="https://openai.example",
gemini_api_url=None,
cloudcode_api_url="https://cloudcode.example",
vertex_api_url="https://vertex.example",
)
assert config.provider_api_overrides == ProviderApiOverrides(
anthropic="https://anthropic.example",
openai="https://openai.example",
gemini=None,
cloudcode="https://cloudcode.example",
vertex="https://vertex.example",
)
def test_format_backend_status_for_anyllm() -> None:
assert (
format_backend_status(
backend="anyllm",
anyllm_provider="groq",
bedrock_region="us-central1",
)
== "Groq via any-llm"
)
def test_format_backend_status_for_anthropic_direct() -> None:
assert (
format_backend_status(
backend="anthropic",
anyllm_provider="ignored",
bedrock_region=None,
)
== "ANTHROPIC (direct API)"
)
def test_proxy_provider_runtime_routes_model_metadata_and_passthrough() -> None:
runtime = build_proxy_provider_runtime(ProxyConfig())
assert runtime.model_metadata_provider({"x-api-key": "test"}) == "anthropic"
assert runtime.model_metadata_provider({}) == "openai"
assert (
runtime.select_passthrough_base_url({"x-api-key": "test"}) == runtime.api_targets.anthropic
)
assert (
runtime.select_passthrough_base_url({"x-goog-api-key": "test"})
== runtime.api_targets.gemini
)
assert runtime.select_passthrough_base_url({"api-key": "azure", "x-headroom-base-url": ""}) == (
runtime.api_targets.openai
)
def test_create_proxy_backend_handles_missing_litellm_backend(caplog) -> None:
logger = logging.getLogger("test")
with caplog.at_level(logging.WARNING):
missing = create_proxy_backend(
backend="bedrock",
anyllm_provider="ignored",
bedrock_region="us-east-1",
logger=logger,
litellm_backend_cls=lambda provider, region, profile_name=None: (_ for _ in ()).throw(
ImportError("missing")
),
)
assert missing is None
assert "LiteLLM backend not available" in caplog.text
def test_create_proxy_backend_logs_structured_failure_details(caplog) -> None:
logger = logging.getLogger("test")
with caplog.at_level(logging.ERROR):
missing = create_proxy_backend(
backend="bedrock",
anyllm_provider="ignored",
bedrock_region="us-east-1",
logger=logger,
litellm_backend_cls=lambda provider, region, profile_name=None: (_ for _ in ()).throw(
RuntimeError("boom")
),
)
assert missing is None
assert "backend initialization failed: backend=litellm-bedrock provider=bedrock error=boom" in (
caplog.text
)
def test_proxy_provider_runtime_loaders_cache_backend_types(monkeypatch) -> None:
import headroom.providers.registry as registry
anyllm_loads = 0
litellm_loads = 0
class FakeAnyLLMBackend:
pass
class FakeLiteLLMBackend:
pass
def fake_import(name, globals=None, locals=None, fromlist=(), level=0):
nonlocal anyllm_loads, litellm_loads
if name == "headroom.backends.anyllm":
anyllm_loads += 1
return type("Module", (), {"AnyLLMBackend": FakeAnyLLMBackend})()
if name == "headroom.backends.litellm":
litellm_loads += 1
return type("Module", (), {"LiteLLMBackend": FakeLiteLLMBackend})()
raise AssertionError(name)
monkeypatch.setattr(registry, "AnyLLMBackendType", None)
monkeypatch.setattr(registry, "LiteLLMBackendType", None)
monkeypatch.setattr("builtins.__import__", fake_import)
assert registry._load_anyllm_backend() is FakeAnyLLMBackend
assert registry._load_anyllm_backend() is FakeAnyLLMBackend
assert registry._load_litellm_backend() is FakeLiteLLMBackend
assert registry._load_litellm_backend() is FakeLiteLLMBackend
assert anyllm_loads == 1
assert litellm_loads == 1
def test_proxy_provider_runtime_transport_helpers_handle_missing_usage() -> None:
import headroom.providers.registry as registry
class Storage:
def __init__(self) -> None:
self.saved = []
def save(self, metrics) -> None:
self.saved.append(metrics)
client = type(
"Client",
(),
{
"_storage": Storage(),
"_original": type(
"Original",
(),
{
"chat": type(
"Chat",
(),
{
"completions": type(
"Completions",
(),
{
"create": staticmethod(
lambda **kwargs: type("Resp", (), {"usage": None})()
)
},
)()
},
)(),
"messages": type(
"Messages",
(),
{
"create": staticmethod(
lambda **kwargs: type("Resp", (), {"usage": None})()
)
},
)(),
},
)(),
},
)()
openai_metrics = type("Metrics", (), {"tokens_output": 0, "cached_tokens": 0})()
anthropic_metrics = type("Metrics", (), {"tokens_output": 0, "cached_tokens": 0})()
registry._call_openai_transport(
client,
model="gpt-4o",
messages=[],
stream=False,
metrics=openai_metrics,
)
registry._call_anthropic_transport(
client,
model="claude",
messages=[],
stream=False,
metrics=anthropic_metrics,
)
assert openai_metrics.tokens_output == 0
assert openai_metrics.cached_tokens == 0
assert anthropic_metrics.tokens_output == 0
assert anthropic_metrics.cached_tokens == 0
assert len(client._storage.saved) == 2
def test_proxy_provider_runtime_transport_helpers_handle_usage_without_optional_cache_fields() -> (
None
):
import headroom.providers.registry as registry
class Storage:
def __init__(self) -> None:
self.saved = []
def save(self, metrics) -> None:
self.saved.append(metrics)
client = type(
"Client",
(),
{
"_storage": Storage(),
"_original": type(
"Original",
(),
{
"chat": type(
"Chat",
(),
{
"completions": type(
"Completions",
(),
{
"create": staticmethod(
lambda **kwargs: type(
"Resp",
(),
{
"usage": type(
"Usage",
(),
{"completion_tokens": 7},
)()
},
)()
)
},
)()
},
)(),
"messages": type(
"Messages",
(),
{
"create": staticmethod(
lambda **kwargs: type(
"Resp",
(),
{
"usage": type(
"Usage",
(),
{"output_tokens": 5},
)()
},
)()
)
},
)(),
},
)(),
},
)()
openai_metrics = type("Metrics", (), {"tokens_output": 0, "cached_tokens": 0})()
anthropic_metrics = type("Metrics", (), {"tokens_output": 0, "cached_tokens": 0})()
registry._call_openai_transport(
client,
model="gpt-4o",
messages=[],
stream=False,
metrics=openai_metrics,
)
registry._call_anthropic_transport(
client,
model="claude",
messages=[],
stream=False,
metrics=anthropic_metrics,
)
assert openai_metrics.tokens_output == 7
assert openai_metrics.cached_tokens == 0
assert anthropic_metrics.tokens_output == 5
assert anthropic_metrics.cached_tokens == 0
assert len(client._storage.saved) == 2
def test_proxy_provider_runtime_openai_transport_handles_prompt_details_without_cached_tokens() -> (
None
):
import headroom.providers.registry as registry
class Storage:
def __init__(self) -> None:
self.saved = []
def save(self, metrics) -> None:
self.saved.append(metrics)
client = type(
"Client",
(),
{
"_storage": Storage(),
"_original": type(
"Original",
(),
{
"chat": type(
"Chat",
(),
{
"completions": type(
"Completions",
(),
{
"create": staticmethod(
lambda **kwargs: type(
"Resp",
(),
{
"usage": type(
"Usage",
(),
{
"completion_tokens": 9,
"prompt_tokens_details": type(
"Details",
(),
{},
)(),
},
)()
},
)()
)
},
)()
},
)()
},
)(),
},
)()
metrics = type("Metrics", (), {"tokens_output": 0, "cached_tokens": 0})()
registry._call_openai_transport(
client,
model="gpt-4o",
messages=[],
stream=False,
metrics=metrics,
)
assert metrics.tokens_output == 9
assert metrics.cached_tokens == 0
assert len(client._storage.saved) == 1
def test_resolve_extra_headers_cli_wins_over_env(monkeypatch) -> None:
monkeypatch.setenv("ANTHROPIC_TARGET_API_HEADERS", '{"Env-Header": "env-value"}')
result = resolve_extra_headers('{"Cli-Header": "cli-value"}', "ANTHROPIC_TARGET_API_HEADERS")
assert result == {"Cli-Header": "cli-value"}
def test_resolve_extra_headers_falls_back_to_env(monkeypatch) -> None:
monkeypatch.setenv("OPENAI_TARGET_API_HEADERS", '{"Env-Header": "env-value"}')
result = resolve_extra_headers(None, "OPENAI_TARGET_API_HEADERS")
assert result == {"Env-Header": "env-value"}
def test_resolve_extra_headers_unset_returns_none(monkeypatch) -> None:
monkeypatch.delenv("ANTHROPIC_TARGET_API_HEADERS", raising=False)
assert resolve_extra_headers(None, "ANTHROPIC_TARGET_API_HEADERS") is None
def test_resolve_extra_headers_invalid_json_raises(monkeypatch) -> None:
with pytest.raises(ValueError):
resolve_extra_headers("not json", "ANTHROPIC_TARGET_API_HEADERS")
def test_resolve_extra_headers_non_object_raises(monkeypatch) -> None:
with pytest.raises(ValueError):
resolve_extra_headers('["a", "b"]', "ANTHROPIC_TARGET_API_HEADERS")
def test_resolve_extra_headers_non_string_value_raises(monkeypatch) -> None:
with pytest.raises(ValueError):
resolve_extra_headers('{"Key": 123}', "ANTHROPIC_TARGET_API_HEADERS")