fix(merger): prevent tasks landing in Done with no commit on main
Two root-cause fixes for the "fake done" patterns surfaced while debugging FN-5475's stuck preflight (it depended on FN-5233, which the board reported as Done but whose squash had stranded on a sibling fusion/fn-* branch). 1. resolveTaskMergeTarget rejects fusion/fn-* sibling branches as a merge destination — when a task's baseBranch was inherited from a sibling/dependent dispatch, the merger detached onto and squashed against that branch instead of advancing main. New audit event surfaces the steering miss so the underlying baseBranch-propagation bug stays observable. 2. self-healing findLandedTaskCommit verifies ownership against each grep candidate's body before attribution. The previous code blindly accepted the first hit of `git log --grep=FN-XXXX` (which matches the entire commit message); FN-5441 and FN-5446 were both marked done against an unrelated FN-5483 commit whose body merely mentioned them in prose. commitOwnedByTask is also tightened: trailers must be line-anchored and the subject fallback must match conventional-commit form, not a bare substring. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -3820,6 +3820,9 @@ describe("SelfHealingManager", () => {
|
||||
mockedExecSync.mockImplementation((command: string | Buffer) => {
|
||||
const cmd = String(command);
|
||||
if (cmd.includes("Fusion-Task-Id: FN-stuck")) return "abc12345\x1fRecovered subject\n" as any;
|
||||
// FN-5441 ownership verification: post-grep body fetch must contain
|
||||
// the anchored trailer so commitOwnedByTask accepts the candidate.
|
||||
if (cmd.includes("--format=%b") && cmd.includes("abc12345")) return "Fusion-Task-Id: FN-stuck\n" as any;
|
||||
if (cmd.includes("--shortstat")) return " 2 files changed, 3 insertions(+), 1 deletions(-)\n" as any;
|
||||
return "" as any;
|
||||
});
|
||||
@@ -3958,6 +3961,50 @@ describe("SelfHealingManager", () => {
|
||||
managerWithRecovery.stop();
|
||||
});
|
||||
|
||||
// FN-5441/FN-5446 regression: a deadlock-recovery sweep mis-attributed
|
||||
// both to e3dbfaae, an FN-5483 commit whose body merely *mentioned* them
|
||||
// by name. findLandedTaskCommit step (4) used `git log --grep=FN-XXXX`
|
||||
// which matches the entire commit message (not just subject) and the
|
||||
// previous code blindly accepted the first hit. The fix anchors ownership
|
||||
// on trailer/subject so prose mentions can never claim a task.
|
||||
it("FN-5441/FN-5446: does not attribute to a commit that only mentions the task ID in prose", async () => {
|
||||
const managerWithRecovery = new SelfHealingManager(store, { rootDir: "/tmp/test-project" });
|
||||
(store.getSettings as ReturnType<typeof vi.fn>).mockResolvedValue(baseSettings);
|
||||
(store.listTasks as ReturnType<typeof vi.fn>)
|
||||
.mockResolvedValueOnce([
|
||||
{ id: "FN-5441", column: "in-review", paused: false, status: "failed", mergeRetries: 3, mergeDetails: undefined, worktree: "/tmp/wt-a", log: [] },
|
||||
])
|
||||
.mockResolvedValueOnce([])
|
||||
.mockResolvedValueOnce([])
|
||||
.mockResolvedValueOnce([]);
|
||||
mockedExecSync.mockImplementation((command: string | Buffer) => {
|
||||
const cmd = String(command);
|
||||
// grep step finds the unrelated FN-5483 commit whose body mentions FN-5441 in prose
|
||||
if (cmd.includes("FN-5441") && cmd.includes("--grep")) return "e3dbfaae\x1ffix(FN-5483): allow merger commits past identity-guard\n" as any;
|
||||
// ownership-verification body fetch returns prose-mention body, no anchored trailer
|
||||
if (cmd.includes("--format=%b") && cmd.includes("e3dbfaae")) {
|
||||
return "The refusal surfaced as merge-deadlock-detected on FN-5441 and FN-5446. ...\n" as any;
|
||||
}
|
||||
return "" as any;
|
||||
});
|
||||
|
||||
const result = await managerWithRecovery.recoverStuckMergeDeadlocks();
|
||||
|
||||
// No attribution → no recovery → no move to done.
|
||||
expect(store.moveTask).not.toHaveBeenCalledWith("FN-5441", "done");
|
||||
// result of 0 OR a "paused-for-manual" path (proof gate) is acceptable;
|
||||
// the load-bearing assertion is that we did NOT advance the task to done
|
||||
// against the wrong commit.
|
||||
expect(result).toBeLessThanOrEqual(1);
|
||||
const updateCalls = (store.updateTask as ReturnType<typeof vi.fn>).mock.calls;
|
||||
const movedToDone = updateCalls.some(([id, patch]) =>
|
||||
id === "FN-5441" && (patch as any)?.mergeDetails?.commitSha === "e3dbfaae",
|
||||
);
|
||||
expect(movedToDone).toBe(false);
|
||||
|
||||
managerWithRecovery.stop();
|
||||
});
|
||||
|
||||
it("recovers worktree-only orphans and reproduces three-task incident", async () => {
|
||||
const managerWithRecovery = new SelfHealingManager(store, { rootDir: "/tmp/test-project" });
|
||||
(store.getSettings as ReturnType<typeof vi.fn>).mockResolvedValue(baseSettings);
|
||||
@@ -3975,6 +4022,11 @@ describe("SelfHealingManager", () => {
|
||||
if (cmd.includes("Fusion-Task-Id: FN-3794")) return "278a2825\x1fone\n" as any;
|
||||
if (cmd.includes("Fusion-Task-Id: FN-3814")) return "69c25e2b\x1ftwo\n" as any;
|
||||
if (cmd.includes("Fusion-Task-Id: FN-3829")) return "0d3f51b6\x1fthree\n" as any;
|
||||
// FN-5441 ownership verification: post-grep body fetch must contain
|
||||
// the anchored trailer so commitOwnedByTask accepts each candidate.
|
||||
if (cmd.includes("--format=%b") && cmd.includes("278a2825")) return "Fusion-Task-Id: FN-3794\n" as any;
|
||||
if (cmd.includes("--format=%b") && cmd.includes("69c25e2b")) return "Fusion-Task-Id: FN-3814\n" as any;
|
||||
if (cmd.includes("--format=%b") && cmd.includes("0d3f51b6")) return "Fusion-Task-Id: FN-3829\n" as any;
|
||||
return "" as any;
|
||||
});
|
||||
|
||||
|
||||
@@ -7297,6 +7297,31 @@ export async function aiMergeTask(
|
||||
const mergeTarget = resolveTaskMergeTarget(task, {
|
||||
projectDefaultBranch: resolvedIntegrationBranch,
|
||||
});
|
||||
if (mergeTarget.rejected) {
|
||||
// FN-5233/FN-5530 regression: the task's baseBranch/inheritedBaseBranch
|
||||
// pointed at a sibling fusion/fn-* branch. The resolver fell through to
|
||||
// projectDefault, but we surface the steering miss in the audit timeline
|
||||
// so the underlying baseBranch-propagation bug stays observable.
|
||||
mergerLog.warn(
|
||||
`${taskId}: merge target rejected (${mergeTarget.rejected.reason}): ${mergeTarget.rejected.source}=${mergeTarget.rejected.branch} → using ${mergeTarget.branch}`,
|
||||
);
|
||||
try {
|
||||
await (store as any).recordRunAuditEvent?.({
|
||||
domain: "git",
|
||||
mutationType: "merge:merge-target-rejected-fusion-sibling",
|
||||
target: taskId,
|
||||
metadata: {
|
||||
rejectedBranch: mergeTarget.rejected.branch,
|
||||
rejectedSource: mergeTarget.rejected.source,
|
||||
reason: mergeTarget.rejected.reason,
|
||||
fallbackBranch: mergeTarget.branch,
|
||||
fallbackSource: mergeTarget.source,
|
||||
},
|
||||
});
|
||||
} catch {
|
||||
// best-effort audit; never block the merge on telemetry
|
||||
}
|
||||
}
|
||||
const integrationBranch = resolvedIntegrationBranch;
|
||||
let branch = task.branch || canonicalFusionBranchName(taskId);
|
||||
|
||||
|
||||
@@ -427,11 +427,37 @@ interface LandedTaskCommit {
|
||||
rebaseBaseSha?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Decide whether a git commit belongs to a given task.
|
||||
*
|
||||
* Ownership is line-anchored and subject-anchored: it is NOT sufficient for the
|
||||
* task ID to appear in prose. FN-5441/FN-5446 regression — both were
|
||||
* mis-attributed to e3dbfaae (an FN-5483 commit whose body merely *mentioned*
|
||||
* them by name) because the previous `subject.includes(taskId)` check matched
|
||||
* any substring anywhere in the subject.
|
||||
*
|
||||
* Accept (any of):
|
||||
* - `Fusion-Task-Lineage: <lineageId>` as a complete trailer line in the body
|
||||
* - `Fusion-Task-Id: <taskId>` as a complete trailer line in the body
|
||||
* - Subject anchored on the task ID in conventional-commit form:
|
||||
* `<type>(<taskId>): …` or `<taskId>: …` or `<type>(<taskId>/...): …`
|
||||
*/
|
||||
function commitOwnedByTask(taskId: string, lineageId: string | undefined, subject: string, body: string): boolean {
|
||||
if (lineageId && body.includes(`Fusion-Task-Lineage: ${lineageId}`)) {
|
||||
if (lineageId && new RegExp(`(?:^|\\n)Fusion-Task-Lineage: ${escapeRegex(lineageId)}\\s*(?:\\n|$)`).test(body)) {
|
||||
return true;
|
||||
}
|
||||
return body.includes(`Fusion-Task-Id: ${taskId}`) || subject.includes(taskId);
|
||||
if (new RegExp(`(?:^|\\n)Fusion-Task-Id: ${escapeRegex(taskId)}\\s*(?:\\n|$)`).test(body)) {
|
||||
return true;
|
||||
}
|
||||
// Subject anchor: `<scope>(<taskId>...): …` or `<taskId>: …` at start.
|
||||
const subjectAnchor = new RegExp(
|
||||
`^(?:[A-Za-z]+(?:\\([^)]*\\b${escapeRegex(taskId)}\\b[^)]*\\))?:|${escapeRegex(taskId)}:)`,
|
||||
);
|
||||
return subjectAnchor.test(subject);
|
||||
}
|
||||
|
||||
function escapeRegex(value: string): string {
|
||||
return value.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
||||
}
|
||||
|
||||
function shellQuote(value: string): string {
|
||||
@@ -1217,10 +1243,32 @@ export class SelfHealingManager {
|
||||
stdout = await search(shellQuote(task.id), true);
|
||||
}
|
||||
|
||||
const firstLine = stdout.trim().split("\n").find(Boolean);
|
||||
if (!firstLine) return null;
|
||||
|
||||
const [sha, subject] = firstLine.split("\x1f");
|
||||
// FN-5441/FN-5446 regression: `git log --grep=FN-XXXX` matches the entire
|
||||
// commit message, including prose body mentions. The previous code blindly
|
||||
// accepted the first match — which is how FN-5441/5446 got attributed to
|
||||
// an unrelated FN-5483 commit that *mentioned* them by name. Walk the
|
||||
// candidates and accept only the first one that actually owns the task
|
||||
// (anchored lineage/id trailer or subject-anchored conventional commit).
|
||||
const candidateLines = stdout.trim().split("\n").filter(Boolean);
|
||||
let sha = "";
|
||||
let subject = "";
|
||||
for (const line of candidateLines) {
|
||||
const [candidateSha, candidateSubject = ""] = line.split("\x1f");
|
||||
if (!candidateSha) continue;
|
||||
try {
|
||||
const { stdout: bodyOut } = await execAsync(
|
||||
`git log -1 --format=%b ${shellQuote(candidateSha)}`,
|
||||
{ cwd: this.options.rootDir, maxBuffer: 1024 * 1024 },
|
||||
);
|
||||
if (commitOwnedByTask(task.id, task.lineageId, candidateSubject, bodyOut)) {
|
||||
sha = candidateSha;
|
||||
subject = candidateSubject;
|
||||
break;
|
||||
}
|
||||
} catch {
|
||||
// If we can't read the body, conservatively skip this candidate.
|
||||
}
|
||||
}
|
||||
if (!sha) return null;
|
||||
|
||||
const commit: LandedTaskCommit = { sha, subject, rebaseBaseSha };
|
||||
|
||||
Reference in New Issue
Block a user