链页 app/projects/[id]/chains(RSC fetchProject)+ ChainPage/ChainStarter/
ChainProgress/ChainAdjudication;lib/chain 纯函数(result 收窄/相位映射/resume 组装)。
复用 useJobPoll 轮询、ConflictCard + decisions.ts 裁决、normalizeConflicts/latestReview、
friendlyError;nav 加 chains 入口。awaiting(interrupt)→ 读该章冲突渲 ConflictCard →
POST .../chains/runs/{job_id}/resume 续跑。gen:api 纳入 chains run/resume。
守 #5(链暂停=等裁决,token/正文不入 job result)。
77 lines
2.0 KiB
TypeScript
77 lines
2.0 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
|
|
import {
|
|
GLOBAL_NAV_ITEMS,
|
|
isNavItemActive,
|
|
projectNavItems,
|
|
type NavItem,
|
|
} from "./items";
|
|
|
|
const PID = "p1";
|
|
|
|
describe("projectNavItems", () => {
|
|
it("builds the ten project entries scoped to the project id", () => {
|
|
const items = projectNavItems(PID);
|
|
|
|
expect(items).toHaveLength(10);
|
|
expect(items.map((i) => i.key)).toEqual([
|
|
"write",
|
|
"outline",
|
|
"foreshadow",
|
|
"review",
|
|
"chains",
|
|
"style",
|
|
"codex",
|
|
"toolbox",
|
|
"rules",
|
|
"skills",
|
|
]);
|
|
expect(items.every((i) => i.href.startsWith(`/projects/${PID}/`))).toBe(
|
|
true,
|
|
);
|
|
});
|
|
});
|
|
|
|
describe("isNavItemActive", () => {
|
|
const write: NavItem = {
|
|
href: `/projects/${PID}/write`,
|
|
label: "写作",
|
|
key: "write",
|
|
};
|
|
|
|
it("matches a project item by its activeNav key regardless of pathname", () => {
|
|
expect(
|
|
isNavItemActive(write, { pathname: "/anything", activeNav: "write" }),
|
|
).toBe(true);
|
|
});
|
|
|
|
it("matches a project item by exact pathname when no activeNav given", () => {
|
|
expect(isNavItemActive(write, { pathname: `/projects/${PID}/write` })).toBe(
|
|
true,
|
|
);
|
|
});
|
|
|
|
it("does not match a project item when neither key nor path align", () => {
|
|
expect(isNavItemActive(write, { pathname: "/", activeNav: "outline" })).toBe(
|
|
false,
|
|
);
|
|
});
|
|
|
|
it("matches a global item by exact pathname only", () => {
|
|
const works = GLOBAL_NAV_ITEMS[0];
|
|
if (!works) throw new Error("expected GLOBAL_NAV_ITEMS[0]");
|
|
expect(isNavItemActive(works, { pathname: "/" })).toBe(true);
|
|
expect(isNavItemActive(works, { pathname: "/projects/p1/write" })).toBe(
|
|
false,
|
|
);
|
|
});
|
|
|
|
it("ignores activeNav for global items (no key)", () => {
|
|
const settings = GLOBAL_NAV_ITEMS[1];
|
|
if (!settings) throw new Error("expected GLOBAL_NAV_ITEMS[1]");
|
|
expect(
|
|
isNavItemActive(settings, { pathname: "/", activeNav: "write" }),
|
|
).toBe(false);
|
|
});
|
|
});
|