Repo-side rename only (Phases 1-3 of the migration plan); the live box (~/.castle, systemd units, /data/castle, domains) is a separate cutover. - Slug `castle` -> `wildpc`: CLI command, module names (wildpc_core/cli/api), dist names, entry point `wildpc = wildpc_cli.main:main`. - Identifiers: CastleConfig/NATSClient/DirError/MDNS -> Wildpc*. - Env/constants: CASTLE_* -> WILDPC_*; ~/.castle -> ~/.wildpc, castle.yaml -> wildpc.yaml, /data/castle -> /data/wildpc. - Systemd UNIT_PREFIX castle- -> wildpc-; own programs castle-api/gateway/etc. - Display prose "Castle" -> "Wild PC" in docs, agent-guide files, README, frontend. - Package dirs and bootstrap yaml renamed via git mv; lockfiles regenerated; redundant nested uv.lock files dropped (workspace root lock is authoritative). Tests: core 273, cli 47, wildpc-api 120 all pass. Frontend type-checks + builds. Fixed a stale test fixture (secret_env_path kind arg) broken pre-rename.
68 lines
2.4 KiB
Python
68 lines
2.4 KiB
Python
"""Tests for wildpc delete."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from argparse import Namespace
|
|
from pathlib import Path
|
|
from unittest.mock import patch
|
|
|
|
from wildpc_cli.config import load_config
|
|
|
|
|
|
def _run_delete(wildpc_root: Path, **kwargs: object) -> object:
|
|
with (
|
|
patch("wildpc_cli.commands.delete.load_config") as mock_load,
|
|
patch("wildpc_cli.commands.delete.save_config"),
|
|
):
|
|
config = load_config(wildpc_root)
|
|
mock_load.return_value = config
|
|
from wildpc_cli.commands.delete import run_delete
|
|
|
|
args = Namespace(source=False, yes=True, **kwargs)
|
|
rc = run_delete(args)
|
|
return rc, config
|
|
|
|
|
|
class TestDelete:
|
|
def test_delete_program(self, wildpc_root: Path) -> None:
|
|
rc, config = _run_delete(wildpc_root, name="test-tool")
|
|
assert rc == 0
|
|
assert "test-tool" not in config.programs
|
|
|
|
def test_delete_unknown_fails(self, wildpc_root: Path) -> None:
|
|
rc, _ = _run_delete(wildpc_root, name="does-not-exist")
|
|
assert rc == 1
|
|
|
|
def test_delete_source_removes_dir(self, wildpc_root: Path, tmp_path: Path) -> None:
|
|
# Point a program's source at a real temp dir, then delete with --source.
|
|
src = tmp_path / "victim"
|
|
src.mkdir()
|
|
(src / "file.txt").write_text("x")
|
|
with (
|
|
patch("wildpc_cli.commands.delete.load_config") as mock_load,
|
|
patch("wildpc_cli.commands.delete.save_config"),
|
|
):
|
|
config = load_config(wildpc_root)
|
|
config.programs["test-tool"].source = str(src)
|
|
mock_load.return_value = config
|
|
from wildpc_cli.commands.delete import run_delete
|
|
|
|
rc = run_delete(Namespace(name="test-tool", source=True, yes=True))
|
|
assert rc == 0
|
|
assert not src.exists()
|
|
|
|
def test_abort_without_yes_and_no_input(self, wildpc_root: Path) -> None:
|
|
# No --yes and no stdin → aborts safely (returns 1, leaves entry).
|
|
with (
|
|
patch("wildpc_cli.commands.delete.load_config") as mock_load,
|
|
patch("wildpc_cli.commands.delete.save_config"),
|
|
patch("builtins.input", side_effect=EOFError),
|
|
):
|
|
config = load_config(wildpc_root)
|
|
mock_load.return_value = config
|
|
from wildpc_cli.commands.delete import run_delete
|
|
|
|
rc = run_delete(Namespace(name="test-tool", source=False, yes=False))
|
|
assert rc == 1
|
|
assert "test-tool" in config.programs
|