headroom/tests/test_compress_failure.py
Garm efd2ac1ca4 chore: renormalize line endings to LF
`.gitattributes` declares `*.py text eol=lf` and `*.sh text eol=lf`, but
74 files (73 .py, 1 .sh) are stored in the index with CRLF line endings,
violating that contract. Every macOS/Linux clone reports these files as
"modified" on fresh checkout because git's diff engine sees the stored
bytes don't match the attribute contract, even though the working tree
and index match byte-for-byte.

Running `git add --renormalize .` rewrites each affected blob so the
stored form matches the attribute declaration. No semantic changes —
every affected file's diff is "N insertions, N deletions" with inserts
and deletes being the same lines modulo line endings.

Follow-up commit adds `.git-blame-ignore-revs` so `git blame` / GitHub
blame skip this mechanical commit.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-24 15:33:30 +02:00

39 lines
1.1 KiB
Python

from __future__ import annotations
import importlib
from types import SimpleNamespace
from headroom.compress import compress
class _FailingPipeline:
def apply(self, **kwargs): # noqa: ANN003, ANN201
raise RuntimeError("boom")
def test_compress_returns_original_messages_when_pipeline_fails(monkeypatch) -> None:
metrics: list[dict[str, str]] = []
compress_module = importlib.import_module("headroom.compress")
monkeypatch.setattr(compress_module, "_get_pipeline", lambda: _FailingPipeline())
monkeypatch.setattr(
compress_module,
"get_otel_metrics",
lambda: SimpleNamespace(
record_compression_failure=lambda **kwargs: metrics.append(kwargs),
),
)
messages = [{"role": "user", "content": "hello world " * 100}]
result = compress(messages, model="gpt-4o")
assert result.messages == messages
assert result.tokens_before == 0
assert result.tokens_after == 0
assert result.tokens_saved == 0
assert metrics == [
{
"model": "gpt-4o",
"operation": "compress",
"error_type": "RuntimeError",
}
]