mirror of
https://github.com/headroomlabs-ai/headroom.git
synced 2026-08-27 14:17:10 -04:00
## Description
`OpencodeRegistrar._write_entry` does a full-file read-modify-write of
`opencode.json`:
```python
data = _read_json(self._config_path) # returns {} on JSONDecodeError
mcp = data.setdefault("mcp", {})
mcp[spec.name] = _spec_to_entry(spec)
_write_json(self._config_path, data) # overwrites the ENTIRE file
```
`_read_json` returns `{}` for a file that exists but doesn't parse.
OpenCode
configs are commonly hand-edited and JSONC-ish (comments, trailing
commas), so a
file that doesn't strictly parse gets silently rewritten as just
`{"mcp": {"headroom": {...}}}` — **destroying the user's `theme`,
`model`,
`provider`, and any other MCP servers**. No backup.
This is the same class of data-loss bug as the Claude registrar
(separate PR);
this one is `headroom/mcp_registry/opencode.py`.
Closes: no issue filed — found while auditing the MCP registry
config-write paths.
## Fix
Keep `_read_json` (returning `{}`) for read-only callers. Add
`_read_json_for_write` for the rewrite path: it returns `{}` only when
the file
is **absent or empty**, and raises `_MalformedConfigError` when the file
is
present but not a JSON object. `_write_entry` catches it and returns
`FAILED`
with an actionable message instead of overwriting.
Absent/empty → registers fresh (unchanged); valid → merges, all keys
preserved
(unchanged); present-but-invalid → left untouched.
## Type of Change
- [x] Bug fix (non-breaking change that fixes an issue)
## Changes Made
- `headroom/mcp_registry/opencode.py`: add `_read_json_for_write` +
`_MalformedConfigError`; `_write_entry` uses it and returns `FAILED`
(without writing) when `opencode.json` is present-but-unparseable.
`_read_json` unchanged for read-only callers.
- `tests/test_mcp_registry_opencode.py`: regression tests — register
against malformed configs leaves the bytes untouched and returns
`FAILED`; register against a valid config still merges and preserves
`theme`/`model` plus a pre-existing MCP server.
- `CHANGELOG.md`: Bug Fixes entry under Unreleased.
## Testing
- [x] New tests added for the fixed behavior
- [x] Linting passes (`ruff check`) and formatting is clean (`ruff
format --check`)
- [ ] Full `pytest` deferred to CI (local-OOM reason below).
```text
$ uv run ruff check headroom/mcp_registry/opencode.py tests/test_mcp_registry_opencode.py
All checks passed!
```
## Real Behavior Proof
- Environment: Windows 11, Python 3.12.11, headroom built from this
branch. Importing `headroom` loads the torch/transformers stack; a full
`pytest` gets OOM-killed on this box, so I verified the write-path logic
with a dependency-free script and left the full pytest to CI.
- Exact command / steps: the write-path logic here is identical to the
Claude registrar fix, so I verified it with the same standalone script —
replicated `_read_json_for_write` + the read-modify-write flow (only
stdlib, no `headroom` import) against real temp files, exercising
absent, empty, four malformed variants, and a valid config carrying
unrelated keys.
- Observed result: absent/empty register fresh; every malformed variant
returns FAILED and the on-disk bytes are unchanged (no clobber); a valid
config merges the new server while unrelated keys survive:
```text
OK: absent -> fresh register
OK: empty -> fresh register
OK: malformed -> FAILED, original bytes preserved (no clobber)
OK: valid config -> merged, unrelated keys preserved
MCP CONFIG-WRITE LOGIC VERIFIED
```
- Not tested: driving a real `opencode` install end-to-end (didn't want
to touch a real config); the file-write path is exercised directly by
the regression tests. Full local `pytest` deferred to CI (OOM, per
above).
## 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
- [ ] New and existing unit tests pass locally with my changes — ran
lint + a standalone logic check; full pytest deferred to CI (local OOM,
disclosed above)
- [x] I have updated the CHANGELOG.md if applicable
## Additional Notes
- Companion to the Claude-registrar fix (same root cause, different
file). No new dependencies. This does not touch OpenCode's
`opencode.jsonc` file-selection (handled elsewhere) — it only hardens
the existing `opencode.json` write against clobbering.
478 lines
17 KiB
Python
478 lines
17 KiB
Python
"""Tests for :class:`headroom.mcp_registry.opencode.OpencodeRegistrar`."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
from pathlib import Path
|
|
from typing import Any
|
|
|
|
import pytest
|
|
|
|
from headroom.mcp_registry.base import RegisterStatus
|
|
from headroom.mcp_registry.opencode import (
|
|
OpencodeRegistrar,
|
|
_diff_specs,
|
|
_entry_to_spec,
|
|
_spec_to_entry,
|
|
_specs_equivalent,
|
|
)
|
|
|
|
|
|
def _write_json(path: Path, data: dict[str, Any]) -> None:
|
|
path.parent.mkdir(parents=True, exist_ok=True)
|
|
path.write_text(json.dumps(data, indent=2) + "\n")
|
|
|
|
|
|
def _registrar(tmp_path: Path) -> OpencodeRegistrar:
|
|
return OpencodeRegistrar(config_path=tmp_path / "opencode.json")
|
|
|
|
|
|
def test_detect_when_binary_present(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> None:
|
|
"""Detection succeeds when the opencode binary is in PATH."""
|
|
monkeypatch.setenv("PATH", str(tmp_path))
|
|
(tmp_path / "opencode").write_text("#!/bin/sh\necho ok")
|
|
(tmp_path / "opencode").chmod(0o755)
|
|
registrar = _registrar(tmp_path)
|
|
assert registrar.detect() is True
|
|
|
|
|
|
def test_detect_when_config_dir_present(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> None:
|
|
"""Detection succeeds when the config directory exists."""
|
|
monkeypatch.setenv("PATH", "/nonexistent")
|
|
config_dir = tmp_path / "opencode"
|
|
config_dir.mkdir()
|
|
registrar = OpencodeRegistrar(config_path=config_dir / "opencode.json")
|
|
assert registrar.detect() is True
|
|
|
|
|
|
def test_detect_when_nothing_present(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> None:
|
|
"""Detection fails when neither binary nor config dir exists."""
|
|
monkeypatch.setenv("PATH", "/nonexistent")
|
|
registrar = OpencodeRegistrar(config_path=tmp_path / "nonexistent" / "opencode.json")
|
|
assert registrar.detect() is False
|
|
|
|
|
|
def test_get_server_returns_none_when_absent(tmp_path: Path) -> None:
|
|
"""get_server returns None when the server is not configured."""
|
|
registrar = _registrar(tmp_path)
|
|
assert registrar.get_server("headroom") is None
|
|
|
|
|
|
def test_get_server_returns_spec_when_present(tmp_path: Path) -> None:
|
|
"""get_server parses the existing MCP entry correctly."""
|
|
config = {
|
|
"mcp": {
|
|
"headroom": {
|
|
"type": "local",
|
|
"command": ["headroom", "mcp", "serve"],
|
|
"enabled": True,
|
|
}
|
|
}
|
|
}
|
|
_write_json(tmp_path / "opencode.json", config)
|
|
registrar = _registrar(tmp_path)
|
|
spec = registrar.get_server("headroom")
|
|
assert spec is not None
|
|
assert spec.name == "headroom"
|
|
assert spec.command == "headroom"
|
|
assert spec.args == ("mcp", "serve")
|
|
|
|
|
|
def test_register_server_creates_config_when_missing(tmp_path: Path) -> None:
|
|
"""register_server creates the config file when it doesn't exist."""
|
|
registrar = _registrar(tmp_path)
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
spec = ServerSpec(name="headroom", command="headroom", args=("mcp", "serve"))
|
|
result = registrar.register_server(spec)
|
|
assert result.status == RegisterStatus.REGISTERED
|
|
config_path = tmp_path / "opencode.json"
|
|
assert config_path.exists()
|
|
data = json.loads(config_path.read_text())
|
|
assert data["mcp"]["headroom"] == {
|
|
"type": "local",
|
|
"command": ["headroom", "mcp", "serve"],
|
|
"enabled": True,
|
|
}
|
|
|
|
|
|
@pytest.mark.parametrize("contents", ["not json", "{", '{"theme": }', "[]"])
|
|
def test_register_server_preserves_malformed_config(tmp_path: Path, contents: str) -> None:
|
|
"""Registering must NOT clobber an existing but unparseable opencode.json.
|
|
|
|
The file holds theme/model/provider and other MCP servers; before the fix a
|
|
malformed file was read as {} and rewritten with only {"mcp": ...}."""
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
config_path = tmp_path / "opencode.json"
|
|
config_path.write_text(contents, encoding="utf-8")
|
|
registrar = _registrar(tmp_path)
|
|
|
|
spec = ServerSpec(name="headroom", command="headroom", args=("mcp", "serve"))
|
|
result = registrar.register_server(spec)
|
|
|
|
assert result.status == RegisterStatus.FAILED
|
|
assert "not valid JSON" in result.detail
|
|
assert config_path.read_text(encoding="utf-8") == contents
|
|
|
|
|
|
def test_register_server_preserves_other_keys(tmp_path: Path) -> None:
|
|
"""The happy path merges: theme/model and an existing MCP server survive."""
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
config_path = tmp_path / "opencode.json"
|
|
_write_json(
|
|
config_path,
|
|
{"theme": "dark", "model": "anthropic/claude", "mcp": {"other": {"type": "local"}}},
|
|
)
|
|
registrar = _registrar(tmp_path)
|
|
|
|
spec = ServerSpec(name="headroom", command="headroom", args=("mcp", "serve"))
|
|
result = registrar.register_server(spec)
|
|
|
|
assert result.status == RegisterStatus.REGISTERED
|
|
data = json.loads(config_path.read_text(encoding="utf-8"))
|
|
assert data["theme"] == "dark"
|
|
assert data["model"] == "anthropic/claude"
|
|
assert data["mcp"]["other"] == {"type": "local"}
|
|
assert "headroom" in data["mcp"]
|
|
|
|
|
|
def test_register_server_idempotent(tmp_path: Path) -> None:
|
|
"""register_server is a no-op when the same spec is already present."""
|
|
registrar = _registrar(tmp_path)
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
spec = ServerSpec(name="headroom", command="headroom", args=("mcp", "serve"))
|
|
registrar.register_server(spec)
|
|
result = registrar.register_server(spec)
|
|
assert result.status == RegisterStatus.ALREADY
|
|
|
|
|
|
def test_unregister_server_removes_entry(tmp_path: Path) -> None:
|
|
"""unregister_server removes the server entry."""
|
|
registrar = _registrar(tmp_path)
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
spec = ServerSpec(name="headroom", command="headroom", args=("mcp", "serve"))
|
|
registrar.register_server(spec)
|
|
assert registrar.unregister_server("headroom") is True
|
|
assert registrar.get_server("headroom") is None
|
|
|
|
|
|
def test_unregister_server_returns_false_when_absent(tmp_path: Path) -> None:
|
|
"""unregister_server returns False when the server was not registered."""
|
|
registrar = _registrar(tmp_path)
|
|
assert registrar.unregister_server("headroom") is False
|
|
|
|
|
|
def test_specs_equivalent_true() -> None:
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
a = ServerSpec(name="headroom", command="headroom", args=("mcp", "serve"))
|
|
b = ServerSpec(name="headroom", command="headroom", args=("mcp", "serve"))
|
|
assert _specs_equivalent(a, b) is True
|
|
|
|
|
|
def test_specs_equivalent_false() -> None:
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
a = ServerSpec(name="headroom", command="headroom", args=("mcp", "serve"))
|
|
b = ServerSpec(name="headroom", command="other", args=("mcp", "serve"))
|
|
assert _specs_equivalent(a, b) is False
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Edge cases
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def test_register_server_force_overwrites_mismatch(tmp_path: Path) -> None:
|
|
"""register_server with force=True overwrites a mismatched existing server."""
|
|
registrar = _registrar(tmp_path)
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
spec_a = ServerSpec(name="headroom", command="old", args=("serve",))
|
|
spec_b = ServerSpec(name="headroom", command="headroom", args=("mcp", "serve"))
|
|
|
|
registrar.register_server(spec_a)
|
|
assert registrar.register_server(spec_b).status == RegisterStatus.MISMATCH
|
|
assert registrar.register_server(spec_b, force=True).status == RegisterStatus.REGISTERED
|
|
updated = registrar.get_server("headroom")
|
|
assert updated is not None
|
|
assert updated.command == "headroom"
|
|
|
|
|
|
def test_unregister_removes_mcp_key_when_empty(tmp_path: Path) -> None:
|
|
"""unregister_server removes the top-level 'mcp' key when it becomes empty."""
|
|
registrar = _registrar(tmp_path)
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
spec = ServerSpec(name="headroom", command="headroom", args=("mcp", "serve"))
|
|
registrar.register_server(spec)
|
|
assert registrar.unregister_server("headroom") is True
|
|
assert registrar.get_server("headroom") is None
|
|
# mcp key should be removed entirely
|
|
import json
|
|
|
|
data = json.loads((tmp_path / "opencode.json").read_text())
|
|
assert "mcp" not in data
|
|
|
|
|
|
def test_register_server_leaves_other_mcp_servers(tmp_path: Path) -> None:
|
|
"""register_server preserves other MCP servers in the config."""
|
|
registrar = _registrar(tmp_path)
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
# Pre-populate with a user-managed MCP server
|
|
_write_json(
|
|
tmp_path / "opencode.json",
|
|
{
|
|
"mcp": {
|
|
"existing-server": {
|
|
"type": "remote",
|
|
"url": "https://example.com",
|
|
"enabled": True,
|
|
},
|
|
}
|
|
},
|
|
)
|
|
|
|
spec = ServerSpec(name="headroom", command="headroom", args=("mcp", "serve"))
|
|
registrar.register_server(spec)
|
|
|
|
data = json.loads((tmp_path / "opencode.json").read_text())
|
|
assert "headroom" in data["mcp"]
|
|
assert "existing-server" in data["mcp"]
|
|
|
|
|
|
def test_unregister_preserves_other_mcp_servers(tmp_path: Path) -> None:
|
|
"""unregister_server leaves other MCP servers intact."""
|
|
registrar = _registrar(tmp_path)
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
_write_json(
|
|
tmp_path / "opencode.json",
|
|
{
|
|
"mcp": {
|
|
"existing-server": {"type": "remote", "url": "https://example.com"},
|
|
}
|
|
},
|
|
)
|
|
spec = ServerSpec(name="headroom", command="headroom", args=("mcp", "serve"))
|
|
registrar.register_server(spec)
|
|
registrar.unregister_server("headroom")
|
|
|
|
data = json.loads((tmp_path / "opencode.json").read_text())
|
|
assert "headroom" not in data["mcp"]
|
|
assert "existing-server" in data["mcp"]
|
|
|
|
|
|
def test_get_server_returns_none_for_non_dict_mcp(tmp_path: Path) -> None:
|
|
"""get_server returns None when 'mcp' is not a dict."""
|
|
registrar = _registrar(tmp_path)
|
|
_write_json(tmp_path / "opencode.json", {"mcp": "not-a-dict"})
|
|
assert registrar.get_server("headroom") is None
|
|
|
|
|
|
def test_get_server_handles_missing_config_file(tmp_path: Path) -> None:
|
|
"""get_server returns None when the config file doesn't exist."""
|
|
registrar = _registrar(tmp_path)
|
|
assert registrar.get_server("headroom") is None
|
|
|
|
|
|
def test_register_server_handles_config_with_no_mcp_key(tmp_path: Path) -> None:
|
|
"""register_server adds 'mcp' key when it doesn't exist."""
|
|
registrar = _registrar(tmp_path)
|
|
_write_json(tmp_path / "opencode.json", {"model": "gpt-4o"})
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
spec = ServerSpec(name="headroom", command="headroom", args=("mcp", "serve"))
|
|
registrar.register_server(spec)
|
|
|
|
data = json.loads((tmp_path / "opencode.json").read_text())
|
|
assert data["model"] == "gpt-4o" # preserved
|
|
assert "headroom" in data["mcp"]
|
|
|
|
|
|
def test_register_server_with_env_vars(tmp_path: Path) -> None:
|
|
"""register_server handles ServerSpec with environment variables."""
|
|
registrar = _registrar(tmp_path)
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
spec = ServerSpec(
|
|
name="headroom",
|
|
command="headroom",
|
|
args=("mcp", "serve"),
|
|
env={"HEADROOM_PROXY_URL": "http://127.0.0.1:9090"},
|
|
)
|
|
registrar.register_server(spec)
|
|
|
|
data = json.loads((tmp_path / "opencode.json").read_text())
|
|
assert data["mcp"]["headroom"]["environment"] == {"HEADROOM_PROXY_URL": "http://127.0.0.1:9090"}
|
|
|
|
|
|
def test_register_then_re_register_with_different_env_returns_mismatch(tmp_path: Path) -> None:
|
|
"""Re-registering with different env returns MISMATCH without force."""
|
|
registrar = _registrar(tmp_path)
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
spec_a = ServerSpec(name="headroom", command="headroom", args=("mcp", "serve"))
|
|
spec_b = ServerSpec(
|
|
name="headroom",
|
|
command="headroom",
|
|
args=("mcp", "serve"),
|
|
env={"NEW_VAR": "value"},
|
|
)
|
|
registrar.register_server(spec_a)
|
|
result = registrar.register_server(spec_b)
|
|
assert result.status == RegisterStatus.MISMATCH
|
|
|
|
|
|
def test_register_server_on_malformed_config_file(tmp_path: Path) -> None:
|
|
"""register_server refuses to overwrite a malformed config, preserving it.
|
|
|
|
Updated for the clobber guard: opencode.json holds theme/model/provider and
|
|
other MCP servers, so a present-but-unparseable file is left untouched and
|
|
registration fails rather than silently wiping the user's config.
|
|
"""
|
|
registrar = _registrar(tmp_path)
|
|
(tmp_path / "opencode.json").write_text("not valid json at all")
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
spec = ServerSpec(name="headroom", command="headroom", args=("mcp", "serve"))
|
|
result = registrar.register_server(spec)
|
|
assert result.status == RegisterStatus.FAILED
|
|
|
|
# The malformed file is left byte-for-byte untouched rather than clobbered.
|
|
assert (tmp_path / "opencode.json").read_text() == "not valid json at all"
|
|
|
|
|
|
def test_entry_to_spec_command_as_string() -> None:
|
|
"""_entry_to_spec handles a string command (not a list)."""
|
|
entry = {
|
|
"type": "remote",
|
|
"command": "some-command",
|
|
"enabled": True,
|
|
}
|
|
spec = _entry_to_spec("test", entry)
|
|
assert spec.name == "test"
|
|
assert spec.command == "some-command"
|
|
assert spec.args == ()
|
|
|
|
|
|
def test_entry_to_spec_reads_opencode_environment() -> None:
|
|
"""_entry_to_spec reads OpenCode's environment map."""
|
|
entry = {
|
|
"type": "local",
|
|
"command": ["headroom", "mcp", "serve"],
|
|
"enabled": True,
|
|
"environment": {"HEADROOM_PROXY_URL": "http://127.0.0.1:9090"},
|
|
}
|
|
spec = _entry_to_spec("headroom", entry)
|
|
assert spec.env == {"HEADROOM_PROXY_URL": "http://127.0.0.1:9090"}
|
|
|
|
|
|
def test_entry_to_spec_reads_legacy_env() -> None:
|
|
"""_entry_to_spec keeps compatibility with previously written env maps."""
|
|
entry = {
|
|
"type": "local",
|
|
"command": ["headroom", "mcp", "serve"],
|
|
"enabled": True,
|
|
"env": {"HEADROOM_PROXY_URL": "http://127.0.0.1:9090"},
|
|
}
|
|
spec = _entry_to_spec("headroom", entry)
|
|
assert spec.env == {"HEADROOM_PROXY_URL": "http://127.0.0.1:9090"}
|
|
|
|
|
|
def test_entry_to_spec_no_command() -> None:
|
|
"""_entry_to_spec handles an entry without a 'command' key."""
|
|
entry: dict[str, Any] = {
|
|
"type": "remote",
|
|
"url": "http://example.com",
|
|
"enabled": True,
|
|
}
|
|
spec = _entry_to_spec("test", entry)
|
|
assert spec.name == "test"
|
|
assert spec.command == ""
|
|
|
|
|
|
def test_spec_to_entry_roundtrip() -> None:
|
|
"""_spec_to_entry and _entry_to_spec are inverses for local commands."""
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
original = ServerSpec(
|
|
name="test",
|
|
command="python",
|
|
args=("-m", "server"),
|
|
env={"KEY": "VAL"},
|
|
)
|
|
entry = _spec_to_entry(original)
|
|
assert entry["type"] == "local"
|
|
assert entry["command"] == ["python", "-m", "server"]
|
|
assert entry["environment"] == {"KEY": "VAL"}
|
|
|
|
restored = _entry_to_spec("test", entry)
|
|
assert restored.name == original.name
|
|
assert restored.command == original.command
|
|
assert restored.args == original.args
|
|
assert restored.env == original.env
|
|
|
|
|
|
def test_diff_specs_all_fields() -> None:
|
|
"""_diff_specs reports differences in all fields."""
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
a = ServerSpec(name="s", command="cmd_a", args=("a1",), env={"K": "A"})
|
|
b = ServerSpec(name="s", command="cmd_b", args=("b1",), env={"K": "B"})
|
|
diff = _diff_specs(a, b)
|
|
assert "cmd_a" in diff
|
|
assert "cmd_b" in diff
|
|
assert "a1" in diff
|
|
assert "b1" in diff
|
|
|
|
|
|
def test_diff_specs_no_difference_returns_generic_message() -> None:
|
|
"""_diff_specs returns a generic message when no identifiable field differs."""
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
a = ServerSpec(name="s", command="x")
|
|
b = ServerSpec(name="s", command="x")
|
|
diff = _diff_specs(a, b)
|
|
assert "unidentified field" in diff
|
|
|
|
|
|
def test_register_server_returns_already_status(
|
|
tmp_path: Path,
|
|
) -> None:
|
|
r = _registrar(tmp_path)
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
spec = ServerSpec(name="already", command="cmd")
|
|
r.register_server(spec)
|
|
result = r.register_server(spec)
|
|
assert result.status == RegisterStatus.ALREADY
|
|
|
|
|
|
def test_unregister_server_handles_oserror(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> None:
|
|
r = _registrar(tmp_path)
|
|
from headroom.mcp_registry.base import ServerSpec
|
|
|
|
spec = ServerSpec(name="bad-unregister", command="cmd")
|
|
r.register_server(spec)
|
|
|
|
def _fail_write(*args: Any, **kwargs: Any) -> None:
|
|
msg = "permission denied"
|
|
raise OSError(msg)
|
|
|
|
monkeypatch.setattr("headroom.mcp_registry.opencode._write_json", _fail_write)
|
|
ok = r.unregister_server("bad-unregister")
|
|
assert ok is False
|
|
|
|
|
|
def test_get_all_registrars_includes_opencode() -> None:
|
|
from headroom.mcp_registry.install import get_all_registrars
|
|
|
|
registrars = get_all_registrars()
|
|
names = [r.name for r in registrars]
|
|
assert "opencode" in names
|