|
| 1 | +"""Shared fixtures for shell script tests.""" |
| 2 | + |
| 3 | +import json |
| 4 | +import os |
| 5 | +import subprocess |
| 6 | +from pathlib import Path |
| 7 | + |
| 8 | +import pytest |
| 9 | +from git import Repo |
| 10 | + |
| 11 | + |
| 12 | +@pytest.fixture |
| 13 | +def git_repo(tmp_path: Path) -> Path: |
| 14 | + """Create a basic git repo for testing.""" |
| 15 | + repo = Repo.init(tmp_path) |
| 16 | + |
| 17 | + readme = tmp_path / "README.md" |
| 18 | + readme.write_text("# Test Project\n") |
| 19 | + repo.index.add(["README.md"]) |
| 20 | + repo.index.commit("Initial commit") |
| 21 | + |
| 22 | + return tmp_path |
| 23 | + |
| 24 | + |
| 25 | +@pytest.fixture |
| 26 | +def git_repo_with_policy(tmp_path: Path) -> Path: |
| 27 | + """Create a git repo with policy that will fire.""" |
| 28 | + repo = Repo.init(tmp_path) |
| 29 | + |
| 30 | + readme = tmp_path / "README.md" |
| 31 | + readme.write_text("# Test Project\n") |
| 32 | + repo.index.add(["README.md"]) |
| 33 | + repo.index.commit("Initial commit") |
| 34 | + |
| 35 | + # Policy that triggers on any Python file |
| 36 | + policy_file = tmp_path / ".deepwork.policy.yml" |
| 37 | + policy_file.write_text( |
| 38 | + """- name: "Python File Policy" |
| 39 | + trigger: "**/*.py" |
| 40 | + compare_to: prompt |
| 41 | + instructions: | |
| 42 | + Review Python files for quality. |
| 43 | +""" |
| 44 | + ) |
| 45 | + |
| 46 | + # Empty baseline so new files trigger |
| 47 | + deepwork_dir = tmp_path / ".deepwork" |
| 48 | + deepwork_dir.mkdir(exist_ok=True) |
| 49 | + (deepwork_dir / ".last_work_tree").write_text("") |
| 50 | + |
| 51 | + return tmp_path |
| 52 | + |
| 53 | + |
| 54 | +@pytest.fixture |
| 55 | +def policy_hooks_dir() -> Path: |
| 56 | + """Return the path to the policy hooks scripts directory.""" |
| 57 | + return ( |
| 58 | + Path(__file__).parent.parent.parent |
| 59 | + / "src" |
| 60 | + / "deepwork" |
| 61 | + / "standard_jobs" |
| 62 | + / "deepwork_policy" |
| 63 | + / "hooks" |
| 64 | + ) |
| 65 | + |
| 66 | + |
| 67 | +@pytest.fixture |
| 68 | +def jobs_scripts_dir() -> Path: |
| 69 | + """Return the path to the jobs scripts directory.""" |
| 70 | + return ( |
| 71 | + Path(__file__).parent.parent.parent / "src" / "deepwork" / "standard_jobs" / "deepwork_jobs" |
| 72 | + ) |
| 73 | + |
| 74 | + |
| 75 | +def run_shell_script( |
| 76 | + script_path: Path, |
| 77 | + cwd: Path, |
| 78 | + args: list[str] | None = None, |
| 79 | + hook_input: dict | None = None, |
| 80 | + env_extra: dict[str, str] | None = None, |
| 81 | +) -> tuple[str, str, int]: |
| 82 | + """ |
| 83 | + Run a shell script and return its output. |
| 84 | +
|
| 85 | + Args: |
| 86 | + script_path: Path to the shell script |
| 87 | + cwd: Working directory to run the script in |
| 88 | + args: Optional list of arguments to pass to the script |
| 89 | + hook_input: Optional JSON input to pass via stdin |
| 90 | + env_extra: Optional extra environment variables |
| 91 | +
|
| 92 | + Returns: |
| 93 | + Tuple of (stdout, stderr, return_code) |
| 94 | + """ |
| 95 | + env = os.environ.copy() |
| 96 | + env["PYTHONPATH"] = str(Path(__file__).parent.parent.parent / "src") |
| 97 | + if env_extra: |
| 98 | + env.update(env_extra) |
| 99 | + |
| 100 | + cmd = ["bash", str(script_path)] |
| 101 | + if args: |
| 102 | + cmd.extend(args) |
| 103 | + |
| 104 | + stdin_data = json.dumps(hook_input) if hook_input else "" |
| 105 | + |
| 106 | + result = subprocess.run( |
| 107 | + cmd, |
| 108 | + cwd=cwd, |
| 109 | + capture_output=True, |
| 110 | + text=True, |
| 111 | + input=stdin_data, |
| 112 | + env=env, |
| 113 | + ) |
| 114 | + |
| 115 | + return result.stdout, result.stderr, result.returncode |
0 commit comments