test(api): cover assistant project admin mutations

This commit is contained in:
2026-04-01 00:18:48 +02:00
parent 83d7dbc29f
commit 083857f19f
7 changed files with 696 additions and 0 deletions
@@ -0,0 +1,119 @@
import { beforeEach, describe, expect, it, vi } from "vitest";
import { PermissionKey, SystemRole } from "@capakraken/shared";
import { TRPCError } from "@trpc/server";
import {
createProject,
createToolContext,
executeTool,
} from "./assistant-tools-project-admin-test-helpers.js";
describe("assistant project admin delete tools", () => {
beforeEach(() => {
vi.clearAllMocks();
});
it("enforces admin-only project deletion through the real project router path", async () => {
const ctx = createToolContext(
{
project: {
findUnique: vi.fn().mockResolvedValue(createProject({ status: "ACTIVE" })),
},
assignment: {
findMany: vi.fn().mockResolvedValue([]),
},
},
{
userRole: SystemRole.MANAGER,
permissions: [PermissionKey.MANAGE_PROJECTS],
},
);
const result = await executeTool(
"delete_project",
JSON.stringify({ projectId: "project_1" }),
ctx,
);
expect(JSON.parse(result.content)).toEqual(expect.objectContaining({
error: "You do not have permission to perform this action.",
}));
});
it("routes project deletion through the real project router path for admins", async () => {
const auditCreate = vi.fn().mockResolvedValue({ id: "audit_1" });
const tx = {
assignment: { deleteMany: vi.fn().mockResolvedValue({ count: 0 }) },
demandRequirement: { deleteMany: vi.fn().mockResolvedValue({ count: 0 }) },
calculationRule: { updateMany: vi.fn().mockResolvedValue({ count: 0 }) },
project: { delete: vi.fn().mockResolvedValue({ id: "project_1" }) },
auditLog: { create: auditCreate },
};
const transaction = vi
.fn()
.mockImplementation(async (callback: (inner: typeof tx) => Promise<unknown>) => callback(tx));
const projectFindUnique = vi.fn()
.mockResolvedValueOnce(createProject({ status: "ACTIVE" }))
.mockResolvedValueOnce(createProject({ name: "Project One" }));
const ctx = createToolContext(
{
project: {
findUnique: projectFindUnique,
},
assignment: {
findMany: vi.fn().mockResolvedValue([]),
},
$transaction: transaction,
},
{
userRole: SystemRole.ADMIN,
permissions: [PermissionKey.MANAGE_PROJECTS],
},
);
const result = await executeTool(
"delete_project",
JSON.stringify({ projectId: "project_1" }),
ctx,
);
expect(JSON.parse(result.content)).toEqual(expect.objectContaining({
success: true,
message: "Deleted project: Project One (PROJ-1)",
}));
expect(transaction).toHaveBeenCalledTimes(1);
expect(auditCreate).toHaveBeenCalledTimes(1);
});
it("returns a stable error when a project disappears before deletion completes", async () => {
const ctx = createToolContext(
{
project: {
findUnique: vi.fn()
.mockResolvedValueOnce(createProject({ status: "ACTIVE" }))
.mockResolvedValueOnce(createProject({ name: "Project One" })),
},
assignment: {
findMany: vi.fn().mockResolvedValue([]),
},
$transaction: vi.fn().mockRejectedValue(
new TRPCError({ code: "NOT_FOUND", message: "Project not found" }),
),
},
{
userRole: SystemRole.ADMIN,
permissions: [PermissionKey.MANAGE_PROJECTS],
},
);
const result = await executeTool(
"delete_project",
JSON.stringify({ projectId: "project_1" }),
ctx,
);
expect(JSON.parse(result.content)).toEqual(expect.objectContaining({
error: "Project not found: project_1",
}));
});
});