Files
graphify/tests/test_incremental.py
T
safishamsiandClaude Opus 4.8 137dcf23fe fix(extract): incremental --no-cluster merges instead of overwriting the graph (#2169)
An incremental `extract --no-cluster` wrote only the changed files over
graph.json with no merge, dropping every node/edge owned by an unchanged
file; and the id-canonicalization pass only learned batch files, so the
changed file's cross-file edges kept absolute-path target ids and
dangled. The raw path now merges the existing graph forward with the same
replace/prune semantics as the clustered path (new merge_raw_extraction
helper in build.py, shared loader), refuses to overwrite a corrupt
existing graph, and the remap pass now also learns in-root edge
target_file paths (existence-gated) so cross-file targets canonicalize.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-25 22:53:43 +01:00

244 lines
10 KiB
Python

"""Integration tests for incremental graphify extract behavior."""
from __future__ import annotations
import json
import os
import subprocess
import sys
from pathlib import Path
import pytest
PYTHON = sys.executable
# Backend-selecting env vars. These tests assume no working LLM backend (a docs
# corpus should fail without one); strip them so a developer who has a real
# ANTHROPIC_API_KEY / OPENAI_API_KEY / etc. exported does not make a docs extract
# succeed and break the "no backend" path. CI has none of these set anyway.
_LLM_ENV_KEYS = (
"ANTHROPIC_API_KEY", "OPENAI_API_KEY", "GEMINI_API_KEY", "GOOGLE_API_KEY",
"MOONSHOT_API_KEY", "DEEPSEEK_API_KEY", "OLLAMA_BASE_URL",
"AWS_PROFILE", "AWS_REGION", "AWS_DEFAULT_REGION", "AWS_ACCESS_KEY_ID",
)
def _run(args: list[str], cwd: Path) -> subprocess.CompletedProcess:
env = {k: v for k, v in os.environ.items() if k not in _LLM_ENV_KEYS}
return subprocess.run(
[PYTHON, "-m", "graphify"] + args,
cwd=cwd,
capture_output=True,
text=True,
env=env,
)
def _make_docs_corpus(tmp_path: Path) -> Path:
docs = tmp_path / "docs"
docs.mkdir()
(docs / "intro.md").write_text("# Introduction\nThis doc introduces the system.")
(docs / "api.md").write_text("# API Reference\nThe API has endpoints.")
return docs
def test_manifest_written_after_extract(tmp_path):
"""After a full extract run, manifest.json must exist (or run fails before writing it)."""
docs = _make_docs_corpus(tmp_path)
r = _run(["extract", str(docs)], tmp_path)
# Should fail with no API key — but NOT with a path error
assert "no LLM API key" in r.stderr or r.returncode != 0
# manifest should NOT exist (run failed before writing)
manifest = docs / "graphify-out" / "manifest.json"
assert not manifest.exists()
def test_incremental_mode_detected_via_manifest(tmp_path):
"""If manifest.json + graph.json exist, incremental mode message is shown."""
docs = _make_docs_corpus(tmp_path)
out = docs / "graphify-out"
out.mkdir()
(out / "graph.json").write_text(json.dumps({"nodes": [], "links": []}))
(out / "manifest.json").write_text(json.dumps({"document": [str(docs / "intro.md")]}))
r = _run(["extract", str(docs)], tmp_path)
combined = r.stdout + r.stderr
assert "incremental" in combined.lower() or r.returncode != 0
def test_no_incremental_without_manifest(tmp_path):
"""Without manifest.json, full scan message is shown (not incremental)."""
docs = _make_docs_corpus(tmp_path)
r = _run(["extract", str(docs)], tmp_path)
# Check combined output doesn't contain incremental-mode phrasing.
# Use a phrase rather than a bare word to avoid matching the tmp_path,
# which pytest derives from the test name and contains "incremental".
assert "incremental update" not in r.stdout.lower()
assert "incremental scan" not in r.stdout.lower()
def test_extract_no_cluster_incremental_noop_preserves_existing_graph(tmp_path):
"""#1347: no-op incremental no-cluster extract must not overwrite graph.json."""
project = tmp_path / "project"
project.mkdir()
(project / "app.py").write_text(
"def alpha():\n return 1\n", encoding="utf-8"
)
first = _run(["extract", str(project), "--no-cluster"], tmp_path)
assert first.returncode == 0, first.stderr
graph_path = project / "graphify-out" / "graph.json"
before_text = graph_path.read_text(encoding="utf-8")
before = json.loads(before_text)
assert before.get("nodes"), "first run should produce a non-empty code graph"
second = _run(["extract", str(project), "--no-cluster"], tmp_path)
assert second.returncode == 0, second.stderr
after_text = graph_path.read_text(encoding="utf-8")
after = json.loads(after_text)
assert after.get("nodes"), "no-op incremental run must not empty the graph"
assert after_text == before_text
def _edges(graph_json: Path) -> list[dict]:
g = json.loads(graph_json.read_text())
return g.get("links", g.get("edges", []))
def test_extract_no_cluster_incremental_changed_file_preserves_unchanged_files(tmp_path):
"""#2169: an incremental --no-cluster extract of ONE changed file must merge
into the existing graph, not overwrite graph.json with just that file's
chunk — and the changed file's cross-file import edges must keep pointing at
the unchanged target file's canonical node ids, not dangling
absolute-path-derived ones."""
proj = tmp_path / "proj"
(proj / "app" / "add").mkdir(parents=True)
(proj / "src" / "components").mkdir(parents=True)
(proj / "src" / "components" / "ScanScreen.tsx").write_text(
"export function ScanScreen() {\n return null;\n}\n", encoding="utf-8"
)
scan_tsx = proj / "app" / "add" / "scan.tsx"
scan_tsx.write_text(
"import {ScanScreen} from '../../src/components/ScanScreen';\n"
"export default ScanScreen;\n",
encoding="utf-8",
)
first = _run(["extract", str(proj), "--code-only", "--no-cluster"], tmp_path)
assert first.returncode == 0, first.stderr
gj = proj / "graphify-out" / "graph.json"
base = json.loads(gj.read_text(encoding="utf-8"))
base_ids = {n["id"] for n in base["nodes"]}
# Sanity: importer file, target file, and target symbol all present.
assert {
"app_add_scan",
"src_components_scanscreen",
"src_components_scanscreen_scanscreen",
} <= base_ids, base_ids
# Change ONLY scan.tsx (harmless comment), then re-run the same command.
scan_tsx.write_text(
scan_tsx.read_text(encoding="utf-8") + "\n// touched\n", encoding="utf-8"
)
second = _run(["extract", str(proj), "--code-only", "--no-cluster"], tmp_path)
assert second.returncode == 0, second.stderr
# Guard against a silent full rescan masking the merge bug.
assert "incremental scan" in second.stdout.lower(), second.stdout
after = json.loads(gj.read_text(encoding="utf-8"))
after_ids = {n["id"] for n in after["nodes"]}
# The unchanged file's nodes must survive the incremental raw write.
assert after_ids == base_ids, (
f"incremental --no-cluster dropped/changed nodes: "
f"missing={base_ids - after_ids}, extra={after_ids - base_ids}"
)
after_edges = after.get("links", after.get("edges", []))
# The unchanged file's own edge survives.
assert any(
e.get("relation") == "contains"
and e.get("source") == "src_components_scanscreen"
and e.get("target") == "src_components_scanscreen_scanscreen"
for e in after_edges
), after_edges
# No dangling endpoints on cross-file edges: the changed file's re-extracted
# imports/re-exports must resolve to the unchanged target's canonical ids,
# not absolute-path-derived ghosts (the extract.py half of #2169).
for e in after_edges:
if e.get("relation") in ("imports_from", "re_exports", "contains", "imports"):
assert e.get("source") in after_ids, f"dangling source: {e}"
assert e.get("target") in after_ids, f"dangling target: {e}"
def test_extract_no_cluster_incremental_code_only_preserves_doc_nodes(tmp_path):
"""#2169: an incremental --code-only --no-cluster run over a mixed corpus
must carry forward doc-sourced nodes it did not re-extract."""
proj = tmp_path / "proj"
proj.mkdir()
util = proj / "util.py"
util.write_text("def alpha():\n return 1\n", encoding="utf-8")
(proj / "notes.md").write_text("# Notes\nSome prose.\n", encoding="utf-8")
first = _run(["extract", str(proj), "--code-only", "--no-cluster"], tmp_path)
assert first.returncode == 0, first.stderr
gj = proj / "graphify-out" / "graph.json"
g = json.loads(gj.read_text(encoding="utf-8"))
assert g.get("nodes"), "first run should produce a non-empty code graph"
# Seed a doc-sourced node, as a prior (LLM-backed) run would have written.
g["nodes"].append({
"id": "notes",
"label": "notes.md",
"type": "document",
"source_file": "notes.md",
})
gj.write_text(json.dumps(g), encoding="utf-8")
# Change only the code file; the doc node must survive the incremental run.
util.write_text(
"def alpha():\n return 1\n\ndef beta():\n return 2\n",
encoding="utf-8",
)
second = _run(["extract", str(proj), "--code-only", "--no-cluster"], tmp_path)
assert second.returncode == 0, second.stderr
assert "incremental scan" in second.stdout.lower(), second.stdout
after = json.loads(gj.read_text(encoding="utf-8"))
after_by_id = {n["id"]: n for n in after["nodes"]}
assert "notes" in after_by_id, (
f"doc node dropped by incremental --code-only --no-cluster: "
f"{sorted(after_by_id)}"
)
assert after_by_id["notes"].get("source_file") == "notes.md"
# And the changed code file was actually re-extracted.
assert any("beta" in i for i in after_by_id), sorted(after_by_id)
def test_update_prunes_a_removed_imports_edge(tmp_path):
"""#1521: when an import is deleted from a file, `graphify update` must prune
the edge it produced — preserving it (keyed only on endpoint membership) left a
stale edge that drove phantom circular-dependency findings."""
proj = tmp_path / "proj"
pkg = proj / "pkg"
pkg.mkdir(parents=True)
(pkg / "b.py").write_text("def helper():\n return 1\n")
(pkg / "a.py").write_text("from pkg.b import helper\ndef use():\n return helper()\n")
# initial extract -> the import edge a -> b exists
r1 = _run(["extract", str(proj), "--no-cluster"], tmp_path)
assert r1.returncode == 0, r1.stderr
gj = proj / "graphify-out" / "graph.json"
before = _edges(gj)
assert any(e.get("relation") in ("imports", "imports_from") and
str(e.get("source_file", "")).endswith("a.py") for e in before), \
f"expected an import edge from a.py initially: {before}"
# remove the import, then update
(pkg / "a.py").write_text("def use():\n return 1\n")
r2 = _run(["update", str(proj)], tmp_path)
assert r2.returncode == 0, r2.stderr
after = _edges(gj)
# the stale import edge owned by a.py must be gone
stale = [e for e in after
if e.get("relation") in ("imports", "imports_from")
and str(e.get("source_file", "")).endswith("a.py")]
assert not stale, f"removed import's edge survived update (stale): {stale}"