2026-04-16 17:44:23 -05:00
|
|
|
"""Tests for release version normalization and bumping."""
|
2026-04-24 15:33:30 +02:00
|
|
|
|
2026-04-16 19:17:53 -05:00
|
|
|
import os
|
|
|
|
|
import subprocess
|
|
|
|
|
import sys
|
|
|
|
|
from pathlib import Path
|
2026-04-16 23:46:06 -05:00
|
|
|
from unittest.mock import Mock
|
2026-04-24 15:33:30 +02:00
|
|
|
|
2026-04-16 18:50:36 -05:00
|
|
|
import pytest
|
2026-04-24 15:33:30 +02:00
|
|
|
|
2026-04-16 18:50:36 -05:00
|
|
|
from headroom.release_version import (
|
2026-04-16 23:38:29 -05:00
|
|
|
CommitInfo,
|
|
|
|
|
classify_commit_bump,
|
2026-04-16 18:50:36 -05:00
|
|
|
compute_release_version,
|
2026-04-16 23:38:29 -05:00
|
|
|
determine_bump_level,
|
2026-04-16 18:50:36 -05:00
|
|
|
find_latest_release_tag,
|
2026-04-21 23:44:21 -05:00
|
|
|
get_canonical_version,
|
2026-04-16 23:38:29 -05:00
|
|
|
list_release_commits,
|
2026-04-16 18:50:36 -05:00
|
|
|
normalize_release_tag,
|
2026-04-16 19:10:36 -05:00
|
|
|
parse_release_tag,
|
2026-04-16 18:50:36 -05:00
|
|
|
)
|
2026-04-24 15:33:30 +02:00
|
|
|
|
2026-04-16 19:17:53 -05:00
|
|
|
ROOT = Path(__file__).resolve().parent.parent
|
2026-04-24 15:33:30 +02:00
|
|
|
|
|
|
|
|
|
2026-04-16 17:44:23 -05:00
|
|
|
def test_normalize_release_tag_preserves_three_part_tag() -> None:
|
|
|
|
|
assert str(normalize_release_tag("v0.5.20")) == "0.5.20"
|
2026-04-24 15:33:30 +02:00
|
|
|
|
|
|
|
|
|
2026-04-16 17:44:23 -05:00
|
|
|
def test_normalize_release_tag_collapses_four_part_tag() -> None:
|
2026-04-16 19:10:36 -05:00
|
|
|
assert str(normalize_release_tag("v0.5.25.2")) == "0.5.25"
|
2026-04-24 15:33:30 +02:00
|
|
|
|
|
|
|
|
|
2026-04-16 17:44:23 -05:00
|
|
|
def test_compute_patch_release_from_four_part_history() -> None:
|
|
|
|
|
info = compute_release_version(
|
|
|
|
|
canonical_version="0.5.25",
|
|
|
|
|
level="patch",
|
|
|
|
|
tags=["v0.5.20", "v0.5.25.1", "v0.5.25.2"],
|
|
|
|
|
)
|
2026-04-24 15:33:30 +02:00
|
|
|
|
2026-04-16 19:10:36 -05:00
|
|
|
assert info.version == "0.5.26"
|
|
|
|
|
assert info.npm_version == "0.5.26"
|
2026-04-16 17:44:23 -05:00
|
|
|
assert info.previous_tag == "v0.5.25.2"
|
|
|
|
|
assert info.bump == "patch"
|
2026-04-24 15:33:30 +02:00
|
|
|
|
|
|
|
|
|
2026-04-16 17:44:23 -05:00
|
|
|
def test_compute_minor_release_from_four_part_history() -> None:
|
|
|
|
|
info = compute_release_version(
|
|
|
|
|
canonical_version="0.5.25",
|
|
|
|
|
level="minor",
|
|
|
|
|
tags=["v0.5.20", "v0.5.25.1", "v0.5.25.2"],
|
|
|
|
|
)
|
2026-04-24 15:33:30 +02:00
|
|
|
|
2026-04-16 17:44:23 -05:00
|
|
|
assert info.version == "0.6.0"
|
|
|
|
|
assert info.npm_version == "0.6.0"
|
|
|
|
|
assert info.previous_tag == "v0.5.25.2"
|
|
|
|
|
assert info.bump == "minor"
|
2026-04-24 15:33:30 +02:00
|
|
|
|
|
|
|
|
|
2026-04-16 17:44:23 -05:00
|
|
|
def test_compute_patch_release_from_canonical_without_tags() -> None:
|
|
|
|
|
info = compute_release_version(
|
|
|
|
|
canonical_version="0.5.25",
|
|
|
|
|
level="patch",
|
|
|
|
|
tags=[],
|
|
|
|
|
)
|
2026-04-24 15:33:30 +02:00
|
|
|
|
2026-04-16 17:44:23 -05:00
|
|
|
assert info.version == "0.5.26"
|
|
|
|
|
assert info.npm_version == "0.5.26"
|
|
|
|
|
assert info.previous_tag == ""
|
2026-04-24 15:33:30 +02:00
|
|
|
|
|
|
|
|
|
2026-04-16 17:44:23 -05:00
|
|
|
def test_manual_version_override_uses_single_semver() -> None:
|
|
|
|
|
info = compute_release_version(
|
|
|
|
|
canonical_version="0.5.25",
|
|
|
|
|
level="patch",
|
|
|
|
|
tags=["v0.5.25.2"],
|
|
|
|
|
manual_version="0.6.0",
|
|
|
|
|
)
|
2026-04-24 15:33:30 +02:00
|
|
|
|
2026-04-16 17:44:23 -05:00
|
|
|
assert info.version == "0.6.0"
|
|
|
|
|
assert info.npm_version == "0.6.0"
|
|
|
|
|
assert info.previous_tag == ""
|
|
|
|
|
assert info.bump == "manual"
|
2026-04-24 15:33:30 +02:00
|
|
|
|
|
|
|
|
|
2026-04-16 18:50:36 -05:00
|
|
|
def test_manual_version_override_rejects_legacy_four_part_version() -> None:
|
|
|
|
|
with pytest.raises(ValueError, match="Invalid semantic version"):
|
|
|
|
|
compute_release_version(
|
|
|
|
|
canonical_version="0.5.25",
|
|
|
|
|
level="patch",
|
|
|
|
|
tags=["v0.5.25.2"],
|
|
|
|
|
manual_version="0.5.25.3",
|
|
|
|
|
)
|
2026-04-24 15:33:30 +02:00
|
|
|
|
|
|
|
|
|
2026-04-16 18:50:36 -05:00
|
|
|
def test_find_latest_release_tag_prefers_highest_normalized_version() -> None:
|
|
|
|
|
assert find_latest_release_tag(["v0.5.25.2", "v0.5.27", "not-a-tag"]) == "v0.5.27"
|
2026-04-24 15:33:30 +02:00
|
|
|
|
|
|
|
|
|
2026-04-16 19:10:36 -05:00
|
|
|
def test_find_latest_release_tag_prefers_higher_legacy_height_with_same_base() -> None:
|
|
|
|
|
assert find_latest_release_tag(["v0.5.25.2", "v0.5.25.3", "v0.5.25"]) == "v0.5.25.3"
|
2026-04-24 15:33:30 +02:00
|
|
|
|
|
|
|
|
|
2026-04-16 19:10:36 -05:00
|
|
|
def test_parse_release_tag_preserves_legacy_height_for_sorting() -> None:
|
|
|
|
|
tag = parse_release_tag("v0.5.25.3")
|
|
|
|
|
assert str(tag.version) == "0.5.25"
|
|
|
|
|
assert tag.legacy_height == 3
|
2026-04-24 15:33:30 +02:00
|
|
|
|
|
|
|
|
|
2026-04-16 23:38:29 -05:00
|
|
|
def test_classify_commit_bump_treats_breaking_change_as_major() -> None:
|
|
|
|
|
assert (
|
|
|
|
|
classify_commit_bump(
|
|
|
|
|
CommitInfo(subject="fix(api)!: change response shape", body=""),
|
|
|
|
|
)
|
|
|
|
|
== "major"
|
|
|
|
|
)
|
2026-04-24 15:33:30 +02:00
|
|
|
|
|
|
|
|
|
2026-04-16 23:38:29 -05:00
|
|
|
def test_determine_bump_level_uses_greatest_commit_level() -> None:
|
|
|
|
|
commits = [
|
|
|
|
|
CommitInfo(subject="fix: patch one", body=""),
|
|
|
|
|
CommitInfo(subject="feat: add capability", body=""),
|
|
|
|
|
CommitInfo(subject="chore: maintenance", body=""),
|
|
|
|
|
]
|
2026-04-24 15:33:30 +02:00
|
|
|
|
2026-04-16 23:38:29 -05:00
|
|
|
assert determine_bump_level(commits) == "minor"
|
2026-04-24 15:33:30 +02:00
|
|
|
|
|
|
|
|
|
2026-04-16 23:38:29 -05:00
|
|
|
def test_determine_bump_level_prefers_major_over_minor_and_patch() -> None:
|
|
|
|
|
commits = [
|
|
|
|
|
CommitInfo(subject="fix: patch one", body=""),
|
|
|
|
|
CommitInfo(subject="feat: add capability", body=""),
|
|
|
|
|
CommitInfo(
|
|
|
|
|
subject="docs: update migration guide",
|
|
|
|
|
body="BREAKING CHANGE: the API changed",
|
|
|
|
|
),
|
|
|
|
|
]
|
2026-04-24 15:33:30 +02:00
|
|
|
|
2026-04-16 23:38:29 -05:00
|
|
|
assert determine_bump_level(commits) == "major"
|
2026-04-24 15:33:30 +02:00
|
|
|
|
|
|
|
|
|
2026-04-16 23:46:06 -05:00
|
|
|
def test_list_release_commits_parses_empty_body_entries(
|
|
|
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
|
|
|
) -> None:
|
|
|
|
|
run = Mock()
|
|
|
|
|
run.return_value = Mock(
|
|
|
|
|
stdout="feat: add capability\x1f\x1efix: patch bug\x1fbody text\x1e",
|
|
|
|
|
)
|
fix(windows): pin UTF-8 encoding on text-mode subprocess calls (#1311)
Fixes #1310.
## Description
On Windows, `headroom` startup crashes a subprocess reader thread:
```
UnicodeDecodeError: 'charmap' codec can't decode byte 0x8d in position 7894: character maps to <undefined>
... subprocess.py _readerthread -> buffer.append(fh.read())
... encodings/cp1252.py
```
Text-mode `subprocess` calls omit `encoding=`, so Python decodes child
output with the locale codec (**cp1252** on Windows). Children that emit
UTF-8 ??? `cbm index_repository` (indexing sources with chars like
`???`/`???`), `claude mcp get/add`, the memory-sync process ??? produce
bytes invalid in cp1252 and kill the reader thread. Linux/macOS default
to UTF-8, so it's invisible there.
## Type of Change
- [x] Bug fix (non-breaking change that fixes an issue)
## Changes Made
- Add `encoding="utf-8", errors="replace"` to every text-mode
(`text=True` / `universal_newlines=True`) subprocess call in the
`headroom/` package (~50 call sites; several already had it).
- `errors="replace"` (not `ignore`) so corrupt bytes surface as `???`
rather than vanishing from parsed output.
- Add `tests/test_cli/test_subprocess_utf8_encoding.py`: an AST guard
asserting every text-mode subprocess call pins `encoding=`. The runtime
crash can't reproduce on UTF-8 CI, so the invariant is enforced at the
source level instead.
## Testing
- [x] Unit tests pass (`pytest`)
- New guard test passes (validates 51 call sites).
- `tests/test_install`, `tests/test_cli/test_mcp.py`,
`tests/test_mcp_registry` pass.
(`test_runtime_start_lock_blocks_another_process` fails on this Windows
box, but it fails identically on unmodified `main` ??? a pre-existing
`msvcrt` lock flake, unrelated.)
### Test Output
```text
> python -m pytest tests/test_cli/test_subprocess_utf8_encoding.py -q
1 passed in 0.12s
> python -m pytest tests/test_install/ tests/test_cli/test_mcp.py tests/test_mcp_registry/ -q
133 passed, 2 skipped in 15.34s
```
## Real Behavior Proof
- Environment: Windows 11, Python 3.13.13.
- Exact command / steps: Started `headroom` without `PYTHONUTF8=1` on a
repo with UTF-8 chars in indexable files. Observed the
`UnicodeDecodeError` crash. Applied the fix (pinning `encoding="utf-8"`
on all text-mode subprocess calls). Re-ran. No crash. The AST guard
enforces the invariant on CI (which runs UTF-8 locales and cannot
reproduce the cp1252 crash natively).
- Observed result: Subprocess reader threads no longer crash on UTF-8
output under cp1252 locale.
- Not tested: All third-party tools that `headroom` shells out to; each
was given `errors="replace"` as a safety net.
## Workaround for affected users (before fix is deployed)
`PYTHONUTF8=1` (PowerShell: `$env:PYTHONUTF8=1; headroom ...`).
## Review Readiness
- [x] I have performed a self-review
- [x] This PR is ready for human review
---------
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-23 19:52:49 +02:00
|
|
|
monkeypatch.setattr("headroom.release_version.run", run)
|
2026-04-24 15:33:30 +02:00
|
|
|
|
2026-04-16 23:38:29 -05:00
|
|
|
commits = list_release_commits(ROOT, "")
|
2026-04-24 15:33:30 +02:00
|
|
|
|
2026-04-16 23:46:06 -05:00
|
|
|
assert commits == [
|
|
|
|
|
CommitInfo(subject="feat: add capability", body=""),
|
|
|
|
|
CommitInfo(subject="fix: patch bug", body="body text"),
|
|
|
|
|
]
|
2026-04-24 15:33:30 +02:00
|
|
|
|
|
|
|
|
|
2026-04-16 19:17:53 -05:00
|
|
|
def test_release_version_script_runs_directly_without_importing_headroom_package(
|
|
|
|
|
tmp_path: Path,
|
|
|
|
|
) -> None:
|
|
|
|
|
output_path = tmp_path / "github-output.txt"
|
|
|
|
|
env = os.environ.copy()
|
|
|
|
|
env["GITHUB_OUTPUT"] = str(output_path)
|
|
|
|
|
env["LEVEL"] = "patch"
|
|
|
|
|
env["MANUAL_VER"] = "0.6.0"
|
2026-04-24 15:33:30 +02:00
|
|
|
|
2026-04-16 19:17:53 -05:00
|
|
|
result = subprocess.run(
|
|
|
|
|
[sys.executable, str(ROOT / "headroom" / "release_version.py")],
|
|
|
|
|
cwd=ROOT,
|
|
|
|
|
capture_output=True,
|
|
|
|
|
text=True,
|
|
|
|
|
env=env,
|
|
|
|
|
check=False,
|
|
|
|
|
)
|
2026-04-24 15:33:30 +02:00
|
|
|
|
2026-04-16 19:17:53 -05:00
|
|
|
assert result.returncode == 0, result.stderr
|
2026-04-21 23:44:21 -05:00
|
|
|
canonical_version = get_canonical_version(ROOT)
|
2026-04-16 19:17:53 -05:00
|
|
|
assert output_path.read_text(encoding="utf-8").splitlines() == [
|
|
|
|
|
"version=0.6.0",
|
|
|
|
|
"npm_version=0.6.0",
|
2026-04-21 23:44:21 -05:00
|
|
|
f"canonical={canonical_version}",
|
2026-04-16 19:17:53 -05:00
|
|
|
"height=0",
|
|
|
|
|
"bump=manual",
|
|
|
|
|
"previous_tag=",
|
|
|
|
|
]
|