test(api): cover assistant estimate weekly phasing errors

This commit is contained in:
2026-04-01 00:37:59 +02:00
parent 7b6a4f6436
commit a07057438e
2 changed files with 246 additions and 0 deletions
@@ -0,0 +1,72 @@
import { beforeEach, describe, expect, it, vi } from "vitest";
import { SystemRole } from "@capakraken/shared";
vi.mock("@capakraken/application", async (importOriginal) => {
const actual = await importOriginal<typeof import("@capakraken/application")>();
return {
...actual,
approveEstimateVersion: vi.fn(),
cloneEstimate: vi.fn(),
createEstimateExport: vi.fn(),
createEstimatePlanningHandoff: vi.fn(),
createEstimateRevision: vi.fn(),
getDashboardBudgetForecast: vi.fn().mockResolvedValue([]),
getDashboardPeakTimes: vi.fn().mockResolvedValue([]),
getEstimateById: vi.fn(),
listAssignmentBookings: vi.fn().mockResolvedValue([]),
submitEstimateVersion: vi.fn(),
updateEstimateDraft: vi.fn(),
};
});
import { getEstimateById } from "@capakraken/application";
import { executeTool } from "../router/assistant-tools.js";
import {
createToolContext,
resetEstimateToolMocks,
} from "./assistant-tools-estimate-test-helpers.js";
describe("assistant estimate weekly phasing read errors", () => {
beforeEach(() => {
resetEstimateToolMocks();
});
it("returns a stable error when get_estimate_weekly_phasing cannot find the estimate", async () => {
vi.mocked(getEstimateById).mockResolvedValueOnce(null as never);
const ctx = createToolContext({}, {
userRole: SystemRole.CONTROLLER,
});
const result = await executeTool(
"get_estimate_weekly_phasing",
JSON.stringify({ estimateId: "est_missing" }),
ctx,
);
expect(JSON.parse(result.content)).toEqual({
error: "Estimate not found with the given criteria.",
});
});
it("returns a stable error when get_estimate_weekly_phasing cannot find a working version", async () => {
vi.mocked(getEstimateById).mockResolvedValueOnce({
id: "est_empty",
name: "Estimate Empty",
versions: [],
} as Awaited<ReturnType<typeof getEstimateById>>);
const ctx = createToolContext({}, {
userRole: SystemRole.CONTROLLER,
});
const result = await executeTool(
"get_estimate_weekly_phasing",
JSON.stringify({ estimateId: "est_empty" }),
ctx,
);
expect(JSON.parse(result.content)).toEqual({
error: "Estimate version not found with the given criteria.",
});
});
});