fix(cli): wire god-nodes subcommand + accept --output alias on extract (#2004)

Part 2: `god_nodes` was an analyzer, an MCP tool, and a README-advertised
capability, but `graphify god_nodes` errored with "unknown command". Add a
read-only `god-nodes`/`god_nodes` subcommand mirroring `affected` (--graph,
--top, --json), routing labels through sanitize_label.

Part 3: `--output DIR` on `extract` was silently dropped (output fell back to
the default dir). It is now an alias of `--out` (both space and =forms), matching
what `graphify tree` already documents. Help/usage text updated.

Part 1 (affected/reverse-dep import-id mismatch) is deferred — a build-time
id-resolution change, tracked separately.
This commit is contained in:
safishamsi
2026-07-20 15:35:40 +01:00
parent db410d0d09
commit 1f4e3b2fe1
4 changed files with 177 additions and 4 deletions
+35
View File
@@ -56,6 +56,41 @@ def test_mixed_repo_without_key_errors_and_points_at_code_only(tmp_path):
assert "--code-only" in r.stderr, "the no-key error must point users at --code-only"
def _run_relative_out(repo: Path, *extra: str):
"""Like _run but with a RELATIVE GRAPHIFY_OUT so --out/--output controls the
parent dir (an absolute GRAPHIFY_OUT would override the flag)."""
env = {k: v for k, v in os.environ.items() if k not in _KEY_VARS}
env["GRAPHIFY_OUT"] = "graphify-out"
return subprocess.run(
[PYTHON, "-m", "graphify", "extract", ".", *extra],
cwd=repo, capture_output=True, text=True, env=env,
)
def test_output_flag_is_alias_of_out(tmp_path):
"""#2004 part 3: `--output DIR` was silently ignored on extract (output went
to the default `<path>/graphify-out/`). It is now an alias of `--out`."""
repo = tmp_path / "repo"
repo.mkdir()
(repo / "app.py").write_text("def hello():\n return 1\n")
custom = tmp_path / "elsewhere"
r = _run_relative_out(repo, "--code-only", "--no-cluster", "--output", str(custom))
assert r.returncode == 0, r.stderr
assert (custom / "graphify-out" / "graph.json").exists(), "--output was ignored (#2004)"
assert not (repo / "graphify-out").exists(), "output must not go to the default dir"
def test_output_flag_inline_form(tmp_path):
repo = tmp_path / "repo"
repo.mkdir()
(repo / "app.py").write_text("def hello():\n return 1\n")
custom = tmp_path / "out2"
r = _run_relative_out(repo, "--code-only", "--no-cluster", f"--output={custom}")
assert r.returncode == 0, r.stderr
assert (custom / "graphify-out" / "graph.json").exists()
def test_no_gitignore_indexes_vcs_ignored_code_but_keeps_graphifyignore(tmp_path):
repo = tmp_path / "repo"
generated = repo / "proj" / "deep" / "generated"