mirror of
https://github.com/backnotprop/plannotator.git
synced 2026-09-14 14:17:26 +08:00
6ec1a66c9b
* feat(review): large GitHub PR fallback + non-blocking PR checkout
Two PR-mode improvements:
1. Large GitHub PRs no longer fail to load. When `gh pr diff` is refused
(HTTP 406 for oversized diffs), fetchGhPR pages through the pulls files
API and stitches the per-file patches into a unified diff — mirroring
the existing GitLab raw_diffs fallback. Path quoting matches git's
exact rules (bare spaces unquoted) so downstream parsers round-trip;
truncation at the API's 3000-file cap is surfaced, never silent.
2. The --local worktree/clone no longer blocks startup. The review server
opens as soon as the platform diff arrives; the checkout warms in the
background as a seeded not-ready pool entry. Consumers that need real
files (agent jobs, full-stack diff, code-nav, semantic diff, AI
sessions) await pool.ensure(), with creations serialized so concurrent
fetches can't clobber the shared FETCH_HEAD. Cross-repo clone steps
converted from spawnSync to async spawns; warmup children are killed
on exit (plus `git worktree prune`) so aborted sessions can't leak
stale registrations; failed checkouts degrade honestly (no agent runs
in the wrong directory claiming local access) with a 30s retry
cooldown.
* fix(review): survive long PR checkout warmups + classify reconstructed renames
Stress-testing against oven-sh/bun#30412 (2,188 files) surfaced three bugs:
- Bun.serve's default 10s idleTimeout killed /api/semantic-diff while it
parked on the background checkout warmup (a clone that can take minutes).
Disable the idle timeout on all servers — AI SSE streams can also stall
>10s between bytes while a permission prompt waits.
- The file-badge hook memoized that failed fetch in a module-level cache
keyed by patch, pinning every badge to empty until a hard refresh. Never
cache failures; retry with backoff (5s/15s/30s).
- reconstructGhPatch/reconstructPatch omitted the `similarity index` line,
which Pierre's parser keys rename classification off — pure renames
rendered as blank plain changes with no old path. Emit 100% for
patch-less renames/copies (exactly accurate) and a synthetic 99% for
patched ones (consumers only branch on 100% vs not).
* feat(review): local full-diff upgrade for PRs whose API diff is truncated
On oversized PRs the platform APIs withhold per-file patch content entirely
(bun#30412: 1,066 of 2,188 files came back with status added/modified, zeroed
counts, and no patch). Those files rendered as empty stubs with no diff.
- fetchGhPR/fetchGlMR flag the result `patchIncomplete` when patch-less
non-rename entries exist or the 3000-file cap truncates the listing.
- New runPRLayerLocalDiff (pr-stack.ts) recomputes the exact layer diff in
the local checkout: platform merge-base + head SHA two-dot diff (three-dot
vs baseSha fallback), fetch-by-SHA for objects missing from shallow clones,
-l0 so rename detection doesn't silently degrade on huge PRs.
- The review UI shows a "Partial diff · Load full diff" notice in layer
scope; clicking re-requests the layer scope and the server swaps in the
recomputed full diff (waiting out the background clone if needed).
- PR scope/switch state writes are epoch-guarded: a request parked on the
checkout warmup can no longer overwrite a newer scope select or pr-switch.
- draftKey follows the upgraded patch so annotation drafts survive pr-switch
round-trips; recompute failures surface in the response error field.
- Pi server mirrors all of it, including an agentCwd fallback so the upgrade
works for PRs switched-to under a cross-repo clone pool.
* fix(review): use GitLab's too_large/collapsed flags for withheld-diff detection
External review caught a false negative: a too-large ADDED file comes back
new_file:true with an empty diff — indistinguishable from a legitimately
empty new file under the old heuristic, so the partial-diff upgrade was
never offered for exactly the files that matter most on big MRs.
The REST /diffs endpoint marks withheld content explicitly per entry
(verified against gitlab.com): too_large/collapsed are now authoritative in
both directions — withheld adds/deletes are flagged, binaries and empty
files are never misflagged. Older GitLab without the fields keeps the
empty-diff-on-modification heuristic.
* feat(prompts): unify review-denied suffix — triage first, no coding off raw feedback
The per-runtime defaults map (#627) gave OpenCode and Pi a different
review-denied suffix than every other runtime; updating one meant the
others silently kept "you must address all of them" — an instruction to
start coding immediately. Claude Code, Amp, Droid, Codex, Copilot, Gemini,
and Kiro were all still on it.
One default for every runtime now: triage the feedback, verify it against
the code, discuss before changing anything. Per-runtime customization
remains available via config (prompts.review.runtimes.<rt>.denied), which
resolves above the built-in default as before.
* fix(prompts): generalize review-denied suffix — 'from review', not 'external AI reviewers'
Review feedback isn't always from AI reviewers or agent jobs; often it's
the human reviewer's own annotations. Neutral wording covers both.
* fix(review): non-blocking 'Load full diff' + flag-handling hardenings
Self-review findings:
- The partial-diff upgrade reused the scope-switch handler, so clicking
"Load full diff" raised the full-screen PRSwitchOverlay — blocking the
entire UI, potentially for minutes behind a cold clone, with no text and
no cancel. The upgrade now has its own loading state: the notice shows a
spinner ("Loading full diff…") and the reviewer keeps working with the
partial diff while the request parks. Server-side epoch guards already
handle scope/PR changes made during the wait.
- GitLab too_large/collapsed: treat explicit null like absent (flags
inconclusive → legacy heuristic decides) instead of silently exonerating.
- Rename-limit lift uses -l100000 instead of -l0 ("0 = unlimited" only
holds on git >= 2.29; on older git it could disable detection outright).
* fix(review): stop scroll-driven sem stampede when semantic diff is failing
The badge retry change (a2d19a4e) cleared the client-side sem cache on
failure so transient errors could recover. But file-header badges mount and
unmount on every scroll in the virtualized all-files view, and each mount
re-requests /api/semantic-diff — and the server only cached SUCCESSFUL runs.
With sem erroring, scrolling spawned a continuous stream of sem processes,
pegging the CPU and making scrolling severely choppy.
Bound retry rate by time, not by mount events:
- client: keep the failed result memoized and expire it after a 60s
cooldown instead of clearing immediately
- server (Bun + Pi): memoize failed sem runs for 30s in
SemanticDiffResponseCache — request rate can no longer drive execution
rate
* fix(review): eliminate all-files scroll jank (pre-existing on main, from #885)
The CodeView migration introduced severe scroll chop; scrolling UP could
freeze the viewport entirely ("scrolling but nothing changes"). Three
compounding causes, diagnosed against Pierre 1.2.8 source:
1. Lazy full-content augmentation landed updateItem() mid-scroll-gesture:
the full-content parse counts collapsed-context regions the raw-patch
parse doesn't, so the item GROWS — re-render + re-tokenize hitches both
directions, and when the grown item sat above CodeView's scroll anchor,
its corrective scrollTo() killed wheel momentum (the up-scroll freeze).
Fetches still start as items enter the window; the item mutation now
waits for 150ms of scroll quiet (staleness re-checked at apply time).
2. reportVisibleFile read container.scrollTop/clientHeight/scrollHeight on
EVERY scroll event — a forced synchronous layout right after each
frame's DOM writes. Replaced with CodeView's cached accessors and
coalesced the handler to once per animation frame.
3. Missing containment CSS: Pierre's own production wrapper uses
contain:strict + will-change:scroll-position so forced layouts stay
scoped to the scroller instead of the whole document. Adopted.
Also: __devOnlyValidateItemHeights now requires explicit opt-in
(VITE_PIERRE_VALIDATE_HEIGHTS=1) — it runs getBoundingClientRect() per
rendered item per frame and made dev-server scrolling choppy by itself.
* feat(review): change-type status in headers + tree, diffshub CSS parity
Adopts two diffshub practices identified in the architecture comparison:
- DiffFile now carries a derived status (added/deleted/renamed/modified)
from the chunk's git metadata lines. FileHeader shows a status icon and
renders renames as "old/path → new/path" (dimmed old, arrow — diffshub's
treatment, including its rename blue); the file tree shows A/D/R markers.
'modified' is deliberately undecorated so the others pop. Works in both
the all-files surface and the single-file panel, including header-only
pure renames from the large-PR reconstruction.
- CodeView container gains diffshub's remaining perf CSS: overflow-anchor:
none (native scroll anchoring fights CodeView's own anchor resolution
whenever item heights change — exactly our augmentation applies),
overflow-x-clip, and overflow-clip containment on item elements.
* feat(review): worker-pool syntax highlighting (diffshub parity)
A performance trace of scrolling a small local diff attributed 2.2s of
2.6s main-thread CPU to findNextMatchSync — shiki's TextMate regex
scanner tokenizing on the main thread. diffshub avoids this entirely by
running tokenization in Pierre's worker pool; we never opted in.
Wires WorkerPoolContextProvider around the review app (pool size
min(cores-1, 3), 100-entry AST LRU, common languages preloaded), gates
the all-files surface on pool readiness with a 5s escape hatch (a dead
pool degrades to plaintext-then-highlight, never a blank view), and
syncs the UI theme pair into the long-lived pool.
Single-file build constraint solved with Vite's ?worker&inline (base64
blob worker) + worker.format 'es' with inlineDynamicImports — the
worker's lazy import("shiki/wasm") branch collapses into the bundle and
is never taken (shiki-js engine: the win is moving work off the main
thread, with no .wasm asset to smuggle into one HTML file). Bundle
+850KB.
* fix(review): un-poison worker-pool theme dedup on failed setRenderOptions
A failed round-trip recorded the theme as synced and never retried,
pinning the pool to the wrong palette for the session.
* fix(review): report partial diffs without a checkout; fail fast on missing checkout
Dogfood review of this PR (via plannotator itself) caught two valid issues:
- prPatchIncomplete was gated on the worktree pool, so a --no-local session
showed a truncated diff with no indication at all. Partiality is
information; upgradability is a capability. The flag is now always
reported, with a separate prPatchUpgradeAvailable — the UI shows the
amber notice either way, with the "Load full diff" button only when a
checkout can exist (otherwise a "re-run with --local" hint).
- After a FAILED checkout warmup, Ask AI sessions and agent jobs fell back
to process.cwd() (or a wrong revision on Pi) — running in the wrong tree
instead of failing. Both launch points now refuse with a clear "Local
PR checkout unavailable — retry shortly" error (503); the job handlers
surface buildCommand refusals instead of mislabeling them "Invalid
JSON". Bun and Pi mirrored.
A third finding (sem availability stuck after warmup) was triaged invalid:
the availability probe detects the sem binary, which is cwd-independent.
* fix(review): runtime-neutral copy for the no-checkout partial-diff hint
--local is a CLI remedy; OpenCode sessions have no such flag. Visible
text states the fact, the tooltip carries the CLI guidance.
335 lines
14 KiB
TypeScript
335 lines
14 KiB
TypeScript
import { describe, expect, test, spyOn } from "bun:test";
|
|
import { fetchGhPR, reconstructGhPatch, type GitHubFileEntry } from "./pr-github";
|
|
import { parseDiffGitHeader, parseDiffFilePathLines, parseDiffMetadataPathLines } from "./diff-paths";
|
|
import type { PRRuntime } from "./pr-types";
|
|
|
|
const REF = { platform: "github" as const, host: "github.com", owner: "o", repo: "r", number: 123 };
|
|
|
|
const VIEW_JSON = JSON.stringify({
|
|
id: "PR_node123",
|
|
title: "Big change",
|
|
author: { login: "dev" },
|
|
baseRefName: "main",
|
|
headRefName: "feature",
|
|
baseRefOid: "a".repeat(40),
|
|
headRefOid: "b".repeat(40),
|
|
url: "https://github.com/o/r/pull/123",
|
|
});
|
|
|
|
/**
|
|
* Mock gh runtime. Routes by subcommand; records every invocation so tests can
|
|
* assert on exactly which commands ran (and which didn't).
|
|
*/
|
|
function githubRuntime(opts: {
|
|
prDiff: { stdout?: string; stderr?: string; exitCode: number };
|
|
files?: { stdout?: string; stderr?: string; exitCode: number };
|
|
view?: { stdout?: string; stderr?: string; exitCode: number };
|
|
}): { runtime: PRRuntime; calls: string[] } {
|
|
const calls: string[] = [];
|
|
const runtime: PRRuntime = {
|
|
async runCommand(command, args) {
|
|
calls.push([command, ...args].join(" "));
|
|
if (args[0] === "pr" && args[1] === "diff") {
|
|
return { stdout: opts.prDiff.stdout ?? "", stderr: opts.prDiff.stderr ?? "", exitCode: opts.prDiff.exitCode };
|
|
}
|
|
if (args[0] === "pr" && args[1] === "view") {
|
|
return { stdout: opts.view?.stdout ?? VIEW_JSON, stderr: opts.view?.stderr ?? "", exitCode: opts.view?.exitCode ?? 0 };
|
|
}
|
|
if (args[0] === "repo" && args[1] === "view") {
|
|
return { stdout: "main\n", stderr: "", exitCode: 0 };
|
|
}
|
|
if (args[0] === "api" && args[1]?.includes("/compare/")) {
|
|
return { stdout: `${"c".repeat(40)}\n`, stderr: "", exitCode: 0 };
|
|
}
|
|
if (args[0] === "api" && args[1]?.includes("/pulls/123/files")) {
|
|
return { stdout: opts.files?.stdout ?? "", stderr: opts.files?.stderr ?? "", exitCode: opts.files?.exitCode ?? 1 };
|
|
}
|
|
return { stdout: "", stderr: `unexpected command: ${args.join(" ")}`, exitCode: 1 };
|
|
},
|
|
};
|
|
return { runtime, calls };
|
|
}
|
|
|
|
describe("fetchGhPR", () => {
|
|
test("uses gh pr diff verbatim when it succeeds and never touches the files API", async () => {
|
|
const patch = "diff --git a/x.ts b/x.ts\n--- a/x.ts\n+++ b/x.ts\n@@ -1 +1 @@\n-a\n+b\n";
|
|
const { runtime, calls } = githubRuntime({ prDiff: { exitCode: 0, stdout: patch } });
|
|
|
|
const result = await fetchGhPR(runtime, REF);
|
|
|
|
expect(result.rawPatch).toBe(patch);
|
|
expect(result.metadata).toMatchObject({
|
|
platform: "github",
|
|
number: 123,
|
|
baseBranch: "main",
|
|
headBranch: "feature",
|
|
mergeBaseSha: "c".repeat(40),
|
|
});
|
|
expect(calls.some((c) => c.includes("/pulls/123/files"))).toBe(false);
|
|
});
|
|
|
|
test("falls back to the paginated files API when gh pr diff fails (oversized PR)", async () => {
|
|
// Two concatenated pages — the actual shape `gh api --paginate` emits.
|
|
const page1 = JSON.stringify([
|
|
{ filename: "src/a.ts", status: "modified", patch: "@@ -1 +1 @@\n-old\n+new" },
|
|
]);
|
|
const page2 = JSON.stringify([
|
|
{ filename: "src/b.ts", status: "added", patch: "@@ -0,0 +1 @@\n+hello" },
|
|
]);
|
|
const { runtime, calls } = githubRuntime({
|
|
prDiff: { exitCode: 1, stderr: "diff exceeded the maximum number of lines (20000)" },
|
|
files: { exitCode: 0, stdout: page1 + page2 },
|
|
});
|
|
|
|
const result = await fetchGhPR(runtime, REF);
|
|
|
|
expect(calls).toContain("gh api repos/o/r/pulls/123/files?per_page=100 --paginate");
|
|
expect(result.rawPatch).toContain("diff --git a/src/a.ts b/src/a.ts");
|
|
expect(result.rawPatch).toContain("+new");
|
|
expect(result.rawPatch).toContain("diff --git a/src/b.ts b/src/b.ts");
|
|
expect(result.rawPatch).toContain("new file mode 100644");
|
|
// Every entry carried a patch — nothing is missing, no upgrade needed.
|
|
expect(result.patchIncomplete).toBeFalsy();
|
|
// Metadata path is unaffected by the fallback.
|
|
expect(result.metadata).toMatchObject({ number: 123, mergeBaseSha: "c".repeat(40) });
|
|
});
|
|
|
|
test("flags the patch incomplete when GitHub omits content for non-rename entries", async () => {
|
|
// The real shape from oversized PRs: status added/modified with zeroed
|
|
// counts and no patch field at all.
|
|
const entries = JSON.stringify([
|
|
{ filename: "src/big.rs", status: "added" },
|
|
{ filename: "src/also.zig", status: "modified" },
|
|
{ filename: "src/ok.ts", status: "modified", patch: "@@ -1 +1 @@\n-a\n+b" },
|
|
]);
|
|
const { runtime } = githubRuntime({
|
|
prDiff: { exitCode: 1, stderr: "406" },
|
|
files: { exitCode: 0, stdout: entries },
|
|
});
|
|
|
|
const errSpy = spyOn(console, "error").mockImplementation(() => {});
|
|
try {
|
|
const result = await fetchGhPR(runtime, REF);
|
|
expect(result.patchIncomplete).toBe(true);
|
|
const warned = errSpy.mock.calls.some((args) => String(args[0]).includes("omitted diff content for 2 file(s)"));
|
|
expect(warned).toBe(true);
|
|
} finally {
|
|
errSpy.mockRestore();
|
|
}
|
|
});
|
|
|
|
test("pure renames without patches are complete information — not flagged", async () => {
|
|
const entries = JSON.stringify([
|
|
{ filename: "src/new.ts", previous_filename: "src/old.ts", status: "renamed" },
|
|
{ filename: "src/ok.ts", status: "modified", patch: "@@ -1 +1 @@\n-a\n+b" },
|
|
]);
|
|
const { runtime } = githubRuntime({
|
|
prDiff: { exitCode: 1, stderr: "406" },
|
|
files: { exitCode: 0, stdout: entries },
|
|
});
|
|
|
|
const result = await fetchGhPR(runtime, REF);
|
|
expect(result.patchIncomplete).toBeFalsy();
|
|
});
|
|
|
|
test("never flags the verbatim gh pr diff path as incomplete", async () => {
|
|
const patch = "diff --git a/x.ts b/x.ts\n--- a/x.ts\n+++ b/x.ts\n@@ -1 +1 @@\n-a\n+b\n";
|
|
const { runtime } = githubRuntime({ prDiff: { exitCode: 0, stdout: patch } });
|
|
|
|
const result = await fetchGhPR(runtime, REF);
|
|
expect(result.patchIncomplete).toBeFalsy();
|
|
});
|
|
|
|
test("passes --hostname to the files API on GitHub Enterprise", async () => {
|
|
const { runtime, calls } = githubRuntime({
|
|
prDiff: { exitCode: 1, stderr: "406" },
|
|
files: { exitCode: 0, stdout: JSON.stringify([{ filename: "a.ts", status: "modified", patch: "@@ -1 +1 @@\n-a\n+b" }]) },
|
|
});
|
|
|
|
await fetchGhPR(runtime, { ...REF, host: "ghe.corp.com" });
|
|
|
|
const filesCall = calls.find((c) => c.includes("/pulls/123/files"));
|
|
expect(filesCall).toContain("--hostname ghe.corp.com");
|
|
});
|
|
|
|
test("surfaces both errors when gh pr diff and the files API both fail", async () => {
|
|
const { runtime } = githubRuntime({
|
|
prDiff: { exitCode: 1, stderr: "diff too large" },
|
|
files: { exitCode: 1, stderr: "files boom" },
|
|
});
|
|
|
|
await expect(fetchGhPR(runtime, REF)).rejects.toThrow(/diff too large.*files boom|files boom.*diff too large/s);
|
|
});
|
|
|
|
test("throws a clear empty-diff error when the files API returns no entries", async () => {
|
|
const { runtime } = githubRuntime({
|
|
prDiff: { exitCode: 1, stderr: "406" },
|
|
files: { exitCode: 0, stdout: "[]" },
|
|
});
|
|
|
|
await expect(fetchGhPR(runtime, REF)).rejects.toThrow(/PR diff is empty/);
|
|
});
|
|
|
|
test("warns when the files API returns fewer files than the PR reports (3000-file cap)", async () => {
|
|
const view = JSON.parse(VIEW_JSON);
|
|
view.changedFiles = 3500;
|
|
const { runtime } = githubRuntime({
|
|
prDiff: { exitCode: 1, stderr: "406" },
|
|
files: { exitCode: 0, stdout: JSON.stringify([{ filename: "a.ts", status: "modified", patch: "@@ -1 +1 @@\n-a\n+b" }]) },
|
|
view: { exitCode: 0, stdout: JSON.stringify(view) },
|
|
});
|
|
|
|
const errSpy = spyOn(console, "error").mockImplementation(() => {});
|
|
try {
|
|
const result = await fetchGhPR(runtime, REF);
|
|
expect(result.rawPatch).toContain("diff --git a/a.ts b/a.ts"); // partial diff still served
|
|
expect(result.patchIncomplete).toBe(true); // 3000-file cap → upgrade offered
|
|
const warned = errSpy.mock.calls.some((args) => String(args[0]).includes("3500 changed files"));
|
|
expect(warned).toBe(true);
|
|
} finally {
|
|
errSpy.mockRestore();
|
|
}
|
|
});
|
|
|
|
test("metadata failure wins over diff failure — no fallback attempted", async () => {
|
|
const { runtime, calls } = githubRuntime({
|
|
prDiff: { exitCode: 1, stderr: "406" },
|
|
files: { exitCode: 0, stdout: "[]" },
|
|
view: { exitCode: 1, stderr: "no such PR" },
|
|
});
|
|
|
|
await expect(fetchGhPR(runtime, REF)).rejects.toThrow(/Failed to fetch PR metadata/);
|
|
expect(calls.some((c) => c.includes("/pulls/123/files"))).toBe(false);
|
|
});
|
|
});
|
|
|
|
describe("reconstructGhPatch", () => {
|
|
test("modified file round-trips through the real diff header parsers", () => {
|
|
const patch = reconstructGhPatch([
|
|
{ filename: "src/app.ts", status: "modified", patch: "@@ -1,2 +1,2 @@\n-const a = 1;\n+const a = 2;\n context" },
|
|
]);
|
|
|
|
const lines = patch.split("\n");
|
|
expect(lines[0]).toBe("diff --git a/src/app.ts b/src/app.ts");
|
|
expect(parseDiffGitHeader(lines[0])).toEqual({ oldPath: "src/app.ts", newPath: "src/app.ts" });
|
|
expect(parseDiffFilePathLines(lines)).toEqual({ oldPath: "src/app.ts", newPath: "src/app.ts" });
|
|
expect(patch).toContain("\n--- a/src/app.ts\n+++ b/src/app.ts\n@@ -1,2 +1,2 @@\n");
|
|
expect(patch.endsWith("\n")).toBe(true);
|
|
});
|
|
|
|
test("added file uses /dev/null for the old side and new file mode", () => {
|
|
const patch = reconstructGhPatch([
|
|
{ filename: "new.ts", status: "added", patch: "@@ -0,0 +1 @@\n+x" },
|
|
]);
|
|
|
|
expect(patch).toContain("diff --git a/new.ts b/new.ts");
|
|
expect(patch).toContain("new file mode 100644");
|
|
expect(patch).toContain("\n--- /dev/null\n+++ b/new.ts\n");
|
|
});
|
|
|
|
test("removed file uses /dev/null for the new side and deleted file mode", () => {
|
|
const patch = reconstructGhPatch([
|
|
{ filename: "gone.ts", status: "removed", patch: "@@ -1 +0,0 @@\n-x" },
|
|
]);
|
|
|
|
expect(patch).toContain("diff --git a/gone.ts b/gone.ts");
|
|
expect(patch).toContain("deleted file mode 100644");
|
|
expect(patch).toContain("\n--- a/gone.ts\n+++ /dev/null\n");
|
|
});
|
|
|
|
test("renamed file emits rename metadata that the real parser extracts", () => {
|
|
const patch = reconstructGhPatch([
|
|
{ filename: "after.ts", previous_filename: "before.ts", status: "renamed", patch: "@@ -1 +1 @@\n-a\n+b" },
|
|
]);
|
|
|
|
const lines = patch.split("\n");
|
|
expect(lines[0]).toBe("diff --git a/before.ts b/after.ts");
|
|
expect(parseDiffGitHeader(lines[0])).toEqual({ oldPath: "before.ts", newPath: "after.ts" });
|
|
expect(parseDiffMetadataPathLines(lines)).toEqual({ oldPath: "before.ts", newPath: "after.ts" });
|
|
// Pierre's parser classifies renames off the similarity line — a patched
|
|
// rename must carry a sub-100% score or it renders as a plain change.
|
|
expect(lines[1]).toBe("similarity index 99%");
|
|
});
|
|
|
|
test("pure rename (no patch field) emits a header-only section", () => {
|
|
const patch = reconstructGhPatch([
|
|
{ filename: "after.ts", previous_filename: "before.ts", status: "renamed" },
|
|
]);
|
|
|
|
expect(patch).toBe(
|
|
"diff --git a/before.ts b/after.ts\nsimilarity index 100%\nrename from before.ts\nrename to after.ts\n",
|
|
);
|
|
});
|
|
|
|
test("entry without patch (binary / per-file too large) doesn't corrupt the next file's section", () => {
|
|
const patch = reconstructGhPatch([
|
|
{ filename: "huge.json", status: "modified" },
|
|
{ filename: "small.ts", status: "modified", patch: "@@ -1 +1 @@\n-a\n+b" },
|
|
]);
|
|
|
|
// Every diff --git header must start at the beginning of its own line —
|
|
// this is what the UI's file splitter (split on /^diff --git /) relies on.
|
|
const headerLines = patch.split("\n").filter((l) => l.startsWith("diff --git "));
|
|
expect(headerLines).toEqual([
|
|
"diff --git a/huge.json b/huge.json",
|
|
"diff --git a/small.ts b/small.ts",
|
|
]);
|
|
expect(patch).toContain("diff --git a/huge.json b/huge.json\ndiff --git a/small.ts");
|
|
});
|
|
|
|
test("terminates a patch that lacks a trailing newline (GitHub omits it)", () => {
|
|
const patch = reconstructGhPatch([
|
|
{ filename: "a.ts", status: "modified", patch: "@@ -1 +1 @@\n-a\n+b" },
|
|
{ filename: "b.ts", status: "modified", patch: "@@ -1 +1 @@\n-c\n+d" },
|
|
]);
|
|
|
|
expect(patch).toContain("+b\ndiff --git a/b.ts b/b.ts");
|
|
});
|
|
|
|
test("leaves paths with bare spaces unquoted — git parity, so the header parser round-trips them", () => {
|
|
// Git only C-quotes paths containing quotes/backslashes/control chars.
|
|
// Over-quoting (e.g. quoting spaces) breaks parseDiffGitHeader's regex
|
|
// branch and silently drops files downstream.
|
|
const patch = reconstructGhPatch([
|
|
{ filename: "docs/my file.md", status: "modified", patch: "@@ -1 +1 @@\n-a\n+b" },
|
|
]);
|
|
|
|
const headerLine = patch.split("\n")[0];
|
|
expect(headerLine).toBe("diff --git a/docs/my file.md b/docs/my file.md");
|
|
expect(parseDiffGitHeader(headerLine)).toEqual({ oldPath: "docs/my file.md", newPath: "docs/my file.md" });
|
|
});
|
|
|
|
test("pure rename with a space in the new name still yields parseable paths (file must not vanish)", () => {
|
|
// Regression: GitHub omits `patch` for 100%-similarity renames; if the
|
|
// header is unparseable the UI's file splitter drops the file silently.
|
|
const patch = reconstructGhPatch([
|
|
{ filename: "docs/road map.md", previous_filename: "docs/roadmap.md", status: "renamed" },
|
|
]);
|
|
|
|
const headerLine = patch.split("\n")[0];
|
|
expect(headerLine).toBe("diff --git a/docs/roadmap.md b/docs/road map.md");
|
|
expect(parseDiffGitHeader(headerLine)).toEqual({ oldPath: "docs/roadmap.md", newPath: "docs/road map.md" });
|
|
});
|
|
|
|
test("C-quotes paths containing double quotes, matching git, and the parser round-trips them", () => {
|
|
const patch = reconstructGhPatch([
|
|
{ filename: 'he"llo.ts', status: "modified", patch: "@@ -1 +1 @@\n-a\n+b" },
|
|
]);
|
|
|
|
const headerLine = patch.split("\n")[0];
|
|
expect(headerLine).toBe('diff --git "a/he\\"llo.ts" "b/he\\"llo.ts"');
|
|
expect(parseDiffGitHeader(headerLine)).toEqual({ oldPath: 'he"llo.ts', newPath: 'he"llo.ts' });
|
|
});
|
|
|
|
test("copied file emits copy metadata", () => {
|
|
const patch = reconstructGhPatch([
|
|
{ filename: "copy.ts", previous_filename: "orig.ts", status: "copied", patch: "@@ -1 +1 @@\n-a\n+b" },
|
|
]);
|
|
|
|
expect(patch).toContain("similarity index 99%");
|
|
expect(patch).toContain("copy from orig.ts");
|
|
expect(patch).toContain("copy to copy.ts");
|
|
expect(patch.split("\n")[0]).toBe("diff --git a/orig.ts b/copy.ts");
|
|
});
|
|
});
|