mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-08-12 08:28:40 -04:00
129 lines
4.4 KiB
Python
129 lines
4.4 KiB
Python
"""Windows execution contract for the agent Bash tool."""
|
|
|
|
import pytest
|
|
|
|
from src.agent_tools import subprocess_tools
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_windows_bash_uses_git_bash_with_structural_cwd(monkeypatch):
|
|
captured = {}
|
|
bash = r"C:\Program Files\Git\bin\bash.exe"
|
|
workspace = r"D:\Workspaces\Project with spaces"
|
|
process = object()
|
|
|
|
monkeypatch.setattr(subprocess_tools, "IS_WINDOWS", True)
|
|
monkeypatch.setattr(subprocess_tools, "find_bash", lambda: bash)
|
|
|
|
async def fake_exec(*argv, **kwargs):
|
|
captured["argv"] = argv
|
|
captured["kwargs"] = kwargs
|
|
return process
|
|
|
|
async def fail_shell(*_args, **_kwargs):
|
|
pytest.fail("native Windows Bash must not execute through cmd.exe")
|
|
|
|
monkeypatch.setattr(subprocess_tools.asyncio, "create_subprocess_exec", fake_exec)
|
|
monkeypatch.setattr(subprocess_tools.asyncio, "create_subprocess_shell", fail_shell)
|
|
|
|
result = await subprocess_tools._create_bash_subprocess(
|
|
"pwd; cat package.json",
|
|
cwd=workspace,
|
|
env={"HOME": r"C:\Odysseus\data"},
|
|
)
|
|
|
|
assert result is process
|
|
assert captured["argv"] == (bash, "-c", "pwd; cat package.json")
|
|
assert captured["kwargs"]["cwd"] == workspace
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_windows_bash_without_git_bash_fails_clearly(monkeypatch):
|
|
monkeypatch.setattr(subprocess_tools, "IS_WINDOWS", True)
|
|
monkeypatch.setattr(subprocess_tools, "find_bash", lambda: None)
|
|
|
|
async def fail_spawn(*_args, **_kwargs):
|
|
pytest.fail("no subprocess should start without Git Bash")
|
|
|
|
monkeypatch.setattr(subprocess_tools.asyncio, "create_subprocess_exec", fail_spawn)
|
|
monkeypatch.setattr(subprocess_tools.asyncio, "create_subprocess_shell", fail_spawn)
|
|
|
|
with pytest.raises(RuntimeError, match="Git Bash is required"):
|
|
await subprocess_tools._create_bash_subprocess("pwd", cwd=r"C:\Work")
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_bash_tool_returns_install_hint_when_git_bash_is_missing(monkeypatch):
|
|
monkeypatch.setattr(subprocess_tools, "IS_WINDOWS", True)
|
|
monkeypatch.setattr(subprocess_tools, "find_bash", lambda: None)
|
|
|
|
result = await subprocess_tools.BashTool().execute(
|
|
"pwd",
|
|
{"subproc_env": {}, "session_id": None},
|
|
)
|
|
|
|
assert result["exit_code"] == 1
|
|
assert "install Git for Windows" in result["error"]
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_windows_bash_does_not_use_a_stray_tmux_executable(monkeypatch):
|
|
captured = {}
|
|
workspace = r"D:\Workspaces\Project with spaces"
|
|
|
|
monkeypatch.setattr(subprocess_tools, "IS_WINDOWS", True)
|
|
monkeypatch.setattr(
|
|
subprocess_tools.shutil,
|
|
"which",
|
|
lambda name: r"C:\msys64\usr\bin\tmux.exe",
|
|
)
|
|
monkeypatch.setattr("src.tool_execution.agent_cwd", lambda: workspace)
|
|
|
|
async def fail_tmux(*_args, **_kwargs):
|
|
pytest.fail("native Windows must not enter the POSIX tmux path")
|
|
|
|
async def fake_create(command, **kwargs):
|
|
captured["command"] = command
|
|
captured["kwargs"] = kwargs
|
|
return object()
|
|
|
|
async def fake_stream(_process, **_kwargs):
|
|
return "ok", "", 0, False
|
|
|
|
monkeypatch.setattr(subprocess_tools, "_run_tmux_bash", fail_tmux)
|
|
monkeypatch.setattr(subprocess_tools, "_create_bash_subprocess", fake_create)
|
|
monkeypatch.setattr(subprocess_tools, "_run_subprocess_streaming", fake_stream)
|
|
|
|
result = await subprocess_tools.BashTool().execute(
|
|
"pwd",
|
|
{"subproc_env": {}, "session_id": "chat-1"},
|
|
)
|
|
|
|
assert result == {"output": "ok", "exit_code": 0}
|
|
assert captured["command"] == "pwd"
|
|
assert captured["kwargs"]["cwd"] == workspace
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_posix_bash_keeps_existing_shell_path(monkeypatch):
|
|
captured = {}
|
|
process = object()
|
|
|
|
monkeypatch.setattr(subprocess_tools, "IS_WINDOWS", False)
|
|
|
|
async def fake_shell(command, **kwargs):
|
|
captured["command"] = command
|
|
captured["kwargs"] = kwargs
|
|
return process
|
|
|
|
async def fail_exec(*_args, **_kwargs):
|
|
pytest.fail("POSIX behavior must continue through create_subprocess_shell")
|
|
|
|
monkeypatch.setattr(subprocess_tools.asyncio, "create_subprocess_shell", fake_shell)
|
|
monkeypatch.setattr(subprocess_tools.asyncio, "create_subprocess_exec", fail_exec)
|
|
|
|
result = await subprocess_tools._create_bash_subprocess("pwd", cwd="/tmp/work")
|
|
|
|
assert result is process
|
|
assert captured == {"command": "pwd", "kwargs": {"cwd": "/tmp/work"}}
|