FN-5830: re-land shared branch promotion gate and API

Reintroduce shared-branch-group completion gating and promotion endpoints with reliability coverage.

- add GroupMergeCoordinator promotion gate behavior and shared branch group promotion logic updates
- expose promotion flow wiring through engine index and project engine APIs
- expand coordinator tests and add reliability interaction coverage for branch-group promotion
- document the new reliability backstop and add a changeset for @runfusion/fusion

Files changed:
 .changeset/fn-5830-branch-group-promotion.md       |   5 +
 AGENTS.md                                          |   1 +
 docs/architecture.md                               |   3 +-
 .../src/__tests__/group-merge-coordinator.test.ts  | 170 ++++++++++++++++++-
 .../branch-group-promotion.test.ts                 | 166 +++++++++++++++++++
 packages/engine/src/group-merge-coordinator.ts     | 183 ++++++++++++++++++++-
 packages/engine/src/index.ts                       |   4 +
 packages/engine/src/project-engine.ts              |  37 +++++
 8 files changed, 566 insertions(+), 3 deletions(-)

Fusion-Task-Id: FN-5830

Fusion-Task-Lineage: e9823f51-df0e-4da8-8f51-58dfefdc293d
This commit is contained in:
gsxdsm
2026-06-01 05:39:01 -07:00
parent eb425d17d9
commit 3373c0beed
8 changed files with 566 additions and 3 deletions

View File

