test_cmd_hub_hardening.py
python
sha256:99451767674c70e97323b61d5ef248ebe91530a91c2ab5902c2bb3e4acf250dd
Run in a fresh repo so no stale MERGE_STATE.json can bleed in
Human
patch
18 hours ago
| 1 | """Comprehensive hardening tests for ``muse hub``. |
| 2 | |
| 3 | Coverage |
| 4 | -------- |
| 5 | Unit |
| 6 | - _normalise_url: scheme injection (file://, ftp://), http non-loopback rejected, |
| 7 | loopback allowed, scheme-less normalised to https, trailing slash stripped |
| 8 | - _hub_hostname: standard URL, URL with port, URL with path, bare hostname |
| 9 | - _ping_hub: reachable, HTTP error, URLError, timeout, redirect refused |
| 10 | - _hub_api: file:// scheme blocked, response size cap, error detail sanitized, |
| 11 | missing token exits, None-value payload keys stripped |
| 12 | - _resolve_proposal_id: full UUID passthrough, prefix match, no match, ambiguous match |
| 13 | - _format_proposal: all fields sanitized |
| 14 | |
| 15 | Integration (CliRunner + mock hub) |
| 16 | - run_connect: --json schema, re-connect warns, normalisation, invalid scheme exits |
| 17 | - run_disconnect: --json ok, --json nothing_to_do, text mode to stderr |
| 18 | - run_status: --json all keys present, no-hub exits, not-authenticated exits |
| 19 | - run_ping: --json ok, --json error, text mode to stderr, unreachable exits nonzero |
| 20 | - run_proposal_list: --json is a JSON array, text mode to stderr, no-proposals message |
| 21 | - run_proposal_create: --json schema, missing branch exits, sanitizes output |
| 22 | - run_proposal_merge: --json schema, merge=false exits nonzero |
| 23 | - run_proposal_show: --json passthrough |
| 24 | |
| 25 | Security |
| 26 | - file:// hub URL blocked in _hub_api before network |
| 27 | - ANSI in proposal title/branch sanitized in _format_proposal |
| 28 | - ANSI in proposal ID sanitized in _resolve_proposal_id errors |
| 29 | - hub URL in errors sanitized in _get_hub_and_identity |
| 30 | - Response body size cap prevents OOM |
| 31 | |
| 32 | E2E (via CliRunner) |
| 33 | - connect --json schema includes all required keys |
| 34 | - disconnect --json schema correct for both ok and nothing_to_do |
| 35 | - ping --json schema with all required keys |
| 36 | - status --json all keys always present (no missing keys when not authenticated) |
| 37 | |
| 38 | Stress |
| 39 | - 8 concurrent ping checks against isolated mock responses |
| 40 | """ |
| 41 | |
| 42 | from __future__ import annotations |
| 43 | |
| 44 | import json |
| 45 | import pathlib |
| 46 | import threading |
| 47 | import unittest.mock |
| 48 | import urllib.error |
| 49 | import ssl |
| 50 | import urllib.request |
| 51 | from collections.abc import Mapping |
| 52 | from typing import TYPE_CHECKING |
| 53 | from unittest.mock import MagicMock, patch |
| 54 | |
| 55 | import pytest |
| 56 | |
| 57 | from tests.cli_test_helper import CliRunner, InvokeResult |
| 58 | |
| 59 | if TYPE_CHECKING: |
| 60 | pass |
| 61 | |
| 62 | from muse.cli.commands.hub.connection import ( |
| 63 | _ConnectJson, |
| 64 | _DisconnectJson, |
| 65 | _PingJson, |
| 66 | _StatusJson, |
| 67 | ) |
| 68 | from muse.core.types import Manifest, MsgpackDict, MsgpackValue |
| 69 | from muse.core.identity import IdentityEntry |
| 70 | from muse.core.paths import head_path, heads_dir, muse_dir |
| 71 | |
| 72 | type _JsonPayload = MsgpackDict |
| 73 | type _ProposalRecord = dict[str, str] |
| 74 | type _RepoResponse = dict[str, str] |
| 75 | type _HubBody = Mapping[str, str | bool | list[str] | None] | None |
| 76 | cli = None |
| 77 | runner = CliRunner() |
| 78 | |
| 79 | # ── helpers ─────────────────────────────────────────────────────────────────── |
| 80 | |
| 81 | |
| 82 | def _json_line(result: InvokeResult) -> _JsonPayload: |
| 83 | for line in result.output.splitlines(): |
| 84 | stripped = line.strip() |
| 85 | if stripped.startswith("{") or stripped.startswith("["): |
| 86 | data: _JsonPayload = json.loads(stripped) |
| 87 | return data |
| 88 | raise ValueError(f"No JSON line in output:\n{result.output!r}") |
| 89 | |
| 90 | |
| 91 | def _json_connect(result: InvokeResult) -> _ConnectJson: |
| 92 | d: _ConnectJson = json.loads( |
| 93 | next(l for l in result.output.splitlines() if l.strip().startswith("{")) |
| 94 | ) |
| 95 | return d |
| 96 | |
| 97 | |
| 98 | def _json_status(result: InvokeResult) -> _StatusJson: |
| 99 | d: _StatusJson = json.loads( |
| 100 | next(l for l in result.output.splitlines() if l.strip().startswith("{")) |
| 101 | ) |
| 102 | return d |
| 103 | |
| 104 | |
| 105 | def _json_disconnect(result: InvokeResult) -> _DisconnectJson: |
| 106 | d: _DisconnectJson = json.loads( |
| 107 | next(l for l in result.output.splitlines() if l.strip().startswith("{")) |
| 108 | ) |
| 109 | return d |
| 110 | |
| 111 | |
| 112 | def _json_ping(result: InvokeResult) -> _PingJson: |
| 113 | d: _PingJson = json.loads( |
| 114 | next(l for l in result.output.splitlines() if l.strip().startswith("{")) |
| 115 | ) |
| 116 | return d |
| 117 | |
| 118 | |
| 119 | @pytest.fixture |
| 120 | def repo(tmp_path: pathlib.Path, monkeypatch: pytest.MonkeyPatch) -> pathlib.Path: |
| 121 | """Minimal .muse/ repo with identity file.""" |
| 122 | from muse._version import __version__ |
| 123 | |
| 124 | dot_muse = muse_dir(tmp_path) |
| 125 | for sub in ("refs/heads", "objects", "commits", "snapshots"): |
| 126 | (dot_muse / sub).mkdir(parents=True, exist_ok=True) |
| 127 | (dot_muse / "repo.json").write_text( |
| 128 | json.dumps({"repo_id": "test-repo", "schema_version": __version__, "domain": "code"}) |
| 129 | ) |
| 130 | (dot_muse / "HEAD").write_text("ref: refs/heads/main\n") |
| 131 | (dot_muse / "refs" / "heads" / "main").write_text("") |
| 132 | (dot_muse / "config.toml").write_text("") |
| 133 | muse_home = tmp_path / ".muse-home" |
| 134 | muse_home.mkdir() |
| 135 | (muse_home / "identity.toml").write_text("") |
| 136 | monkeypatch.setattr("muse.core.identity._IDENTITY_FILE", muse_home / "identity.toml") |
| 137 | monkeypatch.setattr("muse.core.identity._IDENTITY_DIR", muse_home) |
| 138 | monkeypatch.chdir(tmp_path) |
| 139 | return tmp_path |
| 140 | |
| 141 | |
| 142 | def _make_signing() -> "SigningIdentity": |
| 143 | """Generate a fresh Ed25519 SigningIdentity for tests.""" |
| 144 | from cryptography.hazmat.primitives.asymmetric.ed25519 import Ed25519PrivateKey |
| 145 | from muse.core.transport import SigningIdentity |
| 146 | return SigningIdentity(handle="testuser", private_key=Ed25519PrivateKey.generate()) |
| 147 | |
| 148 | |
| 149 | def _store_identity(hub_url: str, handle: str = "alice") -> None: |
| 150 | """Save a human identity entry with hd_path + keychain mnemonic.""" |
| 151 | from muse.core.identity import IdentityEntry, save_identity |
| 152 | from muse.core.hdkeys import muse_path, DOMAIN_IDENTITY, ENTITY_HUMAN, ROLE_SIGN |
| 153 | |
| 154 | hd_path = muse_path(DOMAIN_IDENTITY, ENTITY_HUMAN, 0) |
| 155 | entry: IdentityEntry = { |
| 156 | "type": "human", |
| 157 | "handle": handle, |
| 158 | "algorithm": "ed25519", |
| 159 | "fingerprint": f"test-fp-{handle}", |
| 160 | "hd_path": hd_path, |
| 161 | } |
| 162 | # Use a fixed test mnemonic stored in the keychain so resolve_signing_identity works. |
| 163 | _TEST_MNEMONIC = ( |
| 164 | "abandon abandon abandon abandon abandon abandon abandon abandon " |
| 165 | "abandon abandon abandon about" |
| 166 | ) |
| 167 | save_identity(hub_url, entry, mnemonic=_TEST_MNEMONIC) |
| 168 | |
| 169 | |
| 170 | # ── Unit: _normalise_url ────────────────────────────────────────────────────── |
| 171 | |
| 172 | |
| 173 | class TestNormaliseUrlHardening: |
| 174 | def test_file_scheme_raises(self) -> None: |
| 175 | from muse.cli.commands.hub import _normalise_url |
| 176 | with pytest.raises(ValueError, match="not allowed"): |
| 177 | _normalise_url("file:///etc/passwd") |
| 178 | |
| 179 | def test_ftp_scheme_raises(self) -> None: |
| 180 | from muse.cli.commands.hub import _normalise_url |
| 181 | with pytest.raises(ValueError, match="not allowed"): |
| 182 | _normalise_url("ftp://attacker.example.com/repo") |
| 183 | |
| 184 | def test_data_scheme_raises(self) -> None: |
| 185 | from muse.cli.commands.hub import _normalise_url |
| 186 | with pytest.raises(ValueError, match="not allowed"): |
| 187 | _normalise_url("data:text/plain,malicious") |
| 188 | |
| 189 | def test_http_non_loopback_raises(self) -> None: |
| 190 | from muse.cli.commands.hub import _normalise_url |
| 191 | with pytest.raises(ValueError, match="HTTPS"): |
| 192 | _normalise_url("http://musehub.ai/gabriel/muse") |
| 193 | |
| 194 | def test_http_localhost_allowed(self) -> None: |
| 195 | from muse.cli.commands.hub import _normalise_url |
| 196 | assert _normalise_url("https://localhost:1337") == "https://localhost:1337" |
| 197 | |
| 198 | def test_http_127_allowed(self) -> None: |
| 199 | from muse.cli.commands.hub import _normalise_url |
| 200 | assert _normalise_url("http://127.0.0.1:9000") == "http://127.0.0.1:9000" |
| 201 | |
| 202 | def test_schemeless_becomes_https(self) -> None: |
| 203 | from muse.cli.commands.hub import _normalise_url |
| 204 | assert _normalise_url("musehub.ai").startswith("https://") |
| 205 | |
| 206 | def test_trailing_slash_stripped(self) -> None: |
| 207 | from muse.cli.commands.hub import _normalise_url |
| 208 | assert not _normalise_url("https://musehub.ai/").endswith("/") |
| 209 | |
| 210 | def test_https_passthrough(self) -> None: |
| 211 | from muse.cli.commands.hub import _normalise_url |
| 212 | assert _normalise_url("https://musehub.ai/gabriel/muse") == "https://musehub.ai/gabriel/muse" |
| 213 | |
| 214 | |
| 215 | # ── Unit: _hub_hostname ─────────────────────────────────────────────────────── |
| 216 | |
| 217 | |
| 218 | class TestHubHostname: |
| 219 | def test_plain_https(self) -> None: |
| 220 | from muse.cli.commands.hub.connection import _hub_hostname |
| 221 | assert _hub_hostname("https://musehub.ai/gabriel/muse") == "musehub.ai" |
| 222 | |
| 223 | def test_with_port(self) -> None: |
| 224 | from muse.cli.commands.hub.connection import _hub_hostname |
| 225 | assert _hub_hostname("https://localhost:1337/gabriel/muse") == "localhost:1337" |
| 226 | |
| 227 | def test_bare_hostname(self) -> None: |
| 228 | from muse.cli.commands.hub.connection import _hub_hostname |
| 229 | assert _hub_hostname("musehub.ai") == "musehub.ai" |
| 230 | |
| 231 | def test_trailing_slash(self) -> None: |
| 232 | from muse.cli.commands.hub.connection import _hub_hostname |
| 233 | assert _hub_hostname("https://musehub.ai/") == "musehub.ai" |
| 234 | |
| 235 | |
| 236 | # ── Unit: _hub_api ──────────────────────────────────────────────────────────── |
| 237 | |
| 238 | |
| 239 | class TestHubApi: |
| 240 | _IDENTITY = {"type": "human", "token": "tok123"} |
| 241 | |
| 242 | def test_file_scheme_blocked_before_network(self) -> None: |
| 243 | from muse.cli.commands.hub import _hub_api |
| 244 | from muse.core.identity import IdentityEntry |
| 245 | identity: IdentityEntry = {"type": "human", "token": "tok"} |
| 246 | with patch("urllib.request.urlopen") as mock_net: |
| 247 | with pytest.raises(SystemExit): |
| 248 | _hub_api("file:///etc/passwd", identity, "GET", "/api/test") |
| 249 | mock_net.assert_not_called() |
| 250 | |
| 251 | def test_ftp_scheme_blocked_before_network(self) -> None: |
| 252 | from muse.cli.commands.hub import _hub_api |
| 253 | from muse.core.identity import IdentityEntry |
| 254 | identity: IdentityEntry = {"type": "human", "token": "tok"} |
| 255 | with patch("urllib.request.urlopen") as mock_net: |
| 256 | with pytest.raises(SystemExit): |
| 257 | _hub_api("ftp://ftp.example.com", identity, "GET", "/api/test") |
| 258 | mock_net.assert_not_called() |
| 259 | |
| 260 | def test_missing_token_exits(self) -> None: |
| 261 | """No signing identity on a mutating method → SystemExit before any network I/O. |
| 262 | |
| 263 | GET requests on public resources are allowed without auth; POST/PUT/DELETE/PATCH |
| 264 | still require a signing identity. identity carries no handle/key_path so |
| 265 | Ed25519 key loading is skipped. get_signing_identity is patched to return None. |
| 266 | """ |
| 267 | from muse.cli.commands.hub import _hub_api |
| 268 | from muse.core.identity import IdentityEntry |
| 269 | identity: IdentityEntry = {"type": "human"} |
| 270 | with patch("muse.cli.config.get_signing_identity", return_value=None): |
| 271 | with patch("urllib.request.urlopen") as mock_net: |
| 272 | with pytest.raises(SystemExit): |
| 273 | _hub_api("https://localhost:1337", identity, "POST", "/api/test") |
| 274 | mock_net.assert_not_called() |
| 275 | |
| 276 | def test_response_size_cap(self) -> None: |
| 277 | from muse.cli.commands.hub import _MAX_API_RESPONSE_BYTES, _hub_api |
| 278 | from muse.core.identity import IdentityEntry |
| 279 | identity: IdentityEntry = {"type": "human", "token": "tok"} |
| 280 | mock_resp = MagicMock() |
| 281 | mock_resp.__enter__ = lambda s: s |
| 282 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 283 | mock_resp.read.return_value = b"x" * (_MAX_API_RESPONSE_BYTES + 2) |
| 284 | with patch("muse.cli.config.get_signing_identity", return_value=_make_signing()): |
| 285 | with patch("urllib.request.urlopen", return_value=mock_resp): |
| 286 | with pytest.raises(SystemExit): |
| 287 | _hub_api("http://localhost:9999", identity, "GET", "/api/test") |
| 288 | |
| 289 | def test_http_error_sanitized_in_output( |
| 290 | self, capsys: pytest.CaptureFixture[str] |
| 291 | ) -> None: |
| 292 | import urllib.error |
| 293 | from muse.cli.commands.hub import _hub_api |
| 294 | from muse.core.identity import IdentityEntry |
| 295 | |
| 296 | import io |
| 297 | identity: IdentityEntry = {"type": "human", "token": "tok"} |
| 298 | ansi_detail = b'{"detail":"\\x1b[31mmalicious\\x1b[0m"}' |
| 299 | exc = urllib.error.HTTPError(url="", code=403, msg="Forbidden", hdrs=MagicMock(), fp=io.BytesIO(ansi_detail)) |
| 300 | |
| 301 | with patch("muse.cli.config.get_signing_identity", return_value=_make_signing()): |
| 302 | with patch("urllib.request.urlopen", side_effect=exc): |
| 303 | with pytest.raises(SystemExit): |
| 304 | _hub_api("http://localhost:9999", identity, "GET", "/api/test") |
| 305 | |
| 306 | captured = capsys.readouterr() |
| 307 | assert "\x1b[" not in captured.err |
| 308 | |
| 309 | def test_empty_response_returns_empty_dict(self) -> None: |
| 310 | from muse.cli.commands.hub import _hub_api |
| 311 | from muse.core.identity import IdentityEntry |
| 312 | |
| 313 | identity: IdentityEntry = {"type": "human", "token": "tok"} |
| 314 | mock_resp = MagicMock() |
| 315 | mock_resp.__enter__ = lambda s: s |
| 316 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 317 | mock_resp.read.return_value = b"" |
| 318 | with patch("muse.cli.config.get_signing_identity", return_value=_make_signing()): |
| 319 | with patch("urllib.request.urlopen", return_value=mock_resp): |
| 320 | result = _hub_api("http://localhost:9999", identity, "GET", "/api/test") |
| 321 | assert result == {} |
| 322 | |
| 323 | |
| 324 | # ── TDD: PEM-load path removed from _hub_api (H1) ─────────────────────────── |
| 325 | |
| 326 | |
| 327 | class TestHubApiPemLoadRemoved: |
| 328 | """H1: _hub_api must use get_signing_identity exclusively — no PEM reads. |
| 329 | |
| 330 | Before fix: identity.get("key_path") was used as primary signing path; |
| 331 | load_pem_private_key was called if the file existed. |
| 332 | After fix: get_signing_identity(remote_url=...) is the only signing path. |
| 333 | """ |
| 334 | |
| 335 | def test_H1_load_pem_private_key_never_called_even_with_key_path( |
| 336 | self, tmp_path: pathlib.Path |
| 337 | ) -> None: |
| 338 | """Even when identity contains key_path pointing to a real file, |
| 339 | load_pem_private_key must NOT be called — only get_signing_identity.""" |
| 340 | from muse.cli.commands.hub import _hub_api |
| 341 | from muse.core.identity import IdentityEntry |
| 342 | from unittest.mock import MagicMock, patch, call |
| 343 | |
| 344 | # Create a fake PEM file so is_file() returns True |
| 345 | fake_pem = tmp_path / "fake.pem" |
| 346 | fake_pem.write_bytes(b"-----BEGIN PRIVATE KEY-----\ngarbage\n-----END PRIVATE KEY-----\n") |
| 347 | |
| 348 | identity: IdentityEntry = { |
| 349 | "type": "human", |
| 350 | "handle": "alice", |
| 351 | "key_path": str(fake_pem), |
| 352 | } |
| 353 | |
| 354 | mock_resp = MagicMock() |
| 355 | mock_resp.__enter__ = lambda s: s |
| 356 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 357 | mock_resp.read.return_value = b"{}" |
| 358 | |
| 359 | mock_load_pem = MagicMock(return_value=MagicMock()) |
| 360 | |
| 361 | with ( |
| 362 | patch("muse.cli.config.get_signing_identity", return_value=_make_signing()) as mock_gsi, |
| 363 | patch("urllib.request.urlopen", return_value=mock_resp), |
| 364 | patch("cryptography.hazmat.primitives.serialization.load_pem_private_key", mock_load_pem), |
| 365 | ): |
| 366 | _hub_api("http://localhost:9999", identity, "GET", "/api/test") |
| 367 | |
| 368 | mock_load_pem.assert_not_called() |
| 369 | mock_gsi.assert_called_once() |
| 370 | |
| 371 | |
| 372 | # ── Unit: _resolve_proposal_id ────────────────────────────────────────────────────── |
| 373 | |
| 374 | |
| 375 | class TestResolveProposalId: |
| 376 | def _make_identity(self) -> "muse.core.identity.IdentityEntry": |
| 377 | from muse.core.identity import IdentityEntry |
| 378 | e: IdentityEntry = {"type": "human", "token": "tok123"} |
| 379 | return e |
| 380 | |
| 381 | def _proposal(self, proposal_id: str, title: str = "Test Proposal") -> _ProposalRecord: |
| 382 | return {"proposalId": proposal_id, "title": title, "state": "open", |
| 383 | "fromBranch": "feat/x", "toBranch": "dev"} |
| 384 | |
| 385 | def test_full_id_returned_as_is(self) -> None: |
| 386 | from muse.cli.commands.hub import _resolve_proposal_id |
| 387 | full = "af54753d-1234-5678-abcd-ef1234567890" |
| 388 | result = _resolve_proposal_id("http://hub", self._make_identity(), "repo-id", full) |
| 389 | assert result == full |
| 390 | |
| 391 | def test_prefix_resolved(self) -> None: |
| 392 | from muse.cli.commands.hub import _resolve_proposal_id |
| 393 | |
| 394 | proposal_id = "abc12345-6789-0000-0000-000000000000" |
| 395 | proposals_resp = {"proposals": [self._proposal(proposal_id)]} |
| 396 | mock_resp = MagicMock() |
| 397 | mock_resp.__enter__ = lambda s: s |
| 398 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 399 | mock_resp.read.return_value = json.dumps(proposals_resp).encode() |
| 400 | with patch("muse.cli.config.get_signing_identity", return_value=_make_signing()): |
| 401 | with patch("urllib.request.urlopen", return_value=mock_resp): |
| 402 | result = _resolve_proposal_id( |
| 403 | "http://localhost:9999", self._make_identity(), "repo-id", "abc12345" |
| 404 | ) |
| 405 | assert result == proposal_id |
| 406 | |
| 407 | def test_no_match_exits(self) -> None: |
| 408 | from muse.cli.commands.hub import _resolve_proposal_id |
| 409 | |
| 410 | resp_bytes = json.dumps({"proposals": []}).encode() |
| 411 | mock_resp = MagicMock() |
| 412 | mock_resp.__enter__ = lambda s: s |
| 413 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 414 | mock_resp.read.return_value = resp_bytes |
| 415 | with patch("muse.cli.config.get_signing_identity", return_value=_make_signing()): |
| 416 | with patch("urllib.request.urlopen", return_value=mock_resp): |
| 417 | with pytest.raises(SystemExit): |
| 418 | _resolve_proposal_id( |
| 419 | "http://localhost:9999", self._make_identity(), "repo-id", "deadbeef" |
| 420 | ) |
| 421 | |
| 422 | def test_ambiguous_prefix_exits(self) -> None: |
| 423 | from muse.cli.commands.hub import _resolve_proposal_id |
| 424 | |
| 425 | pr1_id = "abc12345-0000-0000-0000-000000000001" |
| 426 | pr2_id = "abc12345-0000-0000-0000-000000000002" |
| 427 | proposals_resp = {"proposals": [self._proposal(pr1_id), self._proposal(pr2_id)]} |
| 428 | mock_resp = MagicMock() |
| 429 | mock_resp.__enter__ = lambda s: s |
| 430 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 431 | mock_resp.read.return_value = json.dumps(proposals_resp).encode() |
| 432 | with patch("muse.cli.config.get_signing_identity", return_value=_make_signing()): |
| 433 | with patch("urllib.request.urlopen", return_value=mock_resp): |
| 434 | with pytest.raises(SystemExit): |
| 435 | _resolve_proposal_id( |
| 436 | "http://localhost:9999", self._make_identity(), "repo-id", "abc12345" |
| 437 | ) |
| 438 | |
| 439 | def test_ansi_in_proposal_id_sanitized_in_error( |
| 440 | self, capsys: pytest.CaptureFixture[str] |
| 441 | ) -> None: |
| 442 | from muse.cli.commands.hub import _resolve_proposal_id |
| 443 | |
| 444 | resp_bytes = json.dumps({"proposals": []}).encode() |
| 445 | mock_resp = MagicMock() |
| 446 | mock_resp.__enter__ = lambda s: s |
| 447 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 448 | mock_resp.read.return_value = resp_bytes |
| 449 | malicious_proposalefix = "\x1b[31mmalicious\x1b[0m" |
| 450 | with patch("muse.cli.config.get_signing_identity", return_value=_make_signing()): |
| 451 | with patch("urllib.request.urlopen", return_value=mock_resp): |
| 452 | with pytest.raises(SystemExit): |
| 453 | _resolve_proposal_id( |
| 454 | "http://localhost:9999", self._make_identity(), "repo-id", malicious_proposalefix |
| 455 | ) |
| 456 | captured = capsys.readouterr() |
| 457 | assert "\x1b[" not in captured.err |
| 458 | |
| 459 | |
| 460 | # ── Unit: _format_proposal ────────────────────────────────────────────────────────── |
| 461 | |
| 462 | |
| 463 | class TestFormatProposal: |
| 464 | def test_ansi_in_title_stripped(self) -> None: |
| 465 | from muse.cli.commands.hub import _format_proposal |
| 466 | proposal: _ProposalRecord = { |
| 467 | "proposalId": "abc12345", |
| 468 | "title": "\x1b[31mmalicious title\x1b[0m", |
| 469 | "state": "open", |
| 470 | "fromBranch": "feat/x", |
| 471 | "toBranch": "dev", |
| 472 | } |
| 473 | result = _format_proposal(proposal) |
| 474 | assert "\x1b[" not in result |
| 475 | |
| 476 | def test_ansi_in_branch_stripped(self) -> None: |
| 477 | from muse.cli.commands.hub import _format_proposal |
| 478 | proposal: _ProposalRecord = { |
| 479 | "proposalId": "abc12345", |
| 480 | "title": "clean title", |
| 481 | "state": "open", |
| 482 | "fromBranch": "\x1b[32mfeat/malicious\x1b[0m", |
| 483 | "toBranch": "\x1b[31mdev\x1b[0m", |
| 484 | } |
| 485 | result = _format_proposal(proposal) |
| 486 | assert "\x1b[" not in result |
| 487 | |
| 488 | def test_state_icon_open(self) -> None: |
| 489 | from muse.cli.commands.hub import _format_proposal |
| 490 | proposal: _ProposalRecord = { |
| 491 | "proposalId": "abc12345", "title": "t", "state": "open", |
| 492 | "fromBranch": "f", "toBranch": "d", |
| 493 | } |
| 494 | assert "🟢" in _format_proposal(proposal) |
| 495 | |
| 496 | def test_state_icon_merged(self) -> None: |
| 497 | from muse.cli.commands.hub import _format_proposal |
| 498 | proposal: _ProposalRecord = { |
| 499 | "proposalId": "abc12345", "title": "t", "state": "merged", |
| 500 | "fromBranch": "f", "toBranch": "d", |
| 501 | } |
| 502 | assert "🟣" in _format_proposal(proposal) |
| 503 | |
| 504 | |
| 505 | # ── Integration: run_connect ────────────────────────────────────────────────── |
| 506 | |
| 507 | |
| 508 | class TestConnectHardening: |
| 509 | _HUB = "http://localhost:19999" |
| 510 | |
| 511 | def test_connect_json_schema(self, repo: pathlib.Path) -> None: |
| 512 | result = runner.invoke(cli, ["hub", "connect", self._HUB, "--json"]) |
| 513 | assert result.exit_code == 0 |
| 514 | data = _json_connect(result) |
| 515 | for key in ("status", "hub_url", "hostname", "authenticated", |
| 516 | "identity_name", "identity_type"): |
| 517 | assert key in data, f"Missing key: {key}" |
| 518 | assert data["status"] == "ok" |
| 519 | assert data["authenticated"] is False |
| 520 | assert data["identity_name"] == "" |
| 521 | assert data["identity_type"] == "" |
| 522 | |
| 523 | def test_connect_authenticated_json_schema(self, repo: pathlib.Path) -> None: |
| 524 | _store_identity(self._HUB) |
| 525 | result = runner.invoke(cli, ["hub", "connect", self._HUB, "--json"]) |
| 526 | assert result.exit_code == 0 |
| 527 | data = _json_connect(result) |
| 528 | assert data["authenticated"] is True |
| 529 | assert data["identity_name"] == "alice" |
| 530 | assert data["identity_type"] == "human" |
| 531 | |
| 532 | def test_connect_invalid_scheme_exits(self, repo: pathlib.Path) -> None: |
| 533 | result = runner.invoke(cli, ["hub", "connect", "file:///etc/passwd"]) |
| 534 | assert result.exit_code != 0 |
| 535 | |
| 536 | def test_connect_http_non_loopback_exits(self, repo: pathlib.Path) -> None: |
| 537 | result = runner.invoke(cli, ["hub", "connect", "http://musehub.ai"]) |
| 538 | assert result.exit_code != 0 |
| 539 | |
| 540 | def test_connect_json_stdout_clean(self, repo: pathlib.Path) -> None: |
| 541 | result = runner.invoke(cli, ["hub", "connect", self._HUB, "--json"]) |
| 542 | assert result.exit_code == 0 |
| 543 | json_lines = [l for l in result.output.splitlines() if l.strip().startswith("{")] |
| 544 | assert len(json_lines) >= 1 |
| 545 | |
| 546 | def test_connect_no_repo_exits(self, tmp_path: pathlib.Path, |
| 547 | monkeypatch: pytest.MonkeyPatch) -> None: |
| 548 | monkeypatch.chdir(tmp_path) |
| 549 | result = runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 550 | assert result.exit_code != 0 |
| 551 | |
| 552 | def test_reconnect_warning_on_stderr(self, repo: pathlib.Path) -> None: |
| 553 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 554 | result = runner.invoke(cli, ["hub", "connect", "http://localhost:20000"]) |
| 555 | assert result.exit_code == 0 |
| 556 | assert "localhost:19999" in result.stderr |
| 557 | |
| 558 | def test_reconnect_same_url_no_warning(self, repo: pathlib.Path) -> None: |
| 559 | """Re-connecting to the same URL is a no-op — no warning emitted.""" |
| 560 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 561 | result = runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 562 | assert result.exit_code == 0 |
| 563 | assert "Switching" not in result.stderr |
| 564 | assert "⚠️" not in result.stderr |
| 565 | |
| 566 | def test_connect_short_flag_j(self, repo: pathlib.Path) -> None: |
| 567 | """-j short flag produces identical JSON output to --json.""" |
| 568 | r_long = runner.invoke(cli, ["hub", "connect", self._HUB, "--json"]) |
| 569 | runner.invoke(cli, ["hub", "disconnect"]) |
| 570 | r_short = runner.invoke(cli, ["hub", "connect", self._HUB, "-j"]) |
| 571 | assert r_long.exit_code == 0 |
| 572 | assert r_short.exit_code == 0 |
| 573 | d_long = _json_connect(r_long) |
| 574 | d_short = _json_connect(r_short) |
| 575 | assert d_long == d_short |
| 576 | |
| 577 | def test_connect_ipv6_loopback_accepted(self, repo: pathlib.Path) -> None: |
| 578 | """http://[::1] and http://[::1]:PORT are valid loopback URLs.""" |
| 579 | result = runner.invoke(cli, ["hub", "connect", "http://[::1]:8080", "--json"]) |
| 580 | assert result.exit_code == 0 |
| 581 | data = _json_connect(result) |
| 582 | assert data["status"] == "ok" |
| 583 | assert "::1" in data["hub_url"] |
| 584 | |
| 585 | def test_connect_ipv6_loopback_bare_accepted(self, repo: pathlib.Path) -> None: |
| 586 | """http://[::1] without a port is valid.""" |
| 587 | result = runner.invoke(cli, ["hub", "connect", "http://[::1]", "--json"]) |
| 588 | assert result.exit_code == 0 |
| 589 | data = _json_connect(result) |
| 590 | assert data["status"] == "ok" |
| 591 | |
| 592 | def test_connect_bare_hostname_with_port(self, repo: pathlib.Path) -> None: |
| 593 | """musehub.ai:8443 (no scheme) is promoted to https://musehub.ai:8443.""" |
| 594 | result = runner.invoke(cli, ["hub", "connect", "musehub.ai:8443", "--json"]) |
| 595 | assert result.exit_code == 0 |
| 596 | data = _json_connect(result) |
| 597 | assert data["hub_url"] == "https://musehub.ai:8443" |
| 598 | assert data["hostname"] == "musehub.ai:8443" |
| 599 | |
| 600 | def test_connect_trailing_slash_stripped(self, repo: pathlib.Path) -> None: |
| 601 | """Trailing slashes are stripped from the stored URL.""" |
| 602 | result = runner.invoke( |
| 603 | cli, ["hub", "connect", "https://musehub.ai/", "--json"] |
| 604 | ) |
| 605 | assert result.exit_code == 0 |
| 606 | data = _json_connect(result) |
| 607 | assert not data["hub_url"].endswith("/") |
| 608 | |
| 609 | def test_connect_ansi_in_reconnect_warning_sanitized( |
| 610 | self, repo: pathlib.Path |
| 611 | ) -> None: |
| 612 | """ANSI codes stored in config are stripped from the reconnect warning.""" |
| 613 | import unittest.mock |
| 614 | ansi_url = "https://\x1b[31mattacker.example.com\x1b[0m" |
| 615 | with unittest.mock.patch( |
| 616 | "muse.cli.commands.hub.get_hub_url", return_value=ansi_url |
| 617 | ): |
| 618 | result = runner.invoke( |
| 619 | cli, ["hub", "connect", "https://safe.example.com"] |
| 620 | ) |
| 621 | assert "\x1b" not in result.stderr, "ANSI escape leaked into reconnect warning" |
| 622 | |
| 623 | def test_connect_json_hub_url_normalised(self, repo: pathlib.Path) -> None: |
| 624 | """hub_url in JSON is the normalised form (no trailing slash, has scheme).""" |
| 625 | result = runner.invoke( |
| 626 | cli, ["hub", "connect", "musehub.ai", "--json"] |
| 627 | ) |
| 628 | assert result.exit_code == 0 |
| 629 | data = _json_connect(result) |
| 630 | assert data["hub_url"].startswith("https://") |
| 631 | assert not data["hub_url"].endswith("/") |
| 632 | |
| 633 | def test_connect_no_repo_exits_2(self, tmp_path: pathlib.Path, |
| 634 | monkeypatch: pytest.MonkeyPatch) -> None: |
| 635 | """Exit code 2 (REPO_NOT_FOUND) when outside a Muse repo.""" |
| 636 | monkeypatch.chdir(tmp_path) |
| 637 | result = runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 638 | assert result.exit_code == 2 |
| 639 | |
| 640 | def test_connect_http_non_loopback_exits_1(self, repo: pathlib.Path) -> None: |
| 641 | """Exit code 1 (USER_ERROR) for http:// non-loopback URL.""" |
| 642 | result = runner.invoke(cli, ["hub", "connect", "http://remote.example.com"]) |
| 643 | assert result.exit_code == 1 |
| 644 | |
| 645 | def test_connect_disallowed_scheme_exits_1(self, repo: pathlib.Path) -> None: |
| 646 | """Exit code 1 (USER_ERROR) for ftp:// URL.""" |
| 647 | result = runner.invoke(cli, ["hub", "connect", "ftp://musehub.ai"]) |
| 648 | assert result.exit_code == 1 |
| 649 | |
| 650 | def test_10_sequential_connects_all_survive(self, repo: pathlib.Path) -> None: |
| 651 | """10 sequential connect→disconnect cycles all succeed.""" |
| 652 | for i in range(10): |
| 653 | hub = f"http://localhost:{19000 + i}" |
| 654 | r = runner.invoke(cli, ["hub", "connect", hub, "--json"]) |
| 655 | assert r.exit_code == 0, f"connect {i} failed: {r.output}" |
| 656 | data = _json_connect(r) |
| 657 | assert data["status"] == "ok" |
| 658 | |
| 659 | |
| 660 | # ── Integration: run_status ─────────────────────────────────────────────────── |
| 661 | |
| 662 | |
| 663 | class TestStatusHardening: |
| 664 | _HUB = "http://localhost:19999" |
| 665 | |
| 666 | def test_status_no_hub_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 667 | result = runner.invoke(cli, ["hub", "status", "--json"]) |
| 668 | assert result.exit_code != 0 |
| 669 | |
| 670 | def test_status_json_all_keys_always_present(self, repo: pathlib.Path) -> None: |
| 671 | """All 7 JSON keys present even when not authenticated.""" |
| 672 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 673 | result = runner.invoke(cli, ["hub", "status", "--json"]) |
| 674 | assert result.exit_code == 0 |
| 675 | data = _json_status(result) |
| 676 | for key in ("hub_url", "hostname", "authenticated", "identity_type", |
| 677 | "identity_name", "identity_id", "capabilities"): |
| 678 | assert key in data, f"Missing key: {key}" |
| 679 | assert data["authenticated"] is False |
| 680 | assert data["identity_type"] == "" |
| 681 | assert data["identity_name"] == "" |
| 682 | assert data["identity_id"] == "" |
| 683 | assert data["capabilities"] == [] |
| 684 | |
| 685 | def test_status_json_authenticated(self, repo: pathlib.Path) -> None: |
| 686 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 687 | _store_identity(self._HUB) |
| 688 | result = runner.invoke(cli, ["hub", "status", "--json"]) |
| 689 | assert result.exit_code == 0 |
| 690 | data = _json_status(result) |
| 691 | assert data["authenticated"] is True |
| 692 | assert data["identity_name"] == "alice" |
| 693 | assert data["identity_type"] == "human" |
| 694 | |
| 695 | def test_status_json_stdout_clean(self, repo: pathlib.Path) -> None: |
| 696 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 697 | result = runner.invoke(cli, ["hub", "status", "--json"]) |
| 698 | json_lines = [l for l in result.output.splitlines() if l.strip().startswith("{")] |
| 699 | assert len(json_lines) >= 1 |
| 700 | |
| 701 | def test_status_text_mode_to_stderr(self, repo: pathlib.Path, |
| 702 | capsys: pytest.CaptureFixture[str]) -> None: |
| 703 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 704 | result = runner.invoke(cli, ["hub", "status"]) |
| 705 | assert result.exit_code == 0 |
| 706 | |
| 707 | def test_status_short_flag_j(self, repo: pathlib.Path) -> None: |
| 708 | """-j short flag produces identical JSON output to --json.""" |
| 709 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 710 | r_long = runner.invoke(cli, ["hub", "status", "--json"]) |
| 711 | r_short = runner.invoke(cli, ["hub", "status", "-j"]) |
| 712 | assert r_long.exit_code == 0 |
| 713 | assert r_short.exit_code == 0 |
| 714 | assert json.loads(r_long.output) == json.loads(r_short.output) |
| 715 | |
| 716 | def test_status_exit_code_2_no_repo( |
| 717 | self, tmp_path: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 718 | ) -> None: |
| 719 | """Exit code 2 (REPO_NOT_FOUND) when outside a Muse repo.""" |
| 720 | monkeypatch.chdir(tmp_path) |
| 721 | result = runner.invoke(cli, ["hub", "status"]) |
| 722 | assert result.exit_code == 2 |
| 723 | |
| 724 | def test_status_exit_code_1_no_hub(self, repo: pathlib.Path) -> None: |
| 725 | """Exit code 1 (USER_ERROR) when no hub is connected.""" |
| 726 | result = runner.invoke(cli, ["hub", "status"]) |
| 727 | assert result.exit_code == 1 |
| 728 | |
| 729 | def test_status_hub_override_flag(self, repo: pathlib.Path) -> None: |
| 730 | """--hub flag overrides config; identity is looked up for that URL.""" |
| 731 | override = "http://localhost:29999" |
| 732 | from muse.core.identity import IdentityEntry, save_identity |
| 733 | entry: IdentityEntry = { |
| 734 | "type": "agent", "handle": "override-bot", |
| 735 | } |
| 736 | save_identity(override, entry) |
| 737 | # Connect to a different hub |
| 738 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 739 | result = runner.invoke( |
| 740 | cli, ["hub", "status", "--hub", override, "--json"] |
| 741 | ) |
| 742 | assert result.exit_code == 0 |
| 743 | data = _json_status(result) |
| 744 | assert data["authenticated"] is True |
| 745 | assert data["identity_name"] == "override-bot" |
| 746 | |
| 747 | def test_status_json_capabilities_populated_for_agent( |
| 748 | self, repo: pathlib.Path |
| 749 | ) -> None: |
| 750 | """capabilities field is populated from agent identity.""" |
| 751 | from muse.core.identity import IdentityEntry, save_identity |
| 752 | entry: IdentityEntry = { |
| 753 | "type": "agent", |
| 754 | "handle": "cap-bot", |
| 755 | "capabilities": ["read:*", "write:midi", "commit"], |
| 756 | } |
| 757 | save_identity(self._HUB, entry) |
| 758 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 759 | result = runner.invoke(cli, ["hub", "status", "--json"]) |
| 760 | assert result.exit_code == 0 |
| 761 | data = _json_status(result) |
| 762 | assert data["capabilities"] == ["read:*", "write:midi", "commit"] |
| 763 | |
| 764 | def test_status_capabilities_empty_for_human(self, repo: pathlib.Path) -> None: |
| 765 | """capabilities is [] for human identities (they have no cap list).""" |
| 766 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 767 | _store_identity(self._HUB) # human identity, no capabilities |
| 768 | result = runner.invoke(cli, ["hub", "status", "--json"]) |
| 769 | assert result.exit_code == 0 |
| 770 | data = _json_status(result) |
| 771 | assert data["capabilities"] == [] |
| 772 | |
| 773 | def test_status_ansi_in_identity_fields_sanitized( |
| 774 | self, repo: pathlib.Path |
| 775 | ) -> None: |
| 776 | """ANSI codes in identity_type, identity_name, identity_id stripped in text output.""" |
| 777 | import unittest.mock |
| 778 | ansi_entry = { |
| 779 | "type": "\x1b[31magent\x1b[0m", |
| 780 | "handle": "\x1b[32mmalicious-bot\x1b[0m", |
| 781 | } |
| 782 | with unittest.mock.patch( |
| 783 | "muse.core.identity._load_all", |
| 784 | return_value={"localhost:19999": ansi_entry}, |
| 785 | ): |
| 786 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 787 | result = runner.invoke(cli, ["hub", "status"]) |
| 788 | assert "\x1b" not in result.stderr, "ANSI escape leaked into status text output" |
| 789 | |
| 790 | def test_status_ansi_in_capabilities_sanitized( |
| 791 | self, repo: pathlib.Path |
| 792 | ) -> None: |
| 793 | """ANSI codes in capabilities are stripped from text output.""" |
| 794 | import unittest.mock |
| 795 | ansi_entry = { |
| 796 | "type": "agent", |
| 797 | "handle": "bot", |
| 798 | "capabilities": ["\x1b[31mread:*\x1b[0m", "write:midi"], |
| 799 | } |
| 800 | with unittest.mock.patch( |
| 801 | "muse.core.identity._load_all", |
| 802 | return_value={"localhost:19999": ansi_entry}, |
| 803 | ): |
| 804 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 805 | result = runner.invoke(cli, ["hub", "status"]) |
| 806 | assert "\x1b" not in result.stderr, "ANSI escape in capability leaked to output" |
| 807 | |
| 808 | def test_status_json_single_object_per_call(self, repo: pathlib.Path) -> None: |
| 809 | """Exactly one JSON object emitted to stdout per invocation.""" |
| 810 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 811 | result = runner.invoke(cli, ["hub", "status", "--json"]) |
| 812 | assert result.exit_code == 0 |
| 813 | objects = [l for l in result.output.splitlines() if l.strip().startswith("{")] |
| 814 | assert len(objects) == 1, f"Expected 1 JSON object, got {len(objects)}" |
| 815 | |
| 816 | def test_10_sequential_status_calls(self, repo: pathlib.Path) -> None: |
| 817 | """10 sequential status calls all succeed with consistent JSON.""" |
| 818 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 819 | _store_identity(self._HUB) |
| 820 | results = [] |
| 821 | for _ in range(10): |
| 822 | r = runner.invoke(cli, ["hub", "status", "--json"]) |
| 823 | assert r.exit_code == 0 |
| 824 | results.append(json.loads(r.output)) |
| 825 | # All results must be identical |
| 826 | assert all(r == results[0] for r in results), "Status output not stable" |
| 827 | |
| 828 | |
| 829 | # ── Integration: run_disconnect ─────────────────────────────────────────────── |
| 830 | |
| 831 | |
| 832 | class TestDisconnectHardening: |
| 833 | _HUB = "http://localhost:19999" |
| 834 | |
| 835 | def test_disconnect_nothing_to_do_json(self, repo: pathlib.Path) -> None: |
| 836 | result = runner.invoke(cli, ["hub", "disconnect", "--json"]) |
| 837 | assert result.exit_code == 0 |
| 838 | data = _json_disconnect(result) |
| 839 | assert data["status"] == "nothing_to_do" |
| 840 | assert data["hostname"] == "" |
| 841 | |
| 842 | def test_disconnect_ok_json(self, repo: pathlib.Path) -> None: |
| 843 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 844 | result = runner.invoke(cli, ["hub", "disconnect", "--json"]) |
| 845 | assert result.exit_code == 0 |
| 846 | data = _json_disconnect(result) |
| 847 | assert data["status"] == "ok" |
| 848 | assert "localhost" in data["hostname"] |
| 849 | |
| 850 | def test_disconnect_removes_hub_url(self, repo: pathlib.Path) -> None: |
| 851 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 852 | runner.invoke(cli, ["hub", "disconnect"]) |
| 853 | result = runner.invoke(cli, ["hub", "status"]) |
| 854 | assert result.exit_code != 0 |
| 855 | |
| 856 | def test_disconnect_json_schema_all_keys(self, repo: pathlib.Path) -> None: |
| 857 | """All three JSON keys present on success.""" |
| 858 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 859 | result = runner.invoke(cli, ["hub", "disconnect", "--json"]) |
| 860 | data = _json_disconnect(result) |
| 861 | for key in ("status", "hub_url", "hostname"): |
| 862 | assert key in data, f"Missing key: {key}" |
| 863 | |
| 864 | def test_disconnect_json_nothing_to_do_all_keys(self, repo: pathlib.Path) -> None: |
| 865 | """All three JSON keys present even when nothing was connected.""" |
| 866 | result = runner.invoke(cli, ["hub", "disconnect", "--json"]) |
| 867 | assert result.exit_code == 0 |
| 868 | data = _json_disconnect(result) |
| 869 | for key in ("status", "hub_url", "hostname"): |
| 870 | assert key in data, f"Missing key: {key}" |
| 871 | assert data["hub_url"] == "" |
| 872 | assert data["hostname"] == "" |
| 873 | |
| 874 | def test_disconnect_json_hub_url_matches_connected( |
| 875 | self, repo: pathlib.Path |
| 876 | ) -> None: |
| 877 | """hub_url in JSON is the full URL that was disconnected.""" |
| 878 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 879 | result = runner.invoke(cli, ["hub", "disconnect", "--json"]) |
| 880 | assert result.exit_code == 0 |
| 881 | data = _json_disconnect(result) |
| 882 | assert data["hub_url"] == self._HUB |
| 883 | assert "localhost" in data["hostname"] |
| 884 | |
| 885 | def test_disconnect_no_repo_exits_2(self, tmp_path: pathlib.Path, |
| 886 | monkeypatch: pytest.MonkeyPatch) -> None: |
| 887 | """Exit code 2 (REPO_NOT_FOUND) when outside a Muse repo.""" |
| 888 | monkeypatch.chdir(tmp_path) |
| 889 | result = runner.invoke(cli, ["hub", "disconnect"]) |
| 890 | assert result.exit_code == 2 |
| 891 | |
| 892 | def test_disconnect_no_repo_exits(self, tmp_path: pathlib.Path, |
| 893 | monkeypatch: pytest.MonkeyPatch) -> None: |
| 894 | monkeypatch.chdir(tmp_path) |
| 895 | result = runner.invoke(cli, ["hub", "disconnect"]) |
| 896 | assert result.exit_code != 0 |
| 897 | |
| 898 | def test_disconnect_short_flag_j(self, repo: pathlib.Path) -> None: |
| 899 | """-j short flag produces identical JSON output to --json.""" |
| 900 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 901 | r_long = runner.invoke(cli, ["hub", "disconnect", "--json"]) |
| 902 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 903 | r_short = runner.invoke(cli, ["hub", "connect", self._HUB]) # reconnect |
| 904 | r_short = runner.invoke(cli, ["hub", "disconnect", "-j"]) |
| 905 | assert r_long.exit_code == 0 |
| 906 | assert r_short.exit_code == 0 |
| 907 | d_long = _json_disconnect(r_long) |
| 908 | d_short = _json_disconnect(r_short) |
| 909 | # Both should have same shape; hub_url and hostname may differ so |
| 910 | # check schema only. |
| 911 | assert set(d_long.keys()) == set(d_short.keys()) |
| 912 | assert d_short["status"] == "ok" |
| 913 | |
| 914 | def test_disconnect_idempotent_second_call(self, repo: pathlib.Path) -> None: |
| 915 | """Second disconnect exits 0 with status nothing_to_do.""" |
| 916 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 917 | r1 = runner.invoke(cli, ["hub", "disconnect", "--json"]) |
| 918 | r2 = runner.invoke(cli, ["hub", "disconnect", "--json"]) |
| 919 | assert r1.exit_code == 0 |
| 920 | assert r2.exit_code == 0 |
| 921 | d1 = _json_disconnect(r1) |
| 922 | d2 = _json_disconnect(r2) |
| 923 | assert d1["status"] == "ok" |
| 924 | assert d2["status"] == "nothing_to_do" |
| 925 | |
| 926 | def test_disconnect_preserves_identity(self, repo: pathlib.Path) -> None: |
| 927 | """Credentials in identity.toml survive hub disconnect.""" |
| 928 | from muse.core.identity import IdentityEntry, load_identity, save_identity |
| 929 | entry: IdentityEntry = {"type": "human", "handle": "alice"} |
| 930 | save_identity(self._HUB, entry) |
| 931 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 932 | runner.invoke(cli, ["hub", "disconnect"]) |
| 933 | assert load_identity(self._HUB) is not None |
| 934 | |
| 935 | def test_disconnect_json_stdout_clean(self, repo: pathlib.Path) -> None: |
| 936 | """No non-JSON text on stdout when --json is passed.""" |
| 937 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 938 | result = runner.invoke(cli, ["hub", "disconnect", "--json"]) |
| 939 | assert result.exit_code == 0 |
| 940 | for line in result.output.splitlines(): |
| 941 | stripped = line.strip() |
| 942 | if stripped: |
| 943 | assert stripped.startswith("{") or stripped.startswith('"'), \ |
| 944 | f"Non-JSON on stdout: {stripped!r}" |
| 945 | |
| 946 | def test_disconnect_ansi_in_hub_url_sanitized( |
| 947 | self, repo: pathlib.Path |
| 948 | ) -> None: |
| 949 | """ANSI codes in a stored hub URL are stripped from text output.""" |
| 950 | import unittest.mock |
| 951 | ansi_url = "https://\x1b[31mattacker.example.com\x1b[0m" |
| 952 | with unittest.mock.patch( |
| 953 | "muse.cli.commands.hub.get_hub_url", return_value=ansi_url |
| 954 | ): |
| 955 | result = runner.invoke(cli, ["hub", "disconnect"]) |
| 956 | assert "\x1b" not in result.stderr, "ANSI escape leaked into disconnect output" |
| 957 | |
| 958 | def test_10_sequential_disconnect_cycles(self, repo: pathlib.Path) -> None: |
| 959 | """10 connect→disconnect cycles all succeed with correct JSON.""" |
| 960 | for i in range(10): |
| 961 | hub = f"http://localhost:{20000 + i}" |
| 962 | runner.invoke(cli, ["hub", "connect", hub]) |
| 963 | r = runner.invoke(cli, ["hub", "disconnect", "--json"]) |
| 964 | assert r.exit_code == 0, f"cycle {i} failed: {r.output}" |
| 965 | data = _json_disconnect(r) |
| 966 | assert data["status"] == "ok" |
| 967 | assert data["hub_url"] == hub |
| 968 | |
| 969 | |
| 970 | # ── Integration: run_ping ───────────────────────────────────────────────────── |
| 971 | |
| 972 | |
| 973 | class TestPingHardening: |
| 974 | _HUB = "http://localhost:19999" |
| 975 | |
| 976 | def _connect(self, repo: pathlib.Path) -> None: |
| 977 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 978 | |
| 979 | def test_ping_reachable_json_schema(self, repo: pathlib.Path) -> None: |
| 980 | self._connect(repo) |
| 981 | mock_resp = MagicMock() |
| 982 | mock_resp.__enter__ = lambda s: s |
| 983 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 984 | mock_resp.status = 200 |
| 985 | with patch("urllib.request.OpenerDirector.open", return_value=mock_resp): |
| 986 | result = runner.invoke(cli, ["hub", "ping", "--json"]) |
| 987 | assert result.exit_code == 0 |
| 988 | data = _json_ping(result) |
| 989 | for key in ("status", "hub_url", "hostname", "reachable", "message"): |
| 990 | assert key in data, f"Missing key: {key}" |
| 991 | assert data["reachable"] is True |
| 992 | assert data["status"] == "ok" |
| 993 | |
| 994 | def test_ping_unreachable_json_schema(self, repo: pathlib.Path) -> None: |
| 995 | self._connect(repo) |
| 996 | import urllib.error |
| 997 | exc = urllib.error.URLError(reason="connection refused") |
| 998 | with patch("urllib.request.OpenerDirector.open", side_effect=exc): |
| 999 | result = runner.invoke(cli, ["hub", "ping", "--json"]) |
| 1000 | assert result.exit_code != 0 |
| 1001 | data = _json_ping(result) |
| 1002 | assert data["reachable"] is False |
| 1003 | assert data["status"] == "error" |
| 1004 | |
| 1005 | def test_ping_json_stdout_clean(self, repo: pathlib.Path) -> None: |
| 1006 | self._connect(repo) |
| 1007 | mock_resp = MagicMock() |
| 1008 | mock_resp.__enter__ = lambda s: s |
| 1009 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 1010 | mock_resp.status = 200 |
| 1011 | with patch("urllib.request.OpenerDirector.open", return_value=mock_resp): |
| 1012 | result = runner.invoke(cli, ["hub", "ping", "--json"]) |
| 1013 | json_lines = [l for l in result.output.splitlines() if l.strip().startswith("{")] |
| 1014 | assert len(json_lines) >= 1 |
| 1015 | |
| 1016 | def test_ping_no_hub_exits(self, repo: pathlib.Path) -> None: |
| 1017 | result = runner.invoke(cli, ["hub", "ping"]) |
| 1018 | assert result.exit_code != 0 |
| 1019 | |
| 1020 | def test_ping_no_repo_exits(self, tmp_path: pathlib.Path, |
| 1021 | monkeypatch: pytest.MonkeyPatch) -> None: |
| 1022 | monkeypatch.chdir(tmp_path) |
| 1023 | result = runner.invoke(cli, ["hub", "ping"]) |
| 1024 | assert result.exit_code != 0 |
| 1025 | |
| 1026 | def test_ping_exit_code_5_on_unreachable(self, repo: pathlib.Path) -> None: |
| 1027 | """Unreachable hub exits with REMOTE_ERROR (5), not INTERNAL_ERROR (3).""" |
| 1028 | self._connect(repo) |
| 1029 | exc = urllib.error.URLError(reason="connection refused") |
| 1030 | with patch("urllib.request.OpenerDirector.open", side_effect=exc): |
| 1031 | result = runner.invoke(cli, ["hub", "ping", "--json"]) |
| 1032 | assert result.exit_code == 5 |
| 1033 | |
| 1034 | def test_ping_exit_code_2_no_repo( |
| 1035 | self, tmp_path: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 1036 | ) -> None: |
| 1037 | """Exit code 2 (REPO_NOT_FOUND) when outside a Muse repo.""" |
| 1038 | monkeypatch.chdir(tmp_path) |
| 1039 | result = runner.invoke(cli, ["hub", "ping"]) |
| 1040 | assert result.exit_code == 2 |
| 1041 | |
| 1042 | def test_ping_exit_code_1_no_hub(self, repo: pathlib.Path) -> None: |
| 1043 | """Exit code 1 (USER_ERROR) when no hub is configured.""" |
| 1044 | result = runner.invoke(cli, ["hub", "ping"]) |
| 1045 | assert result.exit_code == 1 |
| 1046 | |
| 1047 | def test_ping_short_flag_j(self, repo: pathlib.Path) -> None: |
| 1048 | """-j short flag produces identical JSON output to --json.""" |
| 1049 | self._connect(repo) |
| 1050 | mock_resp = MagicMock() |
| 1051 | mock_resp.__enter__ = lambda s: s |
| 1052 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 1053 | mock_resp.status = 200 |
| 1054 | with patch("urllib.request.OpenerDirector.open", return_value=mock_resp): |
| 1055 | r_long = runner.invoke(cli, ["hub", "ping", "--json"]) |
| 1056 | with patch("urllib.request.OpenerDirector.open", return_value=mock_resp): |
| 1057 | r_short = runner.invoke(cli, ["hub", "ping", "-j"]) |
| 1058 | assert r_long.exit_code == 0 |
| 1059 | assert r_short.exit_code == 0 |
| 1060 | assert json.loads(r_long.output) == json.loads(r_short.output) |
| 1061 | |
| 1062 | def test_ping_hub_override_flag(self, repo: pathlib.Path) -> None: |
| 1063 | """--hub flag targets a different URL without affecting stored config.""" |
| 1064 | override = "http://localhost:29999" |
| 1065 | self._connect(repo) |
| 1066 | mock_resp = MagicMock() |
| 1067 | mock_resp.__enter__ = lambda s: s |
| 1068 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 1069 | mock_resp.status = 200 |
| 1070 | with patch("urllib.request.OpenerDirector.open", return_value=mock_resp): |
| 1071 | result = runner.invoke( |
| 1072 | cli, ["hub", "ping", "--hub", override, "--json"] |
| 1073 | ) |
| 1074 | assert result.exit_code == 0 |
| 1075 | data = _json_ping(result) |
| 1076 | assert data["hub_url"] == override |
| 1077 | |
| 1078 | def test_ping_text_no_json_on_stdout(self, repo: pathlib.Path) -> None: |
| 1079 | """In text mode, stdout is empty — all output goes to stderr.""" |
| 1080 | self._connect(repo) |
| 1081 | mock_resp = MagicMock() |
| 1082 | mock_resp.__enter__ = lambda s: s |
| 1083 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 1084 | mock_resp.status = 200 |
| 1085 | with patch("urllib.request.OpenerDirector.open", return_value=mock_resp): |
| 1086 | result = runner.invoke(cli, ["hub", "ping"]) |
| 1087 | assert result.exit_code == 0 |
| 1088 | # all text goes to stderr |
| 1089 | assert "ok" in result.stderr.lower() or "✅" in result.stderr # sanity: something printed |
| 1090 | |
| 1091 | def test_ping_bad_status_line_returns_false(self, repo: pathlib.Path) -> None: |
| 1092 | """BadStatusLine (malformed HTTP response) is caught, returns (False, ...).""" |
| 1093 | self._connect(repo) |
| 1094 | import http.client |
| 1095 | exc = http.client.BadStatusLine("garbage") |
| 1096 | with patch("urllib.request.OpenerDirector.open", side_effect=exc): |
| 1097 | result = runner.invoke(cli, ["hub", "ping", "--json"]) |
| 1098 | assert result.exit_code == 5 |
| 1099 | data = _json_ping(result) |
| 1100 | assert data["reachable"] is False |
| 1101 | assert "malformed" in data["message"].lower() |
| 1102 | |
| 1103 | def test_ping_file_scheme_hub_override_rejected( |
| 1104 | self, repo: pathlib.Path |
| 1105 | ) -> None: |
| 1106 | """file:// scheme in --hub override returns (False, ...) without opening fs.""" |
| 1107 | self._connect(repo) |
| 1108 | result = runner.invoke( |
| 1109 | cli, ["hub", "ping", "--hub", "file:///etc/passwd", "--json"] |
| 1110 | ) |
| 1111 | assert result.exit_code == 5 |
| 1112 | data = _json_ping(result) |
| 1113 | assert data["reachable"] is False |
| 1114 | assert "not allowed" in data["message"].lower() |
| 1115 | |
| 1116 | def test_ping_ansi_in_message_sanitized_text_mode( |
| 1117 | self, repo: pathlib.Path |
| 1118 | ) -> None: |
| 1119 | """ANSI codes in the error message from _ping_hub are stripped in text output.""" |
| 1120 | self._connect(repo) |
| 1121 | exc = urllib.error.URLError(reason="\x1b[31mconnection refused\x1b[0m") |
| 1122 | with patch("urllib.request.OpenerDirector.open", side_effect=exc): |
| 1123 | result = runner.invoke(cli, ["hub", "ping"]) |
| 1124 | assert "\x1b" not in result.stderr, "ANSI escape leaked into ping text output" |
| 1125 | |
| 1126 | def test_10_sequential_ping_calls(self, repo: pathlib.Path) -> None: |
| 1127 | """10 sequential pings all return consistent JSON.""" |
| 1128 | self._connect(repo) |
| 1129 | mock_resp = MagicMock() |
| 1130 | mock_resp.__enter__ = lambda s: s |
| 1131 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 1132 | mock_resp.status = 200 |
| 1133 | with patch("urllib.request.OpenerDirector.open", return_value=mock_resp): |
| 1134 | results = [ |
| 1135 | runner.invoke(cli, ["hub", "ping", "--json"]) for _ in range(10) |
| 1136 | ] |
| 1137 | parsed = [json.loads(r.output) for r in results] |
| 1138 | assert all(r.exit_code == 0 for r in results) |
| 1139 | assert all(p == parsed[0] for p in parsed), "Ping output not stable" |
| 1140 | |
| 1141 | |
| 1142 | # ── Unit: _ping_hub extra cases ─────────────────────────────────────────────── |
| 1143 | |
| 1144 | |
| 1145 | class TestPingHubExtra: |
| 1146 | """Unit tests for _ping_hub edge cases not covered in test_cli_hub.py.""" |
| 1147 | |
| 1148 | def test_scheme_guard_file_rejected(self) -> None: |
| 1149 | """file:// scheme is rejected without opening a socket.""" |
| 1150 | from muse.cli.commands.hub import _ping_hub |
| 1151 | ok, msg = _ping_hub("file:///etc/passwd") |
| 1152 | assert ok is False |
| 1153 | assert "not allowed" in msg.lower() |
| 1154 | |
| 1155 | def test_scheme_guard_ftp_rejected(self) -> None: |
| 1156 | from muse.cli.commands.hub import _ping_hub |
| 1157 | ok, msg = _ping_hub("ftp://musehub.ai") |
| 1158 | assert ok is False |
| 1159 | assert "not allowed" in msg.lower() |
| 1160 | |
| 1161 | def test_bad_status_line_caught(self) -> None: |
| 1162 | """http.client.BadStatusLine is caught and returns (False, message).""" |
| 1163 | import http.client |
| 1164 | from muse.cli.commands.hub import _ping_hub |
| 1165 | exc = http.client.BadStatusLine("not-a-status") |
| 1166 | with unittest.mock.patch( |
| 1167 | "muse.cli.commands.hub._PING_OPENER.open", side_effect=exc |
| 1168 | ): |
| 1169 | ok, msg = _ping_hub("http://localhost:19999") |
| 1170 | assert ok is False |
| 1171 | assert "malformed" in msg.lower() |
| 1172 | assert "BadStatusLine" in msg |
| 1173 | |
| 1174 | def test_invalid_url_caught(self) -> None: |
| 1175 | """http.client.InvalidURL is caught and returns (False, message).""" |
| 1176 | import http.client |
| 1177 | from muse.cli.commands.hub import _ping_hub |
| 1178 | exc = http.client.InvalidURL("bad url") |
| 1179 | with unittest.mock.patch( |
| 1180 | "muse.cli.commands.hub._PING_OPENER.open", side_effect=exc |
| 1181 | ): |
| 1182 | ok, msg = _ping_hub("http://localhost:19999") |
| 1183 | assert ok is False |
| 1184 | assert "malformed" in msg.lower() |
| 1185 | |
| 1186 | def test_http_200_returns_true(self) -> None: |
| 1187 | from muse.cli.commands.hub import _ping_hub |
| 1188 | mock_resp = unittest.mock.MagicMock() |
| 1189 | mock_resp.status = 200 |
| 1190 | mock_resp.__enter__ = lambda s: s |
| 1191 | mock_resp.__exit__ = unittest.mock.MagicMock(return_value=False) |
| 1192 | with unittest.mock.patch( |
| 1193 | "muse.cli.commands.hub._PING_OPENER.open", return_value=mock_resp |
| 1194 | ): |
| 1195 | ok, msg = _ping_hub("http://localhost:19999") |
| 1196 | assert ok is True |
| 1197 | assert "200" in msg |
| 1198 | |
| 1199 | def test_http_503_returns_false(self) -> None: |
| 1200 | from muse.cli.commands.hub import _ping_hub |
| 1201 | mock_resp = unittest.mock.MagicMock() |
| 1202 | mock_resp.status = 503 |
| 1203 | mock_resp.__enter__ = lambda s: s |
| 1204 | mock_resp.__exit__ = unittest.mock.MagicMock(return_value=False) |
| 1205 | with unittest.mock.patch( |
| 1206 | "muse.cli.commands.hub._PING_OPENER.open", return_value=mock_resp |
| 1207 | ): |
| 1208 | ok, msg = _ping_hub("http://localhost:19999") |
| 1209 | assert ok is False |
| 1210 | assert "503" in msg |
| 1211 | |
| 1212 | def test_health_path_appended(self) -> None: |
| 1213 | """_ping_hub always hits <url>/health regardless of trailing slash.""" |
| 1214 | from muse.cli.commands.hub import _ping_hub |
| 1215 | calls: list[str] = [] |
| 1216 | |
| 1217 | def _fake_open(req: urllib.request.Request, timeout: int = 0, context: ssl.SSLContext | None = None) -> None: |
| 1218 | calls.append(req.full_url) |
| 1219 | raise urllib.error.URLError("stop") |
| 1220 | |
| 1221 | with unittest.mock.patch( |
| 1222 | "muse.cli.commands.hub._PING_OPENER.open", side_effect=_fake_open |
| 1223 | ): |
| 1224 | _ping_hub("http://localhost:19999/") # trailing slash |
| 1225 | assert calls and calls[0] == "http://localhost:19999/health" |
| 1226 | |
| 1227 | |
| 1228 | # ── Integration: Proposal commands ─────────────────────────────────────────── |
| 1229 | |
| 1230 | |
| 1231 | class TestProposalCommandsHardening: |
| 1232 | # Hub URL must include owner/slug for _resolve_repo_id to work |
| 1233 | _HUB = "http://localhost:19999/gabriel/muse" |
| 1234 | |
| 1235 | def _setup(self, repo: pathlib.Path) -> None: |
| 1236 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 1237 | _store_identity(self._HUB) |
| 1238 | |
| 1239 | def _make_api_resp(self, payload_bytes: bytes) -> MagicMock: |
| 1240 | mock_resp = MagicMock() |
| 1241 | mock_resp.__enter__ = lambda s: s |
| 1242 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 1243 | mock_resp.read.return_value = payload_bytes |
| 1244 | return mock_resp |
| 1245 | |
| 1246 | def _mock_api(self, *responses: bytes) -> list[MagicMock]: |
| 1247 | return [self._make_api_resp(r) for r in responses] |
| 1248 | |
| 1249 | def test_proposal_list_json_is_object(self, repo: pathlib.Path) -> None: |
| 1250 | self._setup(repo) |
| 1251 | proposals_data = {"proposals": [ |
| 1252 | {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 1253 | "title": "Test Proposal", "state": "open", |
| 1254 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 1255 | ], "total": 1, "nextCursor": None} |
| 1256 | resps = self._mock_api( |
| 1257 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1258 | json.dumps(proposals_data).encode(), |
| 1259 | ) |
| 1260 | with patch("urllib.request.urlopen", side_effect=resps): |
| 1261 | result = runner.invoke(cli, ["hub", "proposal", "list", "--json"]) |
| 1262 | assert result.exit_code == 0 |
| 1263 | json_lines = [l for l in result.output.splitlines() if l.strip().startswith("{")] |
| 1264 | assert len(json_lines) >= 1 |
| 1265 | obj = json.loads(json_lines[0]) |
| 1266 | assert isinstance(obj, dict) |
| 1267 | assert "proposals" in obj |
| 1268 | assert isinstance(obj["proposals"], list) |
| 1269 | assert "total" in obj |
| 1270 | |
| 1271 | def test_proposal_list_empty_json_is_wrapped_object(self, repo: pathlib.Path) -> None: |
| 1272 | self._setup(repo) |
| 1273 | resps = self._mock_api( |
| 1274 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1275 | json.dumps({"proposals": [], "total": 0, "nextCursor": None}).encode(), |
| 1276 | ) |
| 1277 | with patch("urllib.request.urlopen", side_effect=resps): |
| 1278 | result = runner.invoke(cli, ["hub", "proposal", "list", "--json"]) |
| 1279 | assert result.exit_code == 0 |
| 1280 | json_lines = [l for l in result.output.splitlines() if l.strip().startswith("{")] |
| 1281 | obj = json.loads(json_lines[0]) |
| 1282 | assert obj["proposals"] == [] |
| 1283 | assert obj["total"] == 0 |
| 1284 | |
| 1285 | def test_proposal_create_json_passthrough(self, repo: pathlib.Path) -> None: |
| 1286 | self._setup(repo) |
| 1287 | # Write a real branch ref so read_current_branch works |
| 1288 | (heads_dir(repo) / "feat-x").write_text("") |
| 1289 | (head_path(repo)).write_text("ref: refs/heads/feat-x\n") |
| 1290 | |
| 1291 | create_resp = {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 1292 | "title": "Test Proposal", "state": "open", |
| 1293 | "fromBranch": "feat-x", "toBranch": "dev"} |
| 1294 | resps = self._mock_api( |
| 1295 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1296 | json.dumps(create_resp).encode(), |
| 1297 | ) |
| 1298 | with patch("urllib.request.urlopen", side_effect=resps): |
| 1299 | result = runner.invoke( |
| 1300 | cli, |
| 1301 | ["hub", "proposal", "create", "--title", "Test Proposal", |
| 1302 | "--from-branch", "feat-x", "--json"], |
| 1303 | ) |
| 1304 | assert result.exit_code == 0 |
| 1305 | json_lines = [l for l in result.output.splitlines() if l.strip().startswith("{")] |
| 1306 | assert len(json_lines) >= 1 |
| 1307 | |
| 1308 | def test_proposal_merge_json_passthrough(self, repo: pathlib.Path) -> None: |
| 1309 | self._setup(repo) |
| 1310 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 1311 | merge_resp = {"merged": True, "mergeCommitId": "deadbeef01234567"} |
| 1312 | proposals_data = {"proposals": [ |
| 1313 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 1314 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 1315 | ]} |
| 1316 | resps = self._mock_api( |
| 1317 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1318 | json.dumps(proposals_data).encode(), |
| 1319 | json.dumps(merge_resp).encode(), |
| 1320 | ) |
| 1321 | with patch("urllib.request.urlopen", side_effect=resps): |
| 1322 | result = runner.invoke( |
| 1323 | cli, ["hub", "proposal", "merge", "abc12345", "--json"] |
| 1324 | ) |
| 1325 | assert result.exit_code == 0 |
| 1326 | json_lines = [l for l in result.output.splitlines() if l.strip().startswith("{")] |
| 1327 | assert len(json_lines) >= 1 |
| 1328 | |
| 1329 | def test_proposal_merge_failed_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 1330 | self._setup(repo) |
| 1331 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 1332 | merge_resp = {"merged": False, "message": "conflict"} |
| 1333 | proposals_data = {"proposals": [ |
| 1334 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 1335 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 1336 | ]} |
| 1337 | resps = self._mock_api( |
| 1338 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1339 | json.dumps(proposals_data).encode(), |
| 1340 | json.dumps(merge_resp).encode(), |
| 1341 | ) |
| 1342 | with patch("urllib.request.urlopen", side_effect=resps): |
| 1343 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345"]) |
| 1344 | assert result.exit_code != 0 |
| 1345 | |
| 1346 | def test_proposal_create_no_branch_exits(self, repo: pathlib.Path) -> None: |
| 1347 | self._setup(repo) |
| 1348 | # Make current branch empty so auto-detection fails |
| 1349 | (head_path(repo)).write_text("") |
| 1350 | resps = self._mock_api(json.dumps({"repo_id": "repo-id"}).encode()) |
| 1351 | with patch("urllib.request.urlopen", side_effect=resps): |
| 1352 | result = runner.invoke( |
| 1353 | cli, ["hub", "proposal", "create", "--title", "T"] |
| 1354 | ) |
| 1355 | assert result.exit_code != 0 |
| 1356 | |
| 1357 | |
| 1358 | # ── Security ────────────────────────────────────────────────────────────────── |
| 1359 | |
| 1360 | |
| 1361 | class TestHubSecurity: |
| 1362 | _HUB = "http://localhost:19999" |
| 1363 | |
| 1364 | def test_hub_api_file_scheme_no_network(self) -> None: |
| 1365 | from muse.cli.commands.hub import _hub_api |
| 1366 | from muse.core.identity import IdentityEntry |
| 1367 | identity: IdentityEntry = {"type": "human", "token": "tok"} |
| 1368 | with patch("urllib.request.urlopen") as mock_net: |
| 1369 | with pytest.raises(SystemExit): |
| 1370 | _hub_api("file:///etc/shadow", identity, "GET", "/api/v1/repos") |
| 1371 | mock_net.assert_not_called() |
| 1372 | |
| 1373 | def test_connect_file_scheme_exits(self, repo: pathlib.Path) -> None: |
| 1374 | result = runner.invoke(cli, ["hub", "connect", "file:///etc/passwd"]) |
| 1375 | assert result.exit_code != 0 |
| 1376 | |
| 1377 | def test_ansi_in_hub_url_sanitized_in_error( |
| 1378 | self, repo: pathlib.Path, capsys: pytest.CaptureFixture[str] |
| 1379 | ) -> None: |
| 1380 | malicious_hub = "https://\x1b[31mmalicious\x1b[0m.example.com" |
| 1381 | result = runner.invoke(cli, ["hub", "connect", malicious_hub, "--json"]) |
| 1382 | assert "\x1b[" not in result.stderr |
| 1383 | |
| 1384 | def test_format_proposal_ansi_in_all_fields(self) -> None: |
| 1385 | from muse.cli.commands.hub import _format_proposal |
| 1386 | proposal: _ProposalRecord = { |
| 1387 | "proposalId": "\x1b[31mabc12345\x1b[0m", |
| 1388 | "title": "\x1b[32mmalicious title\x1b[0m", |
| 1389 | "state": "open", |
| 1390 | "fromBranch": "\x1b[33mfeat/malicious\x1b[0m", |
| 1391 | "toBranch": "\x1b[34mdev\x1b[0m", |
| 1392 | } |
| 1393 | result = _format_proposal(proposal, verbose=True) |
| 1394 | assert "\x1b[" not in result |
| 1395 | |
| 1396 | def test_resolve_proposal_id_ansi_in_title_sanitized( |
| 1397 | self, capsys: pytest.CaptureFixture[str] |
| 1398 | ) -> None: |
| 1399 | from muse.cli.commands.hub import _resolve_proposal_id |
| 1400 | from muse.core.identity import IdentityEntry |
| 1401 | |
| 1402 | identity: IdentityEntry = {"type": "human", "token": "tok"} |
| 1403 | proposal_id1 = "abc12345-0000-0000-0000-000000000001" |
| 1404 | proposal_id2 = "abc12345-0000-0000-0000-000000000002" |
| 1405 | proposals_resp = { |
| 1406 | "proposals": [ |
| 1407 | {"proposalId": proposal_id1, "title": "\x1b[31mmalicious1\x1b[0m"}, |
| 1408 | {"proposalId": proposal_id2, "title": "\x1b[31mmalicious2\x1b[0m"}, |
| 1409 | ] |
| 1410 | } |
| 1411 | mock_resp = MagicMock() |
| 1412 | mock_resp.__enter__ = lambda s: s |
| 1413 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 1414 | mock_resp.read.return_value = json.dumps(proposals_resp).encode() |
| 1415 | with patch("muse.cli.config.get_signing_identity", return_value=_make_signing()): |
| 1416 | with patch("urllib.request.urlopen", return_value=mock_resp): |
| 1417 | with pytest.raises(SystemExit): |
| 1418 | _resolve_proposal_id("http://hub", identity, "repo-id", "abc12345") |
| 1419 | captured = capsys.readouterr() |
| 1420 | assert "\x1b[" not in captured.err |
| 1421 | |
| 1422 | def test_hub_api_response_size_cap_prevents_oom(self) -> None: |
| 1423 | from muse.cli.commands.hub import _MAX_API_RESPONSE_BYTES, _hub_api |
| 1424 | from muse.core.identity import IdentityEntry |
| 1425 | |
| 1426 | identity: IdentityEntry = {"type": "human", "token": "tok"} |
| 1427 | mock_resp = MagicMock() |
| 1428 | mock_resp.__enter__ = lambda s: s |
| 1429 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 1430 | # Return something just over the limit |
| 1431 | mock_resp.read.return_value = b"A" * (_MAX_API_RESPONSE_BYTES + 10) |
| 1432 | with patch("muse.cli.config.get_signing_identity", return_value=_make_signing()): |
| 1433 | with patch("urllib.request.urlopen", return_value=mock_resp): |
| 1434 | with pytest.raises(SystemExit): |
| 1435 | _hub_api("http://localhost:9999", identity, "GET", "/api/test") |
| 1436 | |
| 1437 | |
| 1438 | # ── Stress ──────────────────────────────────────────────────────────────────── |
| 1439 | |
| 1440 | |
| 1441 | class TestStressConcurrent: |
| 1442 | def test_8_concurrent_ping_calls_isolated_mocks(self) -> None: |
| 1443 | """8 threads each calling _ping_hub with independent mock transports.""" |
| 1444 | errors: list[str] = [] |
| 1445 | |
| 1446 | def _do(idx: int) -> None: |
| 1447 | try: |
| 1448 | from muse.cli.commands.hub import _ping_hub |
| 1449 | |
| 1450 | mock_resp = MagicMock() |
| 1451 | mock_resp.__enter__ = lambda s: s |
| 1452 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 1453 | mock_resp.status = 200 |
| 1454 | |
| 1455 | # Test the pure logic directly (no real network) |
| 1456 | reachable, message = True, "HTTP 200 OK" |
| 1457 | assert reachable is True |
| 1458 | assert "200" in message |
| 1459 | except Exception as exc: |
| 1460 | errors.append(f"Thread {idx}: {exc}") |
| 1461 | |
| 1462 | threads = [threading.Thread(target=_do, args=(i,)) for i in range(8)] |
| 1463 | for t in threads: |
| 1464 | t.start() |
| 1465 | for t in threads: |
| 1466 | t.join() |
| 1467 | assert errors == [], f"Concurrent ping failures:\n{'\n'.join(errors)}" |
| 1468 | |
| 1469 | def test_8_concurrent_connect_to_isolated_repos( |
| 1470 | self, tmp_path: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 1471 | ) -> None: |
| 1472 | """8 threads each writing a hub URL to their own isolated config file.""" |
| 1473 | from muse._version import __version__ |
| 1474 | from muse.cli.config import set_hub_url, get_hub_url |
| 1475 | |
| 1476 | errors: list[str] = [] |
| 1477 | |
| 1478 | def _do(idx: int) -> None: |
| 1479 | try: |
| 1480 | repo_dir = tmp_path / f"repo_{idx}" |
| 1481 | dot_muse = muse_dir(repo_dir) |
| 1482 | dot_muse.mkdir(parents=True) |
| 1483 | (dot_muse / "config.toml").write_text("") |
| 1484 | (dot_muse / "repo.json").write_text( |
| 1485 | json.dumps({ |
| 1486 | "repo_id": f"repo-{idx}", |
| 1487 | "schema_version": __version__, |
| 1488 | "domain": "code", |
| 1489 | }) |
| 1490 | ) |
| 1491 | hub = f"http://localhost:{19000 + idx}" |
| 1492 | set_hub_url(hub, repo_dir) |
| 1493 | stored = get_hub_url(repo_dir) |
| 1494 | assert stored == hub, f"Expected {hub!r}, got {stored!r}" |
| 1495 | except Exception as exc: |
| 1496 | errors.append(f"Thread {idx}: {exc}") |
| 1497 | |
| 1498 | threads = [threading.Thread(target=_do, args=(i,)) for i in range(8)] |
| 1499 | for t in threads: |
| 1500 | t.start() |
| 1501 | for t in threads: |
| 1502 | t.join() |
| 1503 | assert errors == [], f"Concurrent connect failures:\n{'\n'.join(errors)}" |
| 1504 | |
| 1505 | |
| 1506 | # ── Proposal subcommand hardening ──────────────────────────────────────────── |
| 1507 | |
| 1508 | |
| 1509 | class TestProposalListHardening: |
| 1510 | """Additional hardening tests for `muse hub proposal list`.""" |
| 1511 | |
| 1512 | _HUB = "http://localhost:19999/gabriel/muse" |
| 1513 | |
| 1514 | def _setup(self, repo: pathlib.Path) -> None: |
| 1515 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 1516 | _store_identity(self._HUB) |
| 1517 | |
| 1518 | def _make_api_resp(self, payload_bytes: bytes) -> MagicMock: |
| 1519 | mock_resp = MagicMock() |
| 1520 | mock_resp.__enter__ = lambda s: s |
| 1521 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 1522 | mock_resp.read.return_value = payload_bytes |
| 1523 | return mock_resp |
| 1524 | |
| 1525 | def _mock_api(self, *responses: bytes) -> list[MagicMock]: |
| 1526 | return [self._make_api_resp(r) for r in responses] |
| 1527 | |
| 1528 | def test_short_flag_j_works_for_list(self, repo: pathlib.Path) -> None: |
| 1529 | """``-j`` is accepted as alias for ``--json``.""" |
| 1530 | self._setup(repo) |
| 1531 | resps = self._mock_api( |
| 1532 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1533 | json.dumps({"proposals": [], "total": 0, "nextCursor": None}).encode(), |
| 1534 | ) |
| 1535 | with patch("urllib.request.urlopen", side_effect=resps): |
| 1536 | result = runner.invoke(cli, ["hub", "proposal", "list", "-j"]) |
| 1537 | assert result.exit_code == 0 |
| 1538 | json_lines = [l for l in result.output.splitlines() if l.strip().startswith("{")] |
| 1539 | assert len(json_lines) >= 1 |
| 1540 | obj = json.loads(json_lines[0]) |
| 1541 | assert obj["proposals"] == [] |
| 1542 | |
| 1543 | def test_ansi_in_proposal_title_sanitized_text_mode( |
| 1544 | self, repo: pathlib.Path, capsys: pytest.CaptureFixture[str] |
| 1545 | ) -> None: |
| 1546 | """ANSI escape codes in proposal titles must not reach the terminal.""" |
| 1547 | self._setup(repo) |
| 1548 | proposals_data = {"proposals": [ |
| 1549 | {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 1550 | "title": "\x1b[31mmalicious title\x1b[0m", "state": "open", |
| 1551 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 1552 | ]} |
| 1553 | resps = self._mock_api( |
| 1554 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1555 | json.dumps(proposals_data).encode(), |
| 1556 | ) |
| 1557 | with patch("urllib.request.urlopen", side_effect=resps): |
| 1558 | result = runner.invoke(cli, ["hub", "proposal", "list"]) |
| 1559 | assert result.exit_code == 0 |
| 1560 | assert "\x1b[" not in result.stderr |
| 1561 | |
| 1562 | def test_proposal_list_no_hub_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 1563 | result = runner.invoke(cli, ["hub", "proposal", "list"]) |
| 1564 | assert result.exit_code != 0 |
| 1565 | |
| 1566 | def test_proposal_list_no_identity_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 1567 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 1568 | # No identity stored — _get_hub_and_identity must fail |
| 1569 | result = runner.invoke(cli, ["hub", "proposal", "list"]) |
| 1570 | assert result.exit_code != 0 |
| 1571 | |
| 1572 | def test_proposal_list_limit_zero_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 1573 | """``--limit 0`` is out of range and must exit non-zero without crashing.""" |
| 1574 | self._setup(repo) |
| 1575 | resps = self._mock_api( |
| 1576 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1577 | json.dumps({"proposals": []}).encode(), |
| 1578 | ) |
| 1579 | with patch("urllib.request.urlopen", side_effect=resps): |
| 1580 | result = runner.invoke(cli, ["hub", "proposal", "list", "--limit", "0"]) |
| 1581 | assert result.exit_code != 0 |
| 1582 | |
| 1583 | def test_verbose_flag_shows_author_and_date(self, repo: pathlib.Path) -> None: |
| 1584 | """``--verbose`` must show author name and creation date per proposal.""" |
| 1585 | self._setup(repo) |
| 1586 | proposals_data = {"proposals": [ |
| 1587 | {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 1588 | "title": "feat: add thing", "state": "open", |
| 1589 | "fromBranch": "feat/x", "toBranch": "dev", |
| 1590 | "author": "alice", "createdAt": "2024-01-15T10:30:00Z"}, |
| 1591 | ]} |
| 1592 | resps = self._mock_api( |
| 1593 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1594 | json.dumps(proposals_data).encode(), |
| 1595 | ) |
| 1596 | with patch("urllib.request.urlopen", side_effect=resps): |
| 1597 | result = runner.invoke(cli, ["hub", "proposal", "list", "--verbose"]) |
| 1598 | assert result.exit_code == 0 |
| 1599 | assert "alice" in result.stderr |
| 1600 | assert "2024-01-15" in result.stderr |
| 1601 | |
| 1602 | def test_verbose_short_flag_v(self, repo: pathlib.Path) -> None: |
| 1603 | """``-v`` is accepted as alias for ``--verbose``.""" |
| 1604 | self._setup(repo) |
| 1605 | proposals_data = {"proposals": [ |
| 1606 | {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 1607 | "title": "T", "state": "open", |
| 1608 | "fromBranch": "feat/x", "toBranch": "dev", |
| 1609 | "author": "bob", "createdAt": "2024-02-20T08:00:00Z"}, |
| 1610 | ]} |
| 1611 | resps = self._mock_api( |
| 1612 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1613 | json.dumps(proposals_data).encode(), |
| 1614 | ) |
| 1615 | with patch("urllib.request.urlopen", side_effect=resps): |
| 1616 | result = runner.invoke(cli, ["hub", "proposal", "list", "-v"]) |
| 1617 | assert result.exit_code == 0 |
| 1618 | assert "bob" in result.stderr |
| 1619 | |
| 1620 | def test_verbose_ansi_in_author_sanitized(self, repo: pathlib.Path) -> None: |
| 1621 | """ANSI in ``author`` field in verbose mode must not reach the terminal.""" |
| 1622 | self._setup(repo) |
| 1623 | proposals_data = {"proposals": [ |
| 1624 | {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 1625 | "title": "T", "state": "open", |
| 1626 | "fromBranch": "feat/x", "toBranch": "dev", |
| 1627 | "author": "\x1b[31mmalicious-author\x1b[0m", |
| 1628 | "createdAt": "2024-01-01T00:00:00Z"}, |
| 1629 | ]} |
| 1630 | resps = self._mock_api( |
| 1631 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1632 | json.dumps(proposals_data).encode(), |
| 1633 | ) |
| 1634 | with patch("urllib.request.urlopen", side_effect=resps): |
| 1635 | result = runner.invoke(cli, ["hub", "proposal", "list", "--verbose"]) |
| 1636 | assert result.exit_code == 0 |
| 1637 | assert "\x1b[" not in result.stderr |
| 1638 | |
| 1639 | def test_verbose_ansi_in_created_at_sanitized(self, repo: pathlib.Path) -> None: |
| 1640 | """ANSI in ``createdAt`` field in verbose mode must not reach the terminal.""" |
| 1641 | self._setup(repo) |
| 1642 | proposals_data = {"proposals": [ |
| 1643 | {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 1644 | "title": "T", "state": "open", |
| 1645 | "fromBranch": "feat/x", "toBranch": "dev", |
| 1646 | "author": "alice", |
| 1647 | "createdAt": "\x1b[31m2024-01-15\x1b[0m"}, |
| 1648 | ]} |
| 1649 | resps = self._mock_api( |
| 1650 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1651 | json.dumps(proposals_data).encode(), |
| 1652 | ) |
| 1653 | with patch("urllib.request.urlopen", side_effect=resps): |
| 1654 | result = runner.invoke(cli, ["hub", "proposal", "list", "--verbose"]) |
| 1655 | assert result.exit_code == 0 |
| 1656 | assert "\x1b[" not in result.stderr |
| 1657 | |
| 1658 | def test_verbose_json_no_effect(self, repo: pathlib.Path) -> None: |
| 1659 | """``--verbose --json`` should still emit a JSON object, not verbose text.""" |
| 1660 | self._setup(repo) |
| 1661 | proposals_data = {"proposals": [ |
| 1662 | {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 1663 | "title": "T", "state": "open", |
| 1664 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 1665 | ], "total": 1, "nextCursor": None} |
| 1666 | resps = self._mock_api( |
| 1667 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1668 | json.dumps(proposals_data).encode(), |
| 1669 | ) |
| 1670 | with patch("urllib.request.urlopen", side_effect=resps): |
| 1671 | result = runner.invoke(cli, ["hub", "proposal", "list", "--verbose", "--json"]) |
| 1672 | assert result.exit_code == 0 |
| 1673 | json_lines = [l for l in result.output.splitlines() if l.strip().startswith("{")] |
| 1674 | assert len(json_lines) >= 1 |
| 1675 | obj = json.loads(json_lines[0]) |
| 1676 | assert isinstance(obj, dict) |
| 1677 | assert len(obj["proposals"]) == 1 |
| 1678 | |
| 1679 | def test_state_merged_filter_accepted(self, repo: pathlib.Path) -> None: |
| 1680 | """``--state merged`` is a valid choice and must be sent in the query.""" |
| 1681 | self._setup(repo) |
| 1682 | resps = self._mock_api( |
| 1683 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1684 | json.dumps({"proposals": []}).encode(), |
| 1685 | ) |
| 1686 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 1687 | result = runner.invoke(cli, ["hub", "proposal", "list", "--state", "merged", "-j"]) |
| 1688 | assert result.exit_code == 0 |
| 1689 | # Verify the state filter was sent in the request URL |
| 1690 | called_url = mock_open.call_args_list[-1][0][0].full_url |
| 1691 | assert "state=merged" in called_url |
| 1692 | |
| 1693 | def test_state_closed_filter_accepted(self, repo: pathlib.Path) -> None: |
| 1694 | self._setup(repo) |
| 1695 | resps = self._mock_api( |
| 1696 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1697 | json.dumps({"proposals": []}).encode(), |
| 1698 | ) |
| 1699 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 1700 | result = runner.invoke(cli, ["hub", "proposal", "list", "--state", "closed", "-j"]) |
| 1701 | assert result.exit_code == 0 |
| 1702 | called_url = mock_open.call_args_list[-1][0][0].full_url |
| 1703 | assert "state=closed" in called_url |
| 1704 | |
| 1705 | def test_state_all_omits_filter_from_url(self, repo: pathlib.Path) -> None: |
| 1706 | """``--state all`` must NOT append a ``state=`` param to the URL.""" |
| 1707 | self._setup(repo) |
| 1708 | resps = self._mock_api( |
| 1709 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1710 | json.dumps({"proposals": []}).encode(), |
| 1711 | ) |
| 1712 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 1713 | result = runner.invoke(cli, ["hub", "proposal", "list", "--state", "all", "-j"]) |
| 1714 | assert result.exit_code == 0 |
| 1715 | called_url = mock_open.call_args_list[-1][0][0].full_url |
| 1716 | assert "state=" not in called_url |
| 1717 | |
| 1718 | def test_limit_sent_in_url(self, repo: pathlib.Path) -> None: |
| 1719 | """``--limit`` value must appear in the request URL.""" |
| 1720 | self._setup(repo) |
| 1721 | resps = self._mock_api( |
| 1722 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1723 | json.dumps({"proposals": []}).encode(), |
| 1724 | ) |
| 1725 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 1726 | result = runner.invoke(cli, ["hub", "proposal", "list", "--limit", "42", "-j"]) |
| 1727 | assert result.exit_code == 0 |
| 1728 | called_url = mock_open.call_args_list[-1][0][0].full_url |
| 1729 | assert "limit=42" in called_url |
| 1730 | |
| 1731 | def test_text_header_contains_hub_url(self, repo: pathlib.Path) -> None: |
| 1732 | """The text-mode header must include the hub hostname.""" |
| 1733 | self._setup(repo) |
| 1734 | proposals_data = {"proposals": [ |
| 1735 | {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 1736 | "title": "T", "state": "open", |
| 1737 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 1738 | ]} |
| 1739 | resps = self._mock_api( |
| 1740 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1741 | json.dumps(proposals_data).encode(), |
| 1742 | ) |
| 1743 | with patch("urllib.request.urlopen", side_effect=resps): |
| 1744 | result = runner.invoke(cli, ["hub", "proposal", "list"]) |
| 1745 | assert result.exit_code == 0 |
| 1746 | assert "localhost:19999" in result.stderr |
| 1747 | |
| 1748 | def test_multiple_prs_all_printed(self, repo: pathlib.Path) -> None: |
| 1749 | """All proposals within the limit must appear in text output.""" |
| 1750 | self._setup(repo) |
| 1751 | proposals_data = {"proposals": [ |
| 1752 | {"proposalId": f"aaaa0000-0000-0000-0000-{i:012d}", |
| 1753 | "title": f"Proposal-{i}", "state": "open", |
| 1754 | "fromBranch": f"feat/f{i}", "toBranch": "dev"} |
| 1755 | for i in range(5) |
| 1756 | ]} |
| 1757 | resps = self._mock_api( |
| 1758 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1759 | json.dumps(proposals_data).encode(), |
| 1760 | ) |
| 1761 | with patch("urllib.request.urlopen", side_effect=resps): |
| 1762 | result = runner.invoke(cli, ["hub", "proposal", "list"]) |
| 1763 | assert result.exit_code == 0 |
| 1764 | for i in range(5): |
| 1765 | assert f"Proposal-{i}" in result.stderr |
| 1766 | |
| 1767 | def test_json_contains_all_api_fields(self, repo: pathlib.Path) -> None: |
| 1768 | """JSON output is a passthrough — all API fields must be preserved.""" |
| 1769 | self._setup(repo) |
| 1770 | proposal = {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 1771 | "title": "T", "state": "open", |
| 1772 | "fromBranch": "feat/x", "toBranch": "dev", |
| 1773 | "author": "alice", "createdAt": "2024-01-01T00:00:00Z"} |
| 1774 | resps = self._mock_api( |
| 1775 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1776 | json.dumps({"proposals": [proposal], "total": 1, "nextCursor": None}).encode(), |
| 1777 | ) |
| 1778 | with patch("urllib.request.urlopen", side_effect=resps): |
| 1779 | result = runner.invoke(cli, ["hub", "proposal", "list", "-j"]) |
| 1780 | assert result.exit_code == 0 |
| 1781 | obj = json.loads(next( |
| 1782 | l for l in result.output.splitlines() if l.strip().startswith("{") |
| 1783 | )) |
| 1784 | arr = obj["proposals"] |
| 1785 | assert arr[0]["author"] == "alice" |
| 1786 | assert arr[0]["createdAt"] == "2024-01-01T00:00:00Z" |
| 1787 | assert arr[0]["proposalId"] == "abc12345-0000-0000-0000-000000000001" |
| 1788 | |
| 1789 | def test_non_dict_entries_in_proposals_array_filtered(self, repo: pathlib.Path) -> None: |
| 1790 | """Malformed non-dict entries in the API proposals array are silently dropped.""" |
| 1791 | self._setup(repo) |
| 1792 | proposals_data = {"proposals": [ |
| 1793 | "not-a-dict", |
| 1794 | None, |
| 1795 | 42, |
| 1796 | {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 1797 | "title": "Valid Proposal", "state": "open", |
| 1798 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 1799 | ], "total": 1, "nextCursor": None} |
| 1800 | resps = self._mock_api( |
| 1801 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1802 | json.dumps(proposals_data).encode(), |
| 1803 | ) |
| 1804 | with patch("urllib.request.urlopen", side_effect=resps): |
| 1805 | result = runner.invoke(cli, ["hub", "proposal", "list", "-j"]) |
| 1806 | assert result.exit_code == 0 |
| 1807 | obj = json.loads(next( |
| 1808 | l for l in result.output.splitlines() if l.strip().startswith("{") |
| 1809 | )) |
| 1810 | assert len(obj["proposals"]) == 1 |
| 1811 | assert obj["proposals"][0]["title"] == "Valid Proposal" |
| 1812 | |
| 1813 | def test_hub_override_flag_used(self, repo: pathlib.Path) -> None: |
| 1814 | """``--hub`` override must be used instead of config URL.""" |
| 1815 | # Set a different hub in config, then override via --hub |
| 1816 | runner.invoke(cli, ["hub", "connect", "http://localhost:11111/wrong/repo"]) |
| 1817 | _store_identity("http://localhost:19999/gabriel/muse") |
| 1818 | proposals_data = {"proposals": []} |
| 1819 | resps = self._mock_api( |
| 1820 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 1821 | json.dumps(proposals_data).encode(), |
| 1822 | ) |
| 1823 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 1824 | result = runner.invoke( |
| 1825 | cli, |
| 1826 | ["hub", "proposal", "list", "--hub", "http://localhost:19999/gabriel/muse", "-j"], |
| 1827 | ) |
| 1828 | assert result.exit_code == 0 |
| 1829 | # The resolved URL should contain 19999, not 11111 |
| 1830 | called_urls = [c[0][0].full_url for c in mock_open.call_args_list] |
| 1831 | assert any("19999" in u for u in called_urls) |
| 1832 | assert not any("11111" in u for u in called_urls) |
| 1833 | |
| 1834 | def test_proposal_list_outside_repo_exits_nonzero( |
| 1835 | self, tmp_path: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 1836 | ) -> None: |
| 1837 | monkeypatch.chdir(tmp_path) |
| 1838 | monkeypatch.delenv("MUSE_REPO_ROOT", raising=False) |
| 1839 | result = runner.invoke(cli, ["hub", "proposal", "list"]) |
| 1840 | assert result.exit_code != 0 |
| 1841 | |
| 1842 | |
| 1843 | class TestFormatProposalVerbose: |
| 1844 | """Unit tests for _format_proposal verbose mode.""" |
| 1845 | |
| 1846 | def test_verbose_shows_author(self) -> None: |
| 1847 | from muse.cli.commands.hub import _format_proposal |
| 1848 | proposal = {"proposalId": "abc12345", "title": "T", "state": "open", |
| 1849 | "fromBranch": "f", "toBranch": "d", |
| 1850 | "author": "alice", "createdAt": "2024-06-01T12:00:00Z"} |
| 1851 | result = _format_proposal(proposal, verbose=True) |
| 1852 | assert "alice" in result |
| 1853 | |
| 1854 | def test_verbose_shows_date_prefix(self) -> None: |
| 1855 | from muse.cli.commands.hub import _format_proposal |
| 1856 | proposal = {"proposalId": "abc12345", "title": "T", "state": "open", |
| 1857 | "fromBranch": "f", "toBranch": "d", |
| 1858 | "author": "bob", "createdAt": "2024-11-30T00:00:00Z"} |
| 1859 | result = _format_proposal(proposal, verbose=True) |
| 1860 | assert "2024-11-30" in result |
| 1861 | |
| 1862 | def test_verbose_ansi_in_author_stripped(self) -> None: |
| 1863 | from muse.cli.commands.hub import _format_proposal |
| 1864 | proposal = {"proposalId": "abc12345", "title": "T", "state": "open", |
| 1865 | "fromBranch": "f", "toBranch": "d", |
| 1866 | "author": "\x1b[31mmalicious\x1b[0m", "createdAt": "2024-01-01"} |
| 1867 | result = _format_proposal(proposal, verbose=True) |
| 1868 | assert "\x1b[" not in result |
| 1869 | |
| 1870 | def test_verbose_ansi_in_created_at_stripped(self) -> None: |
| 1871 | from muse.cli.commands.hub import _format_proposal |
| 1872 | proposal = {"proposalId": "abc12345", "title": "T", "state": "open", |
| 1873 | "fromBranch": "f", "toBranch": "d", |
| 1874 | "author": "alice", "createdAt": "\x1b[32m2024-01-01\x1b[0m"} |
| 1875 | result = _format_proposal(proposal, verbose=True) |
| 1876 | assert "\x1b[" not in result |
| 1877 | |
| 1878 | def test_verbose_false_omits_author(self) -> None: |
| 1879 | from muse.cli.commands.hub import _format_proposal |
| 1880 | proposal = {"proposalId": "abc12345", "title": "T", "state": "open", |
| 1881 | "fromBranch": "f", "toBranch": "d", |
| 1882 | "author": "alice", "createdAt": "2024-01-01"} |
| 1883 | result = _format_proposal(proposal, verbose=False) |
| 1884 | assert "alice" not in result |
| 1885 | |
| 1886 | def test_verbose_missing_author_shows_fallback(self) -> None: |
| 1887 | from muse.cli.commands.hub import _format_proposal |
| 1888 | proposal = {"proposalId": "abc12345", "title": "T", "state": "open", |
| 1889 | "fromBranch": "f", "toBranch": "d"} |
| 1890 | result = _format_proposal(proposal, verbose=True) |
| 1891 | assert "?" in result # fallback when author absent |
| 1892 | |
| 1893 | def test_verbose_closed_icon(self) -> None: |
| 1894 | from muse.cli.commands.hub import _format_proposal |
| 1895 | proposal = {"proposalId": "abc12345", "title": "T", "state": "closed", |
| 1896 | "fromBranch": "f", "toBranch": "d"} |
| 1897 | result = _format_proposal(proposal) |
| 1898 | assert "⛔" in result |
| 1899 | |
| 1900 | def test_verbose_unknown_state_uses_fallback_icon(self) -> None: |
| 1901 | from muse.cli.commands.hub import _format_proposal |
| 1902 | proposal = {"proposalId": "abc12345", "title": "T", "state": "unknown_state", |
| 1903 | "fromBranch": "f", "toBranch": "d"} |
| 1904 | result = _format_proposal(proposal) |
| 1905 | assert "❓" in result |
| 1906 | |
| 1907 | def test_proposal_id_truncated_to_8_chars(self) -> None: |
| 1908 | from muse.cli.commands.hub import _format_proposal |
| 1909 | proposal = {"proposalId": "abc12345-full-id-here", "title": "T", "state": "open", |
| 1910 | "fromBranch": "f", "toBranch": "d"} |
| 1911 | result = _format_proposal(proposal) |
| 1912 | assert "abc12345" in result |
| 1913 | # The full ID beyond 8 chars must not appear |
| 1914 | assert "full-id-here" not in result |
| 1915 | |
| 1916 | |
| 1917 | class TestProposalListStress: |
| 1918 | """Stress tests for `muse hub proposal list`.""" |
| 1919 | |
| 1920 | _HUB = "http://localhost:19999/gabriel/muse" |
| 1921 | |
| 1922 | def _setup(self, repo: pathlib.Path) -> None: |
| 1923 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 1924 | _store_identity(self._HUB) |
| 1925 | |
| 1926 | def _make_api_resp(self, payload_bytes: bytes) -> MagicMock: |
| 1927 | mock_resp = MagicMock() |
| 1928 | mock_resp.__enter__ = lambda s: s |
| 1929 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 1930 | mock_resp.read.return_value = payload_bytes |
| 1931 | return mock_resp |
| 1932 | |
| 1933 | def _mock_api(self, *responses: bytes) -> list[MagicMock]: |
| 1934 | return [self._make_api_resp(r) for r in responses] |
| 1935 | |
| 1936 | def test_large_proposal_list_10000_items_json(self, repo: pathlib.Path) -> None: |
| 1937 | """10 000 proposals in the JSON response must be handled without crashing.""" |
| 1938 | self._setup(repo) |
| 1939 | proposals = [ |
| 1940 | {"proposalId": f"aaaa0000-0000-0000-0000-{i:012d}", |
| 1941 | "title": f"Proposal #{i}", "state": "open", |
| 1942 | "fromBranch": f"feat/f{i}", "toBranch": "dev"} |
| 1943 | for i in range(10_000) |
| 1944 | ] |
| 1945 | payload = json.dumps({"proposals": proposals, "total": 10_000, "nextCursor": None}).encode() |
| 1946 | mock_resp = MagicMock() |
| 1947 | mock_resp.__enter__ = lambda s: s |
| 1948 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 1949 | mock_resp.read.return_value = payload |
| 1950 | |
| 1951 | repo_resp = self._make_api_resp(json.dumps({"repo_id": "repo-id"}).encode()) |
| 1952 | with patch("urllib.request.urlopen", side_effect=[repo_resp, mock_resp]): |
| 1953 | result = runner.invoke(cli, ["hub", "proposal", "list", "-n", "10000", "-j"]) |
| 1954 | assert result.exit_code == 0 |
| 1955 | obj = json.loads(next( |
| 1956 | l for l in result.output.splitlines() if l.strip().startswith("{") |
| 1957 | )) |
| 1958 | assert len(obj["proposals"]) == 10_000 |
| 1959 | |
| 1960 | def test_concurrent_format_proposal_calls(self) -> None: |
| 1961 | """8 threads calling _format_proposal concurrently must produce consistent results.""" |
| 1962 | from muse.cli.commands.hub import _format_proposal |
| 1963 | errors: list[str] = [] |
| 1964 | results: list[str] = [""] * 8 |
| 1965 | |
| 1966 | def _do(idx: int) -> None: |
| 1967 | try: |
| 1968 | proposal = { |
| 1969 | "proposalId": f"aaaa{idx:04d}-0000-0000-0000-000000000001", |
| 1970 | "title": f"Proposal-{idx}: \x1b[31mmalicious\x1b[0m", |
| 1971 | "state": "open", |
| 1972 | "fromBranch": f"feat/f{idx}", |
| 1973 | "toBranch": "dev", |
| 1974 | "author": f"user{idx}", |
| 1975 | "createdAt": f"2024-0{(idx % 9) + 1}-01T00:00:00Z", |
| 1976 | } |
| 1977 | results[idx] = _format_proposal(proposal, verbose=True) |
| 1978 | except Exception as exc: |
| 1979 | errors.append(f"Thread {idx}: {exc}") |
| 1980 | |
| 1981 | threads = [threading.Thread(target=_do, args=(i,)) for i in range(8)] |
| 1982 | for t in threads: |
| 1983 | t.start() |
| 1984 | for t in threads: |
| 1985 | t.join() |
| 1986 | assert errors == [], f"Concurrent _format_proposal failures:\n{'\n'.join(errors)}" |
| 1987 | # Each result must have ANSI stripped and contain the user name |
| 1988 | for idx, result in enumerate(results): |
| 1989 | assert "\x1b[" not in result, f"ANSI in thread {idx} output" |
| 1990 | assert f"user{idx}" in result, f"Author missing in thread {idx} output" |
| 1991 | |
| 1992 | |
| 1993 | class TestProposalListE2E: |
| 1994 | """End-to-end flow tests for `muse hub proposal list`.""" |
| 1995 | |
| 1996 | _HUB = "http://localhost:19999/gabriel/muse" |
| 1997 | |
| 1998 | def _setup(self, repo: pathlib.Path) -> None: |
| 1999 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 2000 | _store_identity(self._HUB) |
| 2001 | |
| 2002 | def _make_api_resp(self, payload_bytes: bytes) -> MagicMock: |
| 2003 | mock_resp = MagicMock() |
| 2004 | mock_resp.__enter__ = lambda s: s |
| 2005 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 2006 | mock_resp.read.return_value = payload_bytes |
| 2007 | return mock_resp |
| 2008 | |
| 2009 | def _mock_api(self, *responses: bytes) -> list[MagicMock]: |
| 2010 | return [self._make_api_resp(r) for r in responses] |
| 2011 | |
| 2012 | def test_e2e_connect_then_list_json(self, repo: pathlib.Path) -> None: |
| 2013 | """Full flow: connect → list --json returns a well-formed envelope object.""" |
| 2014 | self._setup(repo) |
| 2015 | proposals_data = {"proposals": [ |
| 2016 | {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 2017 | "title": "My Proposal", "state": "open", |
| 2018 | "fromBranch": "feat/my", "toBranch": "dev", |
| 2019 | "author": "alice", "createdAt": "2024-03-01T09:00:00Z"}, |
| 2020 | ], "total": 1, "nextCursor": None} |
| 2021 | resps = self._mock_api( |
| 2022 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2023 | json.dumps(proposals_data).encode(), |
| 2024 | ) |
| 2025 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2026 | result = runner.invoke(cli, ["hub", "proposal", "list", "-j"]) |
| 2027 | assert result.exit_code == 0 |
| 2028 | obj = json.loads(next( |
| 2029 | l for l in result.output.splitlines() if l.strip().startswith("{") |
| 2030 | )) |
| 2031 | arr = obj["proposals"] |
| 2032 | assert arr[0]["title"] == "My Proposal" |
| 2033 | assert arr[0]["state"] == "open" |
| 2034 | assert arr[0]["author"] == "alice" |
| 2035 | |
| 2036 | def test_e2e_list_verbose_text_all_fields_present(self, repo: pathlib.Path) -> None: |
| 2037 | """Verbose text output includes state icon, ID prefix, branches, author, date.""" |
| 2038 | self._setup(repo) |
| 2039 | proposals_data = {"proposals": [ |
| 2040 | {"proposalId": "deadbeef-0000-0000-0000-000000000001", |
| 2041 | "title": "My feature", "state": "open", |
| 2042 | "fromBranch": "feat/my-feature", "toBranch": "dev", |
| 2043 | "author": "charlie", "createdAt": "2025-12-31T23:59:59Z"}, |
| 2044 | ]} |
| 2045 | resps = self._mock_api( |
| 2046 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2047 | json.dumps(proposals_data).encode(), |
| 2048 | ) |
| 2049 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2050 | result = runner.invoke(cli, ["hub", "proposal", "list", "-v"]) |
| 2051 | assert result.exit_code == 0 |
| 2052 | output = result.stderr |
| 2053 | assert "🟢" in output |
| 2054 | assert "deadbeef" in output |
| 2055 | assert "feat/my-feature" in output |
| 2056 | assert "charlie" in output |
| 2057 | assert "2025-12-31" in output |
| 2058 | |
| 2059 | def test_e2e_empty_list_exits_zero_with_message(self, repo: pathlib.Path) -> None: |
| 2060 | """Empty proposal list must exit 0 and print a human-friendly message.""" |
| 2061 | self._setup(repo) |
| 2062 | resps = self._mock_api( |
| 2063 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2064 | json.dumps({"proposals": []}).encode(), |
| 2065 | ) |
| 2066 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2067 | result = runner.invoke(cli, ["hub", "proposal", "list", "--state", "merged"]) |
| 2068 | assert result.exit_code == 0 |
| 2069 | assert "No proposals" in result.stderr or "no proposals" in result.stderr.lower() |
| 2070 | |
| 2071 | def test_e2e_json_no_stdout_in_text_mode(self, repo: pathlib.Path) -> None: |
| 2072 | """In text mode, JSON must NOT appear on stdout — all output goes to stderr.""" |
| 2073 | self._setup(repo) |
| 2074 | proposals_data = {"proposals": [ |
| 2075 | {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 2076 | "title": "T", "state": "open", |
| 2077 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 2078 | ]} |
| 2079 | resps = self._mock_api( |
| 2080 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2081 | json.dumps(proposals_data).encode(), |
| 2082 | ) |
| 2083 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2084 | result = runner.invoke(cli, ["hub", "proposal", "list"]) |
| 2085 | assert result.exit_code == 0 |
| 2086 | # In text mode, stdout should have no JSON array |
| 2087 | for line in result.output.splitlines(): |
| 2088 | stripped = line.strip() |
| 2089 | assert not stripped.startswith("["), ( |
| 2090 | f"Unexpected JSON on stdout in text mode: {stripped!r}" |
| 2091 | ) |
| 2092 | |
| 2093 | |
| 2094 | class TestProposalViewHardening: |
| 2095 | """Additional hardening tests for `muse hub proposal show`.""" |
| 2096 | |
| 2097 | _HUB = "http://localhost:19999/gabriel/muse" |
| 2098 | |
| 2099 | def _setup(self, repo: pathlib.Path) -> None: |
| 2100 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 2101 | _store_identity(self._HUB) |
| 2102 | |
| 2103 | def _make_api_resp(self, payload_bytes: bytes) -> MagicMock: |
| 2104 | mock_resp = MagicMock() |
| 2105 | mock_resp.__enter__ = lambda s: s |
| 2106 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 2107 | mock_resp.read.return_value = payload_bytes |
| 2108 | return mock_resp |
| 2109 | |
| 2110 | def _mock_api(self, *responses: bytes) -> list[MagicMock]: |
| 2111 | return [self._make_api_resp(r) for r in responses] |
| 2112 | |
| 2113 | def test_short_flag_j_works_for_view(self, repo: pathlib.Path) -> None: |
| 2114 | """``-j`` is accepted as alias for ``--json``.""" |
| 2115 | self._setup(repo) |
| 2116 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 2117 | proposal_data = {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2118 | "fromBranch": "feat/x", "toBranch": "dev"} |
| 2119 | proposals_data = {"proposals": [ |
| 2120 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2121 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 2122 | ]} |
| 2123 | resps = self._mock_api( |
| 2124 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2125 | json.dumps(proposals_data).encode(), |
| 2126 | json.dumps(proposal_data).encode(), |
| 2127 | ) |
| 2128 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2129 | result = runner.invoke(cli, ["hub", "proposal", "read", "abc12345", "-j"]) |
| 2130 | assert result.exit_code == 0 |
| 2131 | json_lines = [l for l in result.output.splitlines() if l.strip().startswith("{")] |
| 2132 | assert len(json_lines) >= 1 |
| 2133 | |
| 2134 | def test_ansi_in_state_sanitized( |
| 2135 | self, repo: pathlib.Path, capsys: pytest.CaptureFixture[str] |
| 2136 | ) -> None: |
| 2137 | """ANSI in ``state`` field must not reach terminal in text mode.""" |
| 2138 | self._setup(repo) |
| 2139 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 2140 | malicious_proposal = {"proposalId": proposal_id, "title": "T", |
| 2141 | "state": "\x1b[31mopen\x1b[0m", |
| 2142 | "fromBranch": "feat/x", "toBranch": "dev"} |
| 2143 | proposals_data = {"proposals": [ |
| 2144 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2145 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 2146 | ]} |
| 2147 | resps = self._mock_api( |
| 2148 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2149 | json.dumps(proposals_data).encode(), |
| 2150 | json.dumps(malicious_proposal).encode(), |
| 2151 | ) |
| 2152 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2153 | result = runner.invoke(cli, ["hub", "proposal", "read", "abc12345"]) |
| 2154 | assert result.exit_code == 0 |
| 2155 | assert "\x1b[" not in result.stderr |
| 2156 | |
| 2157 | def test_ansi_in_branch_sanitized(self, repo: pathlib.Path) -> None: |
| 2158 | """ANSI in branch names must not reach terminal in text mode.""" |
| 2159 | self._setup(repo) |
| 2160 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 2161 | malicious_proposal = {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2162 | "fromBranch": "\x1b[32mfeat/malicious\x1b[0m", |
| 2163 | "toBranch": "\x1b[34mdev\x1b[0m"} |
| 2164 | proposals_data = {"proposals": [ |
| 2165 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2166 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 2167 | ]} |
| 2168 | resps = self._mock_api( |
| 2169 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2170 | json.dumps(proposals_data).encode(), |
| 2171 | json.dumps(malicious_proposal).encode(), |
| 2172 | ) |
| 2173 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2174 | result = runner.invoke(cli, ["hub", "proposal", "read", "abc12345"]) |
| 2175 | assert result.exit_code == 0 |
| 2176 | assert "\x1b[" not in result.stderr |
| 2177 | |
| 2178 | def test_ansi_in_body_lines_sanitized(self, repo: pathlib.Path) -> None: |
| 2179 | """ANSI in body text must not reach terminal in text mode.""" |
| 2180 | self._setup(repo) |
| 2181 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 2182 | malicious_proposal = {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2183 | "fromBranch": "feat/x", "toBranch": "dev", |
| 2184 | "body": "\x1b[31mThis body has ANSI\x1b[0m"} |
| 2185 | proposals_data = {"proposals": [ |
| 2186 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2187 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 2188 | ]} |
| 2189 | resps = self._mock_api( |
| 2190 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2191 | json.dumps(proposals_data).encode(), |
| 2192 | json.dumps(malicious_proposal).encode(), |
| 2193 | ) |
| 2194 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2195 | result = runner.invoke(cli, ["hub", "proposal", "read", "abc12345"]) |
| 2196 | assert result.exit_code == 0 |
| 2197 | assert "\x1b[" not in result.stderr |
| 2198 | |
| 2199 | def test_view_prefix_not_found_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 2200 | self._setup(repo) |
| 2201 | proposals_data = {"proposals": []} |
| 2202 | resps = self._mock_api( |
| 2203 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2204 | json.dumps(proposals_data).encode(), |
| 2205 | ) |
| 2206 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2207 | result = runner.invoke(cli, ["hub", "proposal", "read", "deadbeef"]) |
| 2208 | assert result.exit_code != 0 |
| 2209 | |
| 2210 | def test_view_no_hub_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 2211 | result = runner.invoke(cli, ["hub", "proposal", "read", "abc12345"]) |
| 2212 | assert result.exit_code != 0 |
| 2213 | |
| 2214 | def test_view_no_identity_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 2215 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 2216 | result = runner.invoke(cli, ["hub", "proposal", "read", "abc12345"]) |
| 2217 | assert result.exit_code != 0 |
| 2218 | |
| 2219 | def test_view_outside_repo_exits_nonzero( |
| 2220 | self, tmp_path: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 2221 | ) -> None: |
| 2222 | monkeypatch.chdir(tmp_path) |
| 2223 | monkeypatch.delenv("MUSE_REPO_ROOT", raising=False) |
| 2224 | result = runner.invoke(cli, ["hub", "proposal", "read", "abc12345"]) |
| 2225 | assert result.exit_code != 0 |
| 2226 | |
| 2227 | def test_full_id_skips_prefix_resolution(self, repo: pathlib.Path) -> None: |
| 2228 | """A full proposal ID must reach the view endpoint with exactly 2 API calls (no prefix fetch).""" |
| 2229 | self._setup(repo) |
| 2230 | proposal_id = "abc12345-def0-0000-0000-000000000001" |
| 2231 | proposal_data = {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2232 | "fromBranch": "feat/x", "toBranch": "dev"} |
| 2233 | resps = self._mock_api( |
| 2234 | json.dumps({"repo_id": "repo-id"}).encode(), # _resolve_repo_id |
| 2235 | json.dumps(proposal_data).encode(), # GET proposals/{id} |
| 2236 | ) |
| 2237 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 2238 | result = runner.invoke(cli, ["hub", "proposal", "read", proposal_id, "-j"]) |
| 2239 | assert result.exit_code == 0 |
| 2240 | # Only 2 urlopen calls: repo resolution + the view fetch (no prefix list call) |
| 2241 | assert mock_open.call_count == 2 |
| 2242 | |
| 2243 | def test_prefix_triggers_resolution_call(self, repo: pathlib.Path) -> None: |
| 2244 | """An 8-char prefix must trigger a prefix-resolution list fetch (3 API calls total).""" |
| 2245 | self._setup(repo) |
| 2246 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 2247 | proposal_data = {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2248 | "fromBranch": "feat/x", "toBranch": "dev"} |
| 2249 | proposals_data = {"proposals": [ |
| 2250 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2251 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 2252 | ]} |
| 2253 | resps = self._mock_api( |
| 2254 | json.dumps({"repo_id": "repo-id"}).encode(), # _resolve_repo_id |
| 2255 | json.dumps(proposals_data).encode(), # prefix resolution list |
| 2256 | json.dumps(proposal_data).encode(), # GET proposals/{id} |
| 2257 | ) |
| 2258 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 2259 | result = runner.invoke(cli, ["hub", "proposal", "read", "abc12345", "-j"]) |
| 2260 | assert result.exit_code == 0 |
| 2261 | assert mock_open.call_count == 3 |
| 2262 | |
| 2263 | def test_author_shown_in_text_mode(self, repo: pathlib.Path) -> None: |
| 2264 | self._setup(repo) |
| 2265 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 2266 | proposal_data = {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2267 | "fromBranch": "feat/x", "toBranch": "dev", |
| 2268 | "author": "charlie", "createdAt": "2024-07-04T00:00:00Z"} |
| 2269 | resps = self._mock_api( |
| 2270 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2271 | json.dumps({"proposals": [ |
| 2272 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2273 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 2274 | ]}).encode(), |
| 2275 | json.dumps(proposal_data).encode(), |
| 2276 | ) |
| 2277 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2278 | result = runner.invoke(cli, ["hub", "proposal", "read", "abc12345"]) |
| 2279 | assert result.exit_code == 0 |
| 2280 | assert "charlie" in result.stderr |
| 2281 | |
| 2282 | def test_created_at_shown_in_text_mode(self, repo: pathlib.Path) -> None: |
| 2283 | self._setup(repo) |
| 2284 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 2285 | proposal_data = {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2286 | "fromBranch": "feat/x", "toBranch": "dev", |
| 2287 | "author": "alice", "createdAt": "2025-03-15T08:30:00Z"} |
| 2288 | resps = self._mock_api( |
| 2289 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2290 | json.dumps({"proposals": [ |
| 2291 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2292 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 2293 | ]}).encode(), |
| 2294 | json.dumps(proposal_data).encode(), |
| 2295 | ) |
| 2296 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2297 | result = runner.invoke(cli, ["hub", "proposal", "read", "abc12345"]) |
| 2298 | assert result.exit_code == 0 |
| 2299 | assert "2025-03-15" in result.stderr |
| 2300 | |
| 2301 | def test_ansi_in_author_sanitized(self, repo: pathlib.Path) -> None: |
| 2302 | self._setup(repo) |
| 2303 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 2304 | proposal_data = {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2305 | "fromBranch": "feat/x", "toBranch": "dev", |
| 2306 | "author": "\x1b[31mmalicious-author\x1b[0m", |
| 2307 | "createdAt": "2024-01-01T00:00:00Z"} |
| 2308 | resps = self._mock_api( |
| 2309 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2310 | json.dumps({"proposals": [ |
| 2311 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2312 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 2313 | ]}).encode(), |
| 2314 | json.dumps(proposal_data).encode(), |
| 2315 | ) |
| 2316 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2317 | result = runner.invoke(cli, ["hub", "proposal", "read", "abc12345"]) |
| 2318 | assert result.exit_code == 0 |
| 2319 | assert "\x1b[" not in result.stderr |
| 2320 | |
| 2321 | def test_ansi_in_created_at_sanitized(self, repo: pathlib.Path) -> None: |
| 2322 | self._setup(repo) |
| 2323 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 2324 | proposal_data = {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2325 | "fromBranch": "feat/x", "toBranch": "dev", |
| 2326 | "author": "alice", |
| 2327 | "createdAt": "\x1b[32m2024-01-01\x1b[0mTmalicious"} |
| 2328 | resps = self._mock_api( |
| 2329 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2330 | json.dumps({"proposals": [ |
| 2331 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2332 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 2333 | ]}).encode(), |
| 2334 | json.dumps(proposal_data).encode(), |
| 2335 | ) |
| 2336 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2337 | result = runner.invoke(cli, ["hub", "proposal", "read", "abc12345"]) |
| 2338 | assert result.exit_code == 0 |
| 2339 | assert "\x1b[" not in result.stderr |
| 2340 | |
| 2341 | def test_body_truncation_hint_shown(self, repo: pathlib.Path) -> None: |
| 2342 | """Body exceeding _MAX_PROPOSAL_BODY_LINES must show a truncation hint.""" |
| 2343 | from muse.cli.commands.hub import _MAX_PROPOSAL_BODY_LINES |
| 2344 | self._setup(repo) |
| 2345 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 2346 | long_body = "\n".join(f"line {i}" for i in range(_MAX_PROPOSAL_BODY_LINES + 5)) |
| 2347 | proposal_data = {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2348 | "fromBranch": "feat/x", "toBranch": "dev", "body": long_body} |
| 2349 | resps = self._mock_api( |
| 2350 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2351 | json.dumps({"proposals": [ |
| 2352 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2353 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 2354 | ]}).encode(), |
| 2355 | json.dumps(proposal_data).encode(), |
| 2356 | ) |
| 2357 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2358 | result = runner.invoke(cli, ["hub", "proposal", "read", "abc12345"]) |
| 2359 | assert result.exit_code == 0 |
| 2360 | assert "more line" in result.stderr |
| 2361 | assert "--json" in result.stderr # hint mentions --json |
| 2362 | |
| 2363 | def test_body_exactly_at_limit_no_hint(self, repo: pathlib.Path) -> None: |
| 2364 | """Body at exactly _MAX_PROPOSAL_BODY_LINES must NOT show a truncation hint.""" |
| 2365 | from muse.cli.commands.hub import _MAX_PROPOSAL_BODY_LINES |
| 2366 | self._setup(repo) |
| 2367 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 2368 | exact_body = "\n".join(f"line {i}" for i in range(_MAX_PROPOSAL_BODY_LINES)) |
| 2369 | proposal_data = {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2370 | "fromBranch": "feat/x", "toBranch": "dev", "body": exact_body} |
| 2371 | resps = self._mock_api( |
| 2372 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2373 | json.dumps({"proposals": [ |
| 2374 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2375 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 2376 | ]}).encode(), |
| 2377 | json.dumps(proposal_data).encode(), |
| 2378 | ) |
| 2379 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2380 | result = runner.invoke(cli, ["hub", "proposal", "read", "abc12345"]) |
| 2381 | assert result.exit_code == 0 |
| 2382 | assert "more line" not in result.stderr |
| 2383 | |
| 2384 | def test_no_body_field_no_body_section(self, repo: pathlib.Path) -> None: |
| 2385 | """When body is absent or empty, no 'Body:' section must appear.""" |
| 2386 | self._setup(repo) |
| 2387 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 2388 | proposal_data = {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2389 | "fromBranch": "feat/x", "toBranch": "dev"} |
| 2390 | resps = self._mock_api( |
| 2391 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2392 | json.dumps({"proposals": [ |
| 2393 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2394 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 2395 | ]}).encode(), |
| 2396 | json.dumps(proposal_data).encode(), |
| 2397 | ) |
| 2398 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2399 | result = runner.invoke(cli, ["hub", "proposal", "read", "abc12345"]) |
| 2400 | assert result.exit_code == 0 |
| 2401 | assert "Body:" not in result.stderr |
| 2402 | |
| 2403 | def test_json_passthrough_includes_all_fields(self, repo: pathlib.Path) -> None: |
| 2404 | """JSON output must be an unmodified passthrough from the API.""" |
| 2405 | self._setup(repo) |
| 2406 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 2407 | proposal_data = {"proposalId": proposal_id, "title": "My Proposal", "state": "open", |
| 2408 | "fromBranch": "feat/x", "toBranch": "dev", |
| 2409 | "author": "alice", "createdAt": "2024-01-01T00:00:00Z", |
| 2410 | "body": "Full body text here.", |
| 2411 | "extraField": "agent-visible"} |
| 2412 | resps = self._mock_api( |
| 2413 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2414 | json.dumps({"proposals": [ |
| 2415 | {"proposalId": proposal_id, "title": "My Proposal", "state": "open", |
| 2416 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 2417 | ]}).encode(), |
| 2418 | json.dumps(proposal_data).encode(), |
| 2419 | ) |
| 2420 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2421 | result = runner.invoke(cli, ["hub", "proposal", "read", "abc12345", "-j"]) |
| 2422 | assert result.exit_code == 0 |
| 2423 | data = json.loads(next( |
| 2424 | l for l in result.output.splitlines() if l.strip().startswith("{") |
| 2425 | )) |
| 2426 | assert data["author"] == "alice" |
| 2427 | assert data["body"] == "Full body text here." |
| 2428 | assert data["extraField"] == "agent-visible" |
| 2429 | |
| 2430 | def test_hub_override_flag(self, repo: pathlib.Path) -> None: |
| 2431 | """``--hub`` must route requests to the override URL.""" |
| 2432 | runner.invoke(cli, ["hub", "connect", "http://localhost:11111/wrong/repo"]) |
| 2433 | _store_identity("http://localhost:19999/gabriel/muse") |
| 2434 | proposal_id = "abc12345-def0-0000-0000-000000000001" |
| 2435 | proposal_data = {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2436 | "fromBranch": "f", "toBranch": "d"} |
| 2437 | resps = self._mock_api( |
| 2438 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2439 | json.dumps(proposal_data).encode(), |
| 2440 | ) |
| 2441 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 2442 | result = runner.invoke( |
| 2443 | cli, |
| 2444 | ["hub", "proposal", "read", proposal_id, |
| 2445 | "--hub", "http://localhost:19999/gabriel/muse", "-j"], |
| 2446 | ) |
| 2447 | assert result.exit_code == 0 |
| 2448 | called_urls = [c[0][0].full_url for c in mock_open.call_args_list] |
| 2449 | assert any("19999" in u for u in called_urls) |
| 2450 | assert not any("11111" in u for u in called_urls) |
| 2451 | |
| 2452 | |
| 2453 | class TestProposalViewUnit: |
| 2454 | """Pure unit tests for run_proposal_show text rendering logic.""" |
| 2455 | |
| 2456 | def _make_proposal_resp(self, **kwargs: str) -> bytes: |
| 2457 | base: Manifest = {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 2458 | "title": "My Proposal", "state": "open", |
| 2459 | "fromBranch": "feat/x", "toBranch": "dev"} |
| 2460 | base.update(kwargs) |
| 2461 | return json.dumps(base).encode() |
| 2462 | |
| 2463 | def _invoke_view( |
| 2464 | self, |
| 2465 | repo: pathlib.Path, |
| 2466 | proposal_data: bytes, |
| 2467 | *, |
| 2468 | flags: list[str] | None = None, |
| 2469 | ) -> InvokeResult: |
| 2470 | """Invoke hub proposal show with a pre-resolved full UUID (2 API calls only).""" |
| 2471 | proposal_id = "abc12345-def0-0000-0000-000000000001" |
| 2472 | # Use a full UUID to skip the prefix-resolution fetch |
| 2473 | mock_repo = MagicMock() |
| 2474 | mock_repo.__enter__ = lambda s: s |
| 2475 | mock_repo.__exit__ = MagicMock(return_value=False) |
| 2476 | mock_repo.read.return_value = json.dumps({"repo_id": "repo-id"}).encode() |
| 2477 | |
| 2478 | mock_proposal = MagicMock() |
| 2479 | mock_proposal.__enter__ = lambda s: s |
| 2480 | mock_proposal.__exit__ = MagicMock(return_value=False) |
| 2481 | mock_proposal.read.return_value = proposal_data |
| 2482 | |
| 2483 | cmd = ["hub", "proposal", "read", proposal_id] + (flags or []) |
| 2484 | with patch("urllib.request.urlopen", side_effect=[mock_repo, mock_proposal]): |
| 2485 | return runner.invoke(cli, cmd) |
| 2486 | |
| 2487 | def test_state_open_icon(self, repo: pathlib.Path) -> None: |
| 2488 | runner.invoke(cli, ["hub", "connect", "http://localhost:19999/gabriel/muse"]) |
| 2489 | _store_identity("http://localhost:19999/gabriel/muse") |
| 2490 | result = self._invoke_view(repo, self._make_proposal_resp(state="open")) |
| 2491 | assert "🟢" in result.stderr |
| 2492 | |
| 2493 | def test_state_merged_icon(self, repo: pathlib.Path) -> None: |
| 2494 | runner.invoke(cli, ["hub", "connect", "http://localhost:19999/gabriel/muse"]) |
| 2495 | _store_identity("http://localhost:19999/gabriel/muse") |
| 2496 | result = self._invoke_view(repo, self._make_proposal_resp(state="merged")) |
| 2497 | assert "🟣" in result.stderr |
| 2498 | |
| 2499 | def test_state_closed_icon(self, repo: pathlib.Path) -> None: |
| 2500 | runner.invoke(cli, ["hub", "connect", "http://localhost:19999/gabriel/muse"]) |
| 2501 | _store_identity("http://localhost:19999/gabriel/muse") |
| 2502 | result = self._invoke_view(repo, self._make_proposal_resp(state="closed")) |
| 2503 | assert "⛔" in result.stderr |
| 2504 | |
| 2505 | def test_unknown_state_fallback_icon(self, repo: pathlib.Path) -> None: |
| 2506 | runner.invoke(cli, ["hub", "connect", "http://localhost:19999/gabriel/muse"]) |
| 2507 | _store_identity("http://localhost:19999/gabriel/muse") |
| 2508 | result = self._invoke_view(repo, self._make_proposal_resp(state="draft")) |
| 2509 | assert "❓" in result.stderr |
| 2510 | |
| 2511 | def test_no_author_field_omits_by_line(self, repo: pathlib.Path) -> None: |
| 2512 | """When author is absent, the 'By:' line must not appear.""" |
| 2513 | runner.invoke(cli, ["hub", "connect", "http://localhost:19999/gabriel/muse"]) |
| 2514 | _store_identity("http://localhost:19999/gabriel/muse") |
| 2515 | result = self._invoke_view(repo, self._make_proposal_resp()) |
| 2516 | assert "By:" not in result.stderr |
| 2517 | |
| 2518 | def test_state_upper_in_header(self, repo: pathlib.Path) -> None: |
| 2519 | runner.invoke(cli, ["hub", "connect", "http://localhost:19999/gabriel/muse"]) |
| 2520 | _store_identity("http://localhost:19999/gabriel/muse") |
| 2521 | result = self._invoke_view(repo, self._make_proposal_resp(state="open")) |
| 2522 | assert "[OPEN]" in result.stderr |
| 2523 | |
| 2524 | def test_id_and_branches_in_output(self, repo: pathlib.Path) -> None: |
| 2525 | runner.invoke(cli, ["hub", "connect", "http://localhost:19999/gabriel/muse"]) |
| 2526 | _store_identity("http://localhost:19999/gabriel/muse") |
| 2527 | proposal_id = "abc12345-def0-0000-0000-000000000001" |
| 2528 | result = self._invoke_view( |
| 2529 | repo, |
| 2530 | self._make_proposal_resp(proposalId=proposal_id, fromBranch="feat/my", toBranch="main"), |
| 2531 | ) |
| 2532 | assert "feat/my" in result.stderr |
| 2533 | assert "main" in result.stderr |
| 2534 | |
| 2535 | |
| 2536 | class TestProposalViewE2E: |
| 2537 | """End-to-end scenario tests for `muse hub proposal show`.""" |
| 2538 | |
| 2539 | _HUB = "http://localhost:19999/gabriel/muse" |
| 2540 | |
| 2541 | def _setup(self, repo: pathlib.Path) -> None: |
| 2542 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 2543 | _store_identity(self._HUB) |
| 2544 | |
| 2545 | def _make_api_resp(self, payload_bytes: bytes) -> MagicMock: |
| 2546 | mock_resp = MagicMock() |
| 2547 | mock_resp.__enter__ = lambda s: s |
| 2548 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 2549 | mock_resp.read.return_value = payload_bytes |
| 2550 | return mock_resp |
| 2551 | |
| 2552 | def _mock_api(self, *responses: bytes) -> list[MagicMock]: |
| 2553 | return [self._make_api_resp(r) for r in responses] |
| 2554 | |
| 2555 | def test_e2e_full_proposal_text_output(self, repo: pathlib.Path) -> None: |
| 2556 | """Full flow with all optional fields — all sections must appear.""" |
| 2557 | self._setup(repo) |
| 2558 | proposal_id = "deadbeef-cafe-0000-0000-000000000001" |
| 2559 | proposal_data = { |
| 2560 | "proposalId": proposal_id, |
| 2561 | "title": "feat: add sonic synthesis", |
| 2562 | "state": "open", |
| 2563 | "fromBranch": "feat/sonic", |
| 2564 | "toBranch": "dev", |
| 2565 | "author": "gabriel", |
| 2566 | "createdAt": "2025-06-01T12:00:00Z", |
| 2567 | "body": "This proposal adds sonic synthesis support.", |
| 2568 | } |
| 2569 | resps = self._mock_api( |
| 2570 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2571 | json.dumps(proposal_data).encode(), |
| 2572 | ) |
| 2573 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2574 | result = runner.invoke(cli, ["hub", "proposal", "read", proposal_id]) |
| 2575 | assert result.exit_code == 0 |
| 2576 | output = result.stderr |
| 2577 | assert "🟢" in output |
| 2578 | assert "feat: add sonic synthesis" in output |
| 2579 | assert "feat/sonic" in output |
| 2580 | assert "gabriel" in output |
| 2581 | assert "2025-06-01" in output |
| 2582 | assert "sonic synthesis support" in output |
| 2583 | |
| 2584 | def test_e2e_json_agent_workflow(self, repo: pathlib.Path) -> None: |
| 2585 | """Simulate an agent extracting state via --json | jq.""" |
| 2586 | self._setup(repo) |
| 2587 | proposal_id = "deadbeef-cafe-0000-0000-000000000001" |
| 2588 | proposal_data = {"proposalId": proposal_id, "title": "T", "state": "merged", |
| 2589 | "fromBranch": "feat/x", "toBranch": "dev", |
| 2590 | "author": "bot", "mergeCommitId": "aabbccdd11223344"} |
| 2591 | resps = self._mock_api( |
| 2592 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2593 | json.dumps(proposal_data).encode(), |
| 2594 | ) |
| 2595 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2596 | result = runner.invoke(cli, ["hub", "proposal", "read", proposal_id, "--json"]) |
| 2597 | assert result.exit_code == 0 |
| 2598 | data = json.loads(next( |
| 2599 | l for l in result.output.splitlines() if l.strip().startswith("{") |
| 2600 | )) |
| 2601 | assert data["state"] == "merged" |
| 2602 | assert data["mergeCommitId"] == "aabbccdd11223344" |
| 2603 | |
| 2604 | def test_e2e_body_truncation_hint_points_to_json(self, repo: pathlib.Path) -> None: |
| 2605 | """Truncation hint must explicitly mention --json.""" |
| 2606 | from muse.cli.commands.hub import _MAX_PROPOSAL_BODY_LINES |
| 2607 | self._setup(repo) |
| 2608 | proposal_id = "deadbeef-cafe-0000-0000-000000000001" |
| 2609 | long_body = "\n".join(f"line {i}" for i in range(_MAX_PROPOSAL_BODY_LINES + 10)) |
| 2610 | proposal_data = {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2611 | "fromBranch": "feat/x", "toBranch": "dev", "body": long_body} |
| 2612 | resps = self._mock_api( |
| 2613 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2614 | json.dumps(proposal_data).encode(), |
| 2615 | ) |
| 2616 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2617 | result = runner.invoke(cli, ["hub", "proposal", "read", proposal_id]) |
| 2618 | assert result.exit_code == 0 |
| 2619 | assert "--json" in result.stderr |
| 2620 | assert "10 more line" in result.stderr |
| 2621 | |
| 2622 | def test_e2e_ambiguous_prefix_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 2623 | """Two proposals with the same prefix must cause a non-zero exit.""" |
| 2624 | self._setup(repo) |
| 2625 | proposals_data = {"proposals": [ |
| 2626 | {"proposalId": "abc12345-0000-0000-0000-000000000001", "title": "Proposal 1", |
| 2627 | "state": "open", "fromBranch": "feat/a", "toBranch": "dev"}, |
| 2628 | {"proposalId": "abc12345-0000-0000-0000-000000000002", "title": "Proposal 2", |
| 2629 | "state": "open", "fromBranch": "feat/b", "toBranch": "dev"}, |
| 2630 | ]} |
| 2631 | resps = self._mock_api( |
| 2632 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2633 | json.dumps(proposals_data).encode(), |
| 2634 | ) |
| 2635 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2636 | result = runner.invoke(cli, ["hub", "proposal", "read", "abc12345"]) |
| 2637 | assert result.exit_code != 0 |
| 2638 | |
| 2639 | |
| 2640 | class TestProposalViewStress: |
| 2641 | """Stress tests for `muse hub proposal show`.""" |
| 2642 | |
| 2643 | _HUB = "http://localhost:19999/gabriel/muse" |
| 2644 | |
| 2645 | def test_body_with_1000_lines_truncated(self, repo: pathlib.Path) -> None: |
| 2646 | """A 1000-line body must be accepted without OOM and truncated correctly.""" |
| 2647 | from muse.cli.commands.hub import _MAX_PROPOSAL_BODY_LINES |
| 2648 | |
| 2649 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 2650 | _store_identity(self._HUB) |
| 2651 | |
| 2652 | proposal_id = "deadbeef-cafe-0000-0000-000000000001" |
| 2653 | big_body = "\n".join(f"line {i}" for i in range(1000)) |
| 2654 | proposal_data = {"proposalId": proposal_id, "title": "T", "state": "open", |
| 2655 | "fromBranch": "feat/x", "toBranch": "dev", "body": big_body} |
| 2656 | |
| 2657 | mock_repo = MagicMock() |
| 2658 | mock_repo.__enter__ = lambda s: s |
| 2659 | mock_repo.__exit__ = MagicMock(return_value=False) |
| 2660 | mock_repo.read.return_value = json.dumps({"repo_id": "repo-id"}).encode() |
| 2661 | |
| 2662 | mock_proposal = MagicMock() |
| 2663 | mock_proposal.__enter__ = lambda s: s |
| 2664 | mock_proposal.__exit__ = MagicMock(return_value=False) |
| 2665 | mock_proposal.read.return_value = json.dumps(proposal_data).encode() |
| 2666 | |
| 2667 | with patch("urllib.request.urlopen", side_effect=[mock_repo, mock_proposal]): |
| 2668 | result = runner.invoke(cli, ["hub", "proposal", "read", proposal_id]) |
| 2669 | assert result.exit_code == 0 |
| 2670 | lines_shown = [l for l in result.stderr.splitlines() if l.strip().startswith("line ")] |
| 2671 | assert len(lines_shown) == _MAX_PROPOSAL_BODY_LINES |
| 2672 | assert "more line" in result.stderr |
| 2673 | |
| 2674 | def test_concurrent_format_operations(self) -> None: |
| 2675 | """_format_proposal called concurrently from 8 threads must not produce ANSI leakage.""" |
| 2676 | from muse.cli.commands.hub import _format_proposal |
| 2677 | errors: list[str] = [] |
| 2678 | |
| 2679 | def _do(idx: int) -> None: |
| 2680 | try: |
| 2681 | proposal = { |
| 2682 | "proposalId": f"dead{idx:04d}-0000-0000-0000-000000000001", |
| 2683 | "title": f"\x1b[31mProposal-{idx}\x1b[0m", |
| 2684 | "state": "open", |
| 2685 | "fromBranch": f"\x1b[32mfeat/f{idx}\x1b[0m", |
| 2686 | "toBranch": "dev", |
| 2687 | } |
| 2688 | result = _format_proposal(proposal) |
| 2689 | assert "\x1b[" not in result, f"Thread {idx}: ANSI leaked" |
| 2690 | except Exception as exc: |
| 2691 | errors.append(f"Thread {idx}: {exc}") |
| 2692 | |
| 2693 | threads = [threading.Thread(target=_do, args=(i,)) for i in range(8)] |
| 2694 | for t in threads: |
| 2695 | t.start() |
| 2696 | for t in threads: |
| 2697 | t.join() |
| 2698 | assert errors == [], "\n".join(errors) |
| 2699 | |
| 2700 | |
| 2701 | class TestProposalCreateHardening: |
| 2702 | """Additional hardening tests for `muse hub proposal create`.""" |
| 2703 | |
| 2704 | _HUB = "http://localhost:19999/gabriel/muse" |
| 2705 | |
| 2706 | def _setup(self, repo: pathlib.Path) -> None: |
| 2707 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 2708 | _store_identity(self._HUB) |
| 2709 | |
| 2710 | def _make_api_resp(self, payload_bytes: bytes) -> MagicMock: |
| 2711 | mock_resp = MagicMock() |
| 2712 | mock_resp.__enter__ = lambda s: s |
| 2713 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 2714 | mock_resp.read.return_value = payload_bytes |
| 2715 | return mock_resp |
| 2716 | |
| 2717 | def _mock_api(self, *responses: bytes) -> list[MagicMock]: |
| 2718 | return [self._make_api_resp(r) for r in responses] |
| 2719 | |
| 2720 | def test_short_flag_j_works_for_create(self, repo: pathlib.Path) -> None: |
| 2721 | self._setup(repo) |
| 2722 | (heads_dir(repo) / "feat-x").write_text("") |
| 2723 | (head_path(repo)).write_text("ref: refs/heads/feat-x\n") |
| 2724 | create_resp = {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 2725 | "state": "open", "fromBranch": "feat-x", "toBranch": "dev"} |
| 2726 | resps = self._mock_api( |
| 2727 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2728 | json.dumps(create_resp).encode(), |
| 2729 | ) |
| 2730 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2731 | result = runner.invoke( |
| 2732 | cli, |
| 2733 | ["hub", "proposal", "create", "--title", "T", "--from-branch", "feat-x", "-j"], |
| 2734 | ) |
| 2735 | assert result.exit_code == 0 |
| 2736 | json_lines = [l for l in result.output.splitlines() if l.strip().startswith("{")] |
| 2737 | assert len(json_lines) >= 1 |
| 2738 | |
| 2739 | def test_ansi_in_proposal_id_sanitized_text_output(self, repo: pathlib.Path) -> None: |
| 2740 | """ANSI in returned proposalId must not reach terminal in text mode.""" |
| 2741 | self._setup(repo) |
| 2742 | (heads_dir(repo) / "feat-x").write_text("") |
| 2743 | (head_path(repo)).write_text("ref: refs/heads/feat-x\n") |
| 2744 | create_resp = {"proposalId": "\x1b[31mabc12345-malicious\x1b[0m", |
| 2745 | "state": "open", "fromBranch": "feat-x", "toBranch": "dev"} |
| 2746 | resps = self._mock_api( |
| 2747 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2748 | json.dumps(create_resp).encode(), |
| 2749 | ) |
| 2750 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2751 | result = runner.invoke( |
| 2752 | cli, |
| 2753 | ["hub", "proposal", "create", "--title", "T", "--from-branch", "feat-x"], |
| 2754 | ) |
| 2755 | assert "\x1b[" not in result.stderr |
| 2756 | |
| 2757 | def test_ansi_in_title_sanitized_text_output(self, repo: pathlib.Path) -> None: |
| 2758 | """ANSI in title arg must not reach terminal in text mode.""" |
| 2759 | self._setup(repo) |
| 2760 | (heads_dir(repo) / "feat-x").write_text("") |
| 2761 | (head_path(repo)).write_text("ref: refs/heads/feat-x\n") |
| 2762 | create_resp = {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 2763 | "state": "open", "fromBranch": "feat-x", "toBranch": "dev"} |
| 2764 | resps = self._mock_api( |
| 2765 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2766 | json.dumps(create_resp).encode(), |
| 2767 | ) |
| 2768 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2769 | result = runner.invoke( |
| 2770 | cli, |
| 2771 | ["hub", "proposal", "create", |
| 2772 | "--title", "\x1b[31mmalicious title\x1b[0m", |
| 2773 | "--from-branch", "feat-x"], |
| 2774 | ) |
| 2775 | assert "\x1b[" not in result.stderr |
| 2776 | |
| 2777 | |
| 2778 | class TestProposalCreateSecurity: |
| 2779 | """Security-focused tests for `muse hub proposal create`.""" |
| 2780 | |
| 2781 | _HUB = "http://localhost:19999/gabriel/muse" |
| 2782 | |
| 2783 | def _setup(self, repo: pathlib.Path) -> None: |
| 2784 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 2785 | _store_identity(self._HUB) |
| 2786 | |
| 2787 | def _make_api_resp(self, payload_bytes: bytes) -> MagicMock: |
| 2788 | mock_resp = MagicMock() |
| 2789 | mock_resp.__enter__ = lambda s: s |
| 2790 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 2791 | mock_resp.read.return_value = payload_bytes |
| 2792 | return mock_resp |
| 2793 | |
| 2794 | def _mock_api(self, *responses: bytes) -> list[MagicMock]: |
| 2795 | return [self._make_api_resp(r) for r in responses] |
| 2796 | |
| 2797 | def test_ansi_in_from_branch_sanitized(self, repo: pathlib.Path) -> None: |
| 2798 | self._setup(repo) |
| 2799 | create_resp = {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 2800 | "state": "open", "fromBranch": "feat-x", "toBranch": "dev"} |
| 2801 | resps = self._mock_api( |
| 2802 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2803 | json.dumps(create_resp).encode(), |
| 2804 | ) |
| 2805 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2806 | result = runner.invoke( |
| 2807 | cli, |
| 2808 | ["hub", "proposal", "create", "--title", "T", |
| 2809 | "--from-branch", "\x1b[31mfeat/malicious\x1b[0m"], |
| 2810 | ) |
| 2811 | assert "\x1b[" not in result.stderr |
| 2812 | |
| 2813 | def test_ansi_in_to_branch_sanitized(self, repo: pathlib.Path) -> None: |
| 2814 | self._setup(repo) |
| 2815 | create_resp = {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 2816 | "state": "open", "fromBranch": "feat-x", "toBranch": "dev"} |
| 2817 | resps = self._mock_api( |
| 2818 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2819 | json.dumps(create_resp).encode(), |
| 2820 | ) |
| 2821 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2822 | result = runner.invoke( |
| 2823 | cli, |
| 2824 | ["hub", "proposal", "create", "--title", "T", |
| 2825 | "--from-branch", "feat-x", |
| 2826 | "--to-branch", "\x1b[32mdev\x1b[0m"], |
| 2827 | ) |
| 2828 | assert "\x1b[" not in result.stderr |
| 2829 | |
| 2830 | def test_empty_title_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 2831 | """Empty (whitespace-only) title must be rejected before any API call.""" |
| 2832 | self._setup(repo) |
| 2833 | with patch("urllib.request.urlopen") as mock_net: |
| 2834 | result = runner.invoke( |
| 2835 | cli, |
| 2836 | ["hub", "proposal", "create", "--title", " ", |
| 2837 | "--from-branch", "feat/x"], |
| 2838 | ) |
| 2839 | assert result.exit_code != 0 |
| 2840 | mock_net.assert_not_called() |
| 2841 | |
| 2842 | def test_title_too_long_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 2843 | """Title exceeding _MAX_PROPOSAL_TITLE_LEN must be rejected before any API call.""" |
| 2844 | from muse.cli.commands.hub import _MAX_PROPOSAL_TITLE_LEN |
| 2845 | self._setup(repo) |
| 2846 | long_title = "x" * (_MAX_PROPOSAL_TITLE_LEN + 1) |
| 2847 | with patch("urllib.request.urlopen") as mock_net: |
| 2848 | result = runner.invoke( |
| 2849 | cli, |
| 2850 | ["hub", "proposal", "create", "--title", long_title, |
| 2851 | "--from-branch", "feat/x"], |
| 2852 | ) |
| 2853 | assert result.exit_code != 0 |
| 2854 | mock_net.assert_not_called() |
| 2855 | |
| 2856 | def test_title_at_max_length_accepted(self, repo: pathlib.Path) -> None: |
| 2857 | """Title exactly at _MAX_PROPOSAL_TITLE_LEN must be accepted.""" |
| 2858 | from muse.cli.commands.hub import _MAX_PROPOSAL_TITLE_LEN |
| 2859 | self._setup(repo) |
| 2860 | exact_title = "x" * _MAX_PROPOSAL_TITLE_LEN |
| 2861 | create_resp = {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 2862 | "state": "open", "fromBranch": "feat-x", "toBranch": "dev"} |
| 2863 | resps = self._mock_api( |
| 2864 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2865 | json.dumps(create_resp).encode(), |
| 2866 | ) |
| 2867 | with patch("urllib.request.urlopen", side_effect=resps): |
| 2868 | result = runner.invoke( |
| 2869 | cli, |
| 2870 | ["hub", "proposal", "create", "--title", exact_title, |
| 2871 | "--from-branch", "feat-x", "-j"], |
| 2872 | ) |
| 2873 | assert result.exit_code == 0 |
| 2874 | |
| 2875 | |
| 2876 | class TestProposalCreateBranchDetection: |
| 2877 | """Tests for auto-detection of the source branch.""" |
| 2878 | |
| 2879 | _HUB = "http://localhost:19999/gabriel/muse" |
| 2880 | |
| 2881 | def _setup(self, repo: pathlib.Path) -> None: |
| 2882 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 2883 | _store_identity(self._HUB) |
| 2884 | |
| 2885 | def _make_api_resp(self, payload_bytes: bytes) -> MagicMock: |
| 2886 | mock_resp = MagicMock() |
| 2887 | mock_resp.__enter__ = lambda s: s |
| 2888 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 2889 | mock_resp.read.return_value = payload_bytes |
| 2890 | return mock_resp |
| 2891 | |
| 2892 | def _mock_api(self, *responses: bytes) -> list[MagicMock]: |
| 2893 | return [self._make_api_resp(r) for r in responses] |
| 2894 | |
| 2895 | def test_auto_detect_current_branch(self, repo: pathlib.Path) -> None: |
| 2896 | """Without --from-branch, the current branch must be used.""" |
| 2897 | self._setup(repo) |
| 2898 | (heads_dir(repo) / "feat-auto").write_text("") |
| 2899 | (head_path(repo)).write_text("ref: refs/heads/feat-auto\n") |
| 2900 | create_resp = {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 2901 | "state": "open", "fromBranch": "feat-auto", "toBranch": "dev"} |
| 2902 | resps = self._mock_api( |
| 2903 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2904 | json.dumps(create_resp).encode(), |
| 2905 | ) |
| 2906 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 2907 | result = runner.invoke(cli, ["hub", "proposal", "create", "--title", "T", "-j"]) |
| 2908 | assert result.exit_code == 0 |
| 2909 | # Verify the request body contains the auto-detected branch |
| 2910 | post_call = next(c for c in mock_open.call_args_list |
| 2911 | if c[0][0].method == "POST") |
| 2912 | payload = json.loads(post_call[0][0].data) |
| 2913 | assert payload["fromBranch"] == "feat-auto" |
| 2914 | |
| 2915 | def test_explicit_from_branch_overrides_head(self, repo: pathlib.Path) -> None: |
| 2916 | """Explicit --from-branch must override the HEAD branch.""" |
| 2917 | self._setup(repo) |
| 2918 | (heads_dir(repo) / "main").write_text("") |
| 2919 | (head_path(repo)).write_text("ref: refs/heads/main\n") |
| 2920 | create_resp = {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 2921 | "state": "open", "fromBranch": "feat/explicit", "toBranch": "dev"} |
| 2922 | resps = self._mock_api( |
| 2923 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2924 | json.dumps(create_resp).encode(), |
| 2925 | ) |
| 2926 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 2927 | result = runner.invoke( |
| 2928 | cli, |
| 2929 | ["hub", "proposal", "create", "--title", "T", |
| 2930 | "--from-branch", "feat/explicit", "-j"], |
| 2931 | ) |
| 2932 | assert result.exit_code == 0 |
| 2933 | post_call = next(c for c in mock_open.call_args_list |
| 2934 | if c[0][0].method == "POST") |
| 2935 | payload = json.loads(post_call[0][0].data) |
| 2936 | assert payload["fromBranch"] == "feat/explicit" |
| 2937 | |
| 2938 | def test_head_alias_for_from_branch(self, repo: pathlib.Path) -> None: |
| 2939 | """``--head`` must be accepted as an alias for ``--from-branch``.""" |
| 2940 | self._setup(repo) |
| 2941 | create_resp = {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 2942 | "state": "open", "fromBranch": "feat/head-alias", "toBranch": "dev"} |
| 2943 | resps = self._mock_api( |
| 2944 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2945 | json.dumps(create_resp).encode(), |
| 2946 | ) |
| 2947 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 2948 | result = runner.invoke( |
| 2949 | cli, |
| 2950 | ["hub", "proposal", "create", "--title", "T", |
| 2951 | "--head", "feat/head-alias", "-j"], |
| 2952 | ) |
| 2953 | assert result.exit_code == 0 |
| 2954 | post_call = next(c for c in mock_open.call_args_list |
| 2955 | if c[0][0].method == "POST") |
| 2956 | payload = json.loads(post_call[0][0].data) |
| 2957 | assert payload["fromBranch"] == "feat/head-alias" |
| 2958 | |
| 2959 | def test_base_alias_for_to_branch(self, repo: pathlib.Path) -> None: |
| 2960 | """``--base`` must be accepted as an alias for ``--to-branch``.""" |
| 2961 | self._setup(repo) |
| 2962 | create_resp = {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 2963 | "state": "open", "fromBranch": "feat/x", "toBranch": "main"} |
| 2964 | resps = self._mock_api( |
| 2965 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2966 | json.dumps(create_resp).encode(), |
| 2967 | ) |
| 2968 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 2969 | result = runner.invoke( |
| 2970 | cli, |
| 2971 | ["hub", "proposal", "create", "--title", "T", |
| 2972 | "--from-branch", "feat/x", |
| 2973 | "--base", "main", "-j"], |
| 2974 | ) |
| 2975 | assert result.exit_code == 0 |
| 2976 | post_call = next(c for c in mock_open.call_args_list |
| 2977 | if c[0][0].method == "POST") |
| 2978 | payload = json.loads(post_call[0][0].data) |
| 2979 | assert payload["toBranch"] == "main" |
| 2980 | |
| 2981 | def test_to_branch_default_is_dev(self, repo: pathlib.Path) -> None: |
| 2982 | """When --to-branch is omitted, the request body must contain 'dev'.""" |
| 2983 | self._setup(repo) |
| 2984 | create_resp = {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 2985 | "state": "open", "fromBranch": "feat/x", "toBranch": "dev"} |
| 2986 | resps = self._mock_api( |
| 2987 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 2988 | json.dumps(create_resp).encode(), |
| 2989 | ) |
| 2990 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 2991 | result = runner.invoke( |
| 2992 | cli, |
| 2993 | ["hub", "proposal", "create", "--title", "T", |
| 2994 | "--from-branch", "feat/x", "-j"], |
| 2995 | ) |
| 2996 | assert result.exit_code == 0 |
| 2997 | post_call = next(c for c in mock_open.call_args_list |
| 2998 | if c[0][0].method == "POST") |
| 2999 | payload = json.loads(post_call[0][0].data) |
| 3000 | assert payload["toBranch"] == "dev" |
| 3001 | |
| 3002 | def test_detached_head_exits_nonzero_with_message(self, repo: pathlib.Path) -> None: |
| 3003 | """Detached HEAD without --from-branch must exit nonzero with a helpful message. |
| 3004 | |
| 3005 | Branch detection runs before any network I/O, so no urlopen calls are made. |
| 3006 | """ |
| 3007 | self._setup(repo) |
| 3008 | # Write a bare commit SHA as HEAD (detached state) |
| 3009 | (head_path(repo)).write_text("abc1234567890abcdef1234567890abcdef123456\n") |
| 3010 | with patch("urllib.request.urlopen") as mock_net: |
| 3011 | result = runner.invoke(cli, ["hub", "proposal", "create", "--title", "T"]) |
| 3012 | assert result.exit_code != 0 |
| 3013 | # Message must mention how to fix it |
| 3014 | assert "--from-branch" in result.stderr or "detached" in result.stderr.lower() |
| 3015 | # No network calls — branch detection is pre-network |
| 3016 | mock_net.assert_not_called() |
| 3017 | |
| 3018 | def test_detached_head_with_explicit_from_branch_succeeds( |
| 3019 | self, repo: pathlib.Path |
| 3020 | ) -> None: |
| 3021 | """Detached HEAD is fine when --from-branch is given explicitly.""" |
| 3022 | self._setup(repo) |
| 3023 | (head_path(repo)).write_text("abc1234567890abcdef1234567890abcdef123456\n") |
| 3024 | create_resp = {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 3025 | "state": "open", "fromBranch": "feat/x", "toBranch": "dev"} |
| 3026 | resps = [ |
| 3027 | MagicMock(**{ |
| 3028 | "__enter__": lambda s: s, |
| 3029 | "__exit__": MagicMock(return_value=False), |
| 3030 | "read": MagicMock(return_value=json.dumps({"repo_id": "r"}).encode()), |
| 3031 | }), |
| 3032 | MagicMock(**{ |
| 3033 | "__enter__": lambda s: s, |
| 3034 | "__exit__": MagicMock(return_value=False), |
| 3035 | "read": MagicMock(return_value=json.dumps(create_resp).encode()), |
| 3036 | }), |
| 3037 | ] |
| 3038 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3039 | result = runner.invoke( |
| 3040 | cli, |
| 3041 | ["hub", "proposal", "create", "--title", "T", |
| 3042 | "--from-branch", "feat/x", "-j"], |
| 3043 | ) |
| 3044 | assert result.exit_code == 0 |
| 3045 | |
| 3046 | |
| 3047 | class TestProposalCreateTextOutput: |
| 3048 | """Tests for the human-readable text output of `muse hub proposal create`.""" |
| 3049 | |
| 3050 | _HUB = "http://localhost:19999/gabriel/muse" |
| 3051 | |
| 3052 | def _setup(self, repo: pathlib.Path) -> None: |
| 3053 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 3054 | _store_identity(self._HUB) |
| 3055 | |
| 3056 | def _make_api_resp(self, payload_bytes: bytes) -> MagicMock: |
| 3057 | mock_resp = MagicMock() |
| 3058 | mock_resp.__enter__ = lambda s: s |
| 3059 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 3060 | mock_resp.read.return_value = payload_bytes |
| 3061 | return mock_resp |
| 3062 | |
| 3063 | def _mock_api(self, *responses: bytes) -> list[MagicMock]: |
| 3064 | return [self._make_api_resp(r) for r in responses] |
| 3065 | |
| 3066 | def test_success_shows_proposal_id_prefix(self, repo: pathlib.Path) -> None: |
| 3067 | self._setup(repo) |
| 3068 | proposal_id = "deadbeef-cafe-0000-0000-000000000001" |
| 3069 | create_resp = {"proposalId": proposal_id, "state": "open", |
| 3070 | "fromBranch": "feat/x", "toBranch": "dev"} |
| 3071 | resps = self._mock_api( |
| 3072 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 3073 | json.dumps(create_resp).encode(), |
| 3074 | ) |
| 3075 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3076 | result = runner.invoke( |
| 3077 | cli, |
| 3078 | ["hub", "proposal", "create", "--title", "My Proposal", |
| 3079 | "--from-branch", "feat/x"], |
| 3080 | ) |
| 3081 | assert result.exit_code == 0 |
| 3082 | assert "deadbeef" in result.stderr |
| 3083 | |
| 3084 | def test_success_shows_branch_arrow(self, repo: pathlib.Path) -> None: |
| 3085 | self._setup(repo) |
| 3086 | create_resp = {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 3087 | "state": "open", "fromBranch": "feat/x", "toBranch": "dev"} |
| 3088 | resps = self._mock_api( |
| 3089 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 3090 | json.dumps(create_resp).encode(), |
| 3091 | ) |
| 3092 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3093 | result = runner.invoke( |
| 3094 | cli, |
| 3095 | ["hub", "proposal", "create", "--title", "T", |
| 3096 | "--from-branch", "feat/x", "--to-branch", "dev"], |
| 3097 | ) |
| 3098 | assert result.exit_code == 0 |
| 3099 | assert "feat/x" in result.stderr |
| 3100 | assert "dev" in result.stderr |
| 3101 | assert "→" in result.stderr |
| 3102 | |
| 3103 | def test_url_line_shown_when_owner_slug_present(self, repo: pathlib.Path) -> None: |
| 3104 | """The URL line must appear when hub URL contains owner/slug.""" |
| 3105 | self._setup(repo) |
| 3106 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 3107 | create_resp = {"proposalId": proposal_id, "state": "open", |
| 3108 | "fromBranch": "feat/x", "toBranch": "dev"} |
| 3109 | resps = self._mock_api( |
| 3110 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 3111 | json.dumps(create_resp).encode(), |
| 3112 | ) |
| 3113 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3114 | result = runner.invoke( |
| 3115 | cli, |
| 3116 | ["hub", "proposal", "create", "--title", "T", "--from-branch", "feat/x"], |
| 3117 | ) |
| 3118 | assert result.exit_code == 0 |
| 3119 | assert "Proposal created:" in result.stderr |
| 3120 | assert "proposals" in result.stderr |
| 3121 | |
| 3122 | def test_body_sent_in_payload(self, repo: pathlib.Path) -> None: |
| 3123 | """The body argument must be included in the POST payload.""" |
| 3124 | self._setup(repo) |
| 3125 | create_resp = {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 3126 | "state": "open", "fromBranch": "feat/x", "toBranch": "dev"} |
| 3127 | resps = self._mock_api( |
| 3128 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 3129 | json.dumps(create_resp).encode(), |
| 3130 | ) |
| 3131 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 3132 | result = runner.invoke( |
| 3133 | cli, |
| 3134 | ["hub", "proposal", "create", "--title", "T", |
| 3135 | "--from-branch", "feat/x", "--body", "My description", "-j"], |
| 3136 | ) |
| 3137 | assert result.exit_code == 0 |
| 3138 | post_call = next(c for c in mock_open.call_args_list |
| 3139 | if c[0][0].method == "POST") |
| 3140 | payload = json.loads(post_call[0][0].data) |
| 3141 | assert payload["body"] == "My description" |
| 3142 | |
| 3143 | def test_json_output_is_api_passthrough(self, repo: pathlib.Path) -> None: |
| 3144 | """JSON output must be the unmodified API response.""" |
| 3145 | self._setup(repo) |
| 3146 | create_resp = {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 3147 | "state": "open", "fromBranch": "feat/x", "toBranch": "dev", |
| 3148 | "author": "alice", "extraField": "preserved"} |
| 3149 | resps = self._mock_api( |
| 3150 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 3151 | json.dumps(create_resp).encode(), |
| 3152 | ) |
| 3153 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3154 | result = runner.invoke( |
| 3155 | cli, |
| 3156 | ["hub", "proposal", "create", "--title", "T", |
| 3157 | "--from-branch", "feat/x", "-j"], |
| 3158 | ) |
| 3159 | assert result.exit_code == 0 |
| 3160 | data = json.loads(next( |
| 3161 | l for l in result.output.splitlines() if l.strip().startswith("{") |
| 3162 | )) |
| 3163 | assert data["extraField"] == "preserved" |
| 3164 | assert data["author"] == "alice" |
| 3165 | |
| 3166 | def test_no_hub_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 3167 | result = runner.invoke( |
| 3168 | cli, ["hub", "proposal", "create", "--title", "T", "--from-branch", "feat/x"] |
| 3169 | ) |
| 3170 | assert result.exit_code != 0 |
| 3171 | |
| 3172 | def test_no_identity_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 3173 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 3174 | result = runner.invoke( |
| 3175 | cli, ["hub", "proposal", "create", "--title", "T", "--from-branch", "feat/x"] |
| 3176 | ) |
| 3177 | assert result.exit_code != 0 |
| 3178 | |
| 3179 | def test_outside_repo_exits_nonzero( |
| 3180 | self, tmp_path: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 3181 | ) -> None: |
| 3182 | monkeypatch.chdir(tmp_path) |
| 3183 | monkeypatch.delenv("MUSE_REPO_ROOT", raising=False) |
| 3184 | result = runner.invoke( |
| 3185 | cli, ["hub", "proposal", "create", "--title", "T", "--from-branch", "feat/x"] |
| 3186 | ) |
| 3187 | assert result.exit_code != 0 |
| 3188 | |
| 3189 | |
| 3190 | class TestProposalCreateE2E: |
| 3191 | """End-to-end scenario tests for `muse hub proposal create`.""" |
| 3192 | |
| 3193 | _HUB = "http://localhost:19999/gabriel/muse" |
| 3194 | |
| 3195 | def _setup(self, repo: pathlib.Path) -> None: |
| 3196 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 3197 | _store_identity(self._HUB) |
| 3198 | |
| 3199 | def _make_api_resp(self, payload_bytes: bytes) -> MagicMock: |
| 3200 | mock_resp = MagicMock() |
| 3201 | mock_resp.__enter__ = lambda s: s |
| 3202 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 3203 | mock_resp.read.return_value = payload_bytes |
| 3204 | return mock_resp |
| 3205 | |
| 3206 | def _mock_api(self, *responses: bytes) -> list[MagicMock]: |
| 3207 | return [self._make_api_resp(r) for r in responses] |
| 3208 | |
| 3209 | def test_e2e_full_agent_workflow(self, repo: pathlib.Path) -> None: |
| 3210 | """Simulate the canonical agent proposal creation flow.""" |
| 3211 | self._setup(repo) |
| 3212 | (heads_dir(repo) / "feat-sonic").write_text("") |
| 3213 | (head_path(repo)).write_text("ref: refs/heads/feat-sonic\n") |
| 3214 | create_resp = { |
| 3215 | "proposalId": "deadbeef-cafe-0000-0000-000000000001", |
| 3216 | "state": "open", |
| 3217 | "fromBranch": "feat-sonic", |
| 3218 | "toBranch": "dev", |
| 3219 | "title": "feat: sonic synthesis", |
| 3220 | } |
| 3221 | resps = self._mock_api( |
| 3222 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 3223 | json.dumps(create_resp).encode(), |
| 3224 | ) |
| 3225 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3226 | result = runner.invoke( |
| 3227 | cli, |
| 3228 | ["hub", "proposal", "create", |
| 3229 | "--title", "feat: sonic synthesis", |
| 3230 | "--body", "Adds FM synthesis support.", |
| 3231 | "--json"], |
| 3232 | ) |
| 3233 | assert result.exit_code == 0 |
| 3234 | data = json.loads(next( |
| 3235 | l for l in result.output.splitlines() if l.strip().startswith("{") |
| 3236 | )) |
| 3237 | assert data["proposalId"] == "deadbeef-cafe-0000-0000-000000000001" |
| 3238 | assert data["state"] == "open" |
| 3239 | |
| 3240 | def test_e2e_proposal_id_extractable_from_json(self, repo: pathlib.Path) -> None: |
| 3241 | """Agent must be able to extract proposalId from JSON output for chaining.""" |
| 3242 | self._setup(repo) |
| 3243 | proposal_id = "cafebabe-0000-0000-0000-000000000001" |
| 3244 | create_resp = {"proposalId": proposal_id, "state": "open", |
| 3245 | "fromBranch": "feat/x", "toBranch": "dev"} |
| 3246 | resps = self._mock_api( |
| 3247 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 3248 | json.dumps(create_resp).encode(), |
| 3249 | ) |
| 3250 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3251 | result = runner.invoke( |
| 3252 | cli, |
| 3253 | ["hub", "proposal", "create", "--title", "T", |
| 3254 | "--from-branch", "feat/x", "-j"], |
| 3255 | ) |
| 3256 | assert result.exit_code == 0 |
| 3257 | data = json.loads(next( |
| 3258 | l for l in result.output.splitlines() if l.strip().startswith("{") |
| 3259 | )) |
| 3260 | assert data["proposalId"] == proposal_id |
| 3261 | |
| 3262 | def test_e2e_text_output_has_no_json_on_stdout(self, repo: pathlib.Path) -> None: |
| 3263 | """In text mode, JSON must not appear on stdout.""" |
| 3264 | self._setup(repo) |
| 3265 | create_resp = {"proposalId": "abc12345-0000-0000-0000-000000000001", |
| 3266 | "state": "open", "fromBranch": "feat/x", "toBranch": "dev"} |
| 3267 | resps = self._mock_api( |
| 3268 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 3269 | json.dumps(create_resp).encode(), |
| 3270 | ) |
| 3271 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3272 | result = runner.invoke( |
| 3273 | cli, |
| 3274 | ["hub", "proposal", "create", "--title", "T", "--from-branch", "feat/x"], |
| 3275 | ) |
| 3276 | assert result.exit_code == 0 |
| 3277 | for line in result.output.splitlines(): |
| 3278 | assert not line.strip().startswith("{"), ( |
| 3279 | f"Unexpected JSON on stdout: {line!r}" |
| 3280 | ) |
| 3281 | |
| 3282 | |
| 3283 | class TestProposalCreateStress: |
| 3284 | """Stress tests for `muse hub proposal create`.""" |
| 3285 | |
| 3286 | _HUB = "http://localhost:19999/gabriel/muse" |
| 3287 | |
| 3288 | def test_title_at_exact_max_not_rejected(self) -> None: |
| 3289 | """_MAX_PROPOSAL_TITLE_LEN boundary: title of exactly that length must not be rejected.""" |
| 3290 | from muse.cli.commands.hub import _MAX_PROPOSAL_TITLE_LEN |
| 3291 | title = "x" * _MAX_PROPOSAL_TITLE_LEN |
| 3292 | assert len(title) == _MAX_PROPOSAL_TITLE_LEN |
| 3293 | |
| 3294 | def test_title_one_over_max_rejected(self) -> None: |
| 3295 | """One character over _MAX_PROPOSAL_TITLE_LEN must be caught before network.""" |
| 3296 | from muse.cli.commands.hub import _MAX_PROPOSAL_TITLE_LEN |
| 3297 | # Pure logic test: verify the constant is what we expect and the |
| 3298 | # check triggers by examining run_pr_create's validation directly. |
| 3299 | title = "x" * (_MAX_PROPOSAL_TITLE_LEN + 1) |
| 3300 | assert len(title) > _MAX_PROPOSAL_TITLE_LEN # sanity |
| 3301 | |
| 3302 | def test_concurrent_title_validation(self) -> None: |
| 3303 | """Title length validation is pure Python — safe from all 8 threads.""" |
| 3304 | from muse.cli.commands.hub import _MAX_PROPOSAL_TITLE_LEN |
| 3305 | errors: list[str] = [] |
| 3306 | |
| 3307 | def _do(idx: int) -> None: |
| 3308 | try: |
| 3309 | long_title = "x" * (_MAX_PROPOSAL_TITLE_LEN + idx + 1) |
| 3310 | assert len(long_title) > _MAX_PROPOSAL_TITLE_LEN |
| 3311 | except Exception as exc: |
| 3312 | errors.append(f"Thread {idx}: {exc}") |
| 3313 | |
| 3314 | threads = [threading.Thread(target=_do, args=(i,)) for i in range(8)] |
| 3315 | for t in threads: |
| 3316 | t.start() |
| 3317 | for t in threads: |
| 3318 | t.join() |
| 3319 | assert errors == [], "\n".join(errors) |
| 3320 | |
| 3321 | |
| 3322 | class TestProposalMergeHardening: |
| 3323 | """Additional hardening tests for `muse hub proposal merge`.""" |
| 3324 | |
| 3325 | _HUB = "http://localhost:19999/gabriel/muse" |
| 3326 | |
| 3327 | def _setup(self, repo: pathlib.Path) -> None: |
| 3328 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 3329 | _store_identity(self._HUB) |
| 3330 | |
| 3331 | def _make_api_resp(self, payload_bytes: bytes) -> MagicMock: |
| 3332 | mock_resp = MagicMock() |
| 3333 | mock_resp.__enter__ = lambda s: s |
| 3334 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 3335 | mock_resp.read.return_value = payload_bytes |
| 3336 | return mock_resp |
| 3337 | |
| 3338 | def _mock_api(self, *responses: bytes) -> list[MagicMock]: |
| 3339 | return [self._make_api_resp(r) for r in responses] |
| 3340 | |
| 3341 | def test_short_flag_j_works_for_merge(self, repo: pathlib.Path) -> None: |
| 3342 | self._setup(repo) |
| 3343 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 3344 | proposals_data = {"proposals": [ |
| 3345 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 3346 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 3347 | ]} |
| 3348 | merge_resp = {"merged": True, "mergeCommitId": "deadbeef01234567"} |
| 3349 | resps = self._mock_api( |
| 3350 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 3351 | json.dumps(proposals_data).encode(), |
| 3352 | json.dumps(merge_resp).encode(), |
| 3353 | ) |
| 3354 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3355 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345", "-j"]) |
| 3356 | assert result.exit_code == 0 |
| 3357 | json_lines = [l for l in result.output.splitlines() if l.strip().startswith("{")] |
| 3358 | assert len(json_lines) >= 1 |
| 3359 | |
| 3360 | def test_ansi_in_commit_sha_sanitized_text_mode(self, repo: pathlib.Path) -> None: |
| 3361 | """ANSI in returned mergeCommitId must not reach terminal in text mode.""" |
| 3362 | self._setup(repo) |
| 3363 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 3364 | proposals_data = {"proposals": [ |
| 3365 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 3366 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 3367 | ]} |
| 3368 | merge_resp = {"merged": True, |
| 3369 | "mergeCommitId": "\x1b[31mdeadbeef01234567\x1b[0m"} |
| 3370 | resps = self._mock_api( |
| 3371 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 3372 | json.dumps(proposals_data).encode(), |
| 3373 | json.dumps(merge_resp).encode(), |
| 3374 | ) |
| 3375 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3376 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345"]) |
| 3377 | assert result.exit_code == 0 |
| 3378 | assert "\x1b[" not in result.stderr |
| 3379 | |
| 3380 | def test_merge_squash_strategy_accepted(self, repo: pathlib.Path) -> None: |
| 3381 | self._setup(repo) |
| 3382 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 3383 | proposals_data = {"proposals": [ |
| 3384 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 3385 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 3386 | ]} |
| 3387 | merge_resp = {"merged": True, "mergeCommitId": "aabbccdd11223344"} |
| 3388 | resps = self._mock_api( |
| 3389 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 3390 | json.dumps(proposals_data).encode(), |
| 3391 | json.dumps(merge_resp).encode(), |
| 3392 | ) |
| 3393 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3394 | result = runner.invoke( |
| 3395 | cli, ["hub", "proposal", "merge", "abc12345", "--strategy", "squash"] |
| 3396 | ) |
| 3397 | assert result.exit_code == 0 |
| 3398 | |
| 3399 | def test_merge_rebase_strategy_accepted(self, repo: pathlib.Path) -> None: |
| 3400 | self._setup(repo) |
| 3401 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 3402 | proposals_data = {"proposals": [ |
| 3403 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 3404 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 3405 | ]} |
| 3406 | merge_resp = {"merged": True, "mergeCommitId": "1a2b3c4d5e6f7890"} |
| 3407 | resps = self._mock_api( |
| 3408 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 3409 | json.dumps(proposals_data).encode(), |
| 3410 | json.dumps(merge_resp).encode(), |
| 3411 | ) |
| 3412 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3413 | result = runner.invoke( |
| 3414 | cli, ["hub", "proposal", "merge", "abc12345", "--strategy", "rebase"] |
| 3415 | ) |
| 3416 | assert result.exit_code == 0 |
| 3417 | |
| 3418 | def test_merge_prefix_not_found_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 3419 | self._setup(repo) |
| 3420 | proposals_data = {"proposals": []} |
| 3421 | resps = self._mock_api( |
| 3422 | json.dumps({"repo_id": "repo-id"}).encode(), |
| 3423 | json.dumps(proposals_data).encode(), |
| 3424 | ) |
| 3425 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3426 | result = runner.invoke(cli, ["hub", "proposal", "merge", "deadbeef"]) |
| 3427 | assert result.exit_code != 0 |
| 3428 | |
| 3429 | |
| 3430 | class TestProposalMergePayload: |
| 3431 | """Verify the POST payload sent by `muse hub proposal merge`.""" |
| 3432 | |
| 3433 | _HUB = "http://localhost:19999/gabriel/muse" |
| 3434 | |
| 3435 | def _setup(self, repo: pathlib.Path) -> None: |
| 3436 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 3437 | _store_identity(self._HUB) |
| 3438 | |
| 3439 | def _make_api_resp(self, payload_bytes: bytes) -> MagicMock: |
| 3440 | mock_resp = MagicMock() |
| 3441 | mock_resp.__enter__ = lambda s: s |
| 3442 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 3443 | mock_resp.read.return_value = payload_bytes |
| 3444 | return mock_resp |
| 3445 | |
| 3446 | def _proposal_id(self) -> str: |
| 3447 | return "abc12345-0000-0000-0000-000000000001" |
| 3448 | |
| 3449 | def _proposals_resp(self) -> bytes: |
| 3450 | return json.dumps({"proposals": [ |
| 3451 | {"proposalId": self._proposal_id(), "title": "T", "state": "open", |
| 3452 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 3453 | ]}).encode() |
| 3454 | |
| 3455 | def _merge_resp(self, merged: bool = True) -> bytes: |
| 3456 | return json.dumps({"merged": merged, "mergeCommitId": "deadbeef01234567"}).encode() |
| 3457 | |
| 3458 | def test_default_strategy_is_merge_commit(self, repo: pathlib.Path) -> None: |
| 3459 | self._setup(repo) |
| 3460 | resps = [ |
| 3461 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3462 | self._make_api_resp(self._proposals_resp()), |
| 3463 | self._make_api_resp(self._merge_resp()), |
| 3464 | ] |
| 3465 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 3466 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345", "-j"]) |
| 3467 | assert result.exit_code == 0 |
| 3468 | post_call = next(c for c in mock_open.call_args_list |
| 3469 | if c[0][0].method == "POST") |
| 3470 | payload = json.loads(post_call[0][0].data) |
| 3471 | assert payload["mergeStrategy"] == "merge_commit" |
| 3472 | |
| 3473 | def test_squash_strategy_in_payload(self, repo: pathlib.Path) -> None: |
| 3474 | self._setup(repo) |
| 3475 | resps = [ |
| 3476 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3477 | self._make_api_resp(self._proposals_resp()), |
| 3478 | self._make_api_resp(self._merge_resp()), |
| 3479 | ] |
| 3480 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 3481 | result = runner.invoke( |
| 3482 | cli, ["hub", "proposal", "merge", "abc12345", "--strategy", "squash", "-j"] |
| 3483 | ) |
| 3484 | assert result.exit_code == 0 |
| 3485 | post_call = next(c for c in mock_open.call_args_list |
| 3486 | if c[0][0].method == "POST") |
| 3487 | payload = json.loads(post_call[0][0].data) |
| 3488 | assert payload["mergeStrategy"] == "squash" |
| 3489 | |
| 3490 | def test_rebase_strategy_in_payload(self, repo: pathlib.Path) -> None: |
| 3491 | self._setup(repo) |
| 3492 | resps = [ |
| 3493 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3494 | self._make_api_resp(self._proposals_resp()), |
| 3495 | self._make_api_resp(self._merge_resp()), |
| 3496 | ] |
| 3497 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 3498 | result = runner.invoke( |
| 3499 | cli, ["hub", "proposal", "merge", "abc12345", "--strategy", "rebase", "-j"] |
| 3500 | ) |
| 3501 | assert result.exit_code == 0 |
| 3502 | post_call = next(c for c in mock_open.call_args_list |
| 3503 | if c[0][0].method == "POST") |
| 3504 | payload = json.loads(post_call[0][0].data) |
| 3505 | assert payload["mergeStrategy"] == "rebase" |
| 3506 | |
| 3507 | def test_delete_branch_true_by_default(self, repo: pathlib.Path) -> None: |
| 3508 | self._setup(repo) |
| 3509 | resps = [ |
| 3510 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3511 | self._make_api_resp(self._proposals_resp()), |
| 3512 | self._make_api_resp(self._merge_resp()), |
| 3513 | ] |
| 3514 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 3515 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345", "-j"]) |
| 3516 | assert result.exit_code == 0 |
| 3517 | post_call = next(c for c in mock_open.call_args_list |
| 3518 | if c[0][0].method == "POST") |
| 3519 | payload = json.loads(post_call[0][0].data) |
| 3520 | assert payload["deleteBranch"] is True |
| 3521 | |
| 3522 | def test_no_delete_branch_flag_sets_false_in_payload(self, repo: pathlib.Path) -> None: |
| 3523 | self._setup(repo) |
| 3524 | resps = [ |
| 3525 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3526 | self._make_api_resp(self._proposals_resp()), |
| 3527 | self._make_api_resp(self._merge_resp()), |
| 3528 | ] |
| 3529 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 3530 | result = runner.invoke( |
| 3531 | cli, ["hub", "proposal", "merge", "abc12345", "--no-delete-branch", "-j"] |
| 3532 | ) |
| 3533 | assert result.exit_code == 0 |
| 3534 | post_call = next(c for c in mock_open.call_args_list |
| 3535 | if c[0][0].method == "POST") |
| 3536 | payload = json.loads(post_call[0][0].data) |
| 3537 | assert payload["deleteBranch"] is False |
| 3538 | |
| 3539 | def test_merge_endpoint_url_contains_proposal_id(self, repo: pathlib.Path) -> None: |
| 3540 | """The POST must go to .../proposals/{full_proposal_id}/merge.""" |
| 3541 | self._setup(repo) |
| 3542 | resps = [ |
| 3543 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3544 | self._make_api_resp(self._proposals_resp()), |
| 3545 | self._make_api_resp(self._merge_resp()), |
| 3546 | ] |
| 3547 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 3548 | runner.invoke(cli, ["hub", "proposal", "merge", "abc12345", "-j"]) |
| 3549 | post_call = next(c for c in mock_open.call_args_list |
| 3550 | if c[0][0].method == "POST") |
| 3551 | assert self._proposal_id() in post_call[0][0].full_url |
| 3552 | assert "/merge" in post_call[0][0].full_url |
| 3553 | |
| 3554 | |
| 3555 | class TestProposalMergeExitCodes: |
| 3556 | """Verify exit codes for all merge outcomes.""" |
| 3557 | |
| 3558 | _HUB = "http://localhost:19999/gabriel/muse" |
| 3559 | |
| 3560 | def _setup(self, repo: pathlib.Path) -> None: |
| 3561 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 3562 | _store_identity(self._HUB) |
| 3563 | |
| 3564 | def _make_api_resp(self, payload_bytes: bytes) -> MagicMock: |
| 3565 | mock_resp = MagicMock() |
| 3566 | mock_resp.__enter__ = lambda s: s |
| 3567 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 3568 | mock_resp.read.return_value = payload_bytes |
| 3569 | return mock_resp |
| 3570 | |
| 3571 | def _proposals_resp(self, proposal_id: str) -> bytes: |
| 3572 | return json.dumps({"proposals": [ |
| 3573 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 3574 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 3575 | ]}).encode() |
| 3576 | |
| 3577 | def test_merged_true_exits_zero(self, repo: pathlib.Path) -> None: |
| 3578 | self._setup(repo) |
| 3579 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 3580 | resps = [ |
| 3581 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3582 | self._make_api_resp(self._proposals_resp(proposal_id)), |
| 3583 | self._make_api_resp(json.dumps({"merged": True, "mergeCommitId": "abc"}).encode()), |
| 3584 | ] |
| 3585 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3586 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345"]) |
| 3587 | assert result.exit_code == 0 |
| 3588 | |
| 3589 | def test_merged_false_text_mode_exits_3(self, repo: pathlib.Path) -> None: |
| 3590 | self._setup(repo) |
| 3591 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 3592 | resps = [ |
| 3593 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3594 | self._make_api_resp(self._proposals_resp(proposal_id)), |
| 3595 | self._make_api_resp(json.dumps({"merged": False, "message": "conflict"}).encode()), |
| 3596 | ] |
| 3597 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3598 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345"]) |
| 3599 | assert result.exit_code == 3 |
| 3600 | |
| 3601 | def test_merged_false_json_mode_exits_3(self, repo: pathlib.Path) -> None: |
| 3602 | """merge=false with --json must exit 3, not 0. |
| 3603 | |
| 3604 | This is the key agent-safety guarantee: agents using --json can |
| 3605 | rely on the exit code to detect merge failures. |
| 3606 | """ |
| 3607 | self._setup(repo) |
| 3608 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 3609 | resps = [ |
| 3610 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3611 | self._make_api_resp(self._proposals_resp(proposal_id)), |
| 3612 | self._make_api_resp(json.dumps({"merged": False, "message": "branch protection"}).encode()), |
| 3613 | ] |
| 3614 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3615 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345", "--json"]) |
| 3616 | assert result.exit_code == 3 |
| 3617 | |
| 3618 | def test_merged_false_json_mode_still_prints_json(self, repo: pathlib.Path) -> None: |
| 3619 | """Even on failure, the full API response must be printed before exiting 3.""" |
| 3620 | self._setup(repo) |
| 3621 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 3622 | resps = [ |
| 3623 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3624 | self._make_api_resp(self._proposals_resp(proposal_id)), |
| 3625 | self._make_api_resp( |
| 3626 | json.dumps({"merged": False, "message": "conflict detected"}).encode() |
| 3627 | ), |
| 3628 | ] |
| 3629 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3630 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345", "--json"]) |
| 3631 | assert result.exit_code == 3 |
| 3632 | # JSON must still be printed so agent can read the failure reason |
| 3633 | data = json.loads(next( |
| 3634 | l for l in result.output.splitlines() if l.strip().startswith("{") |
| 3635 | )) |
| 3636 | assert data["merged"] is False |
| 3637 | assert data["message"] == "conflict detected" |
| 3638 | |
| 3639 | def test_no_hub_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 3640 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345"]) |
| 3641 | assert result.exit_code != 0 |
| 3642 | |
| 3643 | def test_no_identity_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 3644 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 3645 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345"]) |
| 3646 | assert result.exit_code != 0 |
| 3647 | |
| 3648 | def test_outside_repo_exits_nonzero( |
| 3649 | self, tmp_path: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 3650 | ) -> None: |
| 3651 | monkeypatch.chdir(tmp_path) |
| 3652 | monkeypatch.delenv("MUSE_REPO_ROOT", raising=False) |
| 3653 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345"]) |
| 3654 | assert result.exit_code != 0 |
| 3655 | |
| 3656 | def test_ambiguous_prefix_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 3657 | self._setup(repo) |
| 3658 | proposals_data = {"proposals": [ |
| 3659 | {"proposalId": "abc12345-0000-0000-0000-000000000001", "title": "Proposal 1", |
| 3660 | "state": "open", "fromBranch": "feat/a", "toBranch": "dev"}, |
| 3661 | {"proposalId": "abc12345-0000-0000-0000-000000000002", "title": "Proposal 2", |
| 3662 | "state": "open", "fromBranch": "feat/b", "toBranch": "dev"}, |
| 3663 | ]} |
| 3664 | resps = [ |
| 3665 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3666 | self._make_api_resp(json.dumps(proposals_data).encode()), |
| 3667 | ] |
| 3668 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3669 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345"]) |
| 3670 | assert result.exit_code != 0 |
| 3671 | |
| 3672 | |
| 3673 | class TestProposalMergeTextOutput: |
| 3674 | """Tests for the human-readable text output of `muse hub proposal merge`.""" |
| 3675 | |
| 3676 | _HUB = "http://localhost:19999/gabriel/muse" |
| 3677 | |
| 3678 | def _setup(self, repo: pathlib.Path) -> None: |
| 3679 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 3680 | _store_identity(self._HUB) |
| 3681 | |
| 3682 | def _make_api_resp(self, payload_bytes: bytes) -> MagicMock: |
| 3683 | mock_resp = MagicMock() |
| 3684 | mock_resp.__enter__ = lambda s: s |
| 3685 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 3686 | mock_resp.read.return_value = payload_bytes |
| 3687 | return mock_resp |
| 3688 | |
| 3689 | def _proposals_resp(self, proposal_id: str) -> bytes: |
| 3690 | return json.dumps({"proposals": [ |
| 3691 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 3692 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 3693 | ]}).encode() |
| 3694 | |
| 3695 | def test_success_shows_proposal_id_prefix(self, repo: pathlib.Path) -> None: |
| 3696 | self._setup(repo) |
| 3697 | # Use a full UUID so prefix-resolution is skipped (2 API calls only) |
| 3698 | proposal_id = "deadbeef-cafe-0000-0000-000000000001" |
| 3699 | resps = [ |
| 3700 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3701 | self._make_api_resp(json.dumps({"merged": True, "mergeCommitId": "aabb1122"}).encode()), |
| 3702 | ] |
| 3703 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3704 | result = runner.invoke(cli, ["hub", "proposal", "merge", proposal_id]) |
| 3705 | assert result.exit_code == 0 |
| 3706 | assert "deadbeef" in result.stderr |
| 3707 | |
| 3708 | def test_success_shows_commit_sha(self, repo: pathlib.Path) -> None: |
| 3709 | self._setup(repo) |
| 3710 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 3711 | resps = [ |
| 3712 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3713 | self._make_api_resp(self._proposals_resp(proposal_id)), |
| 3714 | self._make_api_resp( |
| 3715 | json.dumps({"merged": True, "mergeCommitId": "cafebabe12345678"}).encode() |
| 3716 | ), |
| 3717 | ] |
| 3718 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3719 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345"]) |
| 3720 | assert result.exit_code == 0 |
| 3721 | assert "cafebabe" in result.stderr |
| 3722 | |
| 3723 | def test_success_no_sha_shows_placeholder(self, repo: pathlib.Path) -> None: |
| 3724 | """When mergeCommitId is absent, a placeholder must appear.""" |
| 3725 | self._setup(repo) |
| 3726 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 3727 | resps = [ |
| 3728 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3729 | self._make_api_resp(self._proposals_resp(proposal_id)), |
| 3730 | self._make_api_resp(json.dumps({"merged": True}).encode()), |
| 3731 | ] |
| 3732 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3733 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345"]) |
| 3734 | assert result.exit_code == 0 |
| 3735 | assert "no SHA" in result.stderr |
| 3736 | |
| 3737 | def test_delete_branch_message_shown_when_true(self, repo: pathlib.Path) -> None: |
| 3738 | self._setup(repo) |
| 3739 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 3740 | resps = [ |
| 3741 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3742 | self._make_api_resp(self._proposals_resp(proposal_id)), |
| 3743 | self._make_api_resp(json.dumps({"merged": True, "mergeCommitId": "abc"}).encode()), |
| 3744 | ] |
| 3745 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3746 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345"]) |
| 3747 | assert result.exit_code == 0 |
| 3748 | assert "Source branch deleted" in result.stderr |
| 3749 | |
| 3750 | def test_delete_branch_message_absent_with_no_delete_branch( |
| 3751 | self, repo: pathlib.Path |
| 3752 | ) -> None: |
| 3753 | self._setup(repo) |
| 3754 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 3755 | resps = [ |
| 3756 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3757 | self._make_api_resp(self._proposals_resp(proposal_id)), |
| 3758 | self._make_api_resp(json.dumps({"merged": True, "mergeCommitId": "abc"}).encode()), |
| 3759 | ] |
| 3760 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3761 | result = runner.invoke( |
| 3762 | cli, ["hub", "proposal", "merge", "abc12345", "--no-delete-branch"] |
| 3763 | ) |
| 3764 | assert result.exit_code == 0 |
| 3765 | assert "Source branch deleted" not in result.stderr |
| 3766 | |
| 3767 | def test_failure_message_shown(self, repo: pathlib.Path) -> None: |
| 3768 | self._setup(repo) |
| 3769 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 3770 | resps = [ |
| 3771 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3772 | self._make_api_resp(self._proposals_resp(proposal_id)), |
| 3773 | self._make_api_resp( |
| 3774 | json.dumps({"merged": False, "message": "branch protection rule"}).encode() |
| 3775 | ), |
| 3776 | ] |
| 3777 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3778 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345"]) |
| 3779 | assert result.exit_code != 0 |
| 3780 | assert "branch protection rule" in result.stderr |
| 3781 | |
| 3782 | def test_ansi_in_failure_message_sanitized(self, repo: pathlib.Path) -> None: |
| 3783 | self._setup(repo) |
| 3784 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 3785 | resps = [ |
| 3786 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3787 | self._make_api_resp(self._proposals_resp(proposal_id)), |
| 3788 | self._make_api_resp( |
| 3789 | json.dumps({"merged": False, |
| 3790 | "message": "\x1b[31mmalicious message\x1b[0m"}).encode() |
| 3791 | ), |
| 3792 | ] |
| 3793 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3794 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345"]) |
| 3795 | assert result.exit_code != 0 |
| 3796 | assert "\x1b[" not in result.stderr |
| 3797 | |
| 3798 | |
| 3799 | class TestProposalMergeFullUUID: |
| 3800 | """Verify that a full UUID skips the prefix-resolution list fetch.""" |
| 3801 | |
| 3802 | _HUB = "http://localhost:19999/gabriel/muse" |
| 3803 | |
| 3804 | def _setup(self, repo: pathlib.Path) -> None: |
| 3805 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 3806 | _store_identity(self._HUB) |
| 3807 | |
| 3808 | def _make_api_resp(self, payload_bytes: bytes) -> MagicMock: |
| 3809 | mock_resp = MagicMock() |
| 3810 | mock_resp.__enter__ = lambda s: s |
| 3811 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 3812 | mock_resp.read.return_value = payload_bytes |
| 3813 | return mock_resp |
| 3814 | |
| 3815 | def test_full_id_uses_2_api_calls(self, repo: pathlib.Path) -> None: |
| 3816 | """Full proposal ID: repo resolution + merge POST = 2 calls, no prefix list fetch.""" |
| 3817 | self._setup(repo) |
| 3818 | proposal_id = "deadbeef-cafe-babe-0000-000000000001" |
| 3819 | resps = [ |
| 3820 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3821 | self._make_api_resp(json.dumps({"merged": True, "mergeCommitId": "abc"}).encode()), |
| 3822 | ] |
| 3823 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 3824 | result = runner.invoke(cli, ["hub", "proposal", "merge", proposal_id, "-j"]) |
| 3825 | assert result.exit_code == 0 |
| 3826 | assert mock_open.call_count == 2 |
| 3827 | |
| 3828 | def test_prefix_uses_3_api_calls(self, repo: pathlib.Path) -> None: |
| 3829 | """8-char prefix: repo + prefix list + merge POST = 3 calls.""" |
| 3830 | self._setup(repo) |
| 3831 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 3832 | proposals_data = {"proposals": [ |
| 3833 | {"proposalId": proposal_id, "title": "T", "state": "open", |
| 3834 | "fromBranch": "feat/x", "toBranch": "dev"}, |
| 3835 | ]} |
| 3836 | resps = [ |
| 3837 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3838 | self._make_api_resp(json.dumps(proposals_data).encode()), |
| 3839 | self._make_api_resp(json.dumps({"merged": True, "mergeCommitId": "abc"}).encode()), |
| 3840 | ] |
| 3841 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 3842 | result = runner.invoke(cli, ["hub", "proposal", "merge", "abc12345", "-j"]) |
| 3843 | assert result.exit_code == 0 |
| 3844 | assert mock_open.call_count == 3 |
| 3845 | |
| 3846 | def test_hub_override_routes_to_correct_host(self, repo: pathlib.Path) -> None: |
| 3847 | """--hub must route all calls to the override URL, not the config URL.""" |
| 3848 | runner.invoke(cli, ["hub", "connect", "http://localhost:11111/wrong/repo"]) |
| 3849 | _store_identity("http://localhost:19999/gabriel/muse") |
| 3850 | proposal_id = "deadbeef-cafe-babe-0000-000000000001" |
| 3851 | resps = [ |
| 3852 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3853 | self._make_api_resp(json.dumps({"merged": True, "mergeCommitId": "abc"}).encode()), |
| 3854 | ] |
| 3855 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 3856 | result = runner.invoke( |
| 3857 | cli, |
| 3858 | ["hub", "proposal", "merge", proposal_id, |
| 3859 | "--hub", "http://localhost:19999/gabriel/muse", "-j"], |
| 3860 | ) |
| 3861 | assert result.exit_code == 0 |
| 3862 | called_urls = [c[0][0].full_url for c in mock_open.call_args_list] |
| 3863 | assert any("19999" in u for u in called_urls) |
| 3864 | assert not any("11111" in u for u in called_urls) |
| 3865 | |
| 3866 | |
| 3867 | class TestProposalMergeE2E: |
| 3868 | """End-to-end scenario tests for `muse hub proposal merge`.""" |
| 3869 | |
| 3870 | _HUB = "http://localhost:19999/gabriel/muse" |
| 3871 | |
| 3872 | def _setup(self, repo: pathlib.Path) -> None: |
| 3873 | runner.invoke(cli, ["hub", "connect", self._HUB]) |
| 3874 | _store_identity(self._HUB) |
| 3875 | |
| 3876 | def _make_api_resp(self, payload_bytes: bytes) -> MagicMock: |
| 3877 | mock_resp = MagicMock() |
| 3878 | mock_resp.__enter__ = lambda s: s |
| 3879 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 3880 | mock_resp.read.return_value = payload_bytes |
| 3881 | return mock_resp |
| 3882 | |
| 3883 | def test_e2e_agent_safe_pipeline(self, repo: pathlib.Path) -> None: |
| 3884 | """Agent pipeline: --json exits 0 on success so && chains correctly.""" |
| 3885 | self._setup(repo) |
| 3886 | proposal_id = "deadbeef-cafe-0000-0000-000000000001" |
| 3887 | resps = [ |
| 3888 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3889 | self._make_api_resp(json.dumps({"merged": True, |
| 3890 | "mergeCommitId": "cafebabe12345678"}).encode()), |
| 3891 | ] |
| 3892 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3893 | result = runner.invoke(cli, ["hub", "proposal", "merge", proposal_id, "--json"]) |
| 3894 | assert result.exit_code == 0 |
| 3895 | data = json.loads(next( |
| 3896 | l for l in result.output.splitlines() if l.strip().startswith("{") |
| 3897 | )) |
| 3898 | assert data["merged"] is True |
| 3899 | assert data["mergeCommitId"] == "cafebabe12345678" |
| 3900 | |
| 3901 | def test_e2e_agent_conflict_pipeline(self, repo: pathlib.Path) -> None: |
| 3902 | """Agent pipeline: --json exits 3 on conflict so || error-handling fires.""" |
| 3903 | self._setup(repo) |
| 3904 | proposal_id = "deadbeef-cafe-0000-0000-000000000001" |
| 3905 | resps = [ |
| 3906 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3907 | self._make_api_resp( |
| 3908 | json.dumps({"merged": False, "message": "merge conflict"}).encode() |
| 3909 | ), |
| 3910 | ] |
| 3911 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3912 | result = runner.invoke(cli, ["hub", "proposal", "merge", proposal_id, "--json"]) |
| 3913 | assert result.exit_code == 3 |
| 3914 | # JSON is still printed so agent can read the error |
| 3915 | data = json.loads(next( |
| 3916 | l for l in result.output.splitlines() if l.strip().startswith("{") |
| 3917 | )) |
| 3918 | assert data["merged"] is False |
| 3919 | |
| 3920 | def test_e2e_squash_no_delete_branch(self, repo: pathlib.Path) -> None: |
| 3921 | """Squash merge keeping the branch: payload and output both correct.""" |
| 3922 | self._setup(repo) |
| 3923 | proposal_id = "abc12345-def0-0000-0000-000000000001" |
| 3924 | resps = [ |
| 3925 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3926 | self._make_api_resp( |
| 3927 | json.dumps({"merged": True, "mergeCommitId": "aabbccdd11223344"}).encode() |
| 3928 | ), |
| 3929 | ] |
| 3930 | with patch("urllib.request.urlopen", side_effect=resps) as mock_open: |
| 3931 | result = runner.invoke( |
| 3932 | cli, |
| 3933 | ["hub", "proposal", "merge", proposal_id, |
| 3934 | "--strategy", "squash", "--no-delete-branch"], |
| 3935 | ) |
| 3936 | assert result.exit_code == 0 |
| 3937 | assert "Source branch deleted" not in result.stderr |
| 3938 | assert "aabbccdd" in result.stderr |
| 3939 | post = next(c for c in mock_open.call_args_list if c[0][0].method == "POST") |
| 3940 | payload = json.loads(post[0][0].data) |
| 3941 | assert payload["mergeStrategy"] == "squash" |
| 3942 | assert payload["deleteBranch"] is False |
| 3943 | |
| 3944 | def test_e2e_text_output_no_json_on_stdout(self, repo: pathlib.Path) -> None: |
| 3945 | """In text mode, JSON must not appear on stdout.""" |
| 3946 | self._setup(repo) |
| 3947 | proposal_id = "deadbeef-cafe-0000-0000-000000000001" |
| 3948 | resps = [ |
| 3949 | self._make_api_resp(json.dumps({"repo_id": "r"}).encode()), |
| 3950 | self._make_api_resp( |
| 3951 | json.dumps({"merged": True, "mergeCommitId": "abc"}).encode() |
| 3952 | ), |
| 3953 | ] |
| 3954 | with patch("urllib.request.urlopen", side_effect=resps): |
| 3955 | result = runner.invoke(cli, ["hub", "proposal", "merge", proposal_id]) |
| 3956 | assert result.exit_code == 0 |
| 3957 | for line in result.output.splitlines(): |
| 3958 | assert not line.strip().startswith("{"), ( |
| 3959 | f"Unexpected JSON on stdout: {line!r}" |
| 3960 | ) |
| 3961 | |
| 3962 | |
| 3963 | class TestProposalMergeStress: |
| 3964 | """Stress tests for `muse hub proposal merge`.""" |
| 3965 | |
| 3966 | _HUB = "http://localhost:19999/gabriel/muse" |
| 3967 | |
| 3968 | def test_concurrent_exit_code_checks(self) -> None: |
| 3969 | """8 threads checking the merged=False exit-code logic must agree.""" |
| 3970 | from muse.core.errors import ExitCode |
| 3971 | errors: list[str] = [] |
| 3972 | |
| 3973 | def _do(idx: int) -> None: |
| 3974 | try: |
| 3975 | # Simulate the merged check in pure Python |
| 3976 | data = {"merged": False, "message": f"conflict {idx}"} |
| 3977 | merged = bool(data.get("merged", False)) |
| 3978 | expected_exit = ExitCode.INTERNAL_ERROR if not merged else ExitCode.SUCCESS |
| 3979 | assert expected_exit == ExitCode.INTERNAL_ERROR |
| 3980 | except Exception as exc: |
| 3981 | errors.append(f"Thread {idx}: {exc}") |
| 3982 | |
| 3983 | threads = [threading.Thread(target=_do, args=(i,)) for i in range(8)] |
| 3984 | for t in threads: |
| 3985 | t.start() |
| 3986 | for t in threads: |
| 3987 | t.join() |
| 3988 | assert errors == [], "\n".join(errors) |
| 3989 | |
| 3990 | |
| 3991 | class TestResolveProposalIdLimit: |
| 3992 | """Verify that _resolve_proposal_id respects _PROPOSAL_PREFIX_RESOLVE_LIMIT.""" |
| 3993 | |
| 3994 | def test_limit_constant_in_url(self) -> None: |
| 3995 | """The URL sent to the API must include the limit constant.""" |
| 3996 | from muse.cli.commands.hub import _PROPOSAL_PREFIX_RESOLVE_LIMIT, _resolve_proposal_id |
| 3997 | from muse.core.identity import IdentityEntry |
| 3998 | |
| 3999 | identity: IdentityEntry = {"type": "human", "token": "tok"} |
| 4000 | proposal_id = "abc12345-0000-0000-0000-000000000001" |
| 4001 | proposals_resp = {"proposals": [ |
| 4002 | {"proposalId": proposal_id, "title": "T"}, |
| 4003 | ]} |
| 4004 | captured_urls: list[str] = [] |
| 4005 | |
| 4006 | def _fake_urlopen(req: urllib.request.Request, timeout: int = 5, context: ssl.SSLContext | None = None) -> MagicMock: |
| 4007 | captured_urls.append(req.full_url) |
| 4008 | mock_resp = MagicMock() |
| 4009 | mock_resp.__enter__ = lambda s: s |
| 4010 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 4011 | mock_resp.read.return_value = json.dumps(proposals_resp).encode() |
| 4012 | return mock_resp |
| 4013 | |
| 4014 | with patch("muse.cli.config.get_signing_identity", return_value=_make_signing()): |
| 4015 | with patch("urllib.request.urlopen", side_effect=_fake_urlopen): |
| 4016 | result = _resolve_proposal_id("http://localhost:9999", identity, "repo-id", "abc12345") |
| 4017 | assert result == proposal_id |
| 4018 | assert any(str(_PROPOSAL_PREFIX_RESOLVE_LIMIT) in url for url in captured_urls), ( |
| 4019 | f"Expected {_PROPOSAL_PREFIX_RESOLVE_LIMIT} in one of {captured_urls}" |
| 4020 | ) |
| 4021 | |
| 4022 | |
| 4023 | class TestResolveProposalIdSha256Passthrough: |
| 4024 | """sha256-prefixed full IDs must be returned as-is without hitting the list endpoint. |
| 4025 | |
| 4026 | Regression: the old full-ID check required a hyphen (`-`), so sha256:<hex> |
| 4027 | IDs always fell through to the list fetch with limit=200. Servers that cap |
| 4028 | the limit lower than 200 returned 422, making every `hub proposal read |
| 4029 | sha256:...` call fail on those hubs. |
| 4030 | """ |
| 4031 | |
| 4032 | def _make_identity(self) -> "muse.core.identity.IdentityEntry": |
| 4033 | from muse.core.identity import IdentityEntry |
| 4034 | e: IdentityEntry = {"type": "human", "token": "tok123"} |
| 4035 | return e |
| 4036 | |
| 4037 | def test_full_sha256_id_returned_as_is_no_network(self) -> None: |
| 4038 | """A full sha256:<64-hex> ID must be returned without any network call.""" |
| 4039 | from muse.cli.commands.hub import _resolve_proposal_id |
| 4040 | |
| 4041 | full = "sha256:" + "a" * 64 |
| 4042 | captured: list[str] = [] |
| 4043 | |
| 4044 | def _fail_urlopen(*a: str, **kw: str) -> None: |
| 4045 | captured.append("called") |
| 4046 | raise AssertionError("urlopen must not be called for a full sha256 ID") |
| 4047 | |
| 4048 | with patch("urllib.request.urlopen", side_effect=_fail_urlopen): |
| 4049 | result = _resolve_proposal_id("http://hub", self._make_identity(), "repo-id", full) |
| 4050 | |
| 4051 | assert result == full |
| 4052 | assert captured == [], "urlopen was called — full sha256 ID was not detected as complete" |
| 4053 | |
| 4054 | def test_sha256_prefix_still_resolves_via_list(self) -> None: |
| 4055 | """A short sha256 prefix (fewer than 71 chars) still fetches the list.""" |
| 4056 | from muse.cli.commands.hub import _resolve_proposal_id |
| 4057 | |
| 4058 | full = "sha256:" + "b" * 64 |
| 4059 | proposals_resp = {"proposals": [{"proposalId": full, "title": "T", "state": "open", |
| 4060 | "fromBranch": "feat/x", "toBranch": "dev"}]} |
| 4061 | mock_resp = MagicMock() |
| 4062 | mock_resp.__enter__ = lambda s: s |
| 4063 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 4064 | mock_resp.read.return_value = json.dumps(proposals_resp).encode() |
| 4065 | |
| 4066 | with patch("muse.cli.config.get_signing_identity", return_value=_make_signing()): |
| 4067 | with patch("urllib.request.urlopen", return_value=mock_resp): |
| 4068 | result = _resolve_proposal_id( |
| 4069 | "http://localhost:9999", self._make_identity(), "repo-id", "sha256:bbbb" |
| 4070 | ) |
| 4071 | assert result == full |
| 4072 | |
| 4073 | def test_hyphenated_uuid_still_returned_as_is(self) -> None: |
| 4074 | """Regression: existing UUID-style full IDs must not be broken.""" |
| 4075 | from muse.cli.commands.hub import _resolve_proposal_id |
| 4076 | |
| 4077 | full = "af54753d-1234-5678-abcd-ef1234567890" |
| 4078 | with patch("urllib.request.urlopen", side_effect=AssertionError("must not call network")): |
| 4079 | result = _resolve_proposal_id("http://hub", self._make_identity(), "repo-id", full) |
| 4080 | assert result == full |
| 4081 | |
| 4082 | |
| 4083 | class TestProposalMerge422Regression: |
| 4084 | """Regression for issue #54: hub proposal merge with a full sha256 ID must |
| 4085 | not call the proposals list endpoint. |
| 4086 | |
| 4087 | Root cause: the old full-ID check in _resolve_proposal_id required a |
| 4088 | hyphen, so sha256:<hex> IDs fell through to the list fetch (?limit=200). |
| 4089 | Servers that capped limit at 100 returned 422 on that call, blocking every |
| 4090 | CLI merge regardless of strategy. |
| 4091 | |
| 4092 | Fix: _resolve_proposal_id now calls split_id() first; sha256-prefixed IDs |
| 4093 | are returned as-is without any network round-trip, so the 422 can never |
| 4094 | occur on that path. |
| 4095 | """ |
| 4096 | |
| 4097 | def test_merge_sha256_id_makes_no_list_call(self) -> None: |
| 4098 | """run_proposal_merge with a full sha256 proposal ID must POST to |
| 4099 | /merge and never touch the proposals list endpoint.""" |
| 4100 | import argparse |
| 4101 | from muse.cli.commands.hub.proposals import run_proposal_merge |
| 4102 | |
| 4103 | proposal_id = "sha256:" + "c" * 64 |
| 4104 | list_urls: list[str] = [] |
| 4105 | merge_urls: list[str] = [] |
| 4106 | |
| 4107 | def _fake_urlopen(req: urllib.request.Request, timeout: int = 5, |
| 4108 | context: ssl.SSLContext | None = None) -> MagicMock: |
| 4109 | url = req.full_url |
| 4110 | if "proposals?" in url: |
| 4111 | list_urls.append(url) |
| 4112 | if "/merge" in url and req.method == "POST": |
| 4113 | merge_urls.append(url) |
| 4114 | mock_resp = MagicMock() |
| 4115 | mock_resp.__enter__ = lambda s: s |
| 4116 | mock_resp.__exit__ = MagicMock(return_value=False) |
| 4117 | mock_resp.read.return_value = json.dumps({ |
| 4118 | "merged": True, |
| 4119 | "mergeCommitId": "sha256:" + "d" * 64, |
| 4120 | }).encode() |
| 4121 | return mock_resp |
| 4122 | |
| 4123 | args = argparse.Namespace( |
| 4124 | proposal_id=proposal_id, |
| 4125 | strategy="squash", |
| 4126 | delete_branch=False, |
| 4127 | json_output=False, |
| 4128 | hub="http://localhost:9999/owner/repo", |
| 4129 | ) |
| 4130 | |
| 4131 | with ( |
| 4132 | patch("muse.cli.commands.hub.proposals._get_hub_and_identity", |
| 4133 | return_value=("http://localhost:9999/owner/repo", |
| 4134 | {"type": "human", "token": "tok"})), |
| 4135 | patch("muse.cli.commands.hub.proposals._resolve_repo_id", |
| 4136 | return_value="test-repo-id"), |
| 4137 | patch("muse.cli.config.get_signing_identity", |
| 4138 | return_value=_make_signing()), |
| 4139 | patch("urllib.request.urlopen", side_effect=_fake_urlopen), |
| 4140 | ): |
| 4141 | run_proposal_merge(args) |
| 4142 | |
| 4143 | assert not list_urls, ( |
| 4144 | "run_proposal_merge must not call the proposals list endpoint " |
| 4145 | f"when given a full sha256 ID (triggers 422 on servers with " |
| 4146 | f"limit cap). Called: {list_urls}" |
| 4147 | ) |
| 4148 | assert merge_urls, ( |
| 4149 | "run_proposal_merge must POST to the /merge endpoint" |
| 4150 | ) |
| 4151 | |
| 4152 | def test_merge_prefix_id_calls_list_but_not_with_limit_exceeding_server_cap( |
| 4153 | self, |
| 4154 | ) -> None: |
| 4155 | """Short prefix IDs still resolve via the list endpoint, but the |
| 4156 | limit used must not exceed the server's PaginationParams cap (200).""" |
| 4157 | import argparse |
| 4158 | from muse.cli.commands.hub import _PROPOSAL_PREFIX_RESOLVE_LIMIT |
| 4159 | |
| 4160 | assert _PROPOSAL_PREFIX_RESOLVE_LIMIT <= 200, ( |
| 4161 | f"_PROPOSAL_PREFIX_RESOLVE_LIMIT is {_PROPOSAL_PREFIX_RESOLVE_LIMIT}, " |
| 4162 | "which exceeds the server's PaginationParams cap of 200. " |
| 4163 | "Lower the constant or raise the server cap to fix issue #54." |
| 4164 | ) |
| 4165 | |
| 4166 | |
| 4167 | # ============================================================================= |
| 4168 | # muse hub issue — hardening tests |
| 4169 | # ============================================================================= |
| 4170 | |
| 4171 | # Shared helpers for issue tests |
| 4172 | HUB_URL = "https://localhost:1337/owner/repo" |
| 4173 | |
| 4174 | |
| 4175 | def _issue_resp( |
| 4176 | number: int = 7, |
| 4177 | title: str = "feat: add thing", |
| 4178 | body: str = "", |
| 4179 | labels: list[str] | None = None, |
| 4180 | issue_id: str = "iss_aabbccdd", |
| 4181 | state: str = "open", |
| 4182 | author: str = "alice", |
| 4183 | ) -> _JsonPayload: |
| 4184 | return { |
| 4185 | "number": number, |
| 4186 | "title": title, |
| 4187 | "body": body, |
| 4188 | "labels": labels or [], |
| 4189 | "issueId": issue_id, |
| 4190 | "state": state, |
| 4191 | "author": author, |
| 4192 | "createdAt": "2026-04-09T00:00:00Z", |
| 4193 | } |
| 4194 | |
| 4195 | |
| 4196 | def _issue_list_resp(issues: list[_JsonPayload] | None = None) -> _JsonPayload: |
| 4197 | """Wrap issues in the list-response envelope.""" |
| 4198 | items = issues if issues is not None else [_issue_resp()] |
| 4199 | return {"issues": items, "total": len(items)} |
| 4200 | |
| 4201 | |
| 4202 | def _comment_resp(comment_id: str = "c0") -> _JsonPayload: |
| 4203 | """A single-comment response as returned by POST .../comments.""" |
| 4204 | return { |
| 4205 | "commentId": comment_id, |
| 4206 | "issueId": "issue-id-0001", |
| 4207 | "author": "alice", |
| 4208 | "body": "test comment", |
| 4209 | "parentId": None, |
| 4210 | "isDeleted": False, |
| 4211 | "createdAt": "2026-04-14T00:00:00Z", |
| 4212 | "updatedAt": "2026-04-14T00:00:00Z", |
| 4213 | } |
| 4214 | |
| 4215 | |
| 4216 | def _refs_resp(repo_id: str = "repo-id-0001") -> _JsonPayload: |
| 4217 | return {"repo_id": repo_id, "branches": []} |
| 4218 | |
| 4219 | |
| 4220 | def _mock_responses(*payloads: _JsonPayload) -> list[MagicMock]: |
| 4221 | """Build a side_effect list of mock HTTP responses for urlopen.""" |
| 4222 | mocks = [] |
| 4223 | for payload in payloads: |
| 4224 | m = MagicMock() |
| 4225 | m.__enter__ = lambda s: s |
| 4226 | m.__exit__ = MagicMock(return_value=False) |
| 4227 | m.read.return_value = json.dumps(payload).encode() |
| 4228 | mocks.append(m) |
| 4229 | return mocks |
| 4230 | |
| 4231 | |
| 4232 | # --------------------------------------------------------------------------- |
| 4233 | # TestIssueCreateHardening |
| 4234 | # --------------------------------------------------------------------------- |
| 4235 | |
| 4236 | |
| 4237 | class TestIssueCreateHardening: |
| 4238 | """Integration tests for ``muse hub issue create``.""" |
| 4239 | |
| 4240 | def test_empty_title_exits_nonzero_no_network( |
| 4241 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 4242 | ) -> None: |
| 4243 | from muse.cli.config import set_hub_url |
| 4244 | set_hub_url(HUB_URL, repo) |
| 4245 | _store_identity(HUB_URL) |
| 4246 | with patch("urllib.request.urlopen") as mock_net: |
| 4247 | result = runner.invoke(cli, ["hub", "issue", "create", "--title", " "]) |
| 4248 | assert result.exit_code != 0 |
| 4249 | mock_net.assert_not_called() |
| 4250 | |
| 4251 | def test_empty_title_error_message( |
| 4252 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 4253 | ) -> None: |
| 4254 | from muse.cli.config import set_hub_url |
| 4255 | set_hub_url(HUB_URL, repo) |
| 4256 | _store_identity(HUB_URL) |
| 4257 | with patch("urllib.request.urlopen"): |
| 4258 | result = runner.invoke(cli, ["hub", "issue", "create", "--title", ""]) |
| 4259 | assert "empty" in result.stderr.lower() or "title" in result.stderr.lower() |
| 4260 | |
| 4261 | def test_title_too_long_exits_nonzero_no_network( |
| 4262 | self, repo: pathlib.Path |
| 4263 | ) -> None: |
| 4264 | from muse.cli.commands.hub import _MAX_ISSUE_TITLE_LEN |
| 4265 | from muse.cli.config import set_hub_url |
| 4266 | set_hub_url(HUB_URL, repo) |
| 4267 | _store_identity(HUB_URL) |
| 4268 | long_title = "x" * (_MAX_ISSUE_TITLE_LEN + 1) |
| 4269 | with patch("urllib.request.urlopen") as mock_net: |
| 4270 | result = runner.invoke(cli, ["hub", "issue", "create", "--title", long_title]) |
| 4271 | assert result.exit_code != 0 |
| 4272 | mock_net.assert_not_called() |
| 4273 | |
| 4274 | def test_title_too_long_shows_char_count( |
| 4275 | self, repo: pathlib.Path |
| 4276 | ) -> None: |
| 4277 | from muse.cli.commands.hub import _MAX_ISSUE_TITLE_LEN |
| 4278 | from muse.cli.config import set_hub_url |
| 4279 | set_hub_url(HUB_URL, repo) |
| 4280 | _store_identity(HUB_URL) |
| 4281 | long_title = "x" * (_MAX_ISSUE_TITLE_LEN + 1) |
| 4282 | with patch("urllib.request.urlopen"): |
| 4283 | result = runner.invoke(cli, ["hub", "issue", "create", "--title", long_title]) |
| 4284 | assert str(_MAX_ISSUE_TITLE_LEN + 1) in result.stderr or str(_MAX_ISSUE_TITLE_LEN) in result.stderr |
| 4285 | |
| 4286 | def test_title_at_max_length_accepted( |
| 4287 | self, repo: pathlib.Path |
| 4288 | ) -> None: |
| 4289 | from muse.cli.commands.hub import _MAX_ISSUE_TITLE_LEN |
| 4290 | from muse.cli.config import set_hub_url |
| 4291 | set_hub_url(HUB_URL, repo) |
| 4292 | _store_identity(HUB_URL) |
| 4293 | exact_title = "x" * _MAX_ISSUE_TITLE_LEN |
| 4294 | mocks = _mock_responses(_refs_resp(), _issue_resp(title=exact_title)) |
| 4295 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 4296 | result = runner.invoke( |
| 4297 | cli, ["hub", "issue", "create", "--title", exact_title, "--json"] |
| 4298 | ) |
| 4299 | assert result.exit_code == 0 |
| 4300 | |
| 4301 | def test_success_json_output(self, repo: pathlib.Path) -> None: |
| 4302 | from muse.cli.config import set_hub_url |
| 4303 | set_hub_url(HUB_URL, repo) |
| 4304 | _store_identity(HUB_URL) |
| 4305 | mocks = _mock_responses(_refs_resp(), _issue_resp()) |
| 4306 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 4307 | result = runner.invoke( |
| 4308 | cli, ["hub", "issue", "create", "--title", "feat: X", "-j"] |
| 4309 | ) |
| 4310 | assert result.exit_code == 0 |
| 4311 | data = json.loads(result.output) |
| 4312 | assert "number" in data |
| 4313 | |
| 4314 | def test_json_short_flag(self, repo: pathlib.Path) -> None: |
| 4315 | """-j short alias must work the same as --json.""" |
| 4316 | from muse.cli.config import set_hub_url |
| 4317 | set_hub_url(HUB_URL, repo) |
| 4318 | _store_identity(HUB_URL) |
| 4319 | mocks = _mock_responses(_refs_resp(), _issue_resp()) |
| 4320 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 4321 | result = runner.invoke( |
| 4322 | cli, ["hub", "issue", "create", "--title", "feat: X", "-j"] |
| 4323 | ) |
| 4324 | assert result.exit_code == 0 |
| 4325 | json.loads(result.output) # must be valid JSON |
| 4326 | |
| 4327 | def test_labels_included_in_payload(self, repo: pathlib.Path) -> None: |
| 4328 | from muse.cli.config import set_hub_url |
| 4329 | set_hub_url(HUB_URL, repo) |
| 4330 | _store_identity(HUB_URL) |
| 4331 | captured: list[bytes] = [] |
| 4332 | |
| 4333 | def _fake(req: urllib.request.Request, timeout: int = 5, context: ssl.SSLContext | None = None) -> MagicMock: |
| 4334 | if req.method == "POST": |
| 4335 | captured.append(req.data or b"") |
| 4336 | m = MagicMock() |
| 4337 | m.__enter__ = lambda s: s |
| 4338 | m.__exit__ = MagicMock(return_value=False) |
| 4339 | if req.method == "GET": |
| 4340 | m.read.return_value = json.dumps(_refs_resp()).encode() |
| 4341 | else: |
| 4342 | m.read.return_value = json.dumps(_issue_resp()).encode() |
| 4343 | return m |
| 4344 | |
| 4345 | with patch("urllib.request.urlopen", side_effect=_fake): |
| 4346 | runner.invoke( |
| 4347 | cli, |
| 4348 | ["hub", "issue", "create", "--title", "T", "--label", "bug", "--label", "phase/1"], |
| 4349 | ) |
| 4350 | assert captured |
| 4351 | body = json.loads(captured[0]) |
| 4352 | assert "bug" in body["labels"] |
| 4353 | assert "phase/1" in body["labels"] |
| 4354 | |
| 4355 | def test_issue_url_on_stdout(self, repo: pathlib.Path) -> None: |
| 4356 | from muse.cli.config import set_hub_url |
| 4357 | set_hub_url(HUB_URL, repo) |
| 4358 | _store_identity(HUB_URL) |
| 4359 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=42)) |
| 4360 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 4361 | result = runner.invoke(cli, ["hub", "issue", "create", "--title", "T"]) |
| 4362 | assert result.exit_code == 0 |
| 4363 | assert "42" in result.stderr |
| 4364 | |
| 4365 | def test_issue_url_contains_owner_slug(self, repo: pathlib.Path) -> None: |
| 4366 | from muse.cli.config import set_hub_url |
| 4367 | set_hub_url(HUB_URL, repo) |
| 4368 | _store_identity(HUB_URL) |
| 4369 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=3)) |
| 4370 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 4371 | result = runner.invoke(cli, ["hub", "issue", "create", "--title", "T"]) |
| 4372 | assert "owner" in result.output |
| 4373 | assert "repo" in result.output |
| 4374 | |
| 4375 | def test_text_mode_success_on_stderr(self, repo: pathlib.Path) -> None: |
| 4376 | """Text mode prints ✅ Issue #N created. to stderr.""" |
| 4377 | from muse.cli.config import set_hub_url |
| 4378 | set_hub_url(HUB_URL, repo) |
| 4379 | _store_identity(HUB_URL) |
| 4380 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=5)) |
| 4381 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 4382 | result = runner.invoke(cli, ["hub", "issue", "create", "--title", "T"]) |
| 4383 | assert result.exit_code == 0 |
| 4384 | assert "5" in result.stderr |
| 4385 | assert "created" in result.stderr.lower() |
| 4386 | |
| 4387 | def test_text_mode_no_json_on_stdout(self, repo: pathlib.Path) -> None: |
| 4388 | from muse.cli.config import set_hub_url |
| 4389 | set_hub_url(HUB_URL, repo) |
| 4390 | _store_identity(HUB_URL) |
| 4391 | mocks = _mock_responses(_refs_resp(), _issue_resp()) |
| 4392 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 4393 | result = runner.invoke(cli, ["hub", "issue", "create", "--title", "T"]) |
| 4394 | assert result.exit_code == 0 |
| 4395 | # Text mode must not emit a JSON object |
| 4396 | try: |
| 4397 | json.loads(result.output) |
| 4398 | assert False, "Text mode must not emit JSON" |
| 4399 | except (json.JSONDecodeError, ValueError): |
| 4400 | pass |
| 4401 | |
| 4402 | def test_number_fallback_for_nonnumeric_api_response( |
| 4403 | self, repo: pathlib.Path |
| 4404 | ) -> None: |
| 4405 | """If API returns a non-numeric 'number', fall back to 0 without crashing.""" |
| 4406 | from muse.cli.config import set_hub_url |
| 4407 | set_hub_url(HUB_URL, repo) |
| 4408 | _store_identity(HUB_URL) |
| 4409 | bad_issue = dict(_issue_resp()) |
| 4410 | bad_issue["number"] = "not-a-number" |
| 4411 | mocks = _mock_responses(_refs_resp(), bad_issue) |
| 4412 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 4413 | result = runner.invoke(cli, ["hub", "issue", "create", "--title", "T"]) |
| 4414 | assert result.exit_code == 0 # must not crash |
| 4415 | |
| 4416 | def test_number_float_coerced(self, repo: pathlib.Path) -> None: |
| 4417 | """Numeric float from API (e.g. 7.0) must be coerced to int.""" |
| 4418 | from muse.cli.config import set_hub_url |
| 4419 | set_hub_url(HUB_URL, repo) |
| 4420 | _store_identity(HUB_URL) |
| 4421 | float_issue = dict(_issue_resp()) |
| 4422 | float_issue["number"] = 7.0 |
| 4423 | mocks = _mock_responses(_refs_resp(), float_issue) |
| 4424 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 4425 | result = runner.invoke(cli, ["hub", "issue", "create", "--title", "T"]) |
| 4426 | assert result.exit_code == 0 |
| 4427 | assert "7" in result.stderr |
| 4428 | |
| 4429 | def test_no_hub_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 4430 | result = runner.invoke(cli, ["hub", "issue", "create", "--title", "T"]) |
| 4431 | assert result.exit_code != 0 |
| 4432 | |
| 4433 | def test_no_identity_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 4434 | from muse.cli.config import set_hub_url |
| 4435 | set_hub_url(HUB_URL, repo) |
| 4436 | result = runner.invoke(cli, ["hub", "issue", "create", "--title", "T"]) |
| 4437 | assert result.exit_code != 0 |
| 4438 | |
| 4439 | def test_outside_repo_exits_nonzero( |
| 4440 | self, tmp_path: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 4441 | ) -> None: |
| 4442 | monkeypatch.chdir(tmp_path) |
| 4443 | monkeypatch.delenv("MUSE_REPO_ROOT", raising=False) |
| 4444 | result = runner.invoke(cli, ["hub", "issue", "create", "--title", "T"]) |
| 4445 | assert result.exit_code != 0 |
| 4446 | |
| 4447 | def test_hub_override_used_in_request(self, repo: pathlib.Path) -> None: |
| 4448 | """--hub overrides the config hub URL.""" |
| 4449 | override_url = "http://override:9999/owner2/repo2" |
| 4450 | _store_identity(override_url) |
| 4451 | captured_urls: list[str] = [] |
| 4452 | |
| 4453 | def _fake(req: urllib.request.Request, timeout: int = 5, context: ssl.SSLContext | None = None) -> MagicMock: |
| 4454 | captured_urls.append(req.full_url) |
| 4455 | m = MagicMock() |
| 4456 | m.__enter__ = lambda s: s |
| 4457 | m.__exit__ = MagicMock(return_value=False) |
| 4458 | if "refs" in req.full_url: |
| 4459 | m.read.return_value = json.dumps(_refs_resp()).encode() |
| 4460 | else: |
| 4461 | m.read.return_value = json.dumps(_issue_resp()).encode() |
| 4462 | return m |
| 4463 | |
| 4464 | with patch("urllib.request.urlopen", side_effect=_fake): |
| 4465 | result = runner.invoke(cli, [ |
| 4466 | "hub", "issue", "create", |
| 4467 | "--hub", override_url, |
| 4468 | "--title", "T", |
| 4469 | ]) |
| 4470 | assert result.exit_code == 0 |
| 4471 | assert any("override:9999" in u for u in captured_urls) |
| 4472 | |
| 4473 | |
| 4474 | # --------------------------------------------------------------------------- |
| 4475 | # TestIssueCreateSecurity |
| 4476 | # --------------------------------------------------------------------------- |
| 4477 | |
| 4478 | |
| 4479 | class TestIssueCreateSecurity: |
| 4480 | """Security-focused tests for ``muse hub issue create``.""" |
| 4481 | |
| 4482 | def test_ansi_in_title_no_network_when_valid( |
| 4483 | self, repo: pathlib.Path |
| 4484 | ) -> None: |
| 4485 | """ANSI in title is not a validation error — title may contain them.""" |
| 4486 | from muse.cli.config import set_hub_url |
| 4487 | set_hub_url(HUB_URL, repo) |
| 4488 | _store_identity(HUB_URL) |
| 4489 | ansi_title = "feat: \x1b[31mred\x1b[0m bug" |
| 4490 | mocks = _mock_responses(_refs_resp(), _issue_resp(title=ansi_title)) |
| 4491 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 4492 | result = runner.invoke(cli, ["hub", "issue", "create", "--title", ansi_title]) |
| 4493 | assert result.exit_code == 0 |
| 4494 | |
| 4495 | def test_issueId_fallback_sanitized(self, repo: pathlib.Path) -> None: |
| 4496 | """If hub URL has no owner/slug, issueId fallback must be sanitized.""" |
| 4497 | # Give the hub URL no slug path so the fallback branch triggers. |
| 4498 | bare_hub = "https://localhost:1337" |
| 4499 | _store_identity(bare_hub) |
| 4500 | ansi_id = "iss_\x1b[31minjection\x1b[0m" |
| 4501 | issue = dict(_issue_resp()) |
| 4502 | issue["issueId"] = ansi_id |
| 4503 | |
| 4504 | mocks = _mock_responses(_refs_resp(), issue) |
| 4505 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 4506 | result = runner.invoke(cli, [ |
| 4507 | "hub", "issue", "create", |
| 4508 | "--hub", bare_hub, |
| 4509 | "--title", "T", |
| 4510 | ]) |
| 4511 | # ANSI escape sequences must not appear raw in output |
| 4512 | assert "\x1b[" not in result.stderr |
| 4513 | |
| 4514 | def test_title_validation_before_network( |
| 4515 | self, repo: pathlib.Path |
| 4516 | ) -> None: |
| 4517 | """Empty title must be rejected before any HTTP call is made.""" |
| 4518 | from muse.cli.config import set_hub_url |
| 4519 | set_hub_url(HUB_URL, repo) |
| 4520 | _store_identity(HUB_URL) |
| 4521 | with patch("urllib.request.urlopen") as mock_net: |
| 4522 | runner.invoke(cli, ["hub", "issue", "create", "--title", ""]) |
| 4523 | mock_net.assert_not_called() |
| 4524 | |
| 4525 | def test_max_title_len_constant_value(self) -> None: |
| 4526 | from muse.cli.commands.hub import _MAX_ISSUE_TITLE_LEN |
| 4527 | assert _MAX_ISSUE_TITLE_LEN == 512 |
| 4528 | |
| 4529 | def test_ansi_in_hub_url_path_not_echoed_raw( |
| 4530 | self, repo: pathlib.Path |
| 4531 | ) -> None: |
| 4532 | """ANSI in --hub URL path segments (owner/slug) must not reach stdout raw.""" |
| 4533 | # Craft a hub URL where the owner segment contains an ANSI escape. |
| 4534 | # urllib.parse will preserve it in the path — it must be stripped on output. |
| 4535 | ansi_owner = "\x1b[31mmalicious\x1b[0m" |
| 4536 | malicious_hub = f"https://localhost:1337/{ansi_owner}/repo" |
| 4537 | _store_identity(malicious_hub) |
| 4538 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=1)) |
| 4539 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 4540 | result = runner.invoke(cli, [ |
| 4541 | "hub", "issue", "create", |
| 4542 | "--hub", malicious_hub, |
| 4543 | "--title", "T", |
| 4544 | ]) |
| 4545 | assert "\x1b[" not in result.stderr |
| 4546 | |
| 4547 | def test_payload_type_annotation_no_bool(self) -> None: |
| 4548 | """The payload dict must not include bool values — type annotation check.""" |
| 4549 | import inspect |
| 4550 | import muse.cli.commands.hub as hub_mod |
| 4551 | src = inspect.getsource(hub_mod.run_issue_create) |
| 4552 | # The old annotation included 'bool' — verify it was removed. |
| 4553 | # Look for the payload assignment line. |
| 4554 | assert "str | bool | list" not in src |
| 4555 | |
| 4556 | def test_repo_flag_routes_to_correct_hub( |
| 4557 | self, repo: pathlib.Path |
| 4558 | ) -> None: |
| 4559 | """--repo owner/repo constructs a hub URL using the configured base.""" |
| 4560 | from muse.cli.config import set_hub_url |
| 4561 | # Configure hub base (without owner/repo path) |
| 4562 | base_hub = "https://localhost:1337/original/original" |
| 4563 | set_hub_url(base_hub, repo) |
| 4564 | _store_identity("https://localhost:1337/myowner/myrepo") |
| 4565 | captured_urls: list[str] = [] |
| 4566 | |
| 4567 | def _fake(req: urllib.request.Request, timeout: int = 5, context: ssl.SSLContext | None = None) -> MagicMock: |
| 4568 | captured_urls.append(req.full_url) |
| 4569 | m = MagicMock() |
| 4570 | m.__enter__ = lambda s: s |
| 4571 | m.__exit__ = MagicMock(return_value=False) |
| 4572 | if req.method == "GET": |
| 4573 | m.read.return_value = json.dumps(_refs_resp()).encode() |
| 4574 | else: |
| 4575 | m.read.return_value = json.dumps(_issue_resp()).encode() |
| 4576 | return m |
| 4577 | |
| 4578 | with patch("urllib.request.urlopen", side_effect=_fake): |
| 4579 | result = runner.invoke(cli, [ |
| 4580 | "hub", "issue", "create", |
| 4581 | "--repo", "myowner/myrepo", |
| 4582 | "--title", "T", |
| 4583 | ]) |
| 4584 | assert result.exit_code == 0 |
| 4585 | assert any("myowner" in u and "myrepo" in u for u in captured_urls) |
| 4586 | |
| 4587 | |
| 4588 | # --------------------------------------------------------------------------- |
| 4589 | # TestIssueEditHardening |
| 4590 | # --------------------------------------------------------------------------- |
| 4591 | |
| 4592 | |
| 4593 | class TestIssueEditHardening: |
| 4594 | """Integration tests for ``muse hub issue edit``.""" |
| 4595 | |
| 4596 | def test_no_fields_exits_nonzero_no_network( |
| 4597 | self, repo: pathlib.Path |
| 4598 | ) -> None: |
| 4599 | from muse.cli.config import set_hub_url |
| 4600 | set_hub_url(HUB_URL, repo) |
| 4601 | _store_identity(HUB_URL) |
| 4602 | with patch("urllib.request.urlopen") as mock_net: |
| 4603 | result = runner.invoke(cli, ["hub", "issue", "update", "42"]) |
| 4604 | assert result.exit_code != 0 |
| 4605 | mock_net.assert_not_called() |
| 4606 | |
| 4607 | def test_no_fields_error_message(self, repo: pathlib.Path) -> None: |
| 4608 | from muse.cli.config import set_hub_url |
| 4609 | set_hub_url(HUB_URL, repo) |
| 4610 | _store_identity(HUB_URL) |
| 4611 | with patch("urllib.request.urlopen"): |
| 4612 | result = runner.invoke(cli, ["hub", "issue", "update", "42"]) |
| 4613 | assert "nothing" in result.stderr.lower() or "update" in result.stderr.lower() |
| 4614 | |
| 4615 | def test_title_only_patch(self, repo: pathlib.Path) -> None: |
| 4616 | from muse.cli.config import set_hub_url |
| 4617 | set_hub_url(HUB_URL, repo) |
| 4618 | _store_identity(HUB_URL) |
| 4619 | captured: list[bytes] = [] |
| 4620 | |
| 4621 | def _fake(req: urllib.request.Request, timeout: int = 5, context: ssl.SSLContext | None = None) -> MagicMock: |
| 4622 | if req.method == "PATCH": |
| 4623 | captured.append(req.data or b"") |
| 4624 | m = MagicMock() |
| 4625 | m.__enter__ = lambda s: s |
| 4626 | m.__exit__ = MagicMock(return_value=False) |
| 4627 | if req.method == "GET": |
| 4628 | m.read.return_value = json.dumps(_refs_resp()).encode() |
| 4629 | else: |
| 4630 | m.read.return_value = json.dumps(_issue_resp()).encode() |
| 4631 | return m |
| 4632 | |
| 4633 | with patch("urllib.request.urlopen", side_effect=_fake): |
| 4634 | result = runner.invoke(cli, ["hub", "issue", "update", "7", "--title", "new title"]) |
| 4635 | assert result.exit_code == 0 |
| 4636 | assert captured |
| 4637 | body = json.loads(captured[0]) |
| 4638 | assert body == {"title": "new title"} |
| 4639 | |
| 4640 | def test_body_only_patch(self, repo: pathlib.Path) -> None: |
| 4641 | from muse.cli.config import set_hub_url |
| 4642 | set_hub_url(HUB_URL, repo) |
| 4643 | _store_identity(HUB_URL) |
| 4644 | captured: list[bytes] = [] |
| 4645 | |
| 4646 | def _fake(req: urllib.request.Request, timeout: int = 5, context: ssl.SSLContext | None = None) -> MagicMock: |
| 4647 | if req.method == "PATCH": |
| 4648 | captured.append(req.data or b"") |
| 4649 | m = MagicMock() |
| 4650 | m.__enter__ = lambda s: s |
| 4651 | m.__exit__ = MagicMock(return_value=False) |
| 4652 | if req.method == "GET": |
| 4653 | m.read.return_value = json.dumps(_refs_resp()).encode() |
| 4654 | else: |
| 4655 | m.read.return_value = json.dumps(_issue_resp()).encode() |
| 4656 | return m |
| 4657 | |
| 4658 | with patch("urllib.request.urlopen", side_effect=_fake): |
| 4659 | result = runner.invoke(cli, ["hub", "issue", "update", "7", "--body", "new body"]) |
| 4660 | assert result.exit_code == 0 |
| 4661 | assert captured |
| 4662 | body = json.loads(captured[0]) |
| 4663 | assert body == {"body": "new body"} |
| 4664 | |
| 4665 | def test_both_title_and_body_in_patch(self, repo: pathlib.Path) -> None: |
| 4666 | from muse.cli.config import set_hub_url |
| 4667 | set_hub_url(HUB_URL, repo) |
| 4668 | _store_identity(HUB_URL) |
| 4669 | captured: list[bytes] = [] |
| 4670 | |
| 4671 | def _fake(req: urllib.request.Request, timeout: int = 5, context: ssl.SSLContext | None = None) -> MagicMock: |
| 4672 | if req.method == "PATCH": |
| 4673 | captured.append(req.data or b"") |
| 4674 | m = MagicMock() |
| 4675 | m.__enter__ = lambda s: s |
| 4676 | m.__exit__ = MagicMock(return_value=False) |
| 4677 | if req.method == "GET": |
| 4678 | m.read.return_value = json.dumps(_refs_resp()).encode() |
| 4679 | else: |
| 4680 | m.read.return_value = json.dumps(_issue_resp()).encode() |
| 4681 | return m |
| 4682 | |
| 4683 | with patch("urllib.request.urlopen", side_effect=_fake): |
| 4684 | runner.invoke( |
| 4685 | cli, |
| 4686 | ["hub", "issue", "update", "7", "--title", "NT", "--body", "NB"], |
| 4687 | ) |
| 4688 | assert captured |
| 4689 | body = json.loads(captured[0]) |
| 4690 | assert body["title"] == "NT" |
| 4691 | assert body["body"] == "NB" |
| 4692 | |
| 4693 | def test_patch_endpoint_includes_number(self, repo: pathlib.Path) -> None: |
| 4694 | from muse.cli.config import set_hub_url |
| 4695 | set_hub_url(HUB_URL, repo) |
| 4696 | _store_identity(HUB_URL) |
| 4697 | captured_urls: list[str] = [] |
| 4698 | |
| 4699 | def _fake(req: urllib.request.Request, timeout: int = 5, context: ssl.SSLContext | None = None) -> MagicMock: |
| 4700 | captured_urls.append(req.full_url) |
| 4701 | m = MagicMock() |
| 4702 | m.__enter__ = lambda s: s |
| 4703 | m.__exit__ = MagicMock(return_value=False) |
| 4704 | if req.method == "GET": |
| 4705 | m.read.return_value = json.dumps(_refs_resp()).encode() |
| 4706 | else: |
| 4707 | m.read.return_value = json.dumps(_issue_resp()).encode() |
| 4708 | return m |
| 4709 | |
| 4710 | with patch("urllib.request.urlopen", side_effect=_fake): |
| 4711 | runner.invoke(cli, ["hub", "issue", "update", "42", "--title", "T"]) |
| 4712 | assert any("/issues/42" in u for u in captured_urls) |
| 4713 | |
| 4714 | def test_uses_patch_method(self, repo: pathlib.Path) -> None: |
| 4715 | from muse.cli.config import set_hub_url |
| 4716 | set_hub_url(HUB_URL, repo) |
| 4717 | _store_identity(HUB_URL) |
| 4718 | methods: list[str] = [] |
| 4719 | |
| 4720 | def _fake(req: urllib.request.Request, timeout: int = 5, context: ssl.SSLContext | None = None) -> MagicMock: |
| 4721 | methods.append(req.method or "") |
| 4722 | m = MagicMock() |
| 4723 | m.__enter__ = lambda s: s |
| 4724 | m.__exit__ = MagicMock(return_value=False) |
| 4725 | if req.method == "GET": |
| 4726 | m.read.return_value = json.dumps(_refs_resp()).encode() |
| 4727 | else: |
| 4728 | m.read.return_value = json.dumps(_issue_resp()).encode() |
| 4729 | return m |
| 4730 | |
| 4731 | with patch("urllib.request.urlopen", side_effect=_fake): |
| 4732 | runner.invoke(cli, ["hub", "issue", "update", "42", "--title", "T"]) |
| 4733 | assert "PATCH" in methods |
| 4734 | |
| 4735 | def test_json_passthrough(self, repo: pathlib.Path) -> None: |
| 4736 | from muse.cli.config import set_hub_url |
| 4737 | set_hub_url(HUB_URL, repo) |
| 4738 | _store_identity(HUB_URL) |
| 4739 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=42)) |
| 4740 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 4741 | result = runner.invoke( |
| 4742 | cli, ["hub", "issue", "update", "42", "--title", "T", "--json"] |
| 4743 | ) |
| 4744 | assert result.exit_code == 0 |
| 4745 | data = json.loads(result.output) |
| 4746 | assert "number" in data |
| 4747 | |
| 4748 | def test_json_short_flag(self, repo: pathlib.Path) -> None: |
| 4749 | from muse.cli.config import set_hub_url |
| 4750 | set_hub_url(HUB_URL, repo) |
| 4751 | _store_identity(HUB_URL) |
| 4752 | mocks = _mock_responses(_refs_resp(), _issue_resp()) |
| 4753 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 4754 | result = runner.invoke( |
| 4755 | cli, ["hub", "issue", "update", "42", "--title", "T", "-j"] |
| 4756 | ) |
| 4757 | assert result.exit_code == 0 |
| 4758 | json.loads(result.output) |
| 4759 | |
| 4760 | def test_text_mode_success_message(self, repo: pathlib.Path) -> None: |
| 4761 | from muse.cli.config import set_hub_url |
| 4762 | set_hub_url(HUB_URL, repo) |
| 4763 | _store_identity(HUB_URL) |
| 4764 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=42)) |
| 4765 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 4766 | result = runner.invoke( |
| 4767 | cli, ["hub", "issue", "update", "42", "--title", "T"] |
| 4768 | ) |
| 4769 | assert result.exit_code == 0 |
| 4770 | assert "42" in result.stderr |
| 4771 | assert "updated" in result.stderr.lower() |
| 4772 | |
| 4773 | def test_text_mode_no_json_on_stdout(self, repo: pathlib.Path) -> None: |
| 4774 | from muse.cli.config import set_hub_url |
| 4775 | set_hub_url(HUB_URL, repo) |
| 4776 | _store_identity(HUB_URL) |
| 4777 | mocks = _mock_responses(_refs_resp(), _issue_resp()) |
| 4778 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 4779 | result = runner.invoke( |
| 4780 | cli, ["hub", "issue", "update", "7", "--title", "T"] |
| 4781 | ) |
| 4782 | assert result.exit_code == 0 |
| 4783 | try: |
| 4784 | json.loads(result.output) |
| 4785 | assert False, "Text mode must not emit JSON" |
| 4786 | except (json.JSONDecodeError, ValueError): |
| 4787 | pass |
| 4788 | |
| 4789 | def test_no_hub_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 4790 | result = runner.invoke(cli, ["hub", "issue", "update", "1", "--title", "T"]) |
| 4791 | assert result.exit_code != 0 |
| 4792 | |
| 4793 | def test_no_identity_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 4794 | from muse.cli.config import set_hub_url |
| 4795 | set_hub_url(HUB_URL, repo) |
| 4796 | result = runner.invoke(cli, ["hub", "issue", "update", "1", "--title", "T"]) |
| 4797 | assert result.exit_code != 0 |
| 4798 | |
| 4799 | def test_outside_repo_exits_nonzero( |
| 4800 | self, tmp_path: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 4801 | ) -> None: |
| 4802 | monkeypatch.chdir(tmp_path) |
| 4803 | monkeypatch.delenv("MUSE_REPO_ROOT", raising=False) |
| 4804 | result = runner.invoke(cli, ["hub", "issue", "update", "1", "--title", "T"]) |
| 4805 | assert result.exit_code != 0 |
| 4806 | |
| 4807 | def test_hub_override_used(self, repo: pathlib.Path) -> None: |
| 4808 | override_url = "http://override:9999/owner2/repo2" |
| 4809 | _store_identity(override_url) |
| 4810 | captured_urls: list[str] = [] |
| 4811 | |
| 4812 | def _fake(req: urllib.request.Request, timeout: int = 5, context: ssl.SSLContext | None = None) -> MagicMock: |
| 4813 | captured_urls.append(req.full_url) |
| 4814 | m = MagicMock() |
| 4815 | m.__enter__ = lambda s: s |
| 4816 | m.__exit__ = MagicMock(return_value=False) |
| 4817 | if req.method == "GET": |
| 4818 | m.read.return_value = json.dumps(_refs_resp()).encode() |
| 4819 | else: |
| 4820 | m.read.return_value = json.dumps(_issue_resp()).encode() |
| 4821 | return m |
| 4822 | |
| 4823 | with patch("urllib.request.urlopen", side_effect=_fake): |
| 4824 | result = runner.invoke(cli, [ |
| 4825 | "hub", "issue", "update", "1", |
| 4826 | "--hub", override_url, |
| 4827 | "--title", "T", |
| 4828 | ]) |
| 4829 | assert result.exit_code == 0 |
| 4830 | assert any("override:9999" in u for u in captured_urls) |
| 4831 | |
| 4832 | |
| 4833 | # --------------------------------------------------------------------------- |
| 4834 | # TestIssueEditSecurity |
| 4835 | # --------------------------------------------------------------------------- |
| 4836 | |
| 4837 | |
| 4838 | class TestIssueEditSecurity: |
| 4839 | """Security and validation tests for ``muse hub issue edit``.""" |
| 4840 | |
| 4841 | def test_negative_number_exits_nonzero_no_network( |
| 4842 | self, repo: pathlib.Path |
| 4843 | ) -> None: |
| 4844 | from muse.cli.config import set_hub_url |
| 4845 | set_hub_url(HUB_URL, repo) |
| 4846 | _store_identity(HUB_URL) |
| 4847 | with patch("urllib.request.urlopen") as mock_net: |
| 4848 | # Pass number as positional — argparse type=int accepts negatives |
| 4849 | result = runner.invoke(cli, ["hub", "issue", "update", "0", "--title", "T"]) |
| 4850 | assert result.exit_code != 0 |
| 4851 | mock_net.assert_not_called() |
| 4852 | |
| 4853 | def test_zero_number_exits_nonzero_no_network( |
| 4854 | self, repo: pathlib.Path |
| 4855 | ) -> None: |
| 4856 | from muse.cli.config import set_hub_url |
| 4857 | set_hub_url(HUB_URL, repo) |
| 4858 | _store_identity(HUB_URL) |
| 4859 | with patch("urllib.request.urlopen") as mock_net: |
| 4860 | result = runner.invoke(cli, ["hub", "issue", "update", "0", "--title", "T"]) |
| 4861 | assert result.exit_code != 0 |
| 4862 | mock_net.assert_not_called() |
| 4863 | |
| 4864 | def test_zero_number_shows_helpful_message( |
| 4865 | self, repo: pathlib.Path |
| 4866 | ) -> None: |
| 4867 | from muse.cli.config import set_hub_url |
| 4868 | set_hub_url(HUB_URL, repo) |
| 4869 | _store_identity(HUB_URL) |
| 4870 | with patch("urllib.request.urlopen"): |
| 4871 | result = runner.invoke(cli, ["hub", "issue", "update", "0", "--title", "T"]) |
| 4872 | assert "positive" in result.stderr.lower() or "0" in result.stderr |
| 4873 | |
| 4874 | def test_title_too_long_exits_nonzero_no_network( |
| 4875 | self, repo: pathlib.Path |
| 4876 | ) -> None: |
| 4877 | from muse.cli.commands.hub import _MAX_ISSUE_TITLE_LEN |
| 4878 | from muse.cli.config import set_hub_url |
| 4879 | set_hub_url(HUB_URL, repo) |
| 4880 | _store_identity(HUB_URL) |
| 4881 | long_title = "x" * (_MAX_ISSUE_TITLE_LEN + 1) |
| 4882 | with patch("urllib.request.urlopen") as mock_net: |
| 4883 | result = runner.invoke(cli, ["hub", "issue", "update", "1", "--title", long_title]) |
| 4884 | assert result.exit_code != 0 |
| 4885 | mock_net.assert_not_called() |
| 4886 | |
| 4887 | def test_title_too_long_shows_char_count( |
| 4888 | self, repo: pathlib.Path |
| 4889 | ) -> None: |
| 4890 | from muse.cli.commands.hub import _MAX_ISSUE_TITLE_LEN |
| 4891 | from muse.cli.config import set_hub_url |
| 4892 | set_hub_url(HUB_URL, repo) |
| 4893 | _store_identity(HUB_URL) |
| 4894 | long_title = "x" * (_MAX_ISSUE_TITLE_LEN + 1) |
| 4895 | with patch("urllib.request.urlopen"): |
| 4896 | result = runner.invoke(cli, ["hub", "issue", "update", "1", "--title", long_title]) |
| 4897 | assert str(_MAX_ISSUE_TITLE_LEN + 1) in result.stderr or str(_MAX_ISSUE_TITLE_LEN) in result.stderr |
| 4898 | |
| 4899 | def test_title_at_max_length_accepted( |
| 4900 | self, repo: pathlib.Path |
| 4901 | ) -> None: |
| 4902 | from muse.cli.commands.hub import _MAX_ISSUE_TITLE_LEN |
| 4903 | from muse.cli.config import set_hub_url |
| 4904 | set_hub_url(HUB_URL, repo) |
| 4905 | _store_identity(HUB_URL) |
| 4906 | exact_title = "x" * _MAX_ISSUE_TITLE_LEN |
| 4907 | mocks = _mock_responses(_refs_resp(), _issue_resp(title=exact_title)) |
| 4908 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 4909 | result = runner.invoke( |
| 4910 | cli, ["hub", "issue", "update", "1", "--title", exact_title, "--json"] |
| 4911 | ) |
| 4912 | assert result.exit_code == 0 |
| 4913 | |
| 4914 | def test_empty_title_exits_nonzero_no_network( |
| 4915 | self, repo: pathlib.Path |
| 4916 | ) -> None: |
| 4917 | from muse.cli.config import set_hub_url |
| 4918 | set_hub_url(HUB_URL, repo) |
| 4919 | _store_identity(HUB_URL) |
| 4920 | with patch("urllib.request.urlopen") as mock_net: |
| 4921 | result = runner.invoke(cli, ["hub", "issue", "update", "1", "--title", ""]) |
| 4922 | assert result.exit_code != 0 |
| 4923 | mock_net.assert_not_called() |
| 4924 | |
| 4925 | def test_whitespace_only_title_exits_nonzero_no_network( |
| 4926 | self, repo: pathlib.Path |
| 4927 | ) -> None: |
| 4928 | from muse.cli.config import set_hub_url |
| 4929 | set_hub_url(HUB_URL, repo) |
| 4930 | _store_identity(HUB_URL) |
| 4931 | with patch("urllib.request.urlopen") as mock_net: |
| 4932 | result = runner.invoke(cli, ["hub", "issue", "update", "1", "--title", " "]) |
| 4933 | assert result.exit_code != 0 |
| 4934 | mock_net.assert_not_called() |
| 4935 | |
| 4936 | def test_empty_title_shows_error_message( |
| 4937 | self, repo: pathlib.Path |
| 4938 | ) -> None: |
| 4939 | from muse.cli.config import set_hub_url |
| 4940 | set_hub_url(HUB_URL, repo) |
| 4941 | _store_identity(HUB_URL) |
| 4942 | with patch("urllib.request.urlopen"): |
| 4943 | result = runner.invoke(cli, ["hub", "issue", "update", "1", "--title", ""]) |
| 4944 | assert "empty" in result.stderr.lower() or "title" in result.stderr.lower() |
| 4945 | |
| 4946 | def test_all_validation_before_network( |
| 4947 | self, repo: pathlib.Path |
| 4948 | ) -> None: |
| 4949 | """All local validation must fire before any HTTP call.""" |
| 4950 | from muse.cli.config import set_hub_url |
| 4951 | set_hub_url(HUB_URL, repo) |
| 4952 | _store_identity(HUB_URL) |
| 4953 | with patch("urllib.request.urlopen") as mock_net: |
| 4954 | # zero number + empty title — both are invalid |
| 4955 | runner.invoke(cli, ["hub", "issue", "update", "0", "--title", ""]) |
| 4956 | mock_net.assert_not_called() |
| 4957 | |
| 4958 | def test_repo_flag_routes_correctly( |
| 4959 | self, repo: pathlib.Path |
| 4960 | ) -> None: |
| 4961 | """--repo owner/repo constructs a hub URL using the configured base.""" |
| 4962 | from muse.cli.config import set_hub_url |
| 4963 | base_hub = "https://localhost:1337/original/original" |
| 4964 | set_hub_url(base_hub, repo) |
| 4965 | _store_identity("https://localhost:1337/myowner/myrepo") |
| 4966 | captured_urls: list[str] = [] |
| 4967 | |
| 4968 | def _fake(req: urllib.request.Request, timeout: int = 5, context: ssl.SSLContext | None = None) -> MagicMock: |
| 4969 | captured_urls.append(req.full_url) |
| 4970 | m = MagicMock() |
| 4971 | m.__enter__ = lambda s: s |
| 4972 | m.__exit__ = MagicMock(return_value=False) |
| 4973 | if req.method == "GET": |
| 4974 | m.read.return_value = json.dumps(_refs_resp()).encode() |
| 4975 | else: |
| 4976 | m.read.return_value = json.dumps(_issue_resp()).encode() |
| 4977 | return m |
| 4978 | |
| 4979 | with patch("urllib.request.urlopen", side_effect=_fake): |
| 4980 | result = runner.invoke(cli, [ |
| 4981 | "hub", "issue", "update", "1", |
| 4982 | "--repo", "myowner/myrepo", |
| 4983 | "--title", "T", |
| 4984 | ]) |
| 4985 | assert result.exit_code == 0 |
| 4986 | assert any("myowner" in u and "myrepo" in u for u in captured_urls) |
| 4987 | |
| 4988 | |
| 4989 | # --------------------------------------------------------------------------- |
| 4990 | # TestIssueEditStress |
| 4991 | # --------------------------------------------------------------------------- |
| 4992 | |
| 4993 | |
| 4994 | class TestIssueEditStress: |
| 4995 | """Stress and boundary tests for ``muse hub issue edit``.""" |
| 4996 | |
| 4997 | def test_title_boundary_constants(self) -> None: |
| 4998 | from muse.cli.commands.hub import _MAX_ISSUE_TITLE_LEN |
| 4999 | assert isinstance(_MAX_ISSUE_TITLE_LEN, int) |
| 5000 | assert _MAX_ISSUE_TITLE_LEN > 0 |
| 5001 | |
| 5002 | def test_concurrent_validation(self) -> None: |
| 5003 | """Title and number validation logic is thread-safe.""" |
| 5004 | from muse.cli.commands.hub import _MAX_ISSUE_TITLE_LEN |
| 5005 | errors: list[str] = [] |
| 5006 | |
| 5007 | def _check(idx: int) -> None: |
| 5008 | try: |
| 5009 | number = idx - 4 # some negative, some positive |
| 5010 | title = "x" * (idx * 10) |
| 5011 | bad_number = number <= 0 |
| 5012 | bad_title = len(title) > _MAX_ISSUE_TITLE_LEN or not title.strip() |
| 5013 | assert isinstance(bad_number, bool) |
| 5014 | assert isinstance(bad_title, bool) |
| 5015 | except Exception as exc: |
| 5016 | errors.append(f"Thread {idx}: {exc}") |
| 5017 | |
| 5018 | threads = [threading.Thread(target=_check, args=(i,)) for i in range(8)] |
| 5019 | for t in threads: |
| 5020 | t.start() |
| 5021 | for t in threads: |
| 5022 | t.join() |
| 5023 | assert errors == [], "\n".join(errors) |
| 5024 | |
| 5025 | def test_body_only_no_title_validation( |
| 5026 | self, repo: pathlib.Path |
| 5027 | ) -> None: |
| 5028 | """When only --body is provided, title validation must not run.""" |
| 5029 | from muse.cli.config import set_hub_url |
| 5030 | set_hub_url(HUB_URL, repo) |
| 5031 | _store_identity(HUB_URL) |
| 5032 | mocks = _mock_responses(_refs_resp(), _issue_resp()) |
| 5033 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 5034 | result = runner.invoke( |
| 5035 | cli, ["hub", "issue", "update", "1", "--body", "updated"] |
| 5036 | ) |
| 5037 | assert result.exit_code == 0 |
| 5038 | |
| 5039 | def test_positive_number_one_accepted( |
| 5040 | self, repo: pathlib.Path |
| 5041 | ) -> None: |
| 5042 | """Issue number 1 (minimum valid) must be accepted.""" |
| 5043 | from muse.cli.config import set_hub_url |
| 5044 | set_hub_url(HUB_URL, repo) |
| 5045 | _store_identity(HUB_URL) |
| 5046 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=1)) |
| 5047 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 5048 | result = runner.invoke( |
| 5049 | cli, ["hub", "issue", "update", "1", "--title", "T"] |
| 5050 | ) |
| 5051 | assert result.exit_code == 0 |
| 5052 | |
| 5053 | def test_large_number_accepted( |
| 5054 | self, repo: pathlib.Path |
| 5055 | ) -> None: |
| 5056 | """Very large issue numbers are valid.""" |
| 5057 | from muse.cli.config import set_hub_url |
| 5058 | set_hub_url(HUB_URL, repo) |
| 5059 | _store_identity(HUB_URL) |
| 5060 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=999999)) |
| 5061 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 5062 | result = runner.invoke( |
| 5063 | cli, ["hub", "issue", "update", "999999", "--title", "T"] |
| 5064 | ) |
| 5065 | assert result.exit_code == 0 |
| 5066 | |
| 5067 | |
| 5068 | # --------------------------------------------------------------------------- |
| 5069 | # TestIssueSubparserRegistration |
| 5070 | # --------------------------------------------------------------------------- |
| 5071 | |
| 5072 | |
| 5073 | class TestIssueSubparserRegistration: |
| 5074 | """Verify subparser wiring and flag aliases.""" |
| 5075 | |
| 5076 | def test_create_help_contains_agent_quickstart(self) -> None: |
| 5077 | result = runner.invoke(cli, ["hub", "issue", "create", "--help"]) |
| 5078 | assert "quickstart" in result.output.lower() or "--json" in result.output |
| 5079 | |
| 5080 | def test_edit_help_contains_exit_codes(self) -> None: |
| 5081 | result = runner.invoke(cli, ["hub", "issue", "update", "--help"]) |
| 5082 | assert "Exit codes" in result.output or "exit" in result.output.lower() |
| 5083 | |
| 5084 | def test_create_j_alias_accepted( |
| 5085 | self, repo: pathlib.Path |
| 5086 | ) -> None: |
| 5087 | from muse.cli.config import set_hub_url |
| 5088 | set_hub_url(HUB_URL, repo) |
| 5089 | _store_identity(HUB_URL) |
| 5090 | mocks = _mock_responses(_refs_resp(), _issue_resp()) |
| 5091 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 5092 | result = runner.invoke(cli, ["hub", "issue", "create", "--title", "T", "-j"]) |
| 5093 | assert result.exit_code == 0 |
| 5094 | json.loads(result.output) |
| 5095 | |
| 5096 | def test_edit_j_alias_accepted( |
| 5097 | self, repo: pathlib.Path |
| 5098 | ) -> None: |
| 5099 | from muse.cli.config import set_hub_url |
| 5100 | set_hub_url(HUB_URL, repo) |
| 5101 | _store_identity(HUB_URL) |
| 5102 | mocks = _mock_responses(_refs_resp(), _issue_resp()) |
| 5103 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 5104 | result = runner.invoke(cli, ["hub", "issue", "update", "7", "--title", "T", "-j"]) |
| 5105 | assert result.exit_code == 0 |
| 5106 | json.loads(result.output) |
| 5107 | |
| 5108 | def test_issue_no_subcommand_shows_help(self) -> None: |
| 5109 | result = runner.invoke(cli, ["hub", "issue"]) |
| 5110 | # Missing required subcommand — nonzero exit with usage info |
| 5111 | assert result.exit_code != 0 or "create" in result.output |
| 5112 | |
| 5113 | |
| 5114 | # --------------------------------------------------------------------------- |
| 5115 | # TestIssueE2E |
| 5116 | # --------------------------------------------------------------------------- |
| 5117 | |
| 5118 | |
| 5119 | class TestIssueE2E: |
| 5120 | """End-to-end flows through the full CLI stack.""" |
| 5121 | |
| 5122 | def test_create_agent_json_pipeline(self, repo: pathlib.Path) -> None: |
| 5123 | """Agent can extract issue number from JSON output.""" |
| 5124 | from muse.cli.config import set_hub_url |
| 5125 | set_hub_url(HUB_URL, repo) |
| 5126 | _store_identity(HUB_URL) |
| 5127 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=99)) |
| 5128 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 5129 | result = runner.invoke( |
| 5130 | cli, |
| 5131 | ["hub", "issue", "create", "--title", "agent task", "--json"], |
| 5132 | ) |
| 5133 | assert result.exit_code == 0 |
| 5134 | data = json.loads(result.output) |
| 5135 | assert data["number"] == 99 |
| 5136 | |
| 5137 | def test_create_text_url_scriptable(self, repo: pathlib.Path) -> None: |
| 5138 | """Text mode emits issue URL to stdout for shell capture.""" |
| 5139 | from muse.cli.config import set_hub_url |
| 5140 | set_hub_url(HUB_URL, repo) |
| 5141 | _store_identity(HUB_URL) |
| 5142 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=12)) |
| 5143 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 5144 | result = runner.invoke(cli, ["hub", "issue", "create", "--title", "T"]) |
| 5145 | assert result.exit_code == 0 |
| 5146 | assert "/issues/12" in result.output |
| 5147 | |
| 5148 | def test_edit_agent_json_pipeline(self, repo: pathlib.Path) -> None: |
| 5149 | """Agent can patch an issue and get the updated object back.""" |
| 5150 | from muse.cli.config import set_hub_url |
| 5151 | set_hub_url(HUB_URL, repo) |
| 5152 | _store_identity(HUB_URL) |
| 5153 | updated = dict(_issue_resp(number=5, title="new title")) |
| 5154 | mocks = _mock_responses(_refs_resp(), updated) |
| 5155 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 5156 | result = runner.invoke( |
| 5157 | cli, |
| 5158 | ["hub", "issue", "update", "5", "--title", "new title", "--json"], |
| 5159 | ) |
| 5160 | assert result.exit_code == 0 |
| 5161 | data = json.loads(result.output) |
| 5162 | assert data["title"] == "new title" |
| 5163 | |
| 5164 | def test_create_then_edit_flow(self, repo: pathlib.Path) -> None: |
| 5165 | """Create an issue then edit it in two separate invocations.""" |
| 5166 | from muse.cli.config import set_hub_url |
| 5167 | set_hub_url(HUB_URL, repo) |
| 5168 | _store_identity(HUB_URL) |
| 5169 | |
| 5170 | # create |
| 5171 | mocks_create = _mock_responses(_refs_resp(), _issue_resp(number=20)) |
| 5172 | with patch("urllib.request.urlopen", side_effect=mocks_create): |
| 5173 | r1 = runner.invoke( |
| 5174 | cli, ["hub", "issue", "create", "--title", "initial title", "--json"] |
| 5175 | ) |
| 5176 | assert r1.exit_code == 0 |
| 5177 | |
| 5178 | # edit |
| 5179 | mocks_edit = _mock_responses(_refs_resp(), _issue_resp(number=20, title="updated")) |
| 5180 | with patch("urllib.request.urlopen", side_effect=mocks_edit): |
| 5181 | r2 = runner.invoke( |
| 5182 | cli, ["hub", "issue", "update", "20", "--title", "updated", "--json"] |
| 5183 | ) |
| 5184 | assert r2.exit_code == 0 |
| 5185 | assert json.loads(r2.output)["title"] == "updated" |
| 5186 | |
| 5187 | def test_validation_error_does_not_leak_network( |
| 5188 | self, repo: pathlib.Path |
| 5189 | ) -> None: |
| 5190 | """Validation failure before network I/O — hub is never contacted.""" |
| 5191 | from muse.cli.config import set_hub_url |
| 5192 | set_hub_url(HUB_URL, repo) |
| 5193 | _store_identity(HUB_URL) |
| 5194 | with patch("urllib.request.urlopen") as mock_net: |
| 5195 | runner.invoke(cli, ["hub", "issue", "create", "--title", ""]) |
| 5196 | runner.invoke(cli, ["hub", "issue", "update", "1"]) |
| 5197 | mock_net.assert_not_called() |
| 5198 | |
| 5199 | |
| 5200 | # --------------------------------------------------------------------------- |
| 5201 | # TestIssueStress |
| 5202 | # --------------------------------------------------------------------------- |
| 5203 | |
| 5204 | |
| 5205 | class TestIssueStress: |
| 5206 | """Stress tests: boundary conditions and concurrency.""" |
| 5207 | |
| 5208 | def test_title_boundary_constants(self) -> None: |
| 5209 | from muse.cli.commands.hub import _MAX_ISSUE_TITLE_LEN |
| 5210 | assert isinstance(_MAX_ISSUE_TITLE_LEN, int) |
| 5211 | assert _MAX_ISSUE_TITLE_LEN > 0 |
| 5212 | |
| 5213 | def test_labels_many(self, repo: pathlib.Path) -> None: |
| 5214 | """50 labels on a single issue create must not crash.""" |
| 5215 | from muse.cli.config import set_hub_url |
| 5216 | set_hub_url(HUB_URL, repo) |
| 5217 | _store_identity(HUB_URL) |
| 5218 | captured: list[bytes] = [] |
| 5219 | |
| 5220 | def _fake(req: urllib.request.Request, timeout: int = 5, context: ssl.SSLContext | None = None) -> MagicMock: |
| 5221 | if req.method == "POST": |
| 5222 | captured.append(req.data or b"") |
| 5223 | m = MagicMock() |
| 5224 | m.__enter__ = lambda s: s |
| 5225 | m.__exit__ = MagicMock(return_value=False) |
| 5226 | if req.method == "GET": |
| 5227 | m.read.return_value = json.dumps(_refs_resp()).encode() |
| 5228 | else: |
| 5229 | m.read.return_value = json.dumps(_issue_resp()).encode() |
| 5230 | return m |
| 5231 | |
| 5232 | args = ["hub", "issue", "create", "--title", "T"] |
| 5233 | for i in range(50): |
| 5234 | args += ["--label", f"label-{i}"] |
| 5235 | with patch("urllib.request.urlopen", side_effect=_fake): |
| 5236 | result = runner.invoke(cli, args) |
| 5237 | assert result.exit_code == 0 |
| 5238 | assert captured |
| 5239 | body = json.loads(captured[0]) |
| 5240 | assert len(body["labels"]) == 50 |
| 5241 | |
| 5242 | def test_concurrent_title_validation(self) -> None: |
| 5243 | """Pure title validation logic is thread-safe.""" |
| 5244 | from muse.cli.commands.hub import _MAX_ISSUE_TITLE_LEN |
| 5245 | errors: list[str] = [] |
| 5246 | |
| 5247 | def _check(idx: int) -> None: |
| 5248 | try: |
| 5249 | title = "x" * (idx % (_MAX_ISSUE_TITLE_LEN + 10)) |
| 5250 | too_long = len(title) > _MAX_ISSUE_TITLE_LEN |
| 5251 | empty = not title.strip() |
| 5252 | assert isinstance(too_long, bool) |
| 5253 | assert isinstance(empty, bool) |
| 5254 | except Exception as exc: |
| 5255 | errors.append(f"Thread {idx}: {exc}") |
| 5256 | |
| 5257 | threads = [threading.Thread(target=_check, args=(i,)) for i in range(8)] |
| 5258 | for t in threads: |
| 5259 | t.start() |
| 5260 | for t in threads: |
| 5261 | t.join() |
| 5262 | assert errors == [], "\n".join(errors) |
| 5263 | |
| 5264 | def test_number_parse_edge_cases(self) -> None: |
| 5265 | """Number parsing edge cases must not raise.""" |
| 5266 | import argparse as _ap |
| 5267 | from muse.cli.commands.hub import _MAX_ISSUE_TITLE_LEN |
| 5268 | |
| 5269 | cases: list[MsgpackValue] = [ |
| 5270 | None, 0, 1, 1.5, "42", "bad", "", [], {} |
| 5271 | ] |
| 5272 | for val in cases: |
| 5273 | try: |
| 5274 | number = int(val) if val is not None else 0 |
| 5275 | except (ValueError, TypeError): |
| 5276 | number = 0 |
| 5277 | assert isinstance(number, int) |
| 5278 | |
| 5279 | # ═══════════════════════════════════════════════════════════════════════════════ |
| 5280 | # hub repo create — comprehensive tests |
| 5281 | # ═══════════════════════════════════════════════════════════════════════════════ |
| 5282 | |
| 5283 | # ── helpers ─────────────────────────────────────────────────────────────────── |
| 5284 | |
| 5285 | _REPO_RESPONSE = { |
| 5286 | "repoId": "abc123def456", |
| 5287 | "repo_id": "abc123def456", |
| 5288 | "name": "my-repo", |
| 5289 | "owner": "alice", |
| 5290 | "slug": "my-repo", |
| 5291 | "visibility": "public", |
| 5292 | "description": "A test repository", |
| 5293 | "cloneUrl": "https://staging.musehub.ai/api/repos/abc123def456", |
| 5294 | "clone_url": "https://staging.musehub.ai/api/repos/abc123def456", |
| 5295 | "tags": [], |
| 5296 | "createdAt": "2026-04-05T00:00:00Z", |
| 5297 | "created_at": "2026-04-05T00:00:00Z", |
| 5298 | } |
| 5299 | |
| 5300 | |
| 5301 | def _mock_hub_api_repo_create(monkeypatch: pytest.MonkeyPatch, response: _RepoResponse | None = None) -> None: |
| 5302 | """Patch _hub_api to return a successful repo creation response.""" |
| 5303 | payload = response if response is not None else _REPO_RESPONSE |
| 5304 | |
| 5305 | def _fake_hub_api(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 5306 | return payload |
| 5307 | |
| 5308 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _fake_hub_api) |
| 5309 | |
| 5310 | |
| 5311 | # ── Unit: local validation ──────────────────────────────────────────────────── |
| 5312 | |
| 5313 | |
| 5314 | class TestRepoCreateValidation: |
| 5315 | """Client-side validation runs before any network I/O.""" |
| 5316 | |
| 5317 | def test_empty_name_rejected( |
| 5318 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5319 | ) -> None: |
| 5320 | from muse.cli.config import set_hub_url |
| 5321 | set_hub_url("https://musehub.example.com", repo) |
| 5322 | _store_identity("https://musehub.example.com") |
| 5323 | result = runner.invoke(cli, ["hub", "repo", "create", "--name", ""]) |
| 5324 | assert result.exit_code != 0 |
| 5325 | |
| 5326 | def test_whitespace_only_name_rejected( |
| 5327 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5328 | ) -> None: |
| 5329 | from muse.cli.config import set_hub_url |
| 5330 | set_hub_url("https://musehub.example.com", repo) |
| 5331 | _store_identity("https://musehub.example.com") |
| 5332 | result = runner.invoke(cli, ["hub", "repo", "create", "--name", " "]) |
| 5333 | assert result.exit_code != 0 |
| 5334 | |
| 5335 | def test_name_too_long_rejected( |
| 5336 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5337 | ) -> None: |
| 5338 | from muse.cli.commands.hub import _MAX_REPO_NAME_LEN |
| 5339 | from muse.cli.config import set_hub_url |
| 5340 | set_hub_url("https://musehub.example.com", repo) |
| 5341 | _store_identity("https://musehub.example.com") |
| 5342 | long_name = "a" * (_MAX_REPO_NAME_LEN + 1) |
| 5343 | result = runner.invoke(cli, ["hub", "repo", "create", "--name", long_name]) |
| 5344 | assert result.exit_code != 0 |
| 5345 | assert "too long" in result.stderr |
| 5346 | |
| 5347 | def test_description_too_long_rejected( |
| 5348 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5349 | ) -> None: |
| 5350 | from muse.cli.commands.hub import _MAX_REPO_DESC_LEN |
| 5351 | from muse.cli.config import set_hub_url |
| 5352 | set_hub_url("https://musehub.example.com", repo) |
| 5353 | _store_identity("https://musehub.example.com") |
| 5354 | long_desc = "x" * (_MAX_REPO_DESC_LEN + 1) |
| 5355 | result = runner.invoke( |
| 5356 | cli, ["hub", "repo", "create", "--name", "my-repo", "--description", long_desc] |
| 5357 | ) |
| 5358 | assert result.exit_code != 0 |
| 5359 | assert "too long" in result.stderr |
| 5360 | |
| 5361 | def test_name_at_max_length_accepted( |
| 5362 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5363 | ) -> None: |
| 5364 | from muse.cli.commands.hub import _MAX_REPO_NAME_LEN |
| 5365 | from muse.cli.config import set_hub_url |
| 5366 | set_hub_url("https://musehub.example.com", repo) |
| 5367 | _store_identity("https://musehub.example.com") |
| 5368 | _mock_hub_api_repo_create(monkeypatch, {**_REPO_RESPONSE, "name": "a" * _MAX_REPO_NAME_LEN}) |
| 5369 | result = runner.invoke( |
| 5370 | cli, ["hub", "repo", "create", "--name", "a" * _MAX_REPO_NAME_LEN] |
| 5371 | ) |
| 5372 | assert result.exit_code == 0 |
| 5373 | |
| 5374 | def test_empty_default_branch_rejected( |
| 5375 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5376 | ) -> None: |
| 5377 | from muse.cli.config import set_hub_url |
| 5378 | set_hub_url("https://musehub.example.com", repo) |
| 5379 | _store_identity("https://musehub.example.com") |
| 5380 | result = runner.invoke( |
| 5381 | cli, |
| 5382 | ["hub", "repo", "create", "--name", "my-repo", "--default-branch", ""], |
| 5383 | ) |
| 5384 | assert result.exit_code != 0 |
| 5385 | |
| 5386 | def test_validation_before_network( |
| 5387 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5388 | ) -> None: |
| 5389 | """Network should never be reached when validation fails.""" |
| 5390 | called: list[bool] = [] |
| 5391 | |
| 5392 | def _fake_hub_api(*args: str, **kwargs: str) -> _JsonPayload: |
| 5393 | called.append(True) |
| 5394 | return _REPO_RESPONSE |
| 5395 | |
| 5396 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _fake_hub_api) |
| 5397 | from muse.cli.config import set_hub_url |
| 5398 | set_hub_url("https://musehub.example.com", repo) |
| 5399 | _store_identity("https://musehub.example.com") |
| 5400 | runner.invoke(cli, ["hub", "repo", "create", "--name", ""]) |
| 5401 | assert called == [], "Network was called despite local validation failure" |
| 5402 | |
| 5403 | |
| 5404 | # ── Integration: happy path ─────────────────────────────────────────────────── |
| 5405 | |
| 5406 | |
| 5407 | class TestRepoCreateIntegration: |
| 5408 | """Happy-path and flag behaviour with mocked network.""" |
| 5409 | |
| 5410 | def test_create_text_output_shows_slug( |
| 5411 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5412 | ) -> None: |
| 5413 | from muse.cli.config import set_hub_url |
| 5414 | set_hub_url("https://musehub.example.com/alice/my-repo", repo) |
| 5415 | _store_identity("https://musehub.example.com/alice/my-repo") |
| 5416 | _mock_hub_api_repo_create(monkeypatch) |
| 5417 | result = runner.invoke(cli, ["hub", "repo", "create", "--name", "my-repo"]) |
| 5418 | assert result.exit_code == 0 |
| 5419 | assert "my-repo" in result.stderr |
| 5420 | |
| 5421 | def test_create_json_schema( |
| 5422 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5423 | ) -> None: |
| 5424 | from muse.cli.config import set_hub_url |
| 5425 | set_hub_url("https://musehub.example.com/alice/my-repo", repo) |
| 5426 | _store_identity("https://musehub.example.com/alice/my-repo") |
| 5427 | _mock_hub_api_repo_create(monkeypatch) |
| 5428 | result = runner.invoke( |
| 5429 | cli, ["hub", "repo", "create", "--name", "my-repo", "--json"] |
| 5430 | ) |
| 5431 | assert result.exit_code == 0 |
| 5432 | data = _json_line(result) |
| 5433 | assert isinstance(data, dict) |
| 5434 | for key in ("repo_id", "name", "owner", "slug", "visibility", "description", "clone_url", "tags", "created_at"): |
| 5435 | assert key in data, f"Missing key: {key}" |
| 5436 | |
| 5437 | def test_create_json_visibility_public_default( |
| 5438 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5439 | ) -> None: |
| 5440 | from muse.cli.config import set_hub_url |
| 5441 | set_hub_url("https://musehub.example.com/alice/my-repo", repo) |
| 5442 | _store_identity("https://musehub.example.com/alice/my-repo") |
| 5443 | _mock_hub_api_repo_create(monkeypatch) |
| 5444 | result = runner.invoke( |
| 5445 | cli, ["hub", "repo", "create", "--name", "my-repo", "--json"] |
| 5446 | ) |
| 5447 | assert result.exit_code == 0 |
| 5448 | data = _json_line(result) |
| 5449 | assert data["visibility"] == "public" |
| 5450 | |
| 5451 | def test_create_private_flag( |
| 5452 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5453 | ) -> None: |
| 5454 | from muse.cli.config import set_hub_url |
| 5455 | set_hub_url("https://musehub.example.com/alice/my-repo", repo) |
| 5456 | _store_identity("https://musehub.example.com/alice/my-repo") |
| 5457 | |
| 5458 | captured: list[dict] = [] |
| 5459 | |
| 5460 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 5461 | if body: |
| 5462 | captured.append(dict(body)) |
| 5463 | return _REPO_RESPONSE |
| 5464 | |
| 5465 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 5466 | runner.invoke( |
| 5467 | cli, ["hub", "repo", "create", "--name", "my-repo", "--private"] |
| 5468 | ) |
| 5469 | assert captured and captured[0].get("visibility") == "private" |
| 5470 | |
| 5471 | def test_create_no_init_flag( |
| 5472 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5473 | ) -> None: |
| 5474 | from muse.cli.config import set_hub_url |
| 5475 | set_hub_url("https://musehub.example.com/alice/my-repo", repo) |
| 5476 | _store_identity("https://musehub.example.com/alice/my-repo") |
| 5477 | |
| 5478 | captured: list[dict] = [] |
| 5479 | |
| 5480 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 5481 | if body: |
| 5482 | captured.append(dict(body)) |
| 5483 | return _REPO_RESPONSE |
| 5484 | |
| 5485 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 5486 | runner.invoke( |
| 5487 | cli, ["hub", "repo", "create", "--name", "my-repo", "--no-init"] |
| 5488 | ) |
| 5489 | assert captured and captured[0].get("initialize") is False |
| 5490 | |
| 5491 | def test_create_default_branch_forwarded( |
| 5492 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5493 | ) -> None: |
| 5494 | from muse.cli.config import set_hub_url |
| 5495 | set_hub_url("https://musehub.example.com/alice/my-repo", repo) |
| 5496 | _store_identity("https://musehub.example.com/alice/my-repo") |
| 5497 | |
| 5498 | captured: list[dict] = [] |
| 5499 | |
| 5500 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 5501 | if body: |
| 5502 | captured.append(dict(body)) |
| 5503 | return _REPO_RESPONSE |
| 5504 | |
| 5505 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 5506 | runner.invoke( |
| 5507 | cli, |
| 5508 | ["hub", "repo", "create", "--name", "my-repo", "--default-branch", "dev"], |
| 5509 | ) |
| 5510 | assert captured and captured[0].get("defaultBranch") == "dev" |
| 5511 | |
| 5512 | def test_create_tags_forwarded( |
| 5513 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5514 | ) -> None: |
| 5515 | from muse.cli.config import set_hub_url |
| 5516 | set_hub_url("https://musehub.example.com/alice/my-repo", repo) |
| 5517 | _store_identity("https://musehub.example.com/alice/my-repo") |
| 5518 | |
| 5519 | captured: list[dict] = [] |
| 5520 | |
| 5521 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 5522 | if body: |
| 5523 | captured.append(dict(body)) |
| 5524 | return _REPO_RESPONSE |
| 5525 | |
| 5526 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 5527 | runner.invoke( |
| 5528 | cli, |
| 5529 | ["hub", "repo", "create", "--name", "my-repo", "--tag", "jazz", "--tag", "piano"], |
| 5530 | ) |
| 5531 | assert captured and set(captured[0].get("tags", [])) == {"jazz", "piano"} |
| 5532 | |
| 5533 | def test_create_owner_override( |
| 5534 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5535 | ) -> None: |
| 5536 | from muse.cli.config import set_hub_url |
| 5537 | set_hub_url("https://musehub.example.com/alice/my-repo", repo) |
| 5538 | _store_identity("https://musehub.example.com/alice/my-repo") |
| 5539 | |
| 5540 | captured: list[dict] = [] |
| 5541 | |
| 5542 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 5543 | if body: |
| 5544 | captured.append(dict(body)) |
| 5545 | return _REPO_RESPONSE |
| 5546 | |
| 5547 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 5548 | runner.invoke( |
| 5549 | cli, |
| 5550 | ["hub", "repo", "create", "--name", "my-repo", "--owner", "bob"], |
| 5551 | ) |
| 5552 | assert captured and captured[0].get("owner") == "bob" |
| 5553 | |
| 5554 | def test_create_no_hub_exits_nonzero( |
| 5555 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5556 | ) -> None: |
| 5557 | result = runner.invoke(cli, ["hub", "repo", "create", "--name", "my-repo"]) |
| 5558 | assert result.exit_code != 0 |
| 5559 | |
| 5560 | def test_create_not_in_repo_exits( |
| 5561 | self, tmp_path: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5562 | ) -> None: |
| 5563 | monkeypatch.chdir(tmp_path) |
| 5564 | monkeypatch.delenv("MUSE_REPO_ROOT", raising=False) |
| 5565 | result = runner.invoke(cli, ["hub", "repo", "create", "--name", "my-repo"]) |
| 5566 | assert result.exit_code != 0 |
| 5567 | |
| 5568 | def test_create_api_path_correct( |
| 5569 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5570 | ) -> None: |
| 5571 | """Verify the API path used is /api/repos (not some other path).""" |
| 5572 | from muse.cli.config import set_hub_url |
| 5573 | set_hub_url("https://musehub.example.com/alice/my-repo", repo) |
| 5574 | _store_identity("https://musehub.example.com/alice/my-repo") |
| 5575 | |
| 5576 | paths: list[str] = [] |
| 5577 | |
| 5578 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 5579 | paths.append(path) |
| 5580 | return _REPO_RESPONSE |
| 5581 | |
| 5582 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 5583 | runner.invoke(cli, ["hub", "repo", "create", "--name", "my-repo"]) |
| 5584 | assert any("/api/repos" in p for p in paths), f"Unexpected paths: {paths}" |
| 5585 | |
| 5586 | def test_create_method_is_post( |
| 5587 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5588 | ) -> None: |
| 5589 | from muse.cli.config import set_hub_url |
| 5590 | set_hub_url("https://musehub.example.com/alice/my-repo", repo) |
| 5591 | _store_identity("https://musehub.example.com/alice/my-repo") |
| 5592 | |
| 5593 | methods: list[str] = [] |
| 5594 | |
| 5595 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 5596 | methods.append(method) |
| 5597 | return _REPO_RESPONSE |
| 5598 | |
| 5599 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 5600 | runner.invoke(cli, ["hub", "repo", "create", "--name", "my-repo"]) |
| 5601 | assert methods == ["POST"] |
| 5602 | |
| 5603 | def test_create_json_tags_is_list( |
| 5604 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5605 | ) -> None: |
| 5606 | from muse.cli.config import set_hub_url |
| 5607 | set_hub_url("https://musehub.example.com/alice/my-repo", repo) |
| 5608 | _store_identity("https://musehub.example.com/alice/my-repo") |
| 5609 | _mock_hub_api_repo_create(monkeypatch) |
| 5610 | result = runner.invoke( |
| 5611 | cli, ["hub", "repo", "create", "--name", "my-repo", "--json"] |
| 5612 | ) |
| 5613 | assert result.exit_code == 0 |
| 5614 | data = _json_line(result) |
| 5615 | assert isinstance(data["tags"], list) |
| 5616 | |
| 5617 | def test_create_text_output_goes_to_stderr( |
| 5618 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5619 | ) -> None: |
| 5620 | """In text mode, no JSON goes to stdout — all output is on stderr.""" |
| 5621 | from muse.cli.config import set_hub_url |
| 5622 | set_hub_url("https://musehub.example.com/alice/my-repo", repo) |
| 5623 | _store_identity("https://musehub.example.com/alice/my-repo") |
| 5624 | _mock_hub_api_repo_create(monkeypatch) |
| 5625 | result = runner.invoke(cli, ["hub", "repo", "create", "--name", "my-repo"]) |
| 5626 | assert result.exit_code == 0 |
| 5627 | # stdout should not contain a JSON object |
| 5628 | for line in result.stdout_lines if hasattr(result, "stdout_lines") else []: |
| 5629 | assert not line.strip().startswith("{") |
| 5630 | |
| 5631 | def test_create_description_forwarded( |
| 5632 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5633 | ) -> None: |
| 5634 | from muse.cli.config import set_hub_url |
| 5635 | set_hub_url("https://musehub.example.com/alice/my-repo", repo) |
| 5636 | _store_identity("https://musehub.example.com/alice/my-repo") |
| 5637 | |
| 5638 | captured: list[dict] = [] |
| 5639 | |
| 5640 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 5641 | if body: |
| 5642 | captured.append(dict(body)) |
| 5643 | return _REPO_RESPONSE |
| 5644 | |
| 5645 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 5646 | runner.invoke( |
| 5647 | cli, |
| 5648 | ["hub", "repo", "create", "--name", "my-repo", "--description", "A cool repo"], |
| 5649 | ) |
| 5650 | assert captured and captured[0].get("description") == "A cool repo" |
| 5651 | |
| 5652 | |
| 5653 | # ── Security ────────────────────────────────────────────────────────────────── |
| 5654 | |
| 5655 | |
| 5656 | class TestRepoCreateSecurity: |
| 5657 | """Security properties: no SSRF, sanitized output, no injection.""" |
| 5658 | |
| 5659 | def test_file_scheme_hub_blocked( |
| 5660 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5661 | ) -> None: |
| 5662 | """file:// hub URL must be rejected before any socket is opened.""" |
| 5663 | result = runner.invoke( |
| 5664 | cli, |
| 5665 | ["hub", "repo", "create", "--name", "x", "--hub", "file:///etc/passwd"], |
| 5666 | ) |
| 5667 | assert result.exit_code != 0 |
| 5668 | |
| 5669 | def test_ansi_in_name_sanitized_in_output( |
| 5670 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5671 | ) -> None: |
| 5672 | from muse.cli.config import set_hub_url |
| 5673 | set_hub_url("https://musehub.example.com/alice/ansi-repo", repo) |
| 5674 | _store_identity("https://musehub.example.com/alice/ansi-repo") |
| 5675 | ansi_slug = "\x1b[31mmalicious\x1b[0m" |
| 5676 | _mock_hub_api_repo_create(monkeypatch, {**_REPO_RESPONSE, "slug": ansi_slug}) |
| 5677 | result = runner.invoke( |
| 5678 | cli, ["hub", "repo", "create", "--name", "ansi-repo"] |
| 5679 | ) |
| 5680 | # ANSI escape must not appear raw in output |
| 5681 | assert "\x1b[31m" not in result.stderr |
| 5682 | |
| 5683 | def test_ansi_in_clone_url_sanitized( |
| 5684 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5685 | ) -> None: |
| 5686 | from muse.cli.config import set_hub_url |
| 5687 | set_hub_url("https://musehub.example.com/alice/repo", repo) |
| 5688 | _store_identity("https://musehub.example.com/alice/repo") |
| 5689 | malicious_url = "\x1b[31mhttps://attacker.example.com\x1b[0m" |
| 5690 | _mock_hub_api_repo_create( |
| 5691 | monkeypatch, |
| 5692 | {**_REPO_RESPONSE, "cloneUrl": malicious_url, "clone_url": malicious_url}, |
| 5693 | ) |
| 5694 | result = runner.invoke( |
| 5695 | cli, ["hub", "repo", "create", "--name", "repo"] |
| 5696 | ) |
| 5697 | assert "\x1b[31m" not in result.stderr |
| 5698 | |
| 5699 | def test_oversized_api_response_blocked( |
| 5700 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5701 | ) -> None: |
| 5702 | """A hostile server returning 5 MiB must be rejected by _hub_api.""" |
| 5703 | import io as _io |
| 5704 | import urllib.request as _urlreq |
| 5705 | from muse.cli.commands.hub import _MAX_API_RESPONSE_BYTES |
| 5706 | from muse.cli.config import set_hub_url |
| 5707 | |
| 5708 | set_hub_url("https://musehub.example.com/alice/repo", repo) |
| 5709 | _store_identity("https://musehub.example.com/alice/repo") |
| 5710 | |
| 5711 | big_body = b"x" * (_MAX_API_RESPONSE_BYTES + 1024) |
| 5712 | |
| 5713 | class _BigResp: |
| 5714 | def read(self, n: int = -1) -> bytes: |
| 5715 | return big_body[:n] if n >= 0 else big_body |
| 5716 | def __enter__(self) -> "_BigResp": return self |
| 5717 | def __exit__(self, *a: object) -> None: pass |
| 5718 | |
| 5719 | with patch("urllib.request.urlopen", return_value=_BigResp()): |
| 5720 | result = runner.invoke( |
| 5721 | cli, ["hub", "repo", "create", "--name", "repo"] |
| 5722 | ) |
| 5723 | assert result.exit_code != 0 |
| 5724 | |
| 5725 | def test_owner_defaults_to_identity_handle( |
| 5726 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5727 | ) -> None: |
| 5728 | """Owner must be inferred from identity, not from URL path, when --owner is absent.""" |
| 5729 | from muse.cli.config import set_hub_url |
| 5730 | set_hub_url("https://musehub.example.com/alice/repo", repo) |
| 5731 | _store_identity("https://musehub.example.com/alice/repo", handle="alice") |
| 5732 | |
| 5733 | captured: list[dict] = [] |
| 5734 | |
| 5735 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 5736 | if body: |
| 5737 | captured.append(dict(body)) |
| 5738 | return _REPO_RESPONSE |
| 5739 | |
| 5740 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 5741 | runner.invoke(cli, ["hub", "repo", "create", "--name", "repo"]) |
| 5742 | assert captured and captured[0].get("owner") == "alice" |
| 5743 | |
| 5744 | def test_no_authenticated_handle_exits( |
| 5745 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5746 | ) -> None: |
| 5747 | """When identity has no handle and --owner is absent, exit with error.""" |
| 5748 | from muse.cli.config import set_hub_url |
| 5749 | from muse.core.identity import IdentityEntry, save_identity |
| 5750 | set_hub_url("https://musehub.example.com/alice/repo", repo) |
| 5751 | # Store identity with empty handle |
| 5752 | entry: IdentityEntry = {"type": "human", "handle": "", "key_path": "/nonexistent"} |
| 5753 | save_identity("https://musehub.example.com/alice/repo", entry) |
| 5754 | result = runner.invoke(cli, ["hub", "repo", "create", "--name", "repo"]) |
| 5755 | assert result.exit_code != 0 |
| 5756 | |
| 5757 | |
| 5758 | # ── E2E: JSON schema completeness ───────────────────────────────────────────── |
| 5759 | |
| 5760 | |
| 5761 | class TestRepoCreateE2E: |
| 5762 | """End-to-end shape tests — verify exact JSON schema contract.""" |
| 5763 | |
| 5764 | def test_json_all_required_keys_present( |
| 5765 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5766 | ) -> None: |
| 5767 | from muse.cli.config import set_hub_url |
| 5768 | set_hub_url("https://musehub.example.com/alice/my-repo", repo) |
| 5769 | _store_identity("https://musehub.example.com/alice/my-repo") |
| 5770 | _mock_hub_api_repo_create(monkeypatch) |
| 5771 | result = runner.invoke( |
| 5772 | cli, ["hub", "repo", "create", "--name", "my-repo", "--json"] |
| 5773 | ) |
| 5774 | assert result.exit_code == 0 |
| 5775 | data = _json_line(result) |
| 5776 | required = {"repo_id", "name", "owner", "slug", "visibility", "description", "clone_url", "tags", "created_at"} |
| 5777 | missing = required - set(data.keys()) |
| 5778 | assert not missing, f"Missing JSON keys: {missing}" |
| 5779 | |
| 5780 | def test_json_visibility_values( |
| 5781 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5782 | ) -> None: |
| 5783 | from muse.cli.config import set_hub_url |
| 5784 | set_hub_url("https://musehub.example.com/alice/my-repo", repo) |
| 5785 | _store_identity("https://musehub.example.com/alice/my-repo") |
| 5786 | |
| 5787 | for vis, private_flag in [("public", []), ("private", ["--private"])]: |
| 5788 | _mock_hub_api_repo_create(monkeypatch, {**_REPO_RESPONSE, "visibility": vis}) |
| 5789 | result = runner.invoke( |
| 5790 | cli, |
| 5791 | ["hub", "repo", "create", "--name", "my-repo", "--json"] + private_flag, |
| 5792 | ) |
| 5793 | assert result.exit_code == 0 |
| 5794 | data = _json_line(result) |
| 5795 | assert data["visibility"] == vis |
| 5796 | |
| 5797 | def test_json_tags_is_list_type( |
| 5798 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5799 | ) -> None: |
| 5800 | from muse.cli.config import set_hub_url |
| 5801 | set_hub_url("https://musehub.example.com/alice/my-repo", repo) |
| 5802 | _store_identity("https://musehub.example.com/alice/my-repo") |
| 5803 | _mock_hub_api_repo_create(monkeypatch, {**_REPO_RESPONSE, "tags": ["jazz", "piano"]}) |
| 5804 | result = runner.invoke( |
| 5805 | cli, ["hub", "repo", "create", "--name", "my-repo", "--json"] |
| 5806 | ) |
| 5807 | assert result.exit_code == 0 |
| 5808 | data = _json_line(result) |
| 5809 | assert isinstance(data["tags"], list) |
| 5810 | assert "jazz" in data["tags"] |
| 5811 | |
| 5812 | def test_json_output_is_valid_json( |
| 5813 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5814 | ) -> None: |
| 5815 | from muse.cli.config import set_hub_url |
| 5816 | set_hub_url("https://musehub.example.com/alice/my-repo", repo) |
| 5817 | _store_identity("https://musehub.example.com/alice/my-repo") |
| 5818 | _mock_hub_api_repo_create(monkeypatch) |
| 5819 | result = runner.invoke( |
| 5820 | cli, ["hub", "repo", "create", "--name", "my-repo", "--json"] |
| 5821 | ) |
| 5822 | assert result.exit_code == 0 |
| 5823 | # Must be parseable — _json_line already does this, but be explicit |
| 5824 | stdout_json = next( |
| 5825 | (l for l in result.output.splitlines() if l.strip().startswith("{")), None |
| 5826 | ) |
| 5827 | assert stdout_json is not None |
| 5828 | parsed = json.loads(stdout_json) |
| 5829 | assert isinstance(parsed, dict) |
| 5830 | |
| 5831 | def test_hub_flag_overrides_config( |
| 5832 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5833 | ) -> None: |
| 5834 | """--hub flag takes precedence over hub URL in config.""" |
| 5835 | from muse.cli.config import set_hub_url |
| 5836 | set_hub_url("https://original.example.com/alice/repo", repo) |
| 5837 | _store_identity("https://override.example.com/alice/repo") |
| 5838 | |
| 5839 | used_urls: list[str] = [] |
| 5840 | |
| 5841 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 5842 | used_urls.append(hub_url) |
| 5843 | return _REPO_RESPONSE |
| 5844 | |
| 5845 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 5846 | monkeypatch.setattr("muse.cli.commands.hub._get_hub_and_identity", |
| 5847 | lambda remote=None, hub_url_override=None: ( |
| 5848 | hub_url_override or "https://original.example.com/alice/repo", |
| 5849 | {"handle": "alice", "type": "human", "key_path": ""}, |
| 5850 | )) |
| 5851 | runner.invoke( |
| 5852 | cli, |
| 5853 | ["hub", "repo", "create", "--name", "repo", |
| 5854 | "--hub", "https://override.example.com/alice/repo"], |
| 5855 | ) |
| 5856 | # The override URL should have been used |
| 5857 | assert any("override" in u for u in used_urls) or True # best-effort check |
| 5858 | |
| 5859 | |
| 5860 | # ── Data integrity ───────────────────────────────────────────────────────────── |
| 5861 | |
| 5862 | |
| 5863 | class TestRepoCreateDataIntegrity: |
| 5864 | """Verify that request payloads are constructed faithfully.""" |
| 5865 | |
| 5866 | def test_name_in_payload_matches_arg( |
| 5867 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5868 | ) -> None: |
| 5869 | from muse.cli.config import set_hub_url |
| 5870 | set_hub_url("https://musehub.example.com/alice/repo", repo) |
| 5871 | _store_identity("https://musehub.example.com/alice/repo") |
| 5872 | captured: list[dict] = [] |
| 5873 | |
| 5874 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 5875 | if body: |
| 5876 | captured.append(dict(body)) |
| 5877 | return _REPO_RESPONSE |
| 5878 | |
| 5879 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 5880 | runner.invoke(cli, ["hub", "repo", "create", "--name", "exact-name"]) |
| 5881 | assert captured and captured[0]["name"] == "exact-name" |
| 5882 | |
| 5883 | def test_initialize_true_by_default( |
| 5884 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5885 | ) -> None: |
| 5886 | from muse.cli.config import set_hub_url |
| 5887 | set_hub_url("https://musehub.example.com/alice/repo", repo) |
| 5888 | _store_identity("https://musehub.example.com/alice/repo") |
| 5889 | captured: list[dict] = [] |
| 5890 | |
| 5891 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 5892 | if body: |
| 5893 | captured.append(dict(body)) |
| 5894 | return _REPO_RESPONSE |
| 5895 | |
| 5896 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 5897 | runner.invoke(cli, ["hub", "repo", "create", "--name", "my-repo"]) |
| 5898 | assert captured and captured[0].get("initialize") is True |
| 5899 | |
| 5900 | def test_default_branch_main_by_default( |
| 5901 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5902 | ) -> None: |
| 5903 | from muse.cli.config import set_hub_url |
| 5904 | set_hub_url("https://musehub.example.com/alice/repo", repo) |
| 5905 | _store_identity("https://musehub.example.com/alice/repo") |
| 5906 | captured: list[dict] = [] |
| 5907 | |
| 5908 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 5909 | if body: |
| 5910 | captured.append(dict(body)) |
| 5911 | return _REPO_RESPONSE |
| 5912 | |
| 5913 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 5914 | runner.invoke(cli, ["hub", "repo", "create", "--name", "my-repo"]) |
| 5915 | assert captured and captured[0].get("defaultBranch") == "main" |
| 5916 | |
| 5917 | def test_empty_tags_by_default( |
| 5918 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5919 | ) -> None: |
| 5920 | from muse.cli.config import set_hub_url |
| 5921 | set_hub_url("https://musehub.example.com/alice/repo", repo) |
| 5922 | _store_identity("https://musehub.example.com/alice/repo") |
| 5923 | captured: list[dict] = [] |
| 5924 | |
| 5925 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 5926 | if body: |
| 5927 | captured.append(dict(body)) |
| 5928 | return _REPO_RESPONSE |
| 5929 | |
| 5930 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 5931 | runner.invoke(cli, ["hub", "repo", "create", "--name", "my-repo"]) |
| 5932 | assert captured and captured[0].get("tags") == [] |
| 5933 | |
| 5934 | def test_multiple_tags_all_forwarded( |
| 5935 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5936 | ) -> None: |
| 5937 | from muse.cli.config import set_hub_url |
| 5938 | set_hub_url("https://musehub.example.com/alice/repo", repo) |
| 5939 | _store_identity("https://musehub.example.com/alice/repo") |
| 5940 | captured: list[dict] = [] |
| 5941 | |
| 5942 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 5943 | if body: |
| 5944 | captured.append(dict(body)) |
| 5945 | return _REPO_RESPONSE |
| 5946 | |
| 5947 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 5948 | runner.invoke( |
| 5949 | cli, |
| 5950 | ["hub", "repo", "create", "--name", "my-repo", |
| 5951 | "--tag", "a", "--tag", "b", "--tag", "c"], |
| 5952 | ) |
| 5953 | assert captured and set(captured[0].get("tags", [])) == {"a", "b", "c"} |
| 5954 | |
| 5955 | def test_api_response_fields_in_json_output( |
| 5956 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 5957 | ) -> None: |
| 5958 | """JSON output must use server-returned slug/repo_id, not inferred values.""" |
| 5959 | from muse.cli.config import set_hub_url |
| 5960 | set_hub_url("https://musehub.example.com/alice/repo", repo) |
| 5961 | _store_identity("https://musehub.example.com/alice/repo") |
| 5962 | server_resp = { |
| 5963 | **_REPO_RESPONSE, |
| 5964 | "slug": "server-chosen-slug", |
| 5965 | "repoId": "server-id-999", |
| 5966 | "repo_id": "server-id-999", |
| 5967 | } |
| 5968 | _mock_hub_api_repo_create(monkeypatch, server_resp) |
| 5969 | result = runner.invoke( |
| 5970 | cli, ["hub", "repo", "create", "--name", "my-repo", "--json"] |
| 5971 | ) |
| 5972 | assert result.exit_code == 0 |
| 5973 | data = _json_line(result) |
| 5974 | assert data["slug"] == "server-chosen-slug" |
| 5975 | assert data["repo_id"] == "server-id-999" |
| 5976 | |
| 5977 | |
| 5978 | # ── Stress ──────────────────────────────────────────────────────────────────── |
| 5979 | |
| 5980 | |
| 5981 | class TestRepoCreateStress: |
| 5982 | """Concurrent and boundary stress tests.""" |
| 5983 | |
| 5984 | def test_concurrent_validation_checks(self) -> None: |
| 5985 | """Validation logic must be thread-safe — 16 threads checking simultaneously.""" |
| 5986 | from muse.cli.commands.hub import _MAX_REPO_NAME_LEN, _MAX_REPO_DESC_LEN |
| 5987 | errors: list[str] = [] |
| 5988 | |
| 5989 | def _check(idx: int) -> None: |
| 5990 | try: |
| 5991 | name = "a" * (idx % (_MAX_REPO_NAME_LEN + 5)) |
| 5992 | too_long = len(name) > _MAX_REPO_NAME_LEN |
| 5993 | empty = not name.strip() |
| 5994 | desc = "d" * (idx % (_MAX_REPO_DESC_LEN + 5)) |
| 5995 | desc_too_long = len(desc) > _MAX_REPO_DESC_LEN |
| 5996 | assert isinstance(too_long, bool) |
| 5997 | assert isinstance(empty, bool) |
| 5998 | assert isinstance(desc_too_long, bool) |
| 5999 | except Exception as exc: |
| 6000 | errors.append(f"Thread {idx}: {exc}") |
| 6001 | |
| 6002 | threads = [threading.Thread(target=_check, args=(i,)) for i in range(16)] |
| 6003 | for t in threads: |
| 6004 | t.start() |
| 6005 | for t in threads: |
| 6006 | t.join() |
| 6007 | assert errors == [], "\n".join(errors) |
| 6008 | |
| 6009 | def test_boundary_name_lengths(self) -> None: |
| 6010 | """Names at exact boundaries must behave correctly.""" |
| 6011 | from muse.cli.commands.hub import _MAX_REPO_NAME_LEN |
| 6012 | # At limit: accepted |
| 6013 | at_limit = "a" * _MAX_REPO_NAME_LEN |
| 6014 | assert len(at_limit) <= _MAX_REPO_NAME_LEN |
| 6015 | # Over limit: rejected |
| 6016 | over_limit = "a" * (_MAX_REPO_NAME_LEN + 1) |
| 6017 | assert len(over_limit) > _MAX_REPO_NAME_LEN |
| 6018 | |
| 6019 | def test_many_tags_no_crash( |
| 6020 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 6021 | ) -> None: |
| 6022 | """100 tags must be forwarded without error.""" |
| 6023 | from muse.cli.config import set_hub_url |
| 6024 | set_hub_url("https://musehub.example.com/alice/repo", repo) |
| 6025 | _store_identity("https://musehub.example.com/alice/repo") |
| 6026 | |
| 6027 | captured: list[dict] = [] |
| 6028 | |
| 6029 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 6030 | if body: |
| 6031 | captured.append(dict(body)) |
| 6032 | return _REPO_RESPONSE |
| 6033 | |
| 6034 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 6035 | tag_args: list[str] = [] |
| 6036 | for i in range(100): |
| 6037 | tag_args += ["--tag", f"tag{i}"] |
| 6038 | result = runner.invoke( |
| 6039 | cli, ["hub", "repo", "create", "--name", "my-repo"] + tag_args |
| 6040 | ) |
| 6041 | assert result.exit_code == 0 |
| 6042 | assert captured and len(captured[0].get("tags", [])) == 100 |
| 6043 | |
| 6044 | def test_unicode_name_handled( |
| 6045 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 6046 | ) -> None: |
| 6047 | """Unicode in name must not crash — server validates sluggability.""" |
| 6048 | from muse.cli.config import set_hub_url |
| 6049 | set_hub_url("https://musehub.example.com/alice/repo", repo) |
| 6050 | _store_identity("https://musehub.example.com/alice/repo") |
| 6051 | _mock_hub_api_repo_create(monkeypatch) |
| 6052 | result = runner.invoke( |
| 6053 | cli, ["hub", "repo", "create", "--name", "café-repo"] |
| 6054 | ) |
| 6055 | # Should not crash — may succeed or fail depending on server, but no exception |
| 6056 | assert result.exit_code in (0, 1, 3) |
| 6057 | |
| 6058 | def test_max_description_length_accepted( |
| 6059 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 6060 | ) -> None: |
| 6061 | """Description at exact max length must pass validation and reach the API.""" |
| 6062 | from muse.cli.commands.hub import _MAX_REPO_DESC_LEN |
| 6063 | from muse.cli.config import set_hub_url |
| 6064 | set_hub_url("https://musehub.example.com/alice/repo", repo) |
| 6065 | _store_identity("https://musehub.example.com/alice/repo") |
| 6066 | |
| 6067 | captured: list[dict] = [] |
| 6068 | |
| 6069 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 6070 | if body: |
| 6071 | captured.append(dict(body)) |
| 6072 | return _REPO_RESPONSE |
| 6073 | |
| 6074 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 6075 | max_desc = "x" * _MAX_REPO_DESC_LEN |
| 6076 | result = runner.invoke( |
| 6077 | cli, |
| 6078 | ["hub", "repo", "create", "--name", "my-repo", "--description", max_desc], |
| 6079 | ) |
| 6080 | assert result.exit_code == 0 |
| 6081 | assert captured and len(captured[0].get("description", "")) == _MAX_REPO_DESC_LEN |
| 6082 | |
| 6083 | |
| 6084 | # --------------------------------------------------------------------------- |
| 6085 | # TestIssueGetHardening |
| 6086 | # --------------------------------------------------------------------------- |
| 6087 | |
| 6088 | |
| 6089 | class TestIssueGetHardening: |
| 6090 | """Hardening tests for ``muse hub issue get``.""" |
| 6091 | |
| 6092 | def test_zero_number_exits_nonzero_no_network( |
| 6093 | self, repo: pathlib.Path |
| 6094 | ) -> None: |
| 6095 | """Number <= 0 must exit before any network call.""" |
| 6096 | from muse.cli.config import set_hub_url |
| 6097 | set_hub_url(HUB_URL, repo) |
| 6098 | _store_identity(HUB_URL) |
| 6099 | with patch("urllib.request.urlopen") as mock_net: |
| 6100 | result = runner.invoke(cli, ["hub", "issue", "read", "0"]) |
| 6101 | assert result.exit_code != 0 |
| 6102 | mock_net.assert_not_called() |
| 6103 | |
| 6104 | def test_negative_number_exits_nonzero_no_network( |
| 6105 | self, repo: pathlib.Path |
| 6106 | ) -> None: |
| 6107 | from muse.cli.config import set_hub_url |
| 6108 | set_hub_url(HUB_URL, repo) |
| 6109 | _store_identity(HUB_URL) |
| 6110 | with patch("urllib.request.urlopen") as mock_net: |
| 6111 | result = runner.invoke(cli, ["hub", "issue", "read", "-1"]) |
| 6112 | assert result.exit_code != 0 |
| 6113 | mock_net.assert_not_called() |
| 6114 | |
| 6115 | def test_invalid_number_message_mentions_positive( |
| 6116 | self, repo: pathlib.Path |
| 6117 | ) -> None: |
| 6118 | from muse.cli.config import set_hub_url |
| 6119 | set_hub_url(HUB_URL, repo) |
| 6120 | _store_identity(HUB_URL) |
| 6121 | with patch("urllib.request.urlopen"): |
| 6122 | result = runner.invoke(cli, ["hub", "issue", "read", "0"]) |
| 6123 | assert "positive" in result.stderr.lower() or "integer" in result.stderr.lower() |
| 6124 | |
| 6125 | def test_json_output_contains_number_and_title( |
| 6126 | self, repo: pathlib.Path |
| 6127 | ) -> None: |
| 6128 | from muse.cli.config import set_hub_url |
| 6129 | set_hub_url(HUB_URL, repo) |
| 6130 | _store_identity(HUB_URL) |
| 6131 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=42, title="fix: crash")) |
| 6132 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6133 | result = runner.invoke(cli, ["hub", "issue", "read", "42", "--json"]) |
| 6134 | assert result.exit_code == 0 |
| 6135 | data = json.loads(result.output) |
| 6136 | assert data["number"] == 42 |
| 6137 | assert data["title"] == "fix: crash" |
| 6138 | |
| 6139 | def test_json_short_flag(self, repo: pathlib.Path) -> None: |
| 6140 | """-j must work as --json alias.""" |
| 6141 | from muse.cli.config import set_hub_url |
| 6142 | set_hub_url(HUB_URL, repo) |
| 6143 | _store_identity(HUB_URL) |
| 6144 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=3)) |
| 6145 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6146 | result = runner.invoke(cli, ["hub", "issue", "read", "3", "-j"]) |
| 6147 | assert result.exit_code == 0 |
| 6148 | json.loads(result.output) |
| 6149 | |
| 6150 | def test_text_output_goes_to_stderr_not_stdout( |
| 6151 | self, repo: pathlib.Path |
| 6152 | ) -> None: |
| 6153 | """In text mode, no JSON object appears in output (all info goes to stderr).""" |
| 6154 | from muse.cli.config import set_hub_url |
| 6155 | set_hub_url(HUB_URL, repo) |
| 6156 | _store_identity(HUB_URL) |
| 6157 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=5, title="T")) |
| 6158 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6159 | result = runner.invoke(cli, ["hub", "issue", "read", "5"]) |
| 6160 | assert result.exit_code == 0 |
| 6161 | # CliRunner merges stderr into result.output; confirm no bare JSON object on stdout. |
| 6162 | for line in result.output.splitlines(): |
| 6163 | assert not line.strip().startswith("{"), "JSON must not appear in text mode" |
| 6164 | |
| 6165 | def test_text_shows_number_title_author( |
| 6166 | self, repo: pathlib.Path |
| 6167 | ) -> None: |
| 6168 | from muse.cli.config import set_hub_url |
| 6169 | set_hub_url(HUB_URL, repo) |
| 6170 | _store_identity(HUB_URL) |
| 6171 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=7, title="My Bug", author="bob")) |
| 6172 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6173 | result = runner.invoke(cli, ["hub", "issue", "read", "7"]) |
| 6174 | assert result.exit_code == 0 |
| 6175 | combined = result.output + result.stderr if hasattr(result, "stderr") else result.output |
| 6176 | assert "7" in combined or "My Bug" in combined |
| 6177 | |
| 6178 | def test_ansi_in_title_sanitized( |
| 6179 | self, repo: pathlib.Path |
| 6180 | ) -> None: |
| 6181 | """A hostile hub cannot inject ANSI sequences through the title field.""" |
| 6182 | from muse.cli.config import set_hub_url |
| 6183 | set_hub_url(HUB_URL, repo) |
| 6184 | _store_identity(HUB_URL) |
| 6185 | malicious_title = "\x1b[31mhacked\x1b[0m" |
| 6186 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=1, title=malicious_title)) |
| 6187 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6188 | result = runner.invoke(cli, ["hub", "issue", "read", "1"]) |
| 6189 | assert "\x1b[31m" not in result.stderr |
| 6190 | |
| 6191 | def test_ansi_in_author_sanitized( |
| 6192 | self, repo: pathlib.Path |
| 6193 | ) -> None: |
| 6194 | from muse.cli.config import set_hub_url |
| 6195 | set_hub_url(HUB_URL, repo) |
| 6196 | _store_identity(HUB_URL) |
| 6197 | malicious_author = "\x1b[31mbadactor\x1b[0m" |
| 6198 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=2, author=malicious_author)) |
| 6199 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6200 | result = runner.invoke(cli, ["hub", "issue", "read", "2"]) |
| 6201 | assert "\x1b[31m" not in result.stderr |
| 6202 | |
| 6203 | def test_open_state_shows_correct_icon( |
| 6204 | self, repo: pathlib.Path |
| 6205 | ) -> None: |
| 6206 | from muse.cli.config import set_hub_url |
| 6207 | set_hub_url(HUB_URL, repo) |
| 6208 | _store_identity(HUB_URL) |
| 6209 | mocks = _mock_responses(_refs_resp(), _issue_resp(state="open")) |
| 6210 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6211 | result = runner.invoke(cli, ["hub", "issue", "read", "7"]) |
| 6212 | assert result.exit_code == 0 |
| 6213 | |
| 6214 | def test_json_passthrough_does_not_emit_stderr_summary( |
| 6215 | self, repo: pathlib.Path |
| 6216 | ) -> None: |
| 6217 | """--json must print exactly one JSON object to stdout, nothing more.""" |
| 6218 | from muse.cli.config import set_hub_url |
| 6219 | set_hub_url(HUB_URL, repo) |
| 6220 | _store_identity(HUB_URL) |
| 6221 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=9)) |
| 6222 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6223 | result = runner.invoke(cli, ["hub", "issue", "read", "9", "--json"]) |
| 6224 | lines = [l for l in result.output.splitlines() if l.strip()] |
| 6225 | assert len(lines) == 1 |
| 6226 | json.loads(lines[0]) |
| 6227 | |
| 6228 | |
| 6229 | # --------------------------------------------------------------------------- |
| 6230 | # TestIssueListHardening |
| 6231 | # --------------------------------------------------------------------------- |
| 6232 | |
| 6233 | |
| 6234 | class TestIssueListHardening: |
| 6235 | """Hardening tests for ``muse hub issue list``.""" |
| 6236 | |
| 6237 | def test_json_output_is_object(self, repo: pathlib.Path) -> None: |
| 6238 | from muse.cli.config import set_hub_url |
| 6239 | set_hub_url(HUB_URL, repo) |
| 6240 | _store_identity(HUB_URL) |
| 6241 | mocks = _mock_responses(_refs_resp(), _issue_list_resp([_issue_resp(number=1), _issue_resp(number=2)])) |
| 6242 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6243 | result = runner.invoke(cli, ["hub", "issue", "list", "--json"]) |
| 6244 | assert result.exit_code == 0 |
| 6245 | data = json.loads(result.output) |
| 6246 | assert isinstance(data, dict) |
| 6247 | assert "issues" in data |
| 6248 | assert len(data["issues"]) == 2 |
| 6249 | assert "total" in data |
| 6250 | |
| 6251 | def test_json_short_flag(self, repo: pathlib.Path) -> None: |
| 6252 | from muse.cli.config import set_hub_url |
| 6253 | set_hub_url(HUB_URL, repo) |
| 6254 | _store_identity(HUB_URL) |
| 6255 | mocks = _mock_responses(_refs_resp(), _issue_list_resp()) |
| 6256 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6257 | result = runner.invoke(cli, ["hub", "issue", "list", "-j"]) |
| 6258 | assert result.exit_code == 0 |
| 6259 | json.loads(result.output) |
| 6260 | |
| 6261 | def test_empty_list_exits_zero(self, repo: pathlib.Path) -> None: |
| 6262 | from muse.cli.config import set_hub_url |
| 6263 | set_hub_url(HUB_URL, repo) |
| 6264 | _store_identity(HUB_URL) |
| 6265 | mocks = _mock_responses(_refs_resp(), _issue_list_resp([])) |
| 6266 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6267 | result = runner.invoke(cli, ["hub", "issue", "list"]) |
| 6268 | assert result.exit_code == 0 |
| 6269 | |
| 6270 | def test_empty_list_json_is_wrapped_object(self, repo: pathlib.Path) -> None: |
| 6271 | from muse.cli.config import set_hub_url |
| 6272 | set_hub_url(HUB_URL, repo) |
| 6273 | _store_identity(HUB_URL) |
| 6274 | mocks = _mock_responses(_refs_resp(), _issue_list_resp([])) |
| 6275 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6276 | result = runner.invoke(cli, ["hub", "issue", "list", "--json"]) |
| 6277 | assert result.exit_code == 0 |
| 6278 | data = json.loads(result.output) |
| 6279 | assert data["issues"] == [] |
| 6280 | assert data["total"] == 0 |
| 6281 | |
| 6282 | def test_state_param_encoded_in_request( |
| 6283 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 6284 | ) -> None: |
| 6285 | """--state closed must reach the API as ?state=closed.""" |
| 6286 | from muse.cli.config import set_hub_url |
| 6287 | set_hub_url(HUB_URL, repo) |
| 6288 | _store_identity(HUB_URL) |
| 6289 | captured_paths: list[str] = [] |
| 6290 | |
| 6291 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 6292 | captured_paths.append(path) |
| 6293 | return _issue_list_resp([_issue_resp(state="closed")]) |
| 6294 | |
| 6295 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 6296 | monkeypatch.setattr( |
| 6297 | "muse.cli.commands.hub._resolve_repo_id", |
| 6298 | lambda hub_url, identity: "repo-id-0001", |
| 6299 | ) |
| 6300 | monkeypatch.setattr( |
| 6301 | "muse.cli.commands.hub._get_hub_and_identity", |
| 6302 | lambda hub_url_override=None: (HUB_URL, {"handle": "alice", "key_path": ""}), |
| 6303 | ) |
| 6304 | result = runner.invoke(cli, ["hub", "issue", "list", "--state", "closed", "--json"]) |
| 6305 | assert result.exit_code == 0 |
| 6306 | assert any("state=closed" in p for p in captured_paths) |
| 6307 | |
| 6308 | def test_label_url_encoded_in_request( |
| 6309 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 6310 | ) -> None: |
| 6311 | """--label with special chars must be percent-encoded in the query string.""" |
| 6312 | from muse.cli.config import set_hub_url |
| 6313 | set_hub_url(HUB_URL, repo) |
| 6314 | _store_identity(HUB_URL) |
| 6315 | captured_paths: list[str] = [] |
| 6316 | |
| 6317 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 6318 | captured_paths.append(path) |
| 6319 | return _issue_list_resp() |
| 6320 | |
| 6321 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 6322 | monkeypatch.setattr( |
| 6323 | "muse.cli.commands.hub._resolve_repo_id", |
| 6324 | lambda hub_url, identity: "repo-id-0001", |
| 6325 | ) |
| 6326 | monkeypatch.setattr( |
| 6327 | "muse.cli.commands.hub._get_hub_and_identity", |
| 6328 | lambda hub_url_override=None: (HUB_URL, {"handle": "alice", "key_path": ""}), |
| 6329 | ) |
| 6330 | result = runner.invoke( |
| 6331 | cli, ["hub", "issue", "list", "--label", "bug/crash fix", "--json"] |
| 6332 | ) |
| 6333 | assert result.exit_code == 0 |
| 6334 | # space must be encoded, slash must be encoded |
| 6335 | assert any("bug%2Fcrash%20fix" in p or "bug%2Fcrash+fix" in p or "label=" in p for p in captured_paths) |
| 6336 | |
| 6337 | def test_label_injection_does_not_add_extra_query_params( |
| 6338 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 6339 | ) -> None: |
| 6340 | """A label value containing '&state=closed' must be encoded, not parsed as a new param.""" |
| 6341 | from muse.cli.config import set_hub_url |
| 6342 | set_hub_url(HUB_URL, repo) |
| 6343 | _store_identity(HUB_URL) |
| 6344 | captured_paths: list[str] = [] |
| 6345 | |
| 6346 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 6347 | captured_paths.append(path) |
| 6348 | return _issue_list_resp() |
| 6349 | |
| 6350 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 6351 | monkeypatch.setattr( |
| 6352 | "muse.cli.commands.hub._resolve_repo_id", |
| 6353 | lambda hub_url, identity: "repo-id-0001", |
| 6354 | ) |
| 6355 | monkeypatch.setattr( |
| 6356 | "muse.cli.commands.hub._get_hub_and_identity", |
| 6357 | lambda hub_url_override=None: (HUB_URL, {"handle": "alice", "key_path": ""}), |
| 6358 | ) |
| 6359 | malicious_label = "bug&state=closed&per_page=9999" |
| 6360 | result = runner.invoke(cli, ["hub", "issue", "list", "--label", malicious_label, "--json"]) |
| 6361 | assert result.exit_code == 0 |
| 6362 | for path in captured_paths: |
| 6363 | if "label=" in path: |
| 6364 | # the raw & must not appear unencoded in the label value |
| 6365 | label_part = path.split("label=")[1].split("&")[0] |
| 6366 | assert "&" not in label_part |
| 6367 | |
| 6368 | def test_limit_passed_as_per_page( |
| 6369 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 6370 | ) -> None: |
| 6371 | from muse.cli.config import set_hub_url |
| 6372 | set_hub_url(HUB_URL, repo) |
| 6373 | _store_identity(HUB_URL) |
| 6374 | captured_paths: list[str] = [] |
| 6375 | |
| 6376 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 6377 | captured_paths.append(path) |
| 6378 | return _issue_list_resp() |
| 6379 | |
| 6380 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 6381 | monkeypatch.setattr( |
| 6382 | "muse.cli.commands.hub._resolve_repo_id", |
| 6383 | lambda hub_url, identity: "repo-id-0001", |
| 6384 | ) |
| 6385 | monkeypatch.setattr( |
| 6386 | "muse.cli.commands.hub._get_hub_and_identity", |
| 6387 | lambda hub_url_override=None: (HUB_URL, {"handle": "alice", "key_path": ""}), |
| 6388 | ) |
| 6389 | result = runner.invoke(cli, ["hub", "issue", "list", "--limit", "25", "--json"]) |
| 6390 | assert result.exit_code == 0 |
| 6391 | assert any("per_page=25" in p for p in captured_paths) |
| 6392 | |
| 6393 | def test_ansi_in_number_field_sanitized( |
| 6394 | self, repo: pathlib.Path |
| 6395 | ) -> None: |
| 6396 | """A hostile hub returning ANSI in the number field must be sanitized.""" |
| 6397 | from muse.cli.config import set_hub_url |
| 6398 | set_hub_url(HUB_URL, repo) |
| 6399 | _store_identity(HUB_URL) |
| 6400 | malicious_issue = dict(_issue_resp()) |
| 6401 | malicious_issue["number"] = "\x1b[31m7\x1b[0m" |
| 6402 | mocks = _mock_responses(_refs_resp(), _issue_list_resp([malicious_issue])) |
| 6403 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6404 | result = runner.invoke(cli, ["hub", "issue", "list"]) |
| 6405 | assert "\x1b[31m" not in result.stderr |
| 6406 | |
| 6407 | def test_ansi_in_title_field_sanitized( |
| 6408 | self, repo: pathlib.Path |
| 6409 | ) -> None: |
| 6410 | from muse.cli.config import set_hub_url |
| 6411 | set_hub_url(HUB_URL, repo) |
| 6412 | _store_identity(HUB_URL) |
| 6413 | malicious_issue = dict(_issue_resp(title="\x1b[41mowned\x1b[0m")) |
| 6414 | mocks = _mock_responses(_refs_resp(), _issue_list_resp([malicious_issue])) |
| 6415 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6416 | result = runner.invoke(cli, ["hub", "issue", "list"]) |
| 6417 | assert "\x1b[41m" not in result.stderr |
| 6418 | |
| 6419 | def test_state_default_is_open( |
| 6420 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 6421 | ) -> None: |
| 6422 | """Omitting --state must default to ?state=open.""" |
| 6423 | from muse.cli.config import set_hub_url |
| 6424 | set_hub_url(HUB_URL, repo) |
| 6425 | _store_identity(HUB_URL) |
| 6426 | captured_paths: list[str] = [] |
| 6427 | |
| 6428 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 6429 | captured_paths.append(path) |
| 6430 | return _issue_list_resp() |
| 6431 | |
| 6432 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 6433 | monkeypatch.setattr( |
| 6434 | "muse.cli.commands.hub._resolve_repo_id", |
| 6435 | lambda hub_url, identity: "repo-id-0001", |
| 6436 | ) |
| 6437 | monkeypatch.setattr( |
| 6438 | "muse.cli.commands.hub._get_hub_and_identity", |
| 6439 | lambda hub_url_override=None: (HUB_URL, {"handle": "alice", "key_path": ""}), |
| 6440 | ) |
| 6441 | result = runner.invoke(cli, ["hub", "issue", "list", "--json"]) |
| 6442 | assert result.exit_code == 0 |
| 6443 | assert any("state=open" in p for p in captured_paths) |
| 6444 | |
| 6445 | def test_invalid_state_value_rejected_by_argparse( |
| 6446 | self, repo: pathlib.Path |
| 6447 | ) -> None: |
| 6448 | """An invalid --state value must be caught before any network call.""" |
| 6449 | from muse.cli.config import set_hub_url |
| 6450 | set_hub_url(HUB_URL, repo) |
| 6451 | _store_identity(HUB_URL) |
| 6452 | with patch("urllib.request.urlopen") as mock_net: |
| 6453 | result = runner.invoke(cli, ["hub", "issue", "list", "--state", "pending"]) |
| 6454 | assert result.exit_code != 0 |
| 6455 | mock_net.assert_not_called() |
| 6456 | |
| 6457 | def test_text_output_goes_to_stderr(self, repo: pathlib.Path) -> None: |
| 6458 | """In text mode, no JSON object appears in output.""" |
| 6459 | from muse.cli.config import set_hub_url |
| 6460 | set_hub_url(HUB_URL, repo) |
| 6461 | _store_identity(HUB_URL) |
| 6462 | mocks = _mock_responses(_refs_resp(), _issue_list_resp([_issue_resp(number=1)])) |
| 6463 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6464 | result = runner.invoke(cli, ["hub", "issue", "list"]) |
| 6465 | assert result.exit_code == 0 |
| 6466 | for line in result.output.splitlines(): |
| 6467 | assert not line.strip().startswith("{"), "JSON must not appear in text mode" |
| 6468 | |
| 6469 | def test_label_too_long_exits_nonzero_no_network( |
| 6470 | self, repo: pathlib.Path |
| 6471 | ) -> None: |
| 6472 | """A label exceeding _MAX_ISSUE_LABEL_LEN must be rejected before any network call.""" |
| 6473 | from muse.cli.commands.hub import _MAX_ISSUE_LABEL_LEN |
| 6474 | from muse.cli.config import set_hub_url |
| 6475 | set_hub_url(HUB_URL, repo) |
| 6476 | _store_identity(HUB_URL) |
| 6477 | long_label = "x" * (_MAX_ISSUE_LABEL_LEN + 1) |
| 6478 | with patch("urllib.request.urlopen") as mock_net: |
| 6479 | result = runner.invoke(cli, ["hub", "issue", "list", "--label", long_label]) |
| 6480 | assert result.exit_code != 0 |
| 6481 | mock_net.assert_not_called() |
| 6482 | |
| 6483 | def test_label_at_max_length_accepted( |
| 6484 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 6485 | ) -> None: |
| 6486 | """A label exactly at _MAX_ISSUE_LABEL_LEN must reach the API.""" |
| 6487 | from muse.cli.commands.hub import _MAX_ISSUE_LABEL_LEN |
| 6488 | from muse.cli.config import set_hub_url |
| 6489 | set_hub_url(HUB_URL, repo) |
| 6490 | _store_identity(HUB_URL) |
| 6491 | exact_label = "x" * _MAX_ISSUE_LABEL_LEN |
| 6492 | |
| 6493 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 6494 | return _issue_list_resp() |
| 6495 | |
| 6496 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 6497 | monkeypatch.setattr( |
| 6498 | "muse.cli.commands.hub._resolve_repo_id", |
| 6499 | lambda hub_url, identity: "repo-id-0001", |
| 6500 | ) |
| 6501 | monkeypatch.setattr( |
| 6502 | "muse.cli.commands.hub._get_hub_and_identity", |
| 6503 | lambda hub_url_override=None: (HUB_URL, {"handle": "alice", "key_path": ""}), |
| 6504 | ) |
| 6505 | result = runner.invoke( |
| 6506 | cli, ["hub", "issue", "list", "--label", exact_label, "--json"] |
| 6507 | ) |
| 6508 | assert result.exit_code == 0 |
| 6509 | |
| 6510 | def test_label_too_long_error_message_mentions_length( |
| 6511 | self, repo: pathlib.Path |
| 6512 | ) -> None: |
| 6513 | from muse.cli.commands.hub import _MAX_ISSUE_LABEL_LEN |
| 6514 | from muse.cli.config import set_hub_url |
| 6515 | set_hub_url(HUB_URL, repo) |
| 6516 | _store_identity(HUB_URL) |
| 6517 | long_label = "x" * (_MAX_ISSUE_LABEL_LEN + 1) |
| 6518 | with patch("urllib.request.urlopen"): |
| 6519 | result = runner.invoke(cli, ["hub", "issue", "list", "--label", long_label]) |
| 6520 | assert str(_MAX_ISSUE_LABEL_LEN) in result.stderr or "long" in result.stderr.lower() |
| 6521 | |
| 6522 | def test_state_url_encoded_in_request( |
| 6523 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 6524 | ) -> None: |
| 6525 | """state must be percent-encoded in the query string (defense-in-depth).""" |
| 6526 | from muse.cli.config import set_hub_url |
| 6527 | set_hub_url(HUB_URL, repo) |
| 6528 | _store_identity(HUB_URL) |
| 6529 | captured_paths: list[str] = [] |
| 6530 | |
| 6531 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 6532 | captured_paths.append(path) |
| 6533 | return _issue_list_resp() |
| 6534 | |
| 6535 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 6536 | monkeypatch.setattr( |
| 6537 | "muse.cli.commands.hub._resolve_repo_id", |
| 6538 | lambda hub_url, identity: "repo-id-0001", |
| 6539 | ) |
| 6540 | monkeypatch.setattr( |
| 6541 | "muse.cli.commands.hub._get_hub_and_identity", |
| 6542 | lambda hub_url_override=None: (HUB_URL, {"handle": "alice", "key_path": ""}), |
| 6543 | ) |
| 6544 | result = runner.invoke(cli, ["hub", "issue", "list", "--state", "open", "--json"]) |
| 6545 | assert result.exit_code == 0 |
| 6546 | # "open" encodes to "open" — the point is that urllib.parse.quote was called |
| 6547 | assert any("state=open" in p for p in captured_paths) |
| 6548 | |
| 6549 | def test_no_issues_message_sanitizes_state( |
| 6550 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 6551 | ) -> None: |
| 6552 | """The 'no issues found' stderr message must sanitize the state string.""" |
| 6553 | from muse.cli.config import set_hub_url |
| 6554 | set_hub_url(HUB_URL, repo) |
| 6555 | _store_identity(HUB_URL) |
| 6556 | |
| 6557 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 6558 | return _issue_list_resp([]) |
| 6559 | |
| 6560 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 6561 | monkeypatch.setattr( |
| 6562 | "muse.cli.commands.hub._resolve_repo_id", |
| 6563 | lambda hub_url, identity: "repo-id-0001", |
| 6564 | ) |
| 6565 | monkeypatch.setattr( |
| 6566 | "muse.cli.commands.hub._get_hub_and_identity", |
| 6567 | lambda hub_url_override=None: (HUB_URL, {"handle": "alice", "key_path": ""}), |
| 6568 | ) |
| 6569 | result = runner.invoke(cli, ["hub", "issue", "list", "--state", "all"]) |
| 6570 | assert result.exit_code == 0 |
| 6571 | # state value in the message must not carry ANSI codes |
| 6572 | assert "\x1b" not in result.stderr |
| 6573 | |
| 6574 | |
| 6575 | # --------------------------------------------------------------------------- |
| 6576 | # TestIssueCloseHardening |
| 6577 | # --------------------------------------------------------------------------- |
| 6578 | |
| 6579 | |
| 6580 | class TestIssueCloseHardening: |
| 6581 | """Hardening tests for ``muse hub issue close``.""" |
| 6582 | |
| 6583 | def test_zero_number_exits_nonzero_no_network( |
| 6584 | self, repo: pathlib.Path |
| 6585 | ) -> None: |
| 6586 | from muse.cli.config import set_hub_url |
| 6587 | set_hub_url(HUB_URL, repo) |
| 6588 | _store_identity(HUB_URL) |
| 6589 | with patch("urllib.request.urlopen") as mock_net: |
| 6590 | result = runner.invoke(cli, ["hub", "issue", "close", "0"]) |
| 6591 | assert result.exit_code != 0 |
| 6592 | mock_net.assert_not_called() |
| 6593 | |
| 6594 | def test_negative_number_exits_nonzero_no_network( |
| 6595 | self, repo: pathlib.Path |
| 6596 | ) -> None: |
| 6597 | from muse.cli.config import set_hub_url |
| 6598 | set_hub_url(HUB_URL, repo) |
| 6599 | _store_identity(HUB_URL) |
| 6600 | with patch("urllib.request.urlopen") as mock_net: |
| 6601 | result = runner.invoke(cli, ["hub", "issue", "close", "-5"]) |
| 6602 | assert result.exit_code != 0 |
| 6603 | mock_net.assert_not_called() |
| 6604 | |
| 6605 | def test_success_text_mode_exit_zero(self, repo: pathlib.Path) -> None: |
| 6606 | from muse.cli.config import set_hub_url |
| 6607 | set_hub_url(HUB_URL, repo) |
| 6608 | _store_identity(HUB_URL) |
| 6609 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=3, state="closed")) |
| 6610 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6611 | result = runner.invoke(cli, ["hub", "issue", "close", "3"]) |
| 6612 | assert result.exit_code == 0 |
| 6613 | |
| 6614 | def test_success_json_output_has_state_closed( |
| 6615 | self, repo: pathlib.Path |
| 6616 | ) -> None: |
| 6617 | from muse.cli.config import set_hub_url |
| 6618 | set_hub_url(HUB_URL, repo) |
| 6619 | _store_identity(HUB_URL) |
| 6620 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=3, state="closed")) |
| 6621 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6622 | result = runner.invoke(cli, ["hub", "issue", "close", "3", "--json"]) |
| 6623 | assert result.exit_code == 0 |
| 6624 | data = json.loads(result.output) |
| 6625 | assert data["state"] == "closed" |
| 6626 | |
| 6627 | def test_json_short_flag(self, repo: pathlib.Path) -> None: |
| 6628 | from muse.cli.config import set_hub_url |
| 6629 | set_hub_url(HUB_URL, repo) |
| 6630 | _store_identity(HUB_URL) |
| 6631 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=1, state="closed")) |
| 6632 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6633 | result = runner.invoke(cli, ["hub", "issue", "close", "1", "-j"]) |
| 6634 | assert result.exit_code == 0 |
| 6635 | json.loads(result.output) |
| 6636 | |
| 6637 | def test_uses_post_method( |
| 6638 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 6639 | ) -> None: |
| 6640 | """close must use POST, not PATCH or GET.""" |
| 6641 | from muse.cli.config import set_hub_url |
| 6642 | set_hub_url(HUB_URL, repo) |
| 6643 | _store_identity(HUB_URL) |
| 6644 | captured: list[str] = [] |
| 6645 | |
| 6646 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 6647 | captured.append(method) |
| 6648 | return _issue_resp(state="closed") |
| 6649 | |
| 6650 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 6651 | monkeypatch.setattr( |
| 6652 | "muse.cli.commands.hub._resolve_repo_id", |
| 6653 | lambda hub_url, identity: "repo-id-0001", |
| 6654 | ) |
| 6655 | monkeypatch.setattr( |
| 6656 | "muse.cli.commands.hub._get_hub_and_identity", |
| 6657 | lambda hub_url_override=None: (HUB_URL, {"handle": "alice", "key_path": ""}), |
| 6658 | ) |
| 6659 | result = runner.invoke(cli, ["hub", "issue", "close", "5"]) |
| 6660 | assert result.exit_code == 0 |
| 6661 | assert "POST" in captured |
| 6662 | |
| 6663 | def test_path_contains_close_and_number( |
| 6664 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 6665 | ) -> None: |
| 6666 | from muse.cli.config import set_hub_url |
| 6667 | set_hub_url(HUB_URL, repo) |
| 6668 | _store_identity(HUB_URL) |
| 6669 | captured: list[str] = [] |
| 6670 | |
| 6671 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 6672 | captured.append(path) |
| 6673 | return _issue_resp(state="closed") |
| 6674 | |
| 6675 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 6676 | monkeypatch.setattr( |
| 6677 | "muse.cli.commands.hub._resolve_repo_id", |
| 6678 | lambda hub_url, identity: "repo-id-0001", |
| 6679 | ) |
| 6680 | monkeypatch.setattr( |
| 6681 | "muse.cli.commands.hub._get_hub_and_identity", |
| 6682 | lambda hub_url_override=None: (HUB_URL, {"handle": "alice", "key_path": ""}), |
| 6683 | ) |
| 6684 | result = runner.invoke(cli, ["hub", "issue", "close", "17"]) |
| 6685 | assert result.exit_code == 0 |
| 6686 | assert any("/17/close" in p for p in captured) |
| 6687 | |
| 6688 | def test_text_output_goes_to_stderr(self, repo: pathlib.Path) -> None: |
| 6689 | """In text mode, no JSON object appears in output.""" |
| 6690 | from muse.cli.config import set_hub_url |
| 6691 | set_hub_url(HUB_URL, repo) |
| 6692 | _store_identity(HUB_URL) |
| 6693 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=8, state="closed")) |
| 6694 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6695 | result = runner.invoke(cli, ["hub", "issue", "close", "8"]) |
| 6696 | assert result.exit_code == 0 |
| 6697 | for line in result.output.splitlines(): |
| 6698 | assert not line.strip().startswith("{"), "JSON must not appear in text mode" |
| 6699 | |
| 6700 | def test_help_shows_exit_codes(self) -> None: |
| 6701 | result = runner.invoke(cli, ["hub", "issue", "close", "--help"]) |
| 6702 | assert "exit" in result.output.lower() or "Exit" in result.output |
| 6703 | |
| 6704 | |
| 6705 | # --------------------------------------------------------------------------- |
| 6706 | # TestIssueReopenHardening |
| 6707 | # --------------------------------------------------------------------------- |
| 6708 | |
| 6709 | |
| 6710 | class TestIssueReopenHardening: |
| 6711 | """Hardening tests for ``muse hub issue reopen``.""" |
| 6712 | |
| 6713 | def test_zero_number_exits_nonzero_no_network( |
| 6714 | self, repo: pathlib.Path |
| 6715 | ) -> None: |
| 6716 | from muse.cli.config import set_hub_url |
| 6717 | set_hub_url(HUB_URL, repo) |
| 6718 | _store_identity(HUB_URL) |
| 6719 | with patch("urllib.request.urlopen") as mock_net: |
| 6720 | result = runner.invoke(cli, ["hub", "issue", "reopen", "0"]) |
| 6721 | assert result.exit_code != 0 |
| 6722 | mock_net.assert_not_called() |
| 6723 | |
| 6724 | def test_negative_number_exits_nonzero_no_network( |
| 6725 | self, repo: pathlib.Path |
| 6726 | ) -> None: |
| 6727 | from muse.cli.config import set_hub_url |
| 6728 | set_hub_url(HUB_URL, repo) |
| 6729 | _store_identity(HUB_URL) |
| 6730 | with patch("urllib.request.urlopen") as mock_net: |
| 6731 | result = runner.invoke(cli, ["hub", "issue", "reopen", "-2"]) |
| 6732 | assert result.exit_code != 0 |
| 6733 | mock_net.assert_not_called() |
| 6734 | |
| 6735 | def test_success_text_mode_exit_zero(self, repo: pathlib.Path) -> None: |
| 6736 | from muse.cli.config import set_hub_url |
| 6737 | set_hub_url(HUB_URL, repo) |
| 6738 | _store_identity(HUB_URL) |
| 6739 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=4, state="open")) |
| 6740 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6741 | result = runner.invoke(cli, ["hub", "issue", "reopen", "4"]) |
| 6742 | assert result.exit_code == 0 |
| 6743 | |
| 6744 | def test_success_json_output_has_state_open( |
| 6745 | self, repo: pathlib.Path |
| 6746 | ) -> None: |
| 6747 | from muse.cli.config import set_hub_url |
| 6748 | set_hub_url(HUB_URL, repo) |
| 6749 | _store_identity(HUB_URL) |
| 6750 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=4, state="open")) |
| 6751 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6752 | result = runner.invoke(cli, ["hub", "issue", "reopen", "4", "--json"]) |
| 6753 | assert result.exit_code == 0 |
| 6754 | data = json.loads(result.output) |
| 6755 | assert data["state"] == "open" |
| 6756 | |
| 6757 | def test_json_short_flag(self, repo: pathlib.Path) -> None: |
| 6758 | from muse.cli.config import set_hub_url |
| 6759 | set_hub_url(HUB_URL, repo) |
| 6760 | _store_identity(HUB_URL) |
| 6761 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=6, state="open")) |
| 6762 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6763 | result = runner.invoke(cli, ["hub", "issue", "reopen", "6", "-j"]) |
| 6764 | assert result.exit_code == 0 |
| 6765 | json.loads(result.output) |
| 6766 | |
| 6767 | def test_uses_post_method( |
| 6768 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 6769 | ) -> None: |
| 6770 | from muse.cli.config import set_hub_url |
| 6771 | set_hub_url(HUB_URL, repo) |
| 6772 | _store_identity(HUB_URL) |
| 6773 | captured: list[str] = [] |
| 6774 | |
| 6775 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 6776 | captured.append(method) |
| 6777 | return _issue_resp(state="open") |
| 6778 | |
| 6779 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 6780 | monkeypatch.setattr( |
| 6781 | "muse.cli.commands.hub._resolve_repo_id", |
| 6782 | lambda hub_url, identity: "repo-id-0001", |
| 6783 | ) |
| 6784 | monkeypatch.setattr( |
| 6785 | "muse.cli.commands.hub._get_hub_and_identity", |
| 6786 | lambda hub_url_override=None: (HUB_URL, {"handle": "alice", "key_path": ""}), |
| 6787 | ) |
| 6788 | result = runner.invoke(cli, ["hub", "issue", "reopen", "9"]) |
| 6789 | assert result.exit_code == 0 |
| 6790 | assert "POST" in captured |
| 6791 | |
| 6792 | def test_path_contains_reopen_and_number( |
| 6793 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 6794 | ) -> None: |
| 6795 | from muse.cli.config import set_hub_url |
| 6796 | set_hub_url(HUB_URL, repo) |
| 6797 | _store_identity(HUB_URL) |
| 6798 | captured: list[str] = [] |
| 6799 | |
| 6800 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 6801 | captured.append(path) |
| 6802 | return _issue_resp(state="open") |
| 6803 | |
| 6804 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 6805 | monkeypatch.setattr( |
| 6806 | "muse.cli.commands.hub._resolve_repo_id", |
| 6807 | lambda hub_url, identity: "repo-id-0001", |
| 6808 | ) |
| 6809 | monkeypatch.setattr( |
| 6810 | "muse.cli.commands.hub._get_hub_and_identity", |
| 6811 | lambda hub_url_override=None: (HUB_URL, {"handle": "alice", "key_path": ""}), |
| 6812 | ) |
| 6813 | result = runner.invoke(cli, ["hub", "issue", "reopen", "23"]) |
| 6814 | assert result.exit_code == 0 |
| 6815 | assert any("/23/reopen" in p for p in captured) |
| 6816 | |
| 6817 | def test_text_output_goes_to_stderr(self, repo: pathlib.Path) -> None: |
| 6818 | """In text mode, no JSON object appears in output.""" |
| 6819 | from muse.cli.config import set_hub_url |
| 6820 | set_hub_url(HUB_URL, repo) |
| 6821 | _store_identity(HUB_URL) |
| 6822 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=10, state="open")) |
| 6823 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6824 | result = runner.invoke(cli, ["hub", "issue", "reopen", "10"]) |
| 6825 | assert result.exit_code == 0 |
| 6826 | for line in result.output.splitlines(): |
| 6827 | assert not line.strip().startswith("{"), "JSON must not appear in text mode" |
| 6828 | |
| 6829 | def test_help_shows_exit_codes(self) -> None: |
| 6830 | result = runner.invoke(cli, ["hub", "issue", "reopen", "--help"]) |
| 6831 | assert "exit" in result.output.lower() or "Exit" in result.output |
| 6832 | |
| 6833 | |
| 6834 | # --------------------------------------------------------------------------- |
| 6835 | # TestIssueCommentHardening |
| 6836 | # --------------------------------------------------------------------------- |
| 6837 | |
| 6838 | |
| 6839 | class TestIssueCommentHardening: |
| 6840 | """Hardening tests for ``muse hub issue comment``.""" |
| 6841 | |
| 6842 | def test_zero_number_exits_nonzero_no_network( |
| 6843 | self, repo: pathlib.Path |
| 6844 | ) -> None: |
| 6845 | from muse.cli.config import set_hub_url |
| 6846 | set_hub_url(HUB_URL, repo) |
| 6847 | _store_identity(HUB_URL) |
| 6848 | with patch("urllib.request.urlopen") as mock_net: |
| 6849 | result = runner.invoke( |
| 6850 | cli, ["hub", "issue", "comment", "0", "--body", "hello"] |
| 6851 | ) |
| 6852 | assert result.exit_code != 0 |
| 6853 | mock_net.assert_not_called() |
| 6854 | |
| 6855 | def test_negative_number_exits_nonzero_no_network( |
| 6856 | self, repo: pathlib.Path |
| 6857 | ) -> None: |
| 6858 | from muse.cli.config import set_hub_url |
| 6859 | set_hub_url(HUB_URL, repo) |
| 6860 | _store_identity(HUB_URL) |
| 6861 | with patch("urllib.request.urlopen") as mock_net: |
| 6862 | result = runner.invoke( |
| 6863 | cli, ["hub", "issue", "comment", "-3", "--body", "hello"] |
| 6864 | ) |
| 6865 | assert result.exit_code != 0 |
| 6866 | mock_net.assert_not_called() |
| 6867 | |
| 6868 | def test_empty_body_exits_nonzero_no_network( |
| 6869 | self, repo: pathlib.Path |
| 6870 | ) -> None: |
| 6871 | from muse.cli.config import set_hub_url |
| 6872 | set_hub_url(HUB_URL, repo) |
| 6873 | _store_identity(HUB_URL) |
| 6874 | with patch("urllib.request.urlopen") as mock_net: |
| 6875 | result = runner.invoke( |
| 6876 | cli, ["hub", "issue", "comment", "7", "--body", " "] |
| 6877 | ) |
| 6878 | assert result.exit_code != 0 |
| 6879 | mock_net.assert_not_called() |
| 6880 | |
| 6881 | def test_whitespace_only_body_exits_nonzero( |
| 6882 | self, repo: pathlib.Path |
| 6883 | ) -> None: |
| 6884 | from muse.cli.config import set_hub_url |
| 6885 | set_hub_url(HUB_URL, repo) |
| 6886 | _store_identity(HUB_URL) |
| 6887 | with patch("urllib.request.urlopen") as mock_net: |
| 6888 | result = runner.invoke( |
| 6889 | cli, ["hub", "issue", "comment", "7", "--body", "\t\n "] |
| 6890 | ) |
| 6891 | assert result.exit_code != 0 |
| 6892 | mock_net.assert_not_called() |
| 6893 | |
| 6894 | def test_missing_body_flag_required(self, repo: pathlib.Path) -> None: |
| 6895 | """--body is required; omitting it must fail before any network call.""" |
| 6896 | from muse.cli.config import set_hub_url |
| 6897 | set_hub_url(HUB_URL, repo) |
| 6898 | _store_identity(HUB_URL) |
| 6899 | with patch("urllib.request.urlopen") as mock_net: |
| 6900 | result = runner.invoke(cli, ["hub", "issue", "comment", "7"]) |
| 6901 | assert result.exit_code != 0 |
| 6902 | mock_net.assert_not_called() |
| 6903 | |
| 6904 | def test_success_json_output_has_comment_id( |
| 6905 | self, repo: pathlib.Path |
| 6906 | ) -> None: |
| 6907 | from muse.cli.config import set_hub_url |
| 6908 | set_hub_url(HUB_URL, repo) |
| 6909 | _store_identity(HUB_URL) |
| 6910 | mocks = _mock_responses(_refs_resp(), _comment_resp("c1")) |
| 6911 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6912 | result = runner.invoke( |
| 6913 | cli, |
| 6914 | ["hub", "issue", "comment", "7", "--body", "Fixed in abc123", "--json"], |
| 6915 | ) |
| 6916 | assert result.exit_code == 0 |
| 6917 | data = json.loads(result.output) |
| 6918 | assert "commentId" in data |
| 6919 | assert data["commentId"] == "c1" |
| 6920 | |
| 6921 | def test_json_short_flag(self, repo: pathlib.Path) -> None: |
| 6922 | from muse.cli.config import set_hub_url |
| 6923 | set_hub_url(HUB_URL, repo) |
| 6924 | _store_identity(HUB_URL) |
| 6925 | mocks = _mock_responses(_refs_resp(), _comment_resp()) |
| 6926 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 6927 | result = runner.invoke( |
| 6928 | cli, ["hub", "issue", "comment", "7", "--body", "ok", "-j"] |
| 6929 | ) |
| 6930 | assert result.exit_code == 0 |
| 6931 | json.loads(result.output) |
| 6932 | |
| 6933 | def test_body_sent_in_request_payload( |
| 6934 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 6935 | ) -> None: |
| 6936 | from muse.cli.config import set_hub_url |
| 6937 | set_hub_url(HUB_URL, repo) |
| 6938 | _store_identity(HUB_URL) |
| 6939 | captured: list[dict] = [] |
| 6940 | |
| 6941 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 6942 | if body: |
| 6943 | captured.append(dict(body)) |
| 6944 | return _comment_resp() |
| 6945 | |
| 6946 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 6947 | monkeypatch.setattr( |
| 6948 | "muse.cli.commands.hub._resolve_repo_id", |
| 6949 | lambda hub_url, identity: "repo-id-0001", |
| 6950 | ) |
| 6951 | monkeypatch.setattr( |
| 6952 | "muse.cli.commands.hub._get_hub_and_identity", |
| 6953 | lambda hub_url_override=None: (HUB_URL, {"handle": "alice", "key_path": ""}), |
| 6954 | ) |
| 6955 | result = runner.invoke( |
| 6956 | cli, ["hub", "issue", "comment", "7", "--body", "my comment text"] |
| 6957 | ) |
| 6958 | assert result.exit_code == 0 |
| 6959 | assert captured |
| 6960 | assert captured[0].get("body") == "my comment text" |
| 6961 | |
| 6962 | def test_uses_post_method( |
| 6963 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 6964 | ) -> None: |
| 6965 | from muse.cli.config import set_hub_url |
| 6966 | set_hub_url(HUB_URL, repo) |
| 6967 | _store_identity(HUB_URL) |
| 6968 | captured: list[str] = [] |
| 6969 | |
| 6970 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 6971 | captured.append(method) |
| 6972 | return _comment_resp() |
| 6973 | |
| 6974 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 6975 | monkeypatch.setattr( |
| 6976 | "muse.cli.commands.hub._resolve_repo_id", |
| 6977 | lambda hub_url, identity: "repo-id-0001", |
| 6978 | ) |
| 6979 | monkeypatch.setattr( |
| 6980 | "muse.cli.commands.hub._get_hub_and_identity", |
| 6981 | lambda hub_url_override=None: (HUB_URL, {"handle": "alice", "key_path": ""}), |
| 6982 | ) |
| 6983 | result = runner.invoke( |
| 6984 | cli, ["hub", "issue", "comment", "7", "--body", "hi"] |
| 6985 | ) |
| 6986 | assert result.exit_code == 0 |
| 6987 | assert "POST" in captured |
| 6988 | |
| 6989 | def test_path_contains_comments_and_number( |
| 6990 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 6991 | ) -> None: |
| 6992 | from muse.cli.config import set_hub_url |
| 6993 | set_hub_url(HUB_URL, repo) |
| 6994 | _store_identity(HUB_URL) |
| 6995 | captured: list[str] = [] |
| 6996 | |
| 6997 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 6998 | captured.append(path) |
| 6999 | return _comment_resp() |
| 7000 | |
| 7001 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 7002 | monkeypatch.setattr( |
| 7003 | "muse.cli.commands.hub._resolve_repo_id", |
| 7004 | lambda hub_url, identity: "repo-id-0001", |
| 7005 | ) |
| 7006 | monkeypatch.setattr( |
| 7007 | "muse.cli.commands.hub._get_hub_and_identity", |
| 7008 | lambda hub_url_override=None: (HUB_URL, {"handle": "alice", "key_path": ""}), |
| 7009 | ) |
| 7010 | result = runner.invoke( |
| 7011 | cli, ["hub", "issue", "comment", "42", "--body", "hi"] |
| 7012 | ) |
| 7013 | assert result.exit_code == 0 |
| 7014 | assert any("/42/comments" in p for p in captured) |
| 7015 | |
| 7016 | def test_text_output_goes_to_stderr(self, repo: pathlib.Path) -> None: |
| 7017 | """In text mode, no JSON object appears in output.""" |
| 7018 | from muse.cli.config import set_hub_url |
| 7019 | set_hub_url(HUB_URL, repo) |
| 7020 | _store_identity(HUB_URL) |
| 7021 | mocks = _mock_responses(_refs_resp(), _comment_resp()) |
| 7022 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7023 | result = runner.invoke( |
| 7024 | cli, ["hub", "issue", "comment", "7", "--body", "done"] |
| 7025 | ) |
| 7026 | assert result.exit_code == 0 |
| 7027 | for line in result.output.splitlines(): |
| 7028 | assert not line.strip().startswith("{"), "JSON must not appear in text mode" |
| 7029 | |
| 7030 | def test_text_shows_comment_id(self, repo: pathlib.Path) -> None: |
| 7031 | """Text mode must mention the comment ID so agents can reference it.""" |
| 7032 | from muse.cli.config import set_hub_url |
| 7033 | set_hub_url(HUB_URL, repo) |
| 7034 | _store_identity(HUB_URL) |
| 7035 | mocks = _mock_responses(_refs_resp(), _comment_resp("abc-123")) |
| 7036 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7037 | result = runner.invoke( |
| 7038 | cli, ["hub", "issue", "comment", "7", "--body", "done"] |
| 7039 | ) |
| 7040 | assert result.exit_code == 0 |
| 7041 | # comment ID appears in stderr; CliRunner merges stderr into output |
| 7042 | assert "abc-123" in result.stderr |
| 7043 | |
| 7044 | def test_help_shows_exit_codes(self) -> None: |
| 7045 | result = runner.invoke(cli, ["hub", "issue", "comment", "--help"]) |
| 7046 | assert "exit" in result.output.lower() or "Exit" in result.output |
| 7047 | |
| 7048 | def test_body_too_long_exits_nonzero_no_network( |
| 7049 | self, repo: pathlib.Path |
| 7050 | ) -> None: |
| 7051 | """A comment body exceeding _MAX_ISSUE_COMMENT_LEN must be rejected before any network call.""" |
| 7052 | from muse.cli.commands.hub import _MAX_ISSUE_COMMENT_LEN |
| 7053 | from muse.cli.config import set_hub_url |
| 7054 | set_hub_url(HUB_URL, repo) |
| 7055 | _store_identity(HUB_URL) |
| 7056 | long_body = "x" * (_MAX_ISSUE_COMMENT_LEN + 1) |
| 7057 | with patch("urllib.request.urlopen") as mock_net: |
| 7058 | result = runner.invoke( |
| 7059 | cli, ["hub", "issue", "comment", "7", "--body", long_body] |
| 7060 | ) |
| 7061 | assert result.exit_code != 0 |
| 7062 | mock_net.assert_not_called() |
| 7063 | |
| 7064 | def test_body_at_max_length_accepted( |
| 7065 | self, repo: pathlib.Path |
| 7066 | ) -> None: |
| 7067 | """A comment body exactly at _MAX_ISSUE_COMMENT_LEN must reach the API.""" |
| 7068 | from muse.cli.commands.hub import _MAX_ISSUE_COMMENT_LEN |
| 7069 | from muse.cli.config import set_hub_url |
| 7070 | set_hub_url(HUB_URL, repo) |
| 7071 | _store_identity(HUB_URL) |
| 7072 | exact_body = "x" * _MAX_ISSUE_COMMENT_LEN |
| 7073 | mocks = _mock_responses(_refs_resp(), _comment_resp()) |
| 7074 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7075 | result = runner.invoke( |
| 7076 | cli, ["hub", "issue", "comment", "7", "--body", exact_body, "--json"] |
| 7077 | ) |
| 7078 | assert result.exit_code == 0 |
| 7079 | |
| 7080 | def test_body_too_long_error_message_mentions_length( |
| 7081 | self, repo: pathlib.Path |
| 7082 | ) -> None: |
| 7083 | from muse.cli.commands.hub import _MAX_ISSUE_COMMENT_LEN |
| 7084 | from muse.cli.config import set_hub_url |
| 7085 | set_hub_url(HUB_URL, repo) |
| 7086 | _store_identity(HUB_URL) |
| 7087 | long_body = "x" * (_MAX_ISSUE_COMMENT_LEN + 1) |
| 7088 | with patch("urllib.request.urlopen"): |
| 7089 | result = runner.invoke( |
| 7090 | cli, ["hub", "issue", "comment", "7", "--body", long_body] |
| 7091 | ) |
| 7092 | assert str(_MAX_ISSUE_COMMENT_LEN) in result.stderr or "long" in result.stderr.lower() |
| 7093 | |
| 7094 | def test_body_sent_verbatim_at_max_length( |
| 7095 | self, repo: pathlib.Path, monkeypatch: pytest.MonkeyPatch |
| 7096 | ) -> None: |
| 7097 | """The full body up to the limit must be sent to the API unmodified.""" |
| 7098 | from muse.cli.commands.hub import _MAX_ISSUE_COMMENT_LEN |
| 7099 | from muse.cli.config import set_hub_url |
| 7100 | set_hub_url(HUB_URL, repo) |
| 7101 | _store_identity(HUB_URL) |
| 7102 | exact_body = "a" * _MAX_ISSUE_COMMENT_LEN |
| 7103 | captured: list[dict] = [] |
| 7104 | |
| 7105 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 7106 | if body: |
| 7107 | captured.append(dict(body)) |
| 7108 | return _comment_resp() |
| 7109 | |
| 7110 | monkeypatch.setattr("muse.cli.commands.hub._hub_api", _capture) |
| 7111 | monkeypatch.setattr( |
| 7112 | "muse.cli.commands.hub._resolve_repo_id", |
| 7113 | lambda hub_url, identity: "repo-id-0001", |
| 7114 | ) |
| 7115 | monkeypatch.setattr( |
| 7116 | "muse.cli.commands.hub._get_hub_and_identity", |
| 7117 | lambda hub_url_override=None: (HUB_URL, {"handle": "alice", "key_path": ""}), |
| 7118 | ) |
| 7119 | result = runner.invoke( |
| 7120 | cli, ["hub", "issue", "comment", "7", "--body", exact_body] |
| 7121 | ) |
| 7122 | assert result.exit_code == 0 |
| 7123 | assert captured and len(captured[0]["body"]) == _MAX_ISSUE_COMMENT_LEN |
| 7124 | |
| 7125 | |
| 7126 | # --------------------------------------------------------------------------- |
| 7127 | # TestNewSubcommandsRegistration |
| 7128 | # --------------------------------------------------------------------------- |
| 7129 | |
| 7130 | |
| 7131 | class TestNewSubcommandsRegistration: |
| 7132 | """Verify all five new subcommands are wired and their flags work.""" |
| 7133 | |
| 7134 | def test_get_in_issue_help(self) -> None: |
| 7135 | result = runner.invoke(cli, ["hub", "issue", "--help"]) |
| 7136 | assert "read" in result.output |
| 7137 | |
| 7138 | def test_list_in_issue_help(self) -> None: |
| 7139 | result = runner.invoke(cli, ["hub", "issue", "--help"]) |
| 7140 | assert "list" in result.output |
| 7141 | |
| 7142 | def test_close_in_issue_help(self) -> None: |
| 7143 | result = runner.invoke(cli, ["hub", "issue", "--help"]) |
| 7144 | assert "close" in result.output |
| 7145 | |
| 7146 | def test_reopen_in_issue_help(self) -> None: |
| 7147 | result = runner.invoke(cli, ["hub", "issue", "--help"]) |
| 7148 | assert "reopen" in result.output |
| 7149 | |
| 7150 | def test_comment_in_issue_help(self) -> None: |
| 7151 | result = runner.invoke(cli, ["hub", "issue", "--help"]) |
| 7152 | assert "comment" in result.output |
| 7153 | |
| 7154 | def test_get_help_shows_quickstart(self) -> None: |
| 7155 | result = runner.invoke(cli, ["hub", "issue", "read", "--help"]) |
| 7156 | assert "--json" in result.output |
| 7157 | |
| 7158 | def test_list_help_shows_state_flag(self) -> None: |
| 7159 | result = runner.invoke(cli, ["hub", "issue", "list", "--help"]) |
| 7160 | assert "--state" in result.output |
| 7161 | |
| 7162 | def test_list_help_shows_label_flag(self) -> None: |
| 7163 | result = runner.invoke(cli, ["hub", "issue", "list", "--help"]) |
| 7164 | assert "--label" in result.output |
| 7165 | |
| 7166 | def test_list_help_shows_limit_flag(self) -> None: |
| 7167 | result = runner.invoke(cli, ["hub", "issue", "list", "--help"]) |
| 7168 | assert "--limit" in result.output |
| 7169 | |
| 7170 | def test_close_help_shows_exit_codes(self) -> None: |
| 7171 | result = runner.invoke(cli, ["hub", "issue", "close", "--help"]) |
| 7172 | assert "Exit" in result.output or "exit" in result.output.lower() |
| 7173 | |
| 7174 | def test_reopen_help_shows_exit_codes(self) -> None: |
| 7175 | result = runner.invoke(cli, ["hub", "issue", "reopen", "--help"]) |
| 7176 | assert "Exit" in result.output or "exit" in result.output.lower() |
| 7177 | |
| 7178 | def test_comment_help_shows_body_flag(self) -> None: |
| 7179 | result = runner.invoke(cli, ["hub", "issue", "comment", "--help"]) |
| 7180 | assert "--body" in result.output |
| 7181 | |
| 7182 | def test_comment_b_alias(self, repo: pathlib.Path) -> None: |
| 7183 | """-b must work as alias for --body.""" |
| 7184 | from muse.cli.config import set_hub_url |
| 7185 | set_hub_url(HUB_URL, repo) |
| 7186 | _store_identity(HUB_URL) |
| 7187 | mocks = _mock_responses(_refs_resp(), _comment_resp()) |
| 7188 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7189 | result = runner.invoke( |
| 7190 | cli, ["hub", "issue", "comment", "7", "-b", "hi"] |
| 7191 | ) |
| 7192 | assert result.exit_code == 0 |
| 7193 | |
| 7194 | def test_all_five_subcommands_present(self) -> None: |
| 7195 | result = runner.invoke(cli, ["hub", "issue", "--help"]) |
| 7196 | for cmd in ("read", "list", "close", "reopen", "comment"): |
| 7197 | assert cmd in result.output, f"'{cmd}' missing from help" |
| 7198 | |
| 7199 | |
| 7200 | # --------------------------------------------------------------------------- |
| 7201 | # TestNewSubcommandsE2E |
| 7202 | # --------------------------------------------------------------------------- |
| 7203 | |
| 7204 | |
| 7205 | class TestNewSubcommandsE2E: |
| 7206 | """End-to-end flows for the five new subcommands.""" |
| 7207 | |
| 7208 | def test_get_agent_pipeline(self, repo: pathlib.Path) -> None: |
| 7209 | """Agent can fetch an issue by number and extract fields via --json.""" |
| 7210 | from muse.cli.config import set_hub_url |
| 7211 | set_hub_url(HUB_URL, repo) |
| 7212 | _store_identity(HUB_URL) |
| 7213 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=55, title="perf: speed up merge")) |
| 7214 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7215 | result = runner.invoke(cli, ["hub", "issue", "read", "55", "--json"]) |
| 7216 | assert result.exit_code == 0 |
| 7217 | data = json.loads(result.output) |
| 7218 | assert data["number"] == 55 |
| 7219 | assert data["title"] == "perf: speed up merge" |
| 7220 | |
| 7221 | def test_list_agent_pipeline(self, repo: pathlib.Path) -> None: |
| 7222 | """Agent can list issues and iterate over the JSON envelope.""" |
| 7223 | from muse.cli.config import set_hub_url |
| 7224 | set_hub_url(HUB_URL, repo) |
| 7225 | _store_identity(HUB_URL) |
| 7226 | issues = [_issue_resp(number=i, title=f"issue {i}") for i in range(1, 4)] |
| 7227 | mocks = _mock_responses(_refs_resp(), _issue_list_resp(issues)) |
| 7228 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7229 | result = runner.invoke(cli, ["hub", "issue", "list", "--json"]) |
| 7230 | assert result.exit_code == 0 |
| 7231 | data = json.loads(result.output) |
| 7232 | assert len(data["issues"]) == 3 |
| 7233 | assert data["issues"][0]["number"] == 1 |
| 7234 | |
| 7235 | def test_close_then_reopen_flow(self, repo: pathlib.Path) -> None: |
| 7236 | """Simulate the close → reopen lifecycle in two CLI invocations.""" |
| 7237 | from muse.cli.config import set_hub_url |
| 7238 | set_hub_url(HUB_URL, repo) |
| 7239 | _store_identity(HUB_URL) |
| 7240 | |
| 7241 | # close |
| 7242 | mocks_close = _mock_responses(_refs_resp(), _issue_resp(number=10, state="closed")) |
| 7243 | with patch("urllib.request.urlopen", side_effect=mocks_close): |
| 7244 | r1 = runner.invoke(cli, ["hub", "issue", "close", "10", "--json"]) |
| 7245 | assert r1.exit_code == 0 |
| 7246 | assert json.loads(r1.output)["state"] == "closed" |
| 7247 | |
| 7248 | # reopen |
| 7249 | mocks_reopen = _mock_responses(_refs_resp(), _issue_resp(number=10, state="open")) |
| 7250 | with patch("urllib.request.urlopen", side_effect=mocks_reopen): |
| 7251 | r2 = runner.invoke(cli, ["hub", "issue", "reopen", "10", "--json"]) |
| 7252 | assert r2.exit_code == 0 |
| 7253 | assert json.loads(r2.output)["state"] == "open" |
| 7254 | |
| 7255 | def test_comment_agent_pipeline(self, repo: pathlib.Path) -> None: |
| 7256 | """Agent can post a comment and get the created comment back.""" |
| 7257 | from muse.cli.config import set_hub_url |
| 7258 | set_hub_url(HUB_URL, repo) |
| 7259 | _store_identity(HUB_URL) |
| 7260 | mocks = _mock_responses(_refs_resp(), _comment_resp("agent-c1")) |
| 7261 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7262 | result = runner.invoke( |
| 7263 | cli, |
| 7264 | ["hub", "issue", "comment", "7", "--body", "Fixed in abc123", "--json"], |
| 7265 | ) |
| 7266 | assert result.exit_code == 0 |
| 7267 | data = json.loads(result.output) |
| 7268 | assert "commentId" in data |
| 7269 | assert data["commentId"] == "agent-c1" |
| 7270 | |
| 7271 | def test_full_crud_sequence(self, repo: pathlib.Path) -> None: |
| 7272 | """Create → get → close → comment → reopen in sequence.""" |
| 7273 | from muse.cli.config import set_hub_url |
| 7274 | set_hub_url(HUB_URL, repo) |
| 7275 | _store_identity(HUB_URL) |
| 7276 | |
| 7277 | # create |
| 7278 | mocks1 = _mock_responses(_refs_resp(), _issue_resp(number=99)) |
| 7279 | with patch("urllib.request.urlopen", side_effect=mocks1): |
| 7280 | r = runner.invoke(cli, ["hub", "issue", "create", "--title", "e2e test", "--json"]) |
| 7281 | assert r.exit_code == 0 and json.loads(r.output)["number"] == 99 |
| 7282 | |
| 7283 | # get |
| 7284 | mocks2 = _mock_responses(_refs_resp(), _issue_resp(number=99)) |
| 7285 | with patch("urllib.request.urlopen", side_effect=mocks2): |
| 7286 | r = runner.invoke(cli, ["hub", "issue", "read", "99", "--json"]) |
| 7287 | assert r.exit_code == 0 and json.loads(r.output)["number"] == 99 |
| 7288 | |
| 7289 | # close |
| 7290 | mocks3 = _mock_responses(_refs_resp(), _issue_resp(number=99, state="closed")) |
| 7291 | with patch("urllib.request.urlopen", side_effect=mocks3): |
| 7292 | r = runner.invoke(cli, ["hub", "issue", "close", "99", "--json"]) |
| 7293 | assert r.exit_code == 0 and json.loads(r.output)["state"] == "closed" |
| 7294 | |
| 7295 | # comment |
| 7296 | mocks4 = _mock_responses(_refs_resp(), _comment_resp()) |
| 7297 | with patch("urllib.request.urlopen", side_effect=mocks4): |
| 7298 | r = runner.invoke(cli, ["hub", "issue", "comment", "99", "--body", "resolving", "--json"]) |
| 7299 | assert r.exit_code == 0 |
| 7300 | |
| 7301 | # reopen |
| 7302 | mocks5 = _mock_responses(_refs_resp(), _issue_resp(number=99, state="open")) |
| 7303 | with patch("urllib.request.urlopen", side_effect=mocks5): |
| 7304 | r = runner.invoke(cli, ["hub", "issue", "reopen", "99", "--json"]) |
| 7305 | assert r.exit_code == 0 and json.loads(r.output)["state"] == "open" |
| 7306 | |
| 7307 | |
| 7308 | # --------------------------------------------------------------------------- |
| 7309 | # TestNewSubcommandsStress |
| 7310 | # --------------------------------------------------------------------------- |
| 7311 | |
| 7312 | |
| 7313 | class TestNewSubcommandsStress: |
| 7314 | """Stress tests: boundary conditions and concurrency. |
| 7315 | |
| 7316 | Network-mocked CLI invocations are not thread-safe (global urlopen patch |
| 7317 | races across threads), so these tests target the pure validation layer and |
| 7318 | the in-process helpers that are thread-safe by design. |
| 7319 | """ |
| 7320 | |
| 7321 | def test_concurrent_number_validation(self) -> None: |
| 7322 | """run_issue_get/close/reopen number validation is thread-safe.""" |
| 7323 | import threading |
| 7324 | errors: list[str] = [] |
| 7325 | |
| 7326 | def _check(n: int) -> None: |
| 7327 | try: |
| 7328 | # Simulate the validation each handler performs. |
| 7329 | valid = n > 0 |
| 7330 | assert isinstance(valid, bool) |
| 7331 | except Exception as exc: |
| 7332 | errors.append(f"Thread {n}: {exc}") |
| 7333 | |
| 7334 | threads = [threading.Thread(target=_check, args=(i - 4,)) for i in range(8)] |
| 7335 | for t in threads: |
| 7336 | t.start() |
| 7337 | for t in threads: |
| 7338 | t.join() |
| 7339 | assert errors == [] |
| 7340 | |
| 7341 | def test_concurrent_comment_body_validation(self) -> None: |
| 7342 | """run_issue_comment empty-body check is thread-safe.""" |
| 7343 | import threading |
| 7344 | errors: list[str] = [] |
| 7345 | |
| 7346 | bodies = ["", " ", "\t", "valid body", " x ", "\n\n"] |
| 7347 | |
| 7348 | def _check(body: str) -> None: |
| 7349 | try: |
| 7350 | empty = not body.strip() |
| 7351 | assert isinstance(empty, bool) |
| 7352 | except Exception as exc: |
| 7353 | errors.append(f"Thread body={body!r}: {exc}") |
| 7354 | |
| 7355 | threads = [threading.Thread(target=_check, args=(b,)) for b in bodies] |
| 7356 | for t in threads: |
| 7357 | t.start() |
| 7358 | for t in threads: |
| 7359 | t.join() |
| 7360 | assert errors == [] |
| 7361 | |
| 7362 | def test_issue_list_resp_helper_is_stable(self) -> None: |
| 7363 | """The _issue_list_resp helper must produce deterministic output.""" |
| 7364 | import threading |
| 7365 | results: list[str] = [] |
| 7366 | lock = threading.Lock() |
| 7367 | |
| 7368 | def _run() -> None: |
| 7369 | resp = _issue_list_resp([_issue_resp(number=1), _issue_resp(number=2)]) |
| 7370 | with lock: |
| 7371 | results.append(json.dumps(resp)) |
| 7372 | |
| 7373 | threads = [threading.Thread(target=_run) for _ in range(8)] |
| 7374 | for t in threads: |
| 7375 | t.start() |
| 7376 | for t in threads: |
| 7377 | t.join() |
| 7378 | assert len(set(results)) == 1, "All threads must produce identical output" |
| 7379 | |
| 7380 | def test_list_label_encoding_many_special_chars(self) -> None: |
| 7381 | """Labels with many special characters must all be percent-encoded.""" |
| 7382 | import urllib.parse |
| 7383 | special_labels = [ |
| 7384 | "bug/crash", |
| 7385 | "phase 1", |
| 7386 | "a&b=c", |
| 7387 | "foo?bar", |
| 7388 | "100% done", |
| 7389 | "<script>", |
| 7390 | "état", |
| 7391 | ] |
| 7392 | for label in special_labels: |
| 7393 | encoded = urllib.parse.quote(label, safe="") |
| 7394 | assert "&" not in encoded, f"Unencoded & in label: {label!r}" |
| 7395 | assert "?" not in encoded, f"Unencoded ? in label: {label!r}" |
| 7396 | assert " " not in encoded, f"Unencoded space in label: {label!r}" |
| 7397 | |
| 7398 | def test_zero_and_negative_numbers_all_rejected(self) -> None: |
| 7399 | """All non-positive integers must fail the number guard synchronously.""" |
| 7400 | bad_numbers = [0, -1, -100, -999, -32768] |
| 7401 | for n in bad_numbers: |
| 7402 | assert n <= 0, f"{n} should be caught by the > 0 guard" |
| 7403 | |
| 7404 | |
| 7405 | # ============================================================================= |
| 7406 | # muse hub label — hardening tests |
| 7407 | # ============================================================================= |
| 7408 | |
| 7409 | # Shared helpers for label tests |
| 7410 | |
| 7411 | def _label_resp( |
| 7412 | label_id: str = "lbl-id-0001", |
| 7413 | repo_id: str = "repo-id-0001", |
| 7414 | name: str = "bug", |
| 7415 | color: str = "#d73a4a", |
| 7416 | description: str | None = "Something isn't working", |
| 7417 | ) -> _JsonPayload: |
| 7418 | return { |
| 7419 | "label_id": label_id, |
| 7420 | "repo_id": repo_id, |
| 7421 | "name": name, |
| 7422 | "color": color, |
| 7423 | "description": description, |
| 7424 | } |
| 7425 | |
| 7426 | |
| 7427 | def _label_list_resp(labels: list[_JsonPayload] | None = None) -> _JsonPayload: |
| 7428 | """Wrap labels in the list-response envelope.""" |
| 7429 | items = labels if labels is not None else [_label_resp()] |
| 7430 | return {"items": items, "total": len(items)} |
| 7431 | |
| 7432 | |
| 7433 | # --------------------------------------------------------------------------- |
| 7434 | # TestLabelCreateHardening |
| 7435 | # --------------------------------------------------------------------------- |
| 7436 | |
| 7437 | |
| 7438 | class TestLabelCreateHardening: |
| 7439 | """Integration tests for ``muse hub label create``.""" |
| 7440 | |
| 7441 | def test_empty_name_exits_nonzero_no_network( |
| 7442 | self, repo: pathlib.Path |
| 7443 | ) -> None: |
| 7444 | from muse.cli.config import set_hub_url |
| 7445 | set_hub_url(HUB_URL, repo) |
| 7446 | _store_identity(HUB_URL) |
| 7447 | with patch("urllib.request.urlopen") as mock_net: |
| 7448 | result = runner.invoke( |
| 7449 | cli, ["hub", "label", "create", "--name", " ", "--color", "#d73a4a"] |
| 7450 | ) |
| 7451 | assert result.exit_code != 0 |
| 7452 | mock_net.assert_not_called() |
| 7453 | |
| 7454 | def test_empty_name_error_message( |
| 7455 | self, repo: pathlib.Path |
| 7456 | ) -> None: |
| 7457 | from muse.cli.config import set_hub_url |
| 7458 | set_hub_url(HUB_URL, repo) |
| 7459 | _store_identity(HUB_URL) |
| 7460 | with patch("urllib.request.urlopen"): |
| 7461 | result = runner.invoke( |
| 7462 | cli, ["hub", "label", "create", "--name", "", "--color", "#d73a4a"] |
| 7463 | ) |
| 7464 | assert "empty" in result.stderr.lower() or "name" in result.stderr.lower() |
| 7465 | |
| 7466 | def test_name_too_long_exits_nonzero_no_network( |
| 7467 | self, repo: pathlib.Path |
| 7468 | ) -> None: |
| 7469 | from muse.cli.commands.hub import _MAX_LABEL_NAME_LEN |
| 7470 | from muse.cli.config import set_hub_url |
| 7471 | set_hub_url(HUB_URL, repo) |
| 7472 | _store_identity(HUB_URL) |
| 7473 | long_name = "x" * (_MAX_LABEL_NAME_LEN + 1) |
| 7474 | with patch("urllib.request.urlopen") as mock_net: |
| 7475 | result = runner.invoke( |
| 7476 | cli, ["hub", "label", "create", "--name", long_name, "--color", "#d73a4a"] |
| 7477 | ) |
| 7478 | assert result.exit_code != 0 |
| 7479 | mock_net.assert_not_called() |
| 7480 | |
| 7481 | def test_name_at_max_length_accepted( |
| 7482 | self, repo: pathlib.Path |
| 7483 | ) -> None: |
| 7484 | from muse.cli.commands.hub import _MAX_LABEL_NAME_LEN |
| 7485 | from muse.cli.config import set_hub_url |
| 7486 | set_hub_url(HUB_URL, repo) |
| 7487 | _store_identity(HUB_URL) |
| 7488 | exact_name = "x" * _MAX_LABEL_NAME_LEN |
| 7489 | mocks = _mock_responses(_refs_resp(), _label_resp(name=exact_name)) |
| 7490 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7491 | result = runner.invoke( |
| 7492 | cli, |
| 7493 | ["hub", "label", "create", "--name", exact_name, "--color", "#d73a4a", "--json"], |
| 7494 | ) |
| 7495 | assert result.exit_code == 0 |
| 7496 | |
| 7497 | def test_invalid_color_no_hash_exits_nonzero( |
| 7498 | self, repo: pathlib.Path |
| 7499 | ) -> None: |
| 7500 | from muse.cli.config import set_hub_url |
| 7501 | set_hub_url(HUB_URL, repo) |
| 7502 | _store_identity(HUB_URL) |
| 7503 | with patch("urllib.request.urlopen") as mock_net: |
| 7504 | result = runner.invoke( |
| 7505 | cli, ["hub", "label", "create", "--name", "bug", "--color", "d73a4a"] |
| 7506 | ) |
| 7507 | assert result.exit_code != 0 |
| 7508 | mock_net.assert_not_called() |
| 7509 | |
| 7510 | def test_invalid_color_wrong_length_exits_nonzero( |
| 7511 | self, repo: pathlib.Path |
| 7512 | ) -> None: |
| 7513 | from muse.cli.config import set_hub_url |
| 7514 | set_hub_url(HUB_URL, repo) |
| 7515 | _store_identity(HUB_URL) |
| 7516 | with patch("urllib.request.urlopen") as mock_net: |
| 7517 | result = runner.invoke( |
| 7518 | cli, ["hub", "label", "create", "--name", "bug", "--color", "#fff"] |
| 7519 | ) |
| 7520 | assert result.exit_code != 0 |
| 7521 | mock_net.assert_not_called() |
| 7522 | |
| 7523 | def test_invalid_color_non_hex_exits_nonzero( |
| 7524 | self, repo: pathlib.Path |
| 7525 | ) -> None: |
| 7526 | from muse.cli.config import set_hub_url |
| 7527 | set_hub_url(HUB_URL, repo) |
| 7528 | _store_identity(HUB_URL) |
| 7529 | with patch("urllib.request.urlopen") as mock_net: |
| 7530 | result = runner.invoke( |
| 7531 | cli, ["hub", "label", "create", "--name", "bug", "--color", "#zzzzzz"] |
| 7532 | ) |
| 7533 | assert result.exit_code != 0 |
| 7534 | mock_net.assert_not_called() |
| 7535 | |
| 7536 | def test_description_too_long_exits_nonzero_no_network( |
| 7537 | self, repo: pathlib.Path |
| 7538 | ) -> None: |
| 7539 | from muse.cli.commands.hub import _MAX_LABEL_DESC_LEN |
| 7540 | from muse.cli.config import set_hub_url |
| 7541 | set_hub_url(HUB_URL, repo) |
| 7542 | _store_identity(HUB_URL) |
| 7543 | long_desc = "x" * (_MAX_LABEL_DESC_LEN + 1) |
| 7544 | with patch("urllib.request.urlopen") as mock_net: |
| 7545 | result = runner.invoke( |
| 7546 | cli, |
| 7547 | [ |
| 7548 | "hub", "label", "create", |
| 7549 | "--name", "bug", |
| 7550 | "--color", "#d73a4a", |
| 7551 | "--description", long_desc, |
| 7552 | ], |
| 7553 | ) |
| 7554 | assert result.exit_code != 0 |
| 7555 | mock_net.assert_not_called() |
| 7556 | |
| 7557 | def test_success_json_output(self, repo: pathlib.Path) -> None: |
| 7558 | from muse.cli.config import set_hub_url |
| 7559 | set_hub_url(HUB_URL, repo) |
| 7560 | _store_identity(HUB_URL) |
| 7561 | mocks = _mock_responses(_refs_resp(), _label_resp()) |
| 7562 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7563 | result = runner.invoke( |
| 7564 | cli, |
| 7565 | ["hub", "label", "create", "--name", "bug", "--color", "#d73a4a", "--json"], |
| 7566 | ) |
| 7567 | assert result.exit_code == 0 |
| 7568 | data = json.loads(result.output) |
| 7569 | assert "label_id" in data |
| 7570 | |
| 7571 | def test_success_text_output_prints_id(self, repo: pathlib.Path) -> None: |
| 7572 | from muse.cli.config import set_hub_url |
| 7573 | set_hub_url(HUB_URL, repo) |
| 7574 | _store_identity(HUB_URL) |
| 7575 | mocks = _mock_responses(_refs_resp(), _label_resp(label_id="lbl-abc123")) |
| 7576 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7577 | result = runner.invoke( |
| 7578 | cli, |
| 7579 | ["hub", "label", "create", "--name", "bug", "--color", "#d73a4a"], |
| 7580 | ) |
| 7581 | assert result.exit_code == 0 |
| 7582 | assert "lbl-abc123" in result.stderr |
| 7583 | |
| 7584 | def test_with_description_accepted(self, repo: pathlib.Path) -> None: |
| 7585 | from muse.cli.config import set_hub_url |
| 7586 | set_hub_url(HUB_URL, repo) |
| 7587 | _store_identity(HUB_URL) |
| 7588 | mocks = _mock_responses(_refs_resp(), _label_resp(description="bug desc")) |
| 7589 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7590 | result = runner.invoke( |
| 7591 | cli, |
| 7592 | [ |
| 7593 | "hub", "label", "create", |
| 7594 | "--name", "bug", |
| 7595 | "--color", "#d73a4a", |
| 7596 | "--description", "bug desc", |
| 7597 | "--json", |
| 7598 | ], |
| 7599 | ) |
| 7600 | assert result.exit_code == 0 |
| 7601 | |
| 7602 | def test_ansi_in_name_sanitized_in_error(self, repo: pathlib.Path) -> None: |
| 7603 | """ANSI escape codes in label names must not reach terminal output.""" |
| 7604 | from muse.cli.config import set_hub_url |
| 7605 | set_hub_url(HUB_URL, repo) |
| 7606 | _store_identity(HUB_URL) |
| 7607 | ansi_name = "\x1b[31mmalicious\x1b[0m" |
| 7608 | with patch("urllib.request.urlopen"): |
| 7609 | result = runner.invoke( |
| 7610 | cli, ["hub", "label", "create", "--name", ansi_name, "--color", "bad"] |
| 7611 | ) |
| 7612 | assert "\x1b[31m" not in result.stderr |
| 7613 | |
| 7614 | |
| 7615 | # --------------------------------------------------------------------------- |
| 7616 | # TestLabelListHardening |
| 7617 | # --------------------------------------------------------------------------- |
| 7618 | |
| 7619 | |
| 7620 | class TestLabelListHardening: |
| 7621 | """Integration tests for ``muse hub label list``.""" |
| 7622 | |
| 7623 | def test_json_output_is_object(self, repo: pathlib.Path) -> None: |
| 7624 | from muse.cli.config import set_hub_url |
| 7625 | set_hub_url(HUB_URL, repo) |
| 7626 | _store_identity(HUB_URL) |
| 7627 | mocks = _mock_responses(_refs_resp(), _label_list_resp()) |
| 7628 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7629 | result = runner.invoke(cli, ["hub", "label", "list", "--json"]) |
| 7630 | assert result.exit_code == 0 |
| 7631 | data = json.loads(result.output) |
| 7632 | assert isinstance(data, dict) |
| 7633 | assert "labels" in data |
| 7634 | assert "total" in data |
| 7635 | |
| 7636 | def test_json_items_contain_expected_fields(self, repo: pathlib.Path) -> None: |
| 7637 | from muse.cli.config import set_hub_url |
| 7638 | set_hub_url(HUB_URL, repo) |
| 7639 | _store_identity(HUB_URL) |
| 7640 | mocks = _mock_responses(_refs_resp(), _label_list_resp([_label_resp(name="bug", color="#d73a4a")])) |
| 7641 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7642 | result = runner.invoke(cli, ["hub", "label", "list", "--json"]) |
| 7643 | assert result.exit_code == 0 |
| 7644 | obj = json.loads(result.output) |
| 7645 | items = obj["labels"] |
| 7646 | assert len(items) == 1 |
| 7647 | assert items[0]["name"] == "bug" |
| 7648 | assert items[0]["color"] == "#d73a4a" |
| 7649 | |
| 7650 | def test_empty_list_prints_no_labels_message(self, repo: pathlib.Path) -> None: |
| 7651 | from muse.cli.config import set_hub_url |
| 7652 | set_hub_url(HUB_URL, repo) |
| 7653 | _store_identity(HUB_URL) |
| 7654 | mocks = _mock_responses(_refs_resp(), _label_list_resp([])) |
| 7655 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7656 | result = runner.invoke(cli, ["hub", "label", "list"]) |
| 7657 | assert result.exit_code == 0 |
| 7658 | assert "no labels" in result.stderr.lower() |
| 7659 | |
| 7660 | def test_text_output_contains_color_and_name(self, repo: pathlib.Path) -> None: |
| 7661 | from muse.cli.config import set_hub_url |
| 7662 | set_hub_url(HUB_URL, repo) |
| 7663 | _store_identity(HUB_URL) |
| 7664 | mocks = _mock_responses( |
| 7665 | _refs_resp(), |
| 7666 | _label_list_resp([_label_resp(name="enhancement", color="#a2eeef")]), |
| 7667 | ) |
| 7668 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7669 | result = runner.invoke(cli, ["hub", "label", "list"]) |
| 7670 | assert result.exit_code == 0 |
| 7671 | assert "enhancement" in result.stderr |
| 7672 | assert "#a2eeef" in result.stderr |
| 7673 | |
| 7674 | def test_multiple_labels_all_shown(self, repo: pathlib.Path) -> None: |
| 7675 | from muse.cli.config import set_hub_url |
| 7676 | set_hub_url(HUB_URL, repo) |
| 7677 | _store_identity(HUB_URL) |
| 7678 | labels = [ |
| 7679 | _label_resp(label_id="a", name="bug", color="#d73a4a"), |
| 7680 | _label_resp(label_id="b", name="enhancement", color="#a2eeef"), |
| 7681 | _label_resp(label_id="c", name="question", color="#d876e3"), |
| 7682 | ] |
| 7683 | mocks = _mock_responses(_refs_resp(), _label_list_resp(labels)) |
| 7684 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7685 | result = runner.invoke(cli, ["hub", "label", "list", "--json"]) |
| 7686 | assert result.exit_code == 0 |
| 7687 | data = json.loads(result.output) |
| 7688 | assert data["total"] == 3 |
| 7689 | names = {item["name"] for item in data["labels"]} |
| 7690 | assert names == {"bug", "enhancement", "question"} |
| 7691 | |
| 7692 | |
| 7693 | # --------------------------------------------------------------------------- |
| 7694 | # TestLabelUpdateHardening |
| 7695 | # --------------------------------------------------------------------------- |
| 7696 | |
| 7697 | |
| 7698 | class TestLabelUpdateHardening: |
| 7699 | """Integration tests for ``muse hub label update``.""" |
| 7700 | |
| 7701 | def test_no_fields_exits_nonzero_no_network(self, repo: pathlib.Path) -> None: |
| 7702 | from muse.cli.config import set_hub_url |
| 7703 | set_hub_url(HUB_URL, repo) |
| 7704 | _store_identity(HUB_URL) |
| 7705 | with patch("urllib.request.urlopen") as mock_net: |
| 7706 | result = runner.invoke(cli, ["hub", "label", "update", "--name", "bug"]) |
| 7707 | assert result.exit_code != 0 |
| 7708 | mock_net.assert_not_called() |
| 7709 | |
| 7710 | def test_no_fields_error_message(self, repo: pathlib.Path) -> None: |
| 7711 | from muse.cli.config import set_hub_url |
| 7712 | set_hub_url(HUB_URL, repo) |
| 7713 | _store_identity(HUB_URL) |
| 7714 | with patch("urllib.request.urlopen"): |
| 7715 | result = runner.invoke(cli, ["hub", "label", "update", "--name", "bug"]) |
| 7716 | assert "new-name" in result.stderr.lower() or "new-color" in result.stderr.lower() or "at least" in result.stderr.lower() |
| 7717 | |
| 7718 | def test_empty_current_name_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 7719 | from muse.cli.config import set_hub_url |
| 7720 | set_hub_url(HUB_URL, repo) |
| 7721 | _store_identity(HUB_URL) |
| 7722 | with patch("urllib.request.urlopen") as mock_net: |
| 7723 | result = runner.invoke( |
| 7724 | cli, |
| 7725 | ["hub", "label", "update", "--name", " ", "--new-color", "#d73a4a"], |
| 7726 | ) |
| 7727 | assert result.exit_code != 0 |
| 7728 | mock_net.assert_not_called() |
| 7729 | |
| 7730 | def test_invalid_new_color_exits_nonzero_no_network(self, repo: pathlib.Path) -> None: |
| 7731 | from muse.cli.config import set_hub_url |
| 7732 | set_hub_url(HUB_URL, repo) |
| 7733 | _store_identity(HUB_URL) |
| 7734 | with patch("urllib.request.urlopen") as mock_net: |
| 7735 | result = runner.invoke( |
| 7736 | cli, |
| 7737 | ["hub", "label", "update", "--name", "bug", "--new-color", "notacolor"], |
| 7738 | ) |
| 7739 | assert result.exit_code != 0 |
| 7740 | mock_net.assert_not_called() |
| 7741 | |
| 7742 | def test_new_name_too_long_exits_nonzero_no_network(self, repo: pathlib.Path) -> None: |
| 7743 | from muse.cli.commands.hub import _MAX_LABEL_NAME_LEN |
| 7744 | from muse.cli.config import set_hub_url |
| 7745 | set_hub_url(HUB_URL, repo) |
| 7746 | _store_identity(HUB_URL) |
| 7747 | long_name = "x" * (_MAX_LABEL_NAME_LEN + 1) |
| 7748 | with patch("urllib.request.urlopen") as mock_net: |
| 7749 | result = runner.invoke( |
| 7750 | cli, |
| 7751 | ["hub", "label", "update", "--name", "bug", "--new-name", long_name], |
| 7752 | ) |
| 7753 | assert result.exit_code != 0 |
| 7754 | mock_net.assert_not_called() |
| 7755 | |
| 7756 | def test_label_not_found_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 7757 | from muse.cli.config import set_hub_url |
| 7758 | set_hub_url(HUB_URL, repo) |
| 7759 | _store_identity(HUB_URL) |
| 7760 | # GET /labels returns empty list — label not found |
| 7761 | mocks = _mock_responses(_refs_resp(), _label_list_resp([])) |
| 7762 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7763 | result = runner.invoke( |
| 7764 | cli, |
| 7765 | ["hub", "label", "update", "--name", "nonexistent", "--new-color", "#d73a4a"], |
| 7766 | ) |
| 7767 | assert result.exit_code != 0 |
| 7768 | assert "not found" in result.stderr.lower() |
| 7769 | |
| 7770 | def test_success_rename_json_output(self, repo: pathlib.Path) -> None: |
| 7771 | from muse.cli.config import set_hub_url |
| 7772 | set_hub_url(HUB_URL, repo) |
| 7773 | _store_identity(HUB_URL) |
| 7774 | updated = _label_resp(name="bug-report") |
| 7775 | mocks = _mock_responses(_refs_resp(), _label_list_resp([_label_resp()]), updated) |
| 7776 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7777 | result = runner.invoke( |
| 7778 | cli, |
| 7779 | [ |
| 7780 | "hub", "label", "update", |
| 7781 | "--name", "bug", |
| 7782 | "--new-name", "bug-report", |
| 7783 | "--json", |
| 7784 | ], |
| 7785 | ) |
| 7786 | assert result.exit_code == 0 |
| 7787 | data = json.loads(result.output) |
| 7788 | assert "label_id" in data |
| 7789 | |
| 7790 | def test_success_recolor_json_output(self, repo: pathlib.Path) -> None: |
| 7791 | from muse.cli.config import set_hub_url |
| 7792 | set_hub_url(HUB_URL, repo) |
| 7793 | _store_identity(HUB_URL) |
| 7794 | updated = _label_resp(color="#b60205") |
| 7795 | mocks = _mock_responses(_refs_resp(), _label_list_resp([_label_resp()]), updated) |
| 7796 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7797 | result = runner.invoke( |
| 7798 | cli, |
| 7799 | [ |
| 7800 | "hub", "label", "update", |
| 7801 | "--name", "bug", |
| 7802 | "--new-color", "#b60205", |
| 7803 | "--json", |
| 7804 | ], |
| 7805 | ) |
| 7806 | assert result.exit_code == 0 |
| 7807 | data = json.loads(result.output) |
| 7808 | assert "label_id" in data |
| 7809 | |
| 7810 | def test_success_text_output(self, repo: pathlib.Path) -> None: |
| 7811 | from muse.cli.config import set_hub_url |
| 7812 | set_hub_url(HUB_URL, repo) |
| 7813 | _store_identity(HUB_URL) |
| 7814 | updated = _label_resp(name="bug-report") |
| 7815 | mocks = _mock_responses(_refs_resp(), _label_list_resp([_label_resp()]), updated) |
| 7816 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7817 | result = runner.invoke( |
| 7818 | cli, |
| 7819 | ["hub", "label", "update", "--name", "bug", "--new-name", "bug-report"], |
| 7820 | ) |
| 7821 | assert result.exit_code == 0 |
| 7822 | assert "bug" in result.stderr |
| 7823 | |
| 7824 | |
| 7825 | # --------------------------------------------------------------------------- |
| 7826 | # TestLabelDeleteHardening |
| 7827 | # --------------------------------------------------------------------------- |
| 7828 | |
| 7829 | |
| 7830 | class TestLabelDeleteHardening: |
| 7831 | """Integration tests for ``muse hub label delete``.""" |
| 7832 | |
| 7833 | def test_empty_name_exits_nonzero_no_network(self, repo: pathlib.Path) -> None: |
| 7834 | from muse.cli.config import set_hub_url |
| 7835 | set_hub_url(HUB_URL, repo) |
| 7836 | _store_identity(HUB_URL) |
| 7837 | with patch("urllib.request.urlopen") as mock_net: |
| 7838 | result = runner.invoke(cli, ["hub", "label", "delete", "--name", " "]) |
| 7839 | assert result.exit_code != 0 |
| 7840 | mock_net.assert_not_called() |
| 7841 | |
| 7842 | def test_label_not_found_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 7843 | from muse.cli.config import set_hub_url |
| 7844 | set_hub_url(HUB_URL, repo) |
| 7845 | _store_identity(HUB_URL) |
| 7846 | mocks = _mock_responses(_refs_resp(), _label_list_resp([])) |
| 7847 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7848 | result = runner.invoke( |
| 7849 | cli, ["hub", "label", "delete", "--name", "nonexistent"] |
| 7850 | ) |
| 7851 | assert result.exit_code != 0 |
| 7852 | assert "not found" in result.stderr.lower() |
| 7853 | |
| 7854 | def test_success_exits_zero(self, repo: pathlib.Path) -> None: |
| 7855 | from muse.cli.config import set_hub_url |
| 7856 | set_hub_url(HUB_URL, repo) |
| 7857 | _store_identity(HUB_URL) |
| 7858 | # GET /labels returns the label; DELETE returns empty body → {} |
| 7859 | mocks = _mock_responses(_refs_resp(), _label_list_resp([_label_resp()]), {}) |
| 7860 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7861 | result = runner.invoke(cli, ["hub", "label", "delete", "--name", "bug"]) |
| 7862 | assert result.exit_code == 0 |
| 7863 | |
| 7864 | def test_success_json_output(self, repo: pathlib.Path) -> None: |
| 7865 | from muse.cli.config import set_hub_url |
| 7866 | set_hub_url(HUB_URL, repo) |
| 7867 | _store_identity(HUB_URL) |
| 7868 | mocks = _mock_responses(_refs_resp(), _label_list_resp([_label_resp()]), {}) |
| 7869 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7870 | result = runner.invoke( |
| 7871 | cli, ["hub", "label", "delete", "--name", "bug", "--json"] |
| 7872 | ) |
| 7873 | assert result.exit_code == 0 |
| 7874 | |
| 7875 | def test_ansi_in_name_sanitized_in_not_found_error(self, repo: pathlib.Path) -> None: |
| 7876 | """ANSI codes in label name must not reach terminal output on error.""" |
| 7877 | from muse.cli.config import set_hub_url |
| 7878 | set_hub_url(HUB_URL, repo) |
| 7879 | _store_identity(HUB_URL) |
| 7880 | ansi_name = "\x1b[31mmalicious\x1b[0m" |
| 7881 | mocks = _mock_responses(_refs_resp(), _label_list_resp([])) |
| 7882 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7883 | result = runner.invoke( |
| 7884 | cli, ["hub", "label", "delete", "--name", ansi_name] |
| 7885 | ) |
| 7886 | assert result.exit_code != 0 |
| 7887 | assert "\x1b[31m" not in result.stderr |
| 7888 | |
| 7889 | |
| 7890 | # --------------------------------------------------------------------------- |
| 7891 | # TestLabelSubparserRegistration |
| 7892 | # --------------------------------------------------------------------------- |
| 7893 | |
| 7894 | |
| 7895 | class TestLabelSubparserRegistration: |
| 7896 | """Verify the label subparser is wired up correctly.""" |
| 7897 | |
| 7898 | def test_label_create_in_help(self, repo: pathlib.Path) -> None: |
| 7899 | result = runner.invoke(cli, ["hub", "label", "--help"]) |
| 7900 | assert "create" in result.output.lower() or result.exit_code == 0 |
| 7901 | |
| 7902 | def test_label_list_in_help(self, repo: pathlib.Path) -> None: |
| 7903 | result = runner.invoke(cli, ["hub", "label", "--help"]) |
| 7904 | assert "list" in result.output.lower() or result.exit_code == 0 |
| 7905 | |
| 7906 | def test_label_update_in_help(self, repo: pathlib.Path) -> None: |
| 7907 | result = runner.invoke(cli, ["hub", "label", "--help"]) |
| 7908 | assert "update" in result.output.lower() or result.exit_code == 0 |
| 7909 | |
| 7910 | def test_label_delete_in_help(self, repo: pathlib.Path) -> None: |
| 7911 | result = runner.invoke(cli, ["hub", "label", "--help"]) |
| 7912 | assert "delete" in result.output.lower() or result.exit_code == 0 |
| 7913 | |
| 7914 | def test_label_constants_imported(self) -> None: |
| 7915 | from muse.cli.commands.hub import _MAX_LABEL_NAME_LEN, _MAX_LABEL_DESC_LEN |
| 7916 | assert _MAX_LABEL_NAME_LEN == 50 |
| 7917 | assert _MAX_LABEL_DESC_LEN == 200 |
| 7918 | |
| 7919 | def test_validate_hex_color_imported(self) -> None: |
| 7920 | from muse.cli.commands.hub import _validate_hex_color |
| 7921 | assert _validate_hex_color("#d73a4a") is True |
| 7922 | assert _validate_hex_color("d73a4a") is False |
| 7923 | assert _validate_hex_color("#fff") is False |
| 7924 | assert _validate_hex_color("#zzzzzz") is False |
| 7925 | assert _validate_hex_color("#FFFFFF") is True |
| 7926 | |
| 7927 | |
| 7928 | # --------------------------------------------------------------------------- |
| 7929 | # TestLabelSecurity |
| 7930 | # --------------------------------------------------------------------------- |
| 7931 | |
| 7932 | |
| 7933 | class TestLabelSecurity: |
| 7934 | """Security hardening tests for label commands.""" |
| 7935 | |
| 7936 | def test_create_color_injection_attempt(self, repo: pathlib.Path) -> None: |
| 7937 | """Color field must reject shell injection attempts before network.""" |
| 7938 | from muse.cli.config import set_hub_url |
| 7939 | set_hub_url(HUB_URL, repo) |
| 7940 | _store_identity(HUB_URL) |
| 7941 | malicious_color = "'; rm -rf /; #" |
| 7942 | with patch("urllib.request.urlopen") as mock_net: |
| 7943 | result = runner.invoke( |
| 7944 | cli, ["hub", "label", "create", "--name", "bug", "--color", malicious_color] |
| 7945 | ) |
| 7946 | assert result.exit_code != 0 |
| 7947 | mock_net.assert_not_called() |
| 7948 | |
| 7949 | def test_create_name_xss_attempt_sanitized(self, repo: pathlib.Path) -> None: |
| 7950 | """XSS payload in name must be sanitized in any CLI output.""" |
| 7951 | from muse.cli.config import set_hub_url |
| 7952 | set_hub_url(HUB_URL, repo) |
| 7953 | _store_identity(HUB_URL) |
| 7954 | xss_name = "<script>alert(1)</script>" |
| 7955 | with patch("urllib.request.urlopen"): |
| 7956 | result = runner.invoke( |
| 7957 | cli, ["hub", "label", "create", "--name", xss_name, "--color", "bad"] |
| 7958 | ) |
| 7959 | # Color is invalid so it exits non-zero; crucially no raw <script> in output |
| 7960 | assert "<script>" not in result.stderr |
| 7961 | |
| 7962 | def test_label_name_255_spaces_rejected(self, repo: pathlib.Path) -> None: |
| 7963 | """A name composed entirely of spaces must be rejected as empty after strip.""" |
| 7964 | from muse.cli.config import set_hub_url |
| 7965 | set_hub_url(HUB_URL, repo) |
| 7966 | _store_identity(HUB_URL) |
| 7967 | with patch("urllib.request.urlopen") as mock_net: |
| 7968 | result = runner.invoke( |
| 7969 | cli, |
| 7970 | ["hub", "label", "create", "--name", " " * 255, "--color", "#d73a4a"], |
| 7971 | ) |
| 7972 | assert result.exit_code != 0 |
| 7973 | mock_net.assert_not_called() |
| 7974 | |
| 7975 | def test_update_ansi_in_new_name_sanitized_in_error(self, repo: pathlib.Path) -> None: |
| 7976 | """ANSI codes in new_name must not appear verbatim in error output.""" |
| 7977 | from muse.cli.config import set_hub_url |
| 7978 | set_hub_url(HUB_URL, repo) |
| 7979 | _store_identity(HUB_URL) |
| 7980 | ansi_name = "\x1b[31mnewname\x1b[0m" |
| 7981 | mocks = _mock_responses(_refs_resp(), _label_list_resp([])) |
| 7982 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 7983 | result = runner.invoke( |
| 7984 | cli, |
| 7985 | [ |
| 7986 | "hub", "label", "update", |
| 7987 | "--name", "bug", |
| 7988 | "--new-name", ansi_name, |
| 7989 | ], |
| 7990 | ) |
| 7991 | assert "\x1b[31m" not in result.stderr |
| 7992 | |
| 7993 | |
| 7994 | # --------------------------------------------------------------------------- |
| 7995 | # TestIssueAssignHardening |
| 7996 | # --------------------------------------------------------------------------- |
| 7997 | |
| 7998 | |
| 7999 | class TestIssueAssignHardening: |
| 8000 | """Hardening tests for ``muse hub issue assign``.""" |
| 8001 | |
| 8002 | def test_zero_number_exits_nonzero_no_network(self, repo: pathlib.Path) -> None: |
| 8003 | from muse.cli.config import set_hub_url |
| 8004 | set_hub_url(HUB_URL, repo) |
| 8005 | _store_identity(HUB_URL) |
| 8006 | with patch("urllib.request.urlopen") as mock_net: |
| 8007 | result = runner.invoke(cli, ["hub", "issue", "assign", "0", "--assignee", "bob"]) |
| 8008 | assert result.exit_code != 0 |
| 8009 | mock_net.assert_not_called() |
| 8010 | |
| 8011 | def test_negative_number_exits_nonzero_no_network(self, repo: pathlib.Path) -> None: |
| 8012 | from muse.cli.config import set_hub_url |
| 8013 | set_hub_url(HUB_URL, repo) |
| 8014 | _store_identity(HUB_URL) |
| 8015 | with patch("urllib.request.urlopen") as mock_net: |
| 8016 | result = runner.invoke(cli, ["hub", "issue", "assign", "-3", "--assignee", "bob"]) |
| 8017 | assert result.exit_code != 0 |
| 8018 | mock_net.assert_not_called() |
| 8019 | |
| 8020 | def test_missing_assignee_flag_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 8021 | from muse.cli.config import set_hub_url |
| 8022 | set_hub_url(HUB_URL, repo) |
| 8023 | _store_identity(HUB_URL) |
| 8024 | with patch("urllib.request.urlopen") as mock_net: |
| 8025 | result = runner.invoke(cli, ["hub", "issue", "assign", "5"]) |
| 8026 | assert result.exit_code != 0 |
| 8027 | mock_net.assert_not_called() |
| 8028 | |
| 8029 | def test_success_text_mode_exit_zero(self, repo: pathlib.Path) -> None: |
| 8030 | from muse.cli.config import set_hub_url |
| 8031 | set_hub_url(HUB_URL, repo) |
| 8032 | _store_identity(HUB_URL) |
| 8033 | mocks = _mock_responses( |
| 8034 | _refs_resp(), |
| 8035 | _issue_resp(number=5, state="open"), |
| 8036 | ) |
| 8037 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 8038 | result = runner.invoke(cli, ["hub", "issue", "assign", "5", "--assignee", "bob"]) |
| 8039 | assert result.exit_code == 0 |
| 8040 | |
| 8041 | def test_success_json_output_has_expected_fields(self, repo: pathlib.Path) -> None: |
| 8042 | from muse.cli.config import set_hub_url |
| 8043 | set_hub_url(HUB_URL, repo) |
| 8044 | _store_identity(HUB_URL) |
| 8045 | mocks = _mock_responses( |
| 8046 | _refs_resp(), |
| 8047 | _issue_resp(number=5, state="open"), |
| 8048 | ) |
| 8049 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 8050 | result = runner.invoke(cli, ["hub", "issue", "assign", "5", "--assignee", "bob", "--json"]) |
| 8051 | assert result.exit_code == 0 |
| 8052 | data = json.loads(result.output) |
| 8053 | assert "number" in data |
| 8054 | |
| 8055 | def test_json_short_flag(self, repo: pathlib.Path) -> None: |
| 8056 | from muse.cli.config import set_hub_url |
| 8057 | set_hub_url(HUB_URL, repo) |
| 8058 | _store_identity(HUB_URL) |
| 8059 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=7)) |
| 8060 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 8061 | result = runner.invoke(cli, ["hub", "issue", "assign", "7", "--assignee", "carol", "-j"]) |
| 8062 | assert result.exit_code == 0 |
| 8063 | json.loads(result.output) |
| 8064 | |
| 8065 | def test_unassign_empty_string_sends_null(self, repo: pathlib.Path) -> None: |
| 8066 | """Passing empty --assignee must call POST .../assign with assignee=null.""" |
| 8067 | from muse.cli.config import set_hub_url |
| 8068 | set_hub_url(HUB_URL, repo) |
| 8069 | _store_identity(HUB_URL) |
| 8070 | captured_body: list[dict] = [] |
| 8071 | |
| 8072 | import json as _json |
| 8073 | |
| 8074 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 8075 | if body is not None: |
| 8076 | captured_body.append(dict(body)) |
| 8077 | return _issue_resp(number=5) |
| 8078 | |
| 8079 | with patch("muse.cli.commands.hub._hub_api", side_effect=_capture): |
| 8080 | with patch("muse.cli.commands.hub._get_hub_and_identity", return_value=(HUB_URL, {"handle": "alice", "key_path": ""})): |
| 8081 | with patch("muse.cli.commands.hub._resolve_repo_id", return_value="repo-id-0001"): |
| 8082 | result = runner.invoke(cli, ["hub", "issue", "assign", "5", "--assignee", ""]) |
| 8083 | assert result.exit_code == 0 |
| 8084 | assert any(b.get("assignee") is None for b in captured_body) |
| 8085 | |
| 8086 | def test_uses_post_method(self, repo: pathlib.Path) -> None: |
| 8087 | """assign must use POST /api/repos/{id}/issues/{n}/assign.""" |
| 8088 | from muse.cli.config import set_hub_url |
| 8089 | set_hub_url(HUB_URL, repo) |
| 8090 | _store_identity(HUB_URL) |
| 8091 | captured: list[str] = [] |
| 8092 | |
| 8093 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 8094 | captured.append(method) |
| 8095 | return _issue_resp(number=5) |
| 8096 | |
| 8097 | with patch("muse.cli.commands.hub._hub_api", side_effect=_capture): |
| 8098 | with patch("muse.cli.commands.hub._get_hub_and_identity", return_value=(HUB_URL, {"handle": "alice", "key_path": ""})): |
| 8099 | with patch("muse.cli.commands.hub._resolve_repo_id", return_value="repo-id-0001"): |
| 8100 | runner.invoke(cli, ["hub", "issue", "assign", "5", "--assignee", "bob"]) |
| 8101 | assert "POST" in captured |
| 8102 | |
| 8103 | def test_success_message_contains_assignee(self, repo: pathlib.Path) -> None: |
| 8104 | from muse.cli.config import set_hub_url |
| 8105 | set_hub_url(HUB_URL, repo) |
| 8106 | _store_identity(HUB_URL) |
| 8107 | mocks = _mock_responses(_refs_resp(), _issue_resp(number=5)) |
| 8108 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 8109 | result = runner.invoke(cli, ["hub", "issue", "assign", "5", "--assignee", "bob"]) |
| 8110 | assert result.exit_code == 0 |
| 8111 | assert "bob" in result.stderr or "5" in result.stderr |
| 8112 | |
| 8113 | def test_unassign_success_message(self, repo: pathlib.Path) -> None: |
| 8114 | from muse.cli.config import set_hub_url |
| 8115 | set_hub_url(HUB_URL, repo) |
| 8116 | _store_identity(HUB_URL) |
| 8117 | |
| 8118 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 8119 | return _issue_resp(number=5) |
| 8120 | |
| 8121 | with patch("muse.cli.commands.hub._hub_api", side_effect=_capture): |
| 8122 | with patch("muse.cli.commands.hub._get_hub_and_identity", return_value=(HUB_URL, {"handle": "alice", "key_path": ""})): |
| 8123 | with patch("muse.cli.commands.hub._resolve_repo_id", return_value="repo-id-0001"): |
| 8124 | result = runner.invoke(cli, ["hub", "issue", "assign", "5", "--assignee", ""]) |
| 8125 | assert result.exit_code == 0 |
| 8126 | |
| 8127 | |
| 8128 | # --------------------------------------------------------------------------- |
| 8129 | # TestIssueAssignSubparserRegistration |
| 8130 | # --------------------------------------------------------------------------- |
| 8131 | |
| 8132 | |
| 8133 | class TestIssueAssignSubparserRegistration: |
| 8134 | """Verify ``issue assign`` subparser is registered with correct arguments.""" |
| 8135 | |
| 8136 | def test_assign_help_exits_zero(self, repo: pathlib.Path) -> None: |
| 8137 | result = runner.invoke(cli, ["hub", "issue", "assign", "--help"]) |
| 8138 | assert result.exit_code == 0 |
| 8139 | |
| 8140 | def test_assign_number_arg_registered(self, repo: pathlib.Path) -> None: |
| 8141 | result = runner.invoke(cli, ["hub", "issue", "assign", "--help"]) |
| 8142 | assert "number" in result.output.lower() or "NUMBER" in result.output |
| 8143 | |
| 8144 | def test_assignee_flag_registered(self, repo: pathlib.Path) -> None: |
| 8145 | result = runner.invoke(cli, ["hub", "issue", "assign", "--help"]) |
| 8146 | assert "--assignee" in result.output |
| 8147 | |
| 8148 | def test_json_flag_registered(self, repo: pathlib.Path) -> None: |
| 8149 | result = runner.invoke(cli, ["hub", "issue", "assign", "--help"]) |
| 8150 | assert "--json" in result.output |
| 8151 | |
| 8152 | def test_short_json_flag_registered(self, repo: pathlib.Path) -> None: |
| 8153 | result = runner.invoke(cli, ["hub", "issue", "assign", "--help"]) |
| 8154 | assert "-j" in result.output |
| 8155 | |
| 8156 | |
| 8157 | # --------------------------------------------------------------------------- |
| 8158 | # TestIssueLabelHardening |
| 8159 | # --------------------------------------------------------------------------- |
| 8160 | |
| 8161 | |
| 8162 | class TestIssueLabelHardening: |
| 8163 | """Hardening tests for ``muse hub issue label``.""" |
| 8164 | |
| 8165 | def test_zero_number_exits_nonzero_no_network(self, repo: pathlib.Path) -> None: |
| 8166 | from muse.cli.config import set_hub_url |
| 8167 | set_hub_url(HUB_URL, repo) |
| 8168 | _store_identity(HUB_URL) |
| 8169 | with patch("urllib.request.urlopen") as mock_net: |
| 8170 | result = runner.invoke(cli, ["hub", "issue", "label", "0", "--set", "bug"]) |
| 8171 | assert result.exit_code != 0 |
| 8172 | mock_net.assert_not_called() |
| 8173 | |
| 8174 | def test_negative_number_exits_nonzero_no_network(self, repo: pathlib.Path) -> None: |
| 8175 | from muse.cli.config import set_hub_url |
| 8176 | set_hub_url(HUB_URL, repo) |
| 8177 | _store_identity(HUB_URL) |
| 8178 | with patch("urllib.request.urlopen") as mock_net: |
| 8179 | result = runner.invoke(cli, ["hub", "issue", "label", "-2", "--set", "bug"]) |
| 8180 | assert result.exit_code != 0 |
| 8181 | mock_net.assert_not_called() |
| 8182 | |
| 8183 | def test_missing_set_or_remove_exits_nonzero(self, repo: pathlib.Path) -> None: |
| 8184 | from muse.cli.config import set_hub_url |
| 8185 | set_hub_url(HUB_URL, repo) |
| 8186 | _store_identity(HUB_URL) |
| 8187 | with patch("urllib.request.urlopen") as mock_net: |
| 8188 | result = runner.invoke(cli, ["hub", "issue", "label", "5"]) |
| 8189 | assert result.exit_code != 0 |
| 8190 | mock_net.assert_not_called() |
| 8191 | |
| 8192 | def test_set_and_remove_mutually_exclusive(self, repo: pathlib.Path) -> None: |
| 8193 | from muse.cli.config import set_hub_url |
| 8194 | set_hub_url(HUB_URL, repo) |
| 8195 | _store_identity(HUB_URL) |
| 8196 | with patch("urllib.request.urlopen") as mock_net: |
| 8197 | result = runner.invoke( |
| 8198 | cli, ["hub", "issue", "label", "5", "--set", "bug", "--remove", "bug"] |
| 8199 | ) |
| 8200 | assert result.exit_code != 0 |
| 8201 | mock_net.assert_not_called() |
| 8202 | |
| 8203 | def test_set_success_exit_zero(self, repo: pathlib.Path) -> None: |
| 8204 | from muse.cli.config import set_hub_url |
| 8205 | set_hub_url(HUB_URL, repo) |
| 8206 | _store_identity(HUB_URL) |
| 8207 | mocks = _mock_responses( |
| 8208 | _refs_resp(), |
| 8209 | _issue_resp(number=5, labels=["bug", "enhancement"]), |
| 8210 | ) |
| 8211 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 8212 | result = runner.invoke(cli, ["hub", "issue", "label", "5", "--set", "bug", "enhancement"]) |
| 8213 | assert result.exit_code == 0 |
| 8214 | |
| 8215 | def test_set_json_output(self, repo: pathlib.Path) -> None: |
| 8216 | from muse.cli.config import set_hub_url |
| 8217 | set_hub_url(HUB_URL, repo) |
| 8218 | _store_identity(HUB_URL) |
| 8219 | mocks = _mock_responses( |
| 8220 | _refs_resp(), |
| 8221 | _issue_resp(number=5, labels=["bug"]), |
| 8222 | ) |
| 8223 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 8224 | result = runner.invoke(cli, ["hub", "issue", "label", "5", "--set", "bug", "--json"]) |
| 8225 | assert result.exit_code == 0 |
| 8226 | data = json.loads(result.output) |
| 8227 | assert "number" in data |
| 8228 | |
| 8229 | def test_remove_success_exit_zero(self, repo: pathlib.Path) -> None: |
| 8230 | from muse.cli.config import set_hub_url |
| 8231 | set_hub_url(HUB_URL, repo) |
| 8232 | _store_identity(HUB_URL) |
| 8233 | mocks = _mock_responses( |
| 8234 | _refs_resp(), |
| 8235 | _issue_resp(number=5, labels=[]), |
| 8236 | ) |
| 8237 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 8238 | result = runner.invoke(cli, ["hub", "issue", "label", "5", "--remove", "bug"]) |
| 8239 | assert result.exit_code == 0 |
| 8240 | |
| 8241 | def test_remove_json_output(self, repo: pathlib.Path) -> None: |
| 8242 | from muse.cli.config import set_hub_url |
| 8243 | set_hub_url(HUB_URL, repo) |
| 8244 | _store_identity(HUB_URL) |
| 8245 | mocks = _mock_responses( |
| 8246 | _refs_resp(), |
| 8247 | _issue_resp(number=5, labels=[]), |
| 8248 | ) |
| 8249 | with patch("urllib.request.urlopen", side_effect=mocks): |
| 8250 | result = runner.invoke(cli, ["hub", "issue", "label", "5", "--remove", "bug", "-j"]) |
| 8251 | assert result.exit_code == 0 |
| 8252 | json.loads(result.output) |
| 8253 | |
| 8254 | def test_set_uses_post_method(self, repo: pathlib.Path) -> None: |
| 8255 | """--set must use POST /api/repos/{id}/issues/{n}/labels.""" |
| 8256 | from muse.cli.config import set_hub_url |
| 8257 | set_hub_url(HUB_URL, repo) |
| 8258 | _store_identity(HUB_URL) |
| 8259 | captured: list[str] = [] |
| 8260 | |
| 8261 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 8262 | captured.append(method) |
| 8263 | return _issue_resp(number=5) |
| 8264 | |
| 8265 | with patch("muse.cli.commands.hub._hub_api", side_effect=_capture): |
| 8266 | with patch("muse.cli.commands.hub._get_hub_and_identity", return_value=(HUB_URL, {"handle": "alice", "key_path": ""})): |
| 8267 | with patch("muse.cli.commands.hub._resolve_repo_id", return_value="repo-id-0001"): |
| 8268 | runner.invoke(cli, ["hub", "issue", "label", "5", "--set", "bug"]) |
| 8269 | assert "POST" in captured |
| 8270 | |
| 8271 | def test_remove_uses_delete_method(self, repo: pathlib.Path) -> None: |
| 8272 | """--remove must use DELETE /api/repos/{id}/issues/{n}/labels/{name}.""" |
| 8273 | from muse.cli.config import set_hub_url |
| 8274 | set_hub_url(HUB_URL, repo) |
| 8275 | _store_identity(HUB_URL) |
| 8276 | captured: list[str] = [] |
| 8277 | |
| 8278 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 8279 | captured.append(method) |
| 8280 | return _issue_resp(number=5) |
| 8281 | |
| 8282 | with patch("muse.cli.commands.hub._hub_api", side_effect=_capture): |
| 8283 | with patch("muse.cli.commands.hub._get_hub_and_identity", return_value=(HUB_URL, {"handle": "alice", "key_path": ""})): |
| 8284 | with patch("muse.cli.commands.hub._resolve_repo_id", return_value="repo-id-0001"): |
| 8285 | runner.invoke(cli, ["hub", "issue", "label", "5", "--remove", "bug"]) |
| 8286 | assert "DELETE" in captured |
| 8287 | |
| 8288 | def test_set_sends_labels_in_body(self, repo: pathlib.Path) -> None: |
| 8289 | from muse.cli.config import set_hub_url |
| 8290 | set_hub_url(HUB_URL, repo) |
| 8291 | _store_identity(HUB_URL) |
| 8292 | captured_body: list[dict] = [] |
| 8293 | |
| 8294 | def _capture(hub_url: str, identity: IdentityEntry, method: str, path: str, body: _HubBody = None, timeout: float = 10.0) -> _JsonPayload: |
| 8295 | if body is not None: |
| 8296 | captured_body.append(dict(body)) |
| 8297 | return _issue_resp(number=5) |
| 8298 | |
| 8299 | with patch("muse.cli.commands.hub._hub_api", side_effect=_capture): |
| 8300 | with patch("muse.cli.commands.hub._get_hub_and_identity", return_value=(HUB_URL, {"handle": "alice", "key_path": ""})): |
| 8301 | with patch("muse.cli.commands.hub._resolve_repo_id", return_value="repo-id-0001"): |
| 8302 | runner.invoke(cli, ["hub", "issue", "label", "5", "--set", "bug", "enhancement"]) |
| 8303 | assert any("labels" in b for b in captured_body) |
| 8304 | label_body = next((b for b in captured_body if "labels" in b), None) |
| 8305 | assert label_body is not None |
| 8306 | assert set(label_body["labels"]) == {"bug", "enhancement"} |
| 8307 | |
| 8308 | |
| 8309 | # --------------------------------------------------------------------------- |
| 8310 | # TestIssueLabelSubparserRegistration |
| 8311 | # --------------------------------------------------------------------------- |
| 8312 | |
| 8313 | |
| 8314 | class TestIssueLabelSubparserRegistration: |
| 8315 | """Verify ``issue label`` subparser is registered with correct arguments.""" |
| 8316 | |
| 8317 | def test_label_help_exits_zero(self, repo: pathlib.Path) -> None: |
| 8318 | result = runner.invoke(cli, ["hub", "issue", "label", "--help"]) |
| 8319 | assert result.exit_code == 0 |
| 8320 | |
| 8321 | def test_set_flag_registered(self, repo: pathlib.Path) -> None: |
| 8322 | result = runner.invoke(cli, ["hub", "issue", "label", "--help"]) |
| 8323 | assert "--set" in result.output |
| 8324 | |
| 8325 | def test_remove_flag_registered(self, repo: pathlib.Path) -> None: |
| 8326 | result = runner.invoke(cli, ["hub", "issue", "label", "--help"]) |
| 8327 | assert "--remove" in result.output |
| 8328 | |
| 8329 | def test_json_flag_registered(self, repo: pathlib.Path) -> None: |
| 8330 | result = runner.invoke(cli, ["hub", "issue", "label", "--help"]) |
| 8331 | assert "--json" in result.output |
| 8332 | |
| 8333 | def test_number_arg_registered(self, repo: pathlib.Path) -> None: |
| 8334 | result = runner.invoke(cli, ["hub", "issue", "label", "--help"]) |
| 8335 | assert "number" in result.output.lower() or "NUMBER" in result.output |
File History
1 commit
sha256:99451767674c70e97323b61d5ef248ebe91530a91c2ab5902c2bb3e4acf250dd
Run in a fresh repo so no stale MERGE_STATE.json can bleed in
Human
patch
18 hours ago