feat(FN-4474): complete Step 1 — extract branch autocorrect helper

Fusion-Task-Id: FN-4474
Fusion-Task-Lineage: 979782e1-c44d-4f35-aded-237bf33d0c9f
This commit is contained in:
Fusion
2026-05-14 08:31:22 -07:00
committed by gsxdsm
parent 614e7d120c
commit e0182fef0d

View File

@@ -0,0 +1,81 @@
import { exec } from "node:child_process";
import { promisify } from "node:util";
const execAsync = promisify(exec);
const GIT_TIMEOUT_MS = 10_000;
const GIT_MAX_BUFFER = 1024 * 1024;
type BranchAutocorrectParams = {
worktreePath: string;
observedBranch: string;
expectedBranch: string;
rootDir: string;
};
type BranchAutocorrectResult = {
status: "renamed" | "checked-out" | "failed";
reason?: string;
};
async function runGit(command: string, worktreePath: string): Promise<{ ok: true; stdout: string } | { ok: false; reason: string }> {
try {
const { stdout } = await execAsync(command, {
cwd: worktreePath,
timeout: GIT_TIMEOUT_MS,
maxBuffer: GIT_MAX_BUFFER,
});
return { ok: true, stdout };
} catch (error) {
const message =
(error as { stderr?: string; message?: string }).stderr?.trim() ||
(error instanceof Error ? error.message : String(error));
return { ok: false, reason: message };
}
}
/**
* FN-4474: Recover wrong-branch invariant failures by renaming/checking out
* the expected branch without throwing terminal executor errors.
*/
export async function attemptBranchAutocorrect({
worktreePath,
observedBranch,
expectedBranch,
rootDir: _rootDir,
}: BranchAutocorrectParams): Promise<BranchAutocorrectResult> {
void _rootDir;
const observed = observedBranch.trim();
const expected = expectedBranch.trim();
if (!observed || !expected || observed === expected) {
return { status: "failed", reason: "invalid-input" };
}
const upstream = await runGit(`git rev-parse --abbrev-ref --symbolic-full-name ${observed}@{u}`, worktreePath);
const observedShaResult = await runGit(`git rev-parse ${observed}`, worktreePath);
let isFreshBranch = false;
if (!upstream.ok && observedShaResult.ok) {
const contains = await runGit(`git for-each-ref --format='%(refname:short)' --contains ${observedShaResult.stdout.trim()} refs/heads/`, worktreePath);
if (contains.ok) {
const refs = contains.stdout
.split("\n")
.map((line) => line.trim())
.filter(Boolean);
isFreshBranch = refs.length === 1 && refs[0] === observed;
}
}
if (isFreshBranch) {
const rename = await runGit(`git branch -m ${observed} ${expected}`, worktreePath);
if (rename.ok) {
return { status: "renamed" };
}
}
const checkout = await runGit(`git checkout -B ${expected}`, worktreePath);
if (checkout.ok) {
return { status: "checked-out" };
}
return { status: "failed", reason: checkout.reason };
}