@@ -5,7 +5,12 @@ import { join } from "node:path";
import { tmpdir } from "node:os";
import { describe, expect, it, afterEach } from "vitest";
import { evaluateBranchGroupPromotion, resolveBranchGroupMergeRouting } from "../group-merge-coordinator.js";
import {
evaluateBranchGroupCompletion,
evaluateBranchGroupPromotion,
promoteBranchGroup,
resolveBranchGroupMergeRouting,
} from "../group-merge-coordinator.js";
const dirs: string[] = [];
@@ -24,6 +29,59 @@ afterEach(async () => {
await Promise.all(dirs.splice(0).map((d) => rm(d, { recursive: true, force: true })));
});
describe("evaluateBranchGroupCompletion", () => {
it("returns complete when all members are landed", () => {
const result = evaluateBranchGroupCompletion({
members: [
{ id: "FN-A", column: "done" as const },
{ id: "FN-B", column: "in-review" as const, mergeDetails: { mergeTargetSource: "branch-group-integration" } as any },
] as any,
});
expect(result).toEqual({
complete: true,
totalMembers: 2,
landedMemberIds: ["FN-A", "FN-B"],
pendingMemberIds: [],
});
});
it("returns pending ids when one member is not landed", () => {
const result = evaluateBranchGroupCompletion({
members: [
{ id: "FN-A", column: "done" as const },
{ id: "FN-B", column: "todo" as const },
] as any,
});
expect(result.complete).toBe(false);
expect(result.landedMemberIds).toEqual(["FN-A"]);
expect(result.pendingMemberIds).toEqual(["FN-B"]);
});
it("treats empty groups as incomplete", () => {
const result = evaluateBranchGroupCompletion({ members: [] });
expect(result).toEqual({
complete: false,
totalMembers: 0,
landedMemberIds: [],
pendingMemberIds: [],
});
});
it("counts mixed done + landed in-review members as complete", () => {
const result = evaluateBranchGroupCompletion({
members: [
{ id: "FN-A", column: "done" as const },
{ id: "FN-B", column: "in-review" as const, mergeDetails: { mergeTargetSource: "branch-group-integration" } as any },
] as any,
});
expect(result.complete).toBe(true);
expect(result.pendingMemberIds).toEqual([]);
});
});
describe("evaluateBranchGroupPromotion", () => {
const baseGroup = {
id: "BG-1",
@@ -117,6 +175,116 @@ describe("evaluateBranchGroupPromotion", () => {
});
});
describe("promoteBranchGroup", () => {
function makeGroup(overrides?: Partial<any>) {
return {
id: "BG-1",
sourceType: "planning",
sourceId: "planning:x",
branchName: "fusion/groups/planning-x",
autoMerge: true,
prState: "none",
status: "open",
createdAt: Date.now(),
updatedAt: Date.now(),
...overrides,
};
}
it("returns incomplete without merging when members are pending", async () => {
const rootDir = makeRepo();
const group = makeGroup();
const result = await promoteBranchGroup({
rootDir,
groupId: group.id,
settings: { autoMerge: true, globalPause: false, enginePaused: false, mergeStrategy: "direct", baseBranch: "main" },
store: {
getBranchGroup: () => group,
listTasksByBranchGroup: async () => [{ id: "FN-A", column: "todo" }],
updateBranchGroup: () => {
throw new Error("should not update");
},
} as any,
});
expect(result.reason).toBe("incomplete");
expect(() => execSync("git show main:group.txt", { cwd: rootDir })).toThrow();
});
it("returns gated and emits audit when promotion gates are disabled", async () => {
const rootDir = makeRepo();
const group = makeGroup({ autoMerge: false });
const audits: Array<Record<string, unknown>> = [];
const result = await promoteBranchGroup({
rootDir,
groupId: group.id,
settings: { autoMerge: true, globalPause: false, enginePaused: false, mergeStrategy: "direct", baseBranch: "main" },
recordAudit: async (event) => { audits.push(event as Record<string, unknown>); },
store: {
getBranchGroup: () => group,
listTasksByBranchGroup: async () => [{ id: "FN-A", column: "done" }],
updateBranchGroup: () => {
throw new Error("should not update");
},
} as any,
});
expect(result.reason).toBe("gated");
expect(audits).toEqual(expect.arrayContaining([
expect.objectContaining({ mutationType: "merge:branch-group-promotion-gated" }),
]));
});
it("merges group branch once and finalizes group when complete and eligible", async () => {
const rootDir = makeRepo();
execSync("git checkout -b fusion/groups/planning-x", { cwd: rootDir });
execSync("echo promoted > group.txt", { cwd: rootDir, shell: "/bin/bash" });
execSync("git add group.txt && git commit -m group", { cwd: rootDir, shell: "/bin/bash" });
execSync("git checkout main", { cwd: rootDir });
let group = makeGroup();
const audits: Array<Record<string, unknown>> = [];
const first = await promoteBranchGroup({
rootDir,
groupId: group.id,
settings: { autoMerge: true, globalPause: false, enginePaused: false, mergeStrategy: "direct", baseBranch: "main" },
recordAudit: async (event) => { audits.push(event as Record<string, unknown>); },
store: {
getBranchGroup: () => group,
listTasksByBranchGroup: async () => [{ id: "FN-A", column: "done" }],
updateBranchGroup: (_id: string, patch: Partial<typeof group>) => {
group = { ...group, ...patch };
return group;
},
} as any,
});
expect(first.promoted).toBe(true);
expect(first.reason).toBe("promoted");
expect(group.status).toBe("finalized");
expect(group.prState).toBe("merged");
expect(execSync("git show main:group.txt", { cwd: rootDir, encoding: "utf8" })).toContain("promoted");
const second = await promoteBranchGroup({
rootDir,
groupId: group.id,
settings: { autoMerge: true, globalPause: false, enginePaused: false, mergeStrategy: "direct", baseBranch: "main" },
recordAudit: async (event) => { audits.push(event as Record<string, unknown>); },
store: {
getBranchGroup: () => group,
listTasksByBranchGroup: async () => [{ id: "FN-A", column: "done" }],
updateBranchGroup: (_id: string, patch: Partial<typeof group>) => {
group = { ...group, ...patch };
return group;
},
} as any,
});
expect(second.reason).toBe("already-finalized");
expect(audits.filter((event) => event.mutationType === "merge:branch-group-promoted")).toHaveLength(1);
});
});
describe("resolveBranchGroupMergeRouting", () => {
it("returns null for non-shared tasks", async () => {
const routing = await resolveBranchGroupMergeRouting({

View File

@@ -0,0 +1,166 @@
import { mkdir } from "node:fs/promises";
import { join } from "node:path";
import { describe, expect, it } from "vitest";
import { type TaskStore } from "@fusion/core";
import { aiMergeTask } from "../../merger.js";
import { promoteBranchGroup } from "../../group-merge-coordinator.js";
import { git, hasGit, makeReliabilityFixture } from "./_helpers.js";
async function stageMergeBranch(store: TaskStore, rootDir: string, taskId: string, fileName: string): Promise<void> {
const task = await store.getTask(taskId);
const branch = `fusion/${taskId.toLowerCase()}`;
const worktreePath = join(`${rootDir}-worktrees`, taskId.toLowerCase());
await store.updateTask(taskId, {
baseBranch: "",
branch,
column: "in-review",
worktree: worktreePath,
steps: (task?.steps ?? []).map((step) => ({ ...step, status: "done" as const })),
currentStep: (task?.steps ?? []).length ?? 0,
} as any);
git(rootDir, `git checkout -b ${branch}`);
await mkdir(join(rootDir, "packages/engine/src"), { recursive: true });
git(rootDir, `sh -c 'printf ${JSON.stringify(`export const ${fileName} = true;\n`)} > ${JSON.stringify(`packages/engine/src/${fileName}.ts`)}'`);
git(rootDir, `git add ${JSON.stringify(`packages/engine/src/${fileName}.ts`)}`);
git(rootDir, `git commit -m ${JSON.stringify(`feat: add ${fileName}`)}`);
git(rootDir, "git checkout main");
store.enqueueMergeQueue(taskId);
}
describe("FN-5830 reliability interactions: branch group promotion", () => {
it.skipIf(!hasGit)("promotes exactly once after all members land", async () => {
const fixture = await makeReliabilityFixture({ taskId: "FN-5830-RI-A", settings: { testMode: true, autoMerge: true } as any });
try {
const { rootDir, store, task } = fixture;
const second = await store.createTask({
id: "FN-5830-RI-B",
title: "FN-5830-RI-B",
description: "second member",
column: "in-review",
baseBranch: "main",
branch: "fusion/fn-5830-ri-b",
prompt: "## File Scope\n- packages/engine/src/__tests__/reliability-interactions/**/*.ts\n",
steps: [],
} as any);
await stageMergeBranch(store, rootDir, task.id, "fn5830MemberA");
await stageMergeBranch(store, rootDir, second.id, "fn5830MemberB");
const group = store.createBranchGroup({
sourceType: "planning",
sourceId: "PS-FN5830-A",
branchName: "fusion/groups/fn-5830-a",
autoMerge: true,
});
await store.setTaskBranchGroup(task.id, group.id);
await store.setTaskBranchGroup(second.id, group.id);
await store.updateTask(task.id, { branchContext: { groupId: group.id, source: "planning", assignmentMode: "shared" } } as any);
await store.updateTask(second.id, { branchContext: { groupId: group.id, source: "planning", assignmentMode: "shared" } } as any);
const firstMerge = await aiMergeTask(store, rootDir, task.id);
expect(firstMerge.merged).toBe(true);
await store.updateTask(task.id, {
column: "done",
mergeDetails: { ...(await store.getTask(task.id))?.mergeDetails, mergeTargetSource: "branch-group-integration" },
} as any);
expect(() => git(rootDir, "git show main:packages/engine/src/fn5830MemberA.ts")).toThrow();
const audits: Array<any> = [];
const promoteWithMembers = async (memberIds: string[]) => promoteBranchGroup({
store: {
getBranchGroup: (...args: any[]) => (store as any).getBranchGroup(...args),
updateBranchGroup: (...args: any[]) => (store as any).updateBranchGroup(...args),
listTasksByBranchGroup: async () => Promise.all(memberIds.map(async (id) => await store.getTask(id))).then((tasks) => tasks.filter(Boolean) as any),
} as any,
rootDir,
groupId: group.id,
settings: { autoMerge: true, globalPause: false, enginePaused: false, mergeStrategy: "direct", baseBranch: "main" } as any,
recordAudit: (e) => { audits.push(e); },
});
const incomplete = await promoteWithMembers([task.id, second.id]);
expect(incomplete.reason).toBe("incomplete");
const secondMerge = await aiMergeTask(store, rootDir, second.id);
expect(secondMerge.merged).toBe(true);
await store.updateTask(second.id, {
column: "done",
mergeDetails: { ...(await store.getTask(second.id))?.mergeDetails, mergeTargetSource: "branch-group-integration" },
} as any);
const promoted = await promoteWithMembers([task.id, second.id]);
expect(promoted.reason).toBe("promoted");
expect(git(rootDir, "git show main:packages/engine/src/fn5830MemberA.ts")).toContain("fn5830MemberA");
expect(git(rootDir, "git show main:packages/engine/src/fn5830MemberB.ts")).toContain("fn5830MemberB");
expect(store.getBranchGroup(group.id)?.status).toBe("finalized");
expect(store.getBranchGroup(group.id)?.prState).toBe("merged");
const again = await promoteWithMembers([task.id, second.id]);
expect(again.reason).toBe("already-finalized");
const promoteEvents = audits.filter((event) => event.mutationType === "merge:branch-group-promoted" && (event.metadata as any)?.groupId === group.id);
expect(promoteEvents).toHaveLength(1);
} finally {
await fixture.cleanup();
}
}, 45_000);
it.skipIf(!hasGit)("respects disabled gate and does not promote", async () => {
const scenarios: Array<{ name: string; settings: any; groupAutoMerge?: boolean; fileName: string }> = [
{
name: "settings auto-merge disabled",
settings: { testMode: true, autoMerge: false },
groupAutoMerge: true,
fileName: "fn5830GateSettings",
},
{
name: "group auto-merge disabled",
settings: { testMode: true, autoMerge: true },
groupAutoMerge: false,
fileName: "fn5830GateGroup",
},
];
for (const scenario of scenarios) {
const fixture = await makeReliabilityFixture({ taskId: `FN-5830-RI-GATE-${scenario.fileName}`, settings: scenario.settings });
try {
const { rootDir, store, task } = fixture;
await stageMergeBranch(store, rootDir, task.id, scenario.fileName);
const group = store.createBranchGroup({
sourceType: "planning",
sourceId: `PS-FN5830-GATE-${scenario.fileName}`,
branchName: `fusion/groups/fn-5830-gate-${scenario.fileName}`,
autoMerge: scenario.groupAutoMerge,
});
await store.setTaskBranchGroup(task.id, group.id);
await store.updateTask(task.id, { branchContext: { groupId: group.id, source: "planning", assignmentMode: "shared" } } as any);
const mergeResult = await aiMergeTask(store, rootDir, task.id);
expect(mergeResult.merged).toBe(true);
await store.updateTask(task.id, {
column: "done",
mergeDetails: { ...(await store.getTask(task.id))?.mergeDetails, mergeTargetSource: "branch-group-integration" },
} as any);
const audits: Array<any> = [];
const gated = await promoteBranchGroup({
store: {
getBranchGroup: (...args: any[]) => (store as any).getBranchGroup(...args),
updateBranchGroup: (...args: any[]) => (store as any).updateBranchGroup(...args),
listTasksByBranchGroup: async () => [await store.getTask(task.id)].filter(Boolean) as any,
} as any,
rootDir,
groupId: group.id,
settings: await store.getSettings() as any,
recordAudit: (e) => { audits.push(e); },
});
expect(gated.reason, scenario.name).toBe("gated");
expect(() => git(rootDir, `git show main:packages/engine/src/${scenario.fileName}.ts`), scenario.name).toThrow();
expect(store.getBranchGroup(group.id)?.status, scenario.name).toBe("open");
expect(store.getBranchGroup(group.id)?.prState, scenario.name).toBe("none");
expect(audits.find((event) => event.mutationType === "merge:branch-group-promotion-gated" && (event.metadata as any)?.groupId === group.id), scenario.name).toBeTruthy();
} finally {
await fixture.cleanup();
}
}
}, 45_000);
});