headroom/tests/test_graceful_shutdown.py
Tejas Chopra 5d25abd356
test: repair three suite failures that are red on main (#3196)
## Summary

Three tests fail on a clean `main` full-suite run. None is a product
defect — all three are tests that stopped describing reality, and they
will noise up or block the 0.36.4 release.

| Test | Why it fails | Fix |
|---|---|---|
| `test_release_workflows::test_no_native_tls_in_wheel_build_tree` |
Shells out to `cargo`; raises `FileNotFoundError` wherever the Rust
toolchain is absent | Copied the skip guards its own dual already had |
|
`test_learn/test_integration::TestCodexIntegration::test_full_pipeline`
| Asserts `"Bash" in all_tools` against **real local Codex data**; Codex
renamed its shell tool | Assert what the test is for, across Codex
versions |
|
`test_graceful_shutdown::test_run_server_installs_cancelled_error_filter`
| Counts installs on the **process-global** `uvicorn.error` logger;
order-dependent | Isolate the global state; assert the real contract |

## 1. native-tls / cargo

The `openssl-sys` gate 30 lines above is described in-code as this
test's dual. It already skips when `cargo` is missing, **and** when
cargo fails for a reason other than `"package did not match"` (the Linux
wheel target not being installed locally). The native-tls test never
copied either guard.

Not disabled: CI installs the toolchain via `dtolnay/rust-toolchain`, so
the check still executes there. The skip only applies where cargo is
genuinely absent.

## 2. Codex tool vocabulary

This test runs against whatever Codex sessions the machine actually has
(gated by `HAS_CODEX_DATA`), and asserted:

```python
# Codex has only Bash tool (shell)
assert "Bash" in all_tools
```

Codex has since renamed its shell tool (`Bash` → `shell` → `exec`), and
0.149.0 added agent tools (`spawn_agent`, `send_message`, `wait`) beside
it. The assertion pinned one release's vocabulary, so it fails on any
current install.

It now asserts what the pipeline is actually being tested for — that
tool calls were extracted, including a shell-execution tool under any of
its known names — and names the remedy in the failure message for the
next rename.

**Still discriminating** (verified, not assumed):

| Scenario | Result |
|---|---|
| pipeline parsed nothing | fails ✓ |
| tool names garbled | fails ✓ |
| agent tools only, no shell tool | fails ✓ |
| real current Codex data | passes ✓ |

## 3. Global logger state

```python
if not any(isinstance(item, _SuppressCancelledErrorFilter) for item in uvicorn_error_logger.filters):
    uvicorn_error_logger.addFilter(_SuppressCancelledErrorFilter())
```

`run_server` is deliberately idempotent and `uvicorn.error` is a
process-global logger, so any earlier test in the session that reached
`run_server` leaves the filter attached — and this test then observes
**zero** installs against its `== 1` assertion. It passes alone and
fails in a full run, which is exactly the symptom.

The test now clears and restores that global state around itself, and
additionally asserts the idempotence guard that is the real contract:
calling `run_server` twice must not stack a duplicate filter. The test
got stronger, not just quieter.

## Scope

Tests only — no product code is touched.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Tejas Chopra <tejas@Tejass-MacBook-Pro.local>
Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
2026-08-21 23:18:40 -07:00

316 lines
12 KiB
Python

"""Tests for graceful shutdown and Ctrl+C signal handling.
Covers:
- _SuppressCancelledErrorFilter suppresses "Exception in ASGI application"
log records whose exc_info is CancelledError
- _SuppressCancelledErrorFilter passes through unrelated error records
- timeout_graceful_shutdown is present in the uvicorn.run() call path
- The lifespan shutdown branch logs the proxy_shutdown event
- Lifespan shutdown completes even when individual steps block/raise
"""
from __future__ import annotations
import asyncio
import logging
import pytest
from headroom.proxy.server import (
ProxyConfig,
_SuppressCancelledErrorFilter,
create_app,
)
# ---------------------------------------------------------------------------
# Unit tests for the logging filter
# ---------------------------------------------------------------------------
class TestSuppressCancelledErrorFilter:
"""_SuppressCancelledErrorFilter silences CancelledError noise from uvicorn."""
def _make_record(
self,
level: int = logging.ERROR,
exc_type: type | None = None,
) -> logging.LogRecord:
record = logging.LogRecord(
name="uvicorn.error",
level=level,
pathname="",
lineno=0,
msg="Exception in ASGI application",
args=(),
exc_info=(exc_type, exc_type() if exc_type else None, None) if exc_type else None,
)
return record
def test_suppresses_cancelled_error_at_error_level(self) -> None:
f = _SuppressCancelledErrorFilter()
record = self._make_record(logging.ERROR, asyncio.CancelledError)
assert f.filter(record) is False
def test_passes_through_cancelled_error_at_warning_level(self) -> None:
# Only suppress ERROR, not lower-severity records
f = _SuppressCancelledErrorFilter()
record = self._make_record(logging.WARNING, asyncio.CancelledError)
assert f.filter(record) is True
def test_passes_through_other_exception_at_error_level(self) -> None:
f = _SuppressCancelledErrorFilter()
record = self._make_record(logging.ERROR, ValueError)
assert f.filter(record) is True
def test_passes_through_record_without_exc_info(self) -> None:
f = _SuppressCancelledErrorFilter()
record = self._make_record(logging.ERROR, None)
# exc_info is set to None tuple when exc_type is None
record.exc_info = None
assert f.filter(record) is True
def test_passes_through_record_with_none_exc_type(self) -> None:
f = _SuppressCancelledErrorFilter()
record = self._make_record(logging.ERROR, None)
record.exc_info = (None, None, None)
assert f.filter(record) is True
def test_suppresses_subclass_of_cancelled_error(self) -> None:
"""BaseException subclasses of CancelledError are also suppressed."""
class MyCancelled(asyncio.CancelledError):
pass
f = _SuppressCancelledErrorFilter()
record = self._make_record(logging.ERROR, MyCancelled)
assert f.filter(record) is False
# ---------------------------------------------------------------------------
# Integration: filter is installed on uvicorn.error in run_server()
# ---------------------------------------------------------------------------
def test_run_server_installs_cancelled_error_filter(monkeypatch: pytest.MonkeyPatch) -> None:
"""run_server() attaches _SuppressCancelledErrorFilter to uvicorn.error logger."""
installed_filters: list = []
original_add_filter = logging.Logger.addFilter
def capturing_add_filter(self: logging.Logger, f: logging.Filter) -> None:
if self.name == "uvicorn.error" and isinstance(f, _SuppressCancelledErrorFilter):
installed_filters.append(f)
original_add_filter(self, f)
monkeypatch.setattr(logging.Logger, "addFilter", capturing_add_filter)
# Intercept uvicorn.run so we don't actually start a server
monkeypatch.setattr("uvicorn.run", lambda *a, **kw: None)
from headroom.proxy.server import run_server
# `uvicorn.error` is a process-global logger and run_server only installs
# the filter when one is not already attached. Any earlier test in the
# session that reached run_server therefore leaves it installed, and this
# test would observe zero installs. Isolate the global state rather than
# depend on test ordering.
uvicorn_error_logger = logging.getLogger("uvicorn.error")
preexisting = [
item
for item in uvicorn_error_logger.filters
if isinstance(item, _SuppressCancelledErrorFilter)
]
for item in preexisting:
uvicorn_error_logger.removeFilter(item)
try:
run_server(ProxyConfig(), print_banner=False)
assert len(installed_filters) == 1, "Expected exactly one _SuppressCancelledErrorFilter"
# The idempotence guard is the real contract: a second call must not
# stack a duplicate filter on the shared logger.
run_server(ProxyConfig(), print_banner=False)
attached = [
item
for item in uvicorn_error_logger.filters
if isinstance(item, _SuppressCancelledErrorFilter)
]
assert len(attached) == 1, f"filter stacked on repeat calls: {len(attached)}"
finally:
for item in list(uvicorn_error_logger.filters):
if isinstance(item, _SuppressCancelledErrorFilter):
uvicorn_error_logger.removeFilter(item)
for item in preexisting:
original_add_filter(uvicorn_error_logger, item)
# ---------------------------------------------------------------------------
# Integration: timeout_graceful_shutdown is forwarded to uvicorn.run()
# ---------------------------------------------------------------------------
def test_run_server_passes_timeout_graceful_shutdown(monkeypatch: pytest.MonkeyPatch) -> None:
"""run_server() passes timeout_graceful_shutdown=10 to uvicorn.run()."""
captured: dict = {}
def fake_uvicorn_run(*args: object, **kwargs: object) -> None:
captured.update(kwargs)
monkeypatch.setattr("uvicorn.run", fake_uvicorn_run)
from headroom.proxy.server import run_server
run_server(ProxyConfig(), print_banner=False)
assert "timeout_graceful_shutdown" in captured, (
"uvicorn.run() must receive timeout_graceful_shutdown kwarg"
)
assert captured["timeout_graceful_shutdown"] == 10
# ---------------------------------------------------------------------------
# Integration: lifespan logs proxy_shutdown event on teardown
# ---------------------------------------------------------------------------
def test_lifespan_logs_shutdown_event(monkeypatch: pytest.MonkeyPatch) -> None:
"""The lifespan finally-block logs event=proxy_shutdown when the app tears down.
caplog cannot capture records from loggers that emit before propagation is
configured, so this test installs a custom handler directly on
``headroom.proxy`` and checks that handler's records.
"""
# Collect log records manually because caplog propagation is unreliable
# when the root logger has pre-existing basicConfig handlers.
captured: list[logging.LogRecord] = []
class _Capture(logging.Handler):
def emit(self, record: logging.LogRecord) -> None:
captured.append(record)
proxy_logger = logging.getLogger("headroom.proxy")
capture_handler = _Capture()
proxy_logger.addHandler(capture_handler)
try:
# Prevent sys.exit(78) from _check_rust_core when Rust extension absent
monkeypatch.setattr(
"headroom.proxy.server._check_rust_core", lambda: ("disabled", "test-mock")
)
config = ProxyConfig(
optimize=False,
cache_enabled=False,
rate_limit_enabled=False,
cost_tracking_enabled=False,
log_requests=False,
ccr_inject_tool=False,
ccr_handle_responses=False,
ccr_context_tracking=False,
image_optimize=False,
)
app = create_app(config)
from fastapi.testclient import TestClient
with TestClient(app, raise_server_exceptions=False):
pass # lifespan shutdown runs when the context manager exits
finally:
proxy_logger.removeHandler(capture_handler)
shutdown_records = [r for r in captured if "event=proxy_shutdown" in r.getMessage()]
assert shutdown_records, "Expected at least one log record containing 'event=proxy_shutdown'"
# ---------------------------------------------------------------------------
# Lifespan shutdown: bounded await (_timed helper)
# ---------------------------------------------------------------------------
def test_lifespan_shutdown_completes_when_proxy_shutdown_hangs(
monkeypatch: pytest.MonkeyPatch,
) -> None:
"""Lifespan shutdown must complete even if proxy.shutdown() never returns.
Before the fix, an unbounded ``await _beacon.stop()`` would block the
lifespan finally-block forever, requiring a second Ctrl+C. The fix wraps
every shutdown await with asyncio.wait_for so a slow step is skipped
after its timeout and teardown continues.
"""
import asyncio
async def hanging_stop() -> None:
await asyncio.sleep(9999) # simulate a blocked network call
# Prevent sys.exit(78) from the Rust-core check
monkeypatch.setattr("headroom.proxy.server._check_rust_core", lambda: ("disabled", "test-mock"))
config = ProxyConfig(
optimize=False,
cache_enabled=False,
rate_limit_enabled=False,
cost_tracking_enabled=False,
log_requests=False,
ccr_inject_tool=False,
ccr_handle_responses=False,
ccr_context_tracking=False,
image_optimize=False,
)
app = create_app(config)
import headroom.proxy.server as server_mod
monkeypatch.setattr(server_mod.HeadroomProxy, "shutdown", lambda self: hanging_stop())
# If the fix is absent this would hang; with the fix it returns quickly.
import time
from fastapi.testclient import TestClient
start = time.monotonic()
with TestClient(app, raise_server_exceptions=False):
pass
elapsed = time.monotonic() - start
# Teardown should complete well within 15 s even with the timeout; hanging
# without the fix would block until the test runner times out (~60 s).
assert elapsed < 15.0, f"Lifespan shutdown took too long: {elapsed:.1f}s"
def test_lifespan_shutdown_completes_when_proxy_shutdown_raises(
monkeypatch: pytest.MonkeyPatch,
) -> None:
"""Lifespan shutdown must complete even if proxy.shutdown() raises.
The _timed wrapper catches both TimeoutError and arbitrary exceptions,
logs a warning, and continues so all subsequent teardown steps still run.
"""
async def raising_shutdown() -> None:
raise RuntimeError("simulated shutdown failure")
monkeypatch.setattr("headroom.proxy.server._check_rust_core", lambda: ("disabled", "test-mock"))
config = ProxyConfig(
optimize=False,
cache_enabled=False,
rate_limit_enabled=False,
cost_tracking_enabled=False,
log_requests=False,
ccr_inject_tool=False,
ccr_handle_responses=False,
ccr_context_tracking=False,
image_optimize=False,
)
app = create_app(config)
import headroom.proxy.server as server_mod
monkeypatch.setattr(server_mod.HeadroomProxy, "shutdown", lambda self: raising_shutdown())
from fastapi.testclient import TestClient
# Should not raise — the _timed helper swallows the exception with a warning
with TestClient(app, raise_server_exceptions=False):
pass