refactor(preflight): compact y/N summary #31
@@ -73,13 +73,6 @@ class BottlePlan(ABC):
|
|||||||
def print(self, *, remote_control: bool) -> None:
|
def print(self, *, remote_control: bool) -> None:
|
||||||
"""Render the y/N preflight summary to stderr."""
|
"""Render the y/N preflight summary to stderr."""
|
||||||
|
|
||||||
@abstractmethod
|
|
||||||
def to_dict(self, *, remote_control: bool) -> dict[str, object]:
|
|
||||||
"""Return the plan as a JSON-serializable dict for machine
|
|
||||||
consumption (used by `start --dry-run --format=json`). The key
|
|
||||||
set is part of the CLI's user-facing contract — adding fields
|
|
||||||
is fine, renaming or removing is a breaking change."""
|
|
||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
class BottleCleanupPlan(ABC):
|
class BottleCleanupPlan(ABC):
|
||||||
|
|||||||
@@ -14,24 +14,11 @@ from pathlib import Path
|
|||||||
from ...egress_proxy import EgressProxyPlan
|
from ...egress_proxy import EgressProxyPlan
|
||||||
from ...git_gate import GitGatePlan
|
from ...git_gate import GitGatePlan
|
||||||
from ...log import info
|
from ...log import info
|
||||||
from ...manifest import Agent, Bottle
|
from ...pipelock import PipelockProxyPlan
|
||||||
from ...pipelock import PipelockProxyPlan, pipelock_effective_allowlist
|
|
||||||
from ...supervise import SupervisePlan
|
from ...supervise import SupervisePlan
|
||||||
from .. import BottlePlan
|
from .. import BottlePlan
|
||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
|
||||||
class _PlanView:
|
|
||||||
"""Fields that both `print` and `to_dict` need but the plan
|
|
||||||
doesn't store directly. Cheap to compute; computed once per call."""
|
|
||||||
|
|
||||||
agent: Agent
|
|
||||||
bottle: Bottle
|
|
||||||
env_names: list[str]
|
|
||||||
git_names: list[str]
|
|
||||||
prompt_first_line: str
|
|
||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
class DockerBottlePlan(BottlePlan):
|
class DockerBottlePlan(BottlePlan):
|
||||||
"""Docker-specific resolved fields produced by
|
"""Docker-specific resolved fields produced by
|
||||||
@@ -65,36 +52,24 @@ class DockerBottlePlan(BottlePlan):
|
|||||||
allowlist_summary: str
|
allowlist_summary: str
|
||||||
use_runsc: bool
|
use_runsc: bool
|
||||||
|
|
||||||
def _view(self) -> _PlanView:
|
def print(self, *, remote_control: bool) -> None:
|
||||||
|
"""Render the y/N preflight summary to stderr — compact form
|
||||||
|
intended to fit on screen without scrolling. The full
|
||||||
|
structured shape (image, container, runtime, etc.) lives on
|
||||||
|
this dataclass for tooling that wants to introspect it."""
|
||||||
|
del remote_control # not surfaced in the compact summary
|
||||||
spec = self.spec
|
spec = self.spec
|
||||||
manifest = spec.manifest
|
manifest = spec.manifest
|
||||||
agent = manifest.agents[spec.agent_name]
|
agent = manifest.agents[spec.agent_name]
|
||||||
bottle = manifest.bottle_for(spec.agent_name)
|
bottle = manifest.bottle_for(spec.agent_name)
|
||||||
# The agent sees the union of literal env names (rendered into
|
# The agent sees the union of literal env names (rendered into
|
||||||
# --env-file) and forwarded env names (`-e NAME` with the value
|
# --env-file) and forwarded env names (`-e NAME` with the
|
||||||
# arriving via subprocess env). The forwarded set holds the
|
# value arriving via subprocess env). The forwarded set holds
|
||||||
# OAuth token (CLAUDE_CODE_OAUTH_TOKEN) and any host-env
|
# the OAuth token (CLAUDE_CODE_OAUTH_TOKEN) and any host-env
|
||||||
# interpolations from the manifest; egress-proxy holds upstream
|
# interpolations from the manifest; egress-proxy holds
|
||||||
# tokens in its own environ, so no token forwarding from the
|
# upstream tokens in its own environ, so no token forwarding
|
||||||
# agent to the proxy is needed.
|
# from the agent to the proxy is needed.
|
||||||
env_names = sorted(set(bottle.env.keys()) | set(self.forwarded_env.keys()))
|
env_names = sorted(set(bottle.env.keys()) | set(self.forwarded_env.keys()))
|
||||||
return _PlanView(
|
|
||||||
agent=agent,
|
|
||||||
bottle=bottle,
|
|
||||||
env_names=env_names,
|
|
||||||
git_names=[e.Name for e in bottle.git],
|
|
||||||
prompt_first_line=agent.prompt.splitlines()[0] if agent.prompt else "",
|
|
||||||
)
|
|
||||||
|
|
||||||
def print(self, *, remote_control: bool) -> None:
|
|
||||||
"""Render the y/N preflight summary to stderr — compact form
|
|
||||||
intended to fit on screen without scrolling. The full
|
|
||||||
structured shape (image, container, runtime, etc.) is
|
|
||||||
available via `to_dict` + `--format=json` for tooling /
|
|
||||||
debugging."""
|
|
||||||
del remote_control # not surfaced in the compact summary
|
|
||||||
v = self._view()
|
|
||||||
spec = self.spec
|
|
||||||
|
|
||||||
def _multi(label: str, values: list[str]) -> None:
|
def _multi(label: str, values: list[str]) -> None:
|
||||||
"""Print a label with N continuation-indented values. Used
|
"""Print a label with N continuation-indented values. Used
|
||||||
@@ -110,9 +85,9 @@ class DockerBottlePlan(BottlePlan):
|
|||||||
|
|
||||||
print(file=sys.stderr)
|
print(file=sys.stderr)
|
||||||
info(f"agent : {spec.agent_name}")
|
info(f"agent : {spec.agent_name}")
|
||||||
_multi("env ", v.env_names)
|
_multi("env ", env_names)
|
||||||
_multi("skills ", list(v.agent.skills))
|
_multi("skills ", list(agent.skills))
|
||||||
info(f"bottle : {v.agent.bottle}")
|
info(f"bottle : {agent.bottle}")
|
||||||
|
|
||||||
git_lines = [
|
git_lines = [
|
||||||
f"{u.upstream_host}:{u.upstream_port}"
|
f"{u.upstream_host}:{u.upstream_port}"
|
||||||
@@ -129,62 +104,3 @@ class DockerBottlePlan(BottlePlan):
|
|||||||
_multi(" egress-proxy ", egress_lines)
|
_multi(" egress-proxy ", egress_lines)
|
||||||
print(file=sys.stderr)
|
print(file=sys.stderr)
|
||||||
|
|
||||||
def to_dict(self, *, remote_control: bool) -> dict[str, object]:
|
|
||||||
v = self._view()
|
|
||||||
hosts = pipelock_effective_allowlist(v.bottle)
|
|
||||||
return {
|
|
||||||
"agent": self.spec.agent_name,
|
|
||||||
"bottle": v.agent.bottle,
|
|
||||||
"container_name": self.container_name,
|
|
||||||
"image": self.image,
|
|
||||||
"derived_image": self.derived_image,
|
|
||||||
"stage_dir": str(self.stage_dir),
|
|
||||||
"runtime": "runsc" if self.use_runsc else "runc",
|
|
||||||
"env_names": v.env_names,
|
|
||||||
"skills": list(v.agent.skills),
|
|
||||||
"git_remotes": v.git_names,
|
|
||||||
"git_gate": [
|
|
||||||
{
|
|
||||||
"name": u.name,
|
|
||||||
"upstream": f"{u.upstream_host}:{u.upstream_port}",
|
|
||||||
"upstream_url": u.upstream_url,
|
|
||||||
"known_host_key_pinned": bool(u.known_host_key),
|
|
||||||
}
|
|
||||||
for u in self.git_gate_plan.upstreams
|
|
||||||
],
|
|
||||||
"egress_proxy": [
|
|
||||||
{
|
|
||||||
"host": r.host,
|
|
||||||
"path_allowlist": list(r.path_allowlist),
|
|
||||||
"auth_scheme": r.auth_scheme,
|
|
||||||
"token_ref": r.token_ref,
|
|
||||||
}
|
|
||||||
for r in self.egress_proxy_plan.routes
|
|
||||||
],
|
|
||||||
"egress": {
|
|
||||||
"host_count": len(hosts),
|
|
||||||
"hosts": hosts,
|
|
||||||
# PRD 0017: TLS interception moved from pipelock to
|
|
||||||
# egress-proxy. ca_fingerprint is always null at
|
|
||||||
# dry-run because the CA doesn't exist yet — real
|
|
||||||
# launches print the fingerprint to stderr from
|
|
||||||
# provision_ca. Reserved field for forward-compat.
|
|
||||||
"tls_interception": {
|
|
||||||
"enabled": True,
|
|
||||||
"ca_fingerprint": None,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"supervise": {
|
|
||||||
"enabled": self.supervise_plan is not None,
|
|
||||||
"queue_dir": (
|
|
||||||
str(self.supervise_plan.queue_dir)
|
|
||||||
if self.supervise_plan is not None
|
|
||||||
else None
|
|
||||||
),
|
|
||||||
},
|
|
||||||
"prompt": {
|
|
||||||
"length": len(v.agent.prompt),
|
|
||||||
"first_line": v.prompt_first_line,
|
|
||||||
},
|
|
||||||
"remote_control": remote_control,
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -29,12 +29,6 @@ def cmd_resume(argv: list[str]) -> int:
|
|||||||
parser = argparse.ArgumentParser(prog=f"{PROG} resume", add_help=True)
|
parser = argparse.ArgumentParser(prog=f"{PROG} resume", add_help=True)
|
||||||
parser.add_argument("--dry-run", action="store_true")
|
parser.add_argument("--dry-run", action="store_true")
|
||||||
parser.add_argument("--remote-control", action="store_true")
|
parser.add_argument("--remote-control", action="store_true")
|
||||||
parser.add_argument(
|
|
||||||
"--format",
|
|
||||||
choices=("text", "json"),
|
|
||||||
default="text",
|
|
||||||
help="preflight output format; --format=json requires --dry-run",
|
|
||||||
)
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"identity",
|
"identity",
|
||||||
help="bottle identity from a prior `start` (see its session-end output)",
|
help="bottle identity from a prior `start` (see its session-end output)",
|
||||||
@@ -61,6 +55,5 @@ def cmd_resume(argv: list[str]) -> int:
|
|||||||
return _launch_bottle(
|
return _launch_bottle(
|
||||||
spec,
|
spec,
|
||||||
dry_run=args.dry_run,
|
dry_run=args.dry_run,
|
||||||
output_format=args.format,
|
|
||||||
remote_control=args.remote_control,
|
remote_control=args.remote_control,
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ _launch_bottle below.
|
|||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import json
|
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
import sys
|
import sys
|
||||||
@@ -23,7 +22,7 @@ from ..backend.docker.bottle_state import (
|
|||||||
mark_preserved,
|
mark_preserved,
|
||||||
)
|
)
|
||||||
from ..backend.docker.capability_apply import snapshot_transcript
|
from ..backend.docker.capability_apply import snapshot_transcript
|
||||||
from ..log import die, info
|
from ..log import info
|
||||||
from ..manifest import Manifest
|
from ..manifest import Manifest
|
||||||
from ._common import PROG, USER_CWD, read_tty_line
|
from ._common import PROG, USER_CWD, read_tty_line
|
||||||
|
|
||||||
@@ -33,18 +32,10 @@ def cmd_start(argv: list[str]) -> int:
|
|||||||
parser.add_argument("--dry-run", action="store_true")
|
parser.add_argument("--dry-run", action="store_true")
|
||||||
parser.add_argument("--cwd", action="store_true", help="copy host cwd into a derived image")
|
parser.add_argument("--cwd", action="store_true", help="copy host cwd into a derived image")
|
||||||
parser.add_argument("--remote-control", action="store_true")
|
parser.add_argument("--remote-control", action="store_true")
|
||||||
parser.add_argument(
|
|
||||||
"--format",
|
|
||||||
choices=("text", "json"),
|
|
||||||
default="text",
|
|
||||||
help="preflight output format; --format=json requires --dry-run",
|
|
||||||
)
|
|
||||||
parser.add_argument("name", help="agent name defined in claude-bottle.json")
|
parser.add_argument("name", help="agent name defined in claude-bottle.json")
|
||||||
args = parser.parse_args(argv)
|
args = parser.parse_args(argv)
|
||||||
|
|
||||||
dry_run = args.dry_run or os.environ.get("CLAUDE_BOTTLE_DRY_RUN") == "1"
|
dry_run = args.dry_run or os.environ.get("CLAUDE_BOTTLE_DRY_RUN") == "1"
|
||||||
if args.format == "json" and not dry_run:
|
|
||||||
die("--format=json requires --dry-run")
|
|
||||||
|
|
||||||
manifest = Manifest.resolve(USER_CWD)
|
manifest = Manifest.resolve(USER_CWD)
|
||||||
spec = BottleSpec(
|
spec = BottleSpec(
|
||||||
@@ -56,7 +47,6 @@ def cmd_start(argv: list[str]) -> int:
|
|||||||
return _launch_bottle(
|
return _launch_bottle(
|
||||||
spec,
|
spec,
|
||||||
dry_run=dry_run,
|
dry_run=dry_run,
|
||||||
output_format=args.format,
|
|
||||||
remote_control=args.remote_control,
|
remote_control=args.remote_control,
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -65,7 +55,6 @@ def _launch_bottle(
|
|||||||
spec: BottleSpec,
|
spec: BottleSpec,
|
||||||
*,
|
*,
|
||||||
dry_run: bool,
|
dry_run: bool,
|
||||||
output_format: str,
|
|
||||||
remote_control: bool,
|
remote_control: bool,
|
||||||
) -> int:
|
) -> int:
|
||||||
"""Shared launch core for `start` and `resume`. Builds the plan,
|
"""Shared launch core for `start` and `resume`. Builds the plan,
|
||||||
@@ -76,11 +65,6 @@ def _launch_bottle(
|
|||||||
backend = get_bottle_backend()
|
backend = get_bottle_backend()
|
||||||
plan = backend.prepare(spec, stage_dir=stage_dir)
|
plan = backend.prepare(spec, stage_dir=stage_dir)
|
||||||
|
|
||||||
if output_format == "json":
|
|
||||||
json.dump(plan.to_dict(remote_control=remote_control), sys.stdout, indent=2)
|
|
||||||
sys.stdout.write("\n")
|
|
||||||
return 0
|
|
||||||
|
|
||||||
plan.print(remote_control=remote_control)
|
plan.print(remote_control=remote_control)
|
||||||
|
|
||||||
if dry_run:
|
if dry_run:
|
||||||
|
|||||||
@@ -1,149 +0,0 @@
|
|||||||
"""Integration: cli.py start --dry-run --format=json renders a stable
|
|
||||||
machine-readable plan and creates zero Docker resources. The shape of
|
|
||||||
the JSON document is part of the CLI's user-facing contract."""
|
|
||||||
|
|
||||||
import json
|
|
||||||
import os
|
|
||||||
import subprocess
|
|
||||||
import sys
|
|
||||||
import tempfile
|
|
||||||
import unittest
|
|
||||||
from pathlib import Path
|
|
||||||
|
|
||||||
from tests._docker import skip_unless_docker
|
|
||||||
|
|
||||||
REPO_ROOT = Path(__file__).resolve().parent.parent.parent
|
|
||||||
|
|
||||||
|
|
||||||
@skip_unless_docker()
|
|
||||||
class TestDryRunPlan(unittest.TestCase):
|
|
||||||
def test_dry_run_emits_structured_plan(self):
|
|
||||||
work_dir = Path(tempfile.mkdtemp())
|
|
||||||
try:
|
|
||||||
# PRD 0011 layout: per-file MD under .claude-bottle/.
|
|
||||||
# work_dir doubles as $HOME and as cwd for this test.
|
|
||||||
cb = work_dir / ".claude-bottle"
|
|
||||||
(cb / "bottles").mkdir(parents=True)
|
|
||||||
(cb / "agents").mkdir(parents=True)
|
|
||||||
(cb / "bottles" / "dev.md").write_text(
|
|
||||||
"---\n"
|
|
||||||
"egress:\n"
|
|
||||||
" allowlist:\n"
|
|
||||||
" - example.org\n"
|
|
||||||
"---\n"
|
|
||||||
)
|
|
||||||
(cb / "agents" / "demo.md").write_text(
|
|
||||||
"---\n"
|
|
||||||
"bottle: dev\n"
|
|
||||||
"---\n"
|
|
||||||
)
|
|
||||||
|
|
||||||
# Under act_runner with a host-mounted docker socket, the
|
|
||||||
# `docker network ls` / `docker ps -a` calls from inside the
|
|
||||||
# job container exit non-zero (see docs/ci.md for the same
|
|
||||||
# topology issue affecting other integration tests). Skip
|
|
||||||
# the side-effects guard there; locally the check still
|
|
||||||
# catches accidental docker resource creation by the dry
|
|
||||||
# run.
|
|
||||||
check_side_effects = os.environ.get("GITEA_ACTIONS") != "true"
|
|
||||||
nets_before = self._count_claude_bottle_networks() if check_side_effects else 0
|
|
||||||
ctrs_before = self._count_claude_bottle_containers() if check_side_effects else 0
|
|
||||||
|
|
||||||
env = os.environ.copy()
|
|
||||||
env["HOME"] = str(work_dir)
|
|
||||||
env.pop("CLAUDE_BOTTLE_DRY_RUN", None)
|
|
||||||
# The HOME override above isolates the manifest under test
|
|
||||||
# from the dev's real ~/claude-bottle.json. On Docker Desktop
|
|
||||||
# that same override breaks docker CLI endpoint resolution,
|
|
||||||
# since the active context lives in $HOME/.docker/config.json
|
|
||||||
# and the per-user socket sits under $HOME/.docker/run/.
|
|
||||||
# Pin DOCKER_HOST to the parent's resolved endpoint so the
|
|
||||||
# subprocess reaches the same daemon regardless of $HOME.
|
|
||||||
endpoint = subprocess.run(
|
|
||||||
["docker", "context", "inspect",
|
|
||||||
"--format", "{{.Endpoints.docker.Host}}"],
|
|
||||||
capture_output=True, text=True, check=True,
|
|
||||||
).stdout.strip()
|
|
||||||
if endpoint:
|
|
||||||
env["DOCKER_HOST"] = endpoint
|
|
||||||
result = subprocess.run(
|
|
||||||
[
|
|
||||||
sys.executable, str(REPO_ROOT / "cli.py"),
|
|
||||||
"start", "--dry-run", "--format", "json", "demo",
|
|
||||||
],
|
|
||||||
cwd=work_dir,
|
|
||||||
env=env,
|
|
||||||
capture_output=True,
|
|
||||||
text=True,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
self.assertEqual(
|
|
||||||
0, result.returncode,
|
|
||||||
f"start --dry-run failed: stderr={result.stderr}",
|
|
||||||
)
|
|
||||||
|
|
||||||
plan = json.loads(result.stdout)
|
|
||||||
|
|
||||||
self.assertEqual("demo", plan["agent"])
|
|
||||||
self.assertEqual("dev", plan["bottle"])
|
|
||||||
self.assertEqual("runc", plan["runtime"],
|
|
||||||
"runsc isn't available on the CI runner")
|
|
||||||
self.assertEqual([], plan["skills"])
|
|
||||||
self.assertEqual([], plan["git_remotes"])
|
|
||||||
self.assertEqual([], plan["git_gate"])
|
|
||||||
self.assertEqual(False, plan["remote_control"])
|
|
||||||
self.assertEqual(0, plan["prompt"]["length"])
|
|
||||||
|
|
||||||
# User-declared host + a baked default both present; the union
|
|
||||||
# is sorted and deduplicated.
|
|
||||||
hosts = plan["egress"]["hosts"]
|
|
||||||
self.assertIn("example.org", hosts)
|
|
||||||
self.assertIn("api.anthropic.com", hosts)
|
|
||||||
self.assertEqual(plan["egress"]["host_count"], len(hosts))
|
|
||||||
self.assertEqual(sorted(set(hosts)), hosts,
|
|
||||||
"hosts must be sorted and deduplicated")
|
|
||||||
|
|
||||||
# PRD 0006: TLS interception is on for every launched
|
|
||||||
# bottle. Fingerprint is null at dry-run (no CA exists
|
|
||||||
# yet); real launches log it from provision_ca.
|
|
||||||
self.assertEqual(
|
|
||||||
{"enabled": True, "ca_fingerprint": None},
|
|
||||||
plan["egress"]["tls_interception"],
|
|
||||||
)
|
|
||||||
|
|
||||||
# No Docker side effects (see the GITEA_ACTIONS skip note
|
|
||||||
# above — this guard runs locally only).
|
|
||||||
if check_side_effects:
|
|
||||||
self.assertEqual(nets_before, self._count_claude_bottle_networks(),
|
|
||||||
"no networks created")
|
|
||||||
self.assertEqual(ctrs_before, self._count_claude_bottle_containers(),
|
|
||||||
"no containers created")
|
|
||||||
finally:
|
|
||||||
import shutil
|
|
||||||
shutil.rmtree(work_dir, ignore_errors=True)
|
|
||||||
|
|
||||||
def _count_claude_bottle_networks(self) -> int:
|
|
||||||
return self._count_with_prefix(
|
|
||||||
["docker", "network", "ls", "--format", "{{.Name}}"], "claude-bottle"
|
|
||||||
)
|
|
||||||
|
|
||||||
def _count_claude_bottle_containers(self) -> int:
|
|
||||||
return self._count_with_prefix(
|
|
||||||
["docker", "ps", "-a", "--format", "{{.Names}}"], "claude-bottle"
|
|
||||||
)
|
|
||||||
|
|
||||||
def _count_with_prefix(self, cmd: list[str], prefix: str) -> int:
|
|
||||||
# capture_output + explicit returncode check so a docker
|
|
||||||
# failure surfaces its stderr in the test report instead of
|
|
||||||
# the bare CalledProcessError we used to get.
|
|
||||||
result = subprocess.run(cmd, capture_output=True, text=True, check=False)
|
|
||||||
if result.returncode != 0:
|
|
||||||
self.fail(
|
|
||||||
f"{' '.join(cmd)!r} failed (exit {result.returncode}): "
|
|
||||||
f"stderr={result.stderr.strip()!r}"
|
|
||||||
)
|
|
||||||
return sum(1 for n in result.stdout.splitlines() if n.startswith(prefix))
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
unittest.main()
|
|
||||||
@@ -1,54 +0,0 @@
|
|||||||
"""Unit: argparse-level CLI checks for `start --format`.
|
|
||||||
|
|
||||||
Lives in tests/unit/ because nothing here touches Docker — the CLI
|
|
||||||
exits at argument-validation time before any backend code runs.
|
|
||||||
"""
|
|
||||||
|
|
||||||
import json
|
|
||||||
import os
|
|
||||||
import subprocess
|
|
||||||
import sys
|
|
||||||
import tempfile
|
|
||||||
import unittest
|
|
||||||
from pathlib import Path
|
|
||||||
|
|
||||||
REPO_ROOT = Path(__file__).resolve().parent.parent.parent
|
|
||||||
|
|
||||||
|
|
||||||
class TestStartFormatFlag(unittest.TestCase):
|
|
||||||
def test_json_format_requires_dry_run(self):
|
|
||||||
"""Emitting JSON in a real run would race the y/N prompt; the
|
|
||||||
CLI must reject the combination with a message that names the
|
|
||||||
offending flag."""
|
|
||||||
work_dir = Path(tempfile.mkdtemp())
|
|
||||||
try:
|
|
||||||
(work_dir / "claude-bottle.json").write_text(json.dumps({
|
|
||||||
"bottles": {"dev": {}},
|
|
||||||
"agents": {"demo": {"skills": [], "prompt": "", "bottle": "dev"}},
|
|
||||||
}))
|
|
||||||
env = os.environ.copy()
|
|
||||||
env["HOME"] = str(work_dir)
|
|
||||||
env.pop("CLAUDE_BOTTLE_DRY_RUN", None)
|
|
||||||
result = subprocess.run(
|
|
||||||
[
|
|
||||||
sys.executable, str(REPO_ROOT / "cli.py"),
|
|
||||||
"start", "--format", "json", "demo",
|
|
||||||
],
|
|
||||||
cwd=work_dir,
|
|
||||||
env=env,
|
|
||||||
capture_output=True,
|
|
||||||
text=True,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
self.assertNotEqual(0, result.returncode)
|
|
||||||
self.assertIn(
|
|
||||||
"--format=json requires --dry-run", result.stderr,
|
|
||||||
f"expected the flag-conflict message; got stderr={result.stderr!r}",
|
|
||||||
)
|
|
||||||
finally:
|
|
||||||
import shutil
|
|
||||||
shutil.rmtree(work_dir, ignore_errors=True)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
unittest.main()
|
|
||||||
Reference in New Issue
Block a user