test(api): cover assistant estimate revision export errors

This commit is contained in:
2026-04-01 00:38:10 +02:00
parent f1427a3f85
commit c65ae132d3
@@ -0,0 +1,121 @@
import { beforeEach, describe, expect, it, vi } from "vitest";
import { PermissionKey, 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 { createEstimateExport, createEstimateRevision } from "@capakraken/application";
import { executeTool } from "../router/assistant-tools.js";
import {
createToolContext,
resetEstimateToolMocks,
} from "./assistant-tools-estimate-test-helpers.js";
describe("assistant estimate revision and export mutation errors", () => {
beforeEach(() => {
resetEstimateToolMocks();
});
it("returns stable assistant errors for create_estimate_revision mutations", async () => {
const cases = [
{
payload: { estimateId: "est_1" },
setup: () => vi.mocked(createEstimateRevision).mockRejectedValueOnce(new Error("Estimate already has a working version")),
expected: "Estimate already has a working version.",
},
{
payload: { estimateId: "est_1", sourceVersionId: "ver_deleted" },
setup: () =>
vi.mocked(createEstimateRevision).mockRejectedValueOnce(
Object.assign(new Error("Record to update not found"), {
code: "P2025",
meta: { modelName: "EstimateVersion" },
}),
),
expected: "Estimate version not found with the given criteria.",
},
{
payload: { estimateId: "est_1", sourceVersionId: "ver_1" },
setup: () =>
vi.mocked(createEstimateRevision).mockRejectedValueOnce(
new Error("Source version must be locked before creating a revision"),
),
expected: "Source version must be locked before creating a revision.",
},
{
payload: { estimateId: "est_1" },
setup: () => vi.mocked(createEstimateRevision).mockRejectedValueOnce(new Error("Estimate has no locked version to revise")),
expected: "Estimate has no locked version to revise.",
},
] as const;
for (const testCase of cases) {
testCase.setup();
const ctx = createToolContext({}, {
userRole: SystemRole.MANAGER,
permissions: [PermissionKey.MANAGE_PROJECTS],
});
const result = await executeTool(
"create_estimate_revision",
JSON.stringify(testCase.payload),
ctx,
);
expect(JSON.parse(result.content)).toEqual({ error: testCase.expected });
}
});
it("returns stable assistant errors for create_estimate_export mutations", async () => {
const cases = [
{
payload: { estimateId: "est_1", versionId: "ver_missing", format: "XLSX" },
setup: () => vi.mocked(createEstimateExport).mockRejectedValueOnce(new Error("Estimate version not found")),
expected: "Estimate version not found with the given criteria.",
},
{
payload: { estimateId: "est_1", versionId: "ver_deleted", format: "XLSX" },
setup: () =>
vi.mocked(createEstimateExport).mockRejectedValueOnce(
Object.assign(new Error("Record to update not found"), {
code: "P2025",
meta: { modelName: "EstimateVersion" },
}),
),
expected: "Estimate version not found with the given criteria.",
},
] as const;
for (const testCase of cases) {
testCase.setup();
const ctx = createToolContext({}, {
userRole: SystemRole.MANAGER,
permissions: [PermissionKey.MANAGE_PROJECTS],
});
const result = await executeTool(
"create_estimate_export",
JSON.stringify(testCase.payload),
ctx,
);
expect(JSON.parse(result.content)).toEqual({ error: testCase.expected });
}
});
});