mirror of
https://github.com/Graphify-Labs/graphify.git
synced 2026-09-14 19:34:09 +08:00
74e1424a84
Route to_canvas and _owned_write through paths.write_*_atomic so concurrent readers (e.g. git hashing) never see a truncated file.
Fixes #3282
(cherry picked from commit 39564e4eef)
74 lines
2.3 KiB
Python
74 lines
2.3 KiB
Python
"""Regression: to_canvas / Obsidian vault writes must be atomic (#3282)."""
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
import os
|
|
from pathlib import Path
|
|
|
|
import networkx as nx
|
|
import pytest
|
|
|
|
from graphify.export import to_canvas, to_obsidian
|
|
|
|
|
|
def _tiny_graph():
|
|
G = nx.Graph()
|
|
G.add_node("a", label="Alpha", file_type="code", source_file="a.py")
|
|
G.add_node("b", label="Beta", file_type="code", source_file="b.py")
|
|
G.add_edge("a", "b", relation="calls", confidence="EXTRACTED", weight=1.0)
|
|
return G, {0: ["a", "b"]}
|
|
|
|
|
|
def test_to_canvas_uses_atomic_replace(tmp_path, monkeypatch):
|
|
G, communities = _tiny_graph()
|
|
out = tmp_path / "graph.canvas"
|
|
out.write_text('{"nodes":[],"edges":[]}', encoding="utf-8")
|
|
|
|
real_replace = os.replace
|
|
calls: list[tuple[str, str]] = []
|
|
|
|
def tracking_replace(src, dst):
|
|
calls.append((str(src), str(dst)))
|
|
return real_replace(src, dst)
|
|
|
|
monkeypatch.setattr(os, "replace", tracking_replace)
|
|
to_canvas(G, communities, str(out))
|
|
|
|
assert any(Path(dst).resolve() == out.resolve() for _, dst in calls), calls
|
|
data = json.loads(out.read_text(encoding="utf-8"))
|
|
assert "nodes" in data and "edges" in data
|
|
assert len(data["nodes"]) >= 2
|
|
|
|
|
|
def test_to_canvas_preserves_existing_when_replace_fails(tmp_path, monkeypatch):
|
|
G, communities = _tiny_graph()
|
|
out = tmp_path / "graph.canvas"
|
|
original = '{"nodes":[],"edges":[],"preserved":true}'
|
|
out.write_text(original, encoding="utf-8")
|
|
|
|
def boom(src, dst):
|
|
raise OSError("simulated failure")
|
|
|
|
monkeypatch.setattr(os, "replace", boom)
|
|
with pytest.raises(OSError):
|
|
to_canvas(G, communities, str(out))
|
|
|
|
assert out.read_text(encoding="utf-8") == original
|
|
|
|
|
|
def test_to_obsidian_owned_writes_are_atomic(tmp_path, monkeypatch):
|
|
G, communities = _tiny_graph()
|
|
real_replace = os.replace
|
|
calls: list[str] = []
|
|
|
|
def tracking_replace(src, dst):
|
|
calls.append(str(dst))
|
|
return real_replace(src, dst)
|
|
|
|
monkeypatch.setattr(os, "replace", tracking_replace)
|
|
to_obsidian(G, communities, str(tmp_path), community_labels={0: "Core"})
|
|
|
|
# At least one vault artifact should land via os.replace (notes / graph.json).
|
|
assert calls, "expected atomic replaces for Obsidian vault writes"
|
|
assert any(Path(p).name.endswith(".md") or p.endswith("graph.json") for p in calls)
|