mirror of
https://github.com/0xWheatyz/handler.git
synced 2026-08-30 15:26:24 +00:00
24b8c44451
The mise-init agent wedged on launch and the UI reported it green. Three distinct problems, fixed together: 1. Onboarding wedge (the proximate bug). A freshly-installed claude opens interactive setup — theme picker, then a folder-trust prompt — before the REPL. A detached tmux agent has no one to answer it, so it sat on the theme picker forever while agents.status said 'working'. New control.claude_config.ensure_onboarded() marks onboarding complete and trusts the working dir in ~/.claude.json (merge-only, so the login flow's oauthAccount survives); spawn() calls it before launching. 2. Config-name gate. control/mise.py only recognized `.mise.toml`, so a repo shipping `mise.toml` (no dot) — or config under `.config/mise/` — failed the [tasks.test] gate even when healthy. It now accepts the filenames mise itself reads and scans them all for the test task. 3. "Done" != done (the design gap). A spawned agent's real state lives in its tmux pane, but the socket is control-container-only, so the API couldn't see it. The worker now snapshots each working agent's pane tail (last ~40 lines) into two new agents columns (last_output, output_at, migration 0007) on its existing poll loop; the API serializes them and AgentsSection renders a live-output <pre> under each running agent. A wedged agent now shows the theme picker instead of a misleading green badge. Tests: home-dir writes are isolated to tmp in conftest; added coverage for claude_config seeding/merge, the mise filename set, the worker capture (including dead-session skip), and the API serialization. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01BxKY28XKCM6o4ag3nmaVsZ
41 lines
1.4 KiB
Python
41 lines
1.4 KiB
Python
"""The mise-config gate: which filenames count, and the [tasks.test] check."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from handler.control import mise
|
|
|
|
|
|
def test_no_config_is_no_config(tmp_path):
|
|
assert mise.has_config(str(tmp_path)) is False
|
|
assert mise.has_test_task(str(tmp_path)) is False
|
|
|
|
|
|
def test_dotless_mise_toml_is_accepted(tmp_path):
|
|
(tmp_path / "mise.toml").write_text("[tasks.test]\nrun = 'pytest'\n")
|
|
assert mise.has_config(str(tmp_path)) is True
|
|
assert mise.has_test_task(str(tmp_path)) is True
|
|
|
|
|
|
def test_dotted_mise_toml_is_accepted(tmp_path):
|
|
(tmp_path / ".mise.toml").write_text("[tasks.test]\nrun = 'go test ./...'\n")
|
|
assert mise.has_test_task(str(tmp_path)) is True
|
|
|
|
|
|
def test_config_under_dot_config_dir(tmp_path):
|
|
cfg = tmp_path / ".config" / "mise"
|
|
cfg.mkdir(parents=True)
|
|
(cfg / "config.toml").write_text("[tasks.test]\nrun = 'pytest'\n")
|
|
assert mise.has_test_task(str(tmp_path)) is True
|
|
|
|
|
|
def test_config_without_test_task_fails_the_gate(tmp_path):
|
|
(tmp_path / "mise.toml").write_text("[tasks.lint]\nrun = 'ruff check .'\n")
|
|
assert mise.has_config(str(tmp_path)) is True
|
|
assert mise.has_test_task(str(tmp_path)) is False
|
|
|
|
|
|
def test_corrupt_config_is_not_a_test_task(tmp_path):
|
|
(tmp_path / "mise.toml").write_text("this = = not valid toml")
|
|
assert mise.has_config(str(tmp_path)) is True
|
|
assert mise.has_test_task(str(tmp_path)) is False
|