test(api): cover assistant vacation mutations

This commit is contained in:
2026-04-01 00:03:33 +02:00
parent 7e85be8f76
commit 492cfb3db0
4 changed files with 522 additions and 0 deletions
@@ -0,0 +1,84 @@
import { beforeEach, describe, expect, it, vi } from "vitest";
import { VacationType } from "@capakraken/db";
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(),
commitDispoImportBatch: vi.fn(),
countPlanningEntries: vi.fn().mockResolvedValue({ countsByRoleId: new Map() }),
createEstimateExport: vi.fn(),
createEstimatePlanningHandoff: vi.fn(),
createEstimateRevision: vi.fn(),
assessDispoImportReadiness: vi.fn(),
loadResourceDailyAvailabilityContexts: vi.fn().mockResolvedValue(new Map()),
getDashboardDemand: vi.fn().mockResolvedValue([]),
getDashboardBudgetForecast: vi.fn().mockResolvedValue([]),
getDashboardOverview: vi.fn(),
getDashboardSkillGapSummary: vi.fn().mockResolvedValue({
roleGaps: [],
totalOpenPositions: 0,
skillSupplyTop10: [],
resourcesByRole: [],
}),
getDashboardProjectHealth: vi.fn().mockResolvedValue([]),
getDashboardPeakTimes: vi.fn().mockResolvedValue([]),
getDashboardTopValueResources: vi.fn().mockResolvedValue([]),
getEstimateById: vi.fn(),
listAssignmentBookings: vi.fn().mockResolvedValue([]),
stageDispoImportBatch: vi.fn(),
submitEstimateVersion: vi.fn(),
updateEstimateDraft: vi.fn(),
};
});
import {
createHappyPathDb,
createToolContext,
executeTool,
} from "./assistant-tools-vacation-mutation-test-helpers.js";
describe("assistant vacation mutation tools", () => {
beforeEach(() => {
vi.clearAllMocks();
});
it("creates vacation through the real vacation router path", async () => {
const db = createHappyPathDb();
const ctx = createToolContext(db, { userRole: SystemRole.ADMIN });
const result = await executeTool(
"create_vacation",
JSON.stringify({
resourceId: "res_1",
type: "ANNUAL",
startDate: "2026-07-01",
endDate: "2026-07-02",
}),
ctx,
);
expect(JSON.parse(result.content)).toEqual(
expect.objectContaining({
success: true,
vacationId: "vac_created",
message:
"Created ANNUAL for Alice Example: 2026-07-01 to 2026-07-02 (status: APPROVED, deducted 2 day(s))",
}),
);
expect(db.vacation.create).toHaveBeenCalledWith(
expect.objectContaining({
data: expect.objectContaining({
resourceId: "res_1",
type: VacationType.ANNUAL,
status: "APPROVED",
requestedById: "user_1",
approvedById: "user_1",
}),
}),
);
});
});