test(auth): cover notification and user router audiences

This commit is contained in:
2026-03-30 11:08:14 +02:00
parent c8e82ac221
commit b254ab70ba
3 changed files with 269 additions and 0 deletions
@@ -0,0 +1,116 @@
import { SystemRole } from "@capakraken/shared";
import { describe, expect, it, vi } from "vitest";
import { notificationRouter } from "../router/notification.js";
import { createCallerFactory } from "../trpc.js";
const createCaller = createCallerFactory(notificationRouter);
function createContext(
db: Record<string, unknown>,
options: {
role?: SystemRole;
session?: boolean;
} = {},
) {
const { role = SystemRole.USER, session = true } = options;
return {
session: session
? {
user: { email: "user@example.com", name: "User", image: null },
expires: "2099-01-01T00:00:00.000Z",
}
: null,
db: db as never,
dbUser: session
? {
id: role === SystemRole.MANAGER ? "user_mgr" : "user_1",
systemRole: role,
permissionOverrides: null,
}
: null,
};
}
describe("notification router authorization", () => {
it("requires authentication for self-service notification lists", async () => {
const findMany = vi.fn();
const caller = createCaller(createContext({
notification: {
findMany,
},
user: {
findUnique: vi.fn(),
},
}, { session: false }));
await expect(caller.list({ limit: 20 })).rejects.toMatchObject({
code: "UNAUTHORIZED",
message: "Authentication required",
});
expect(findMany).not.toHaveBeenCalled();
});
it("forbids regular users from creating broadcasts", async () => {
const create = vi.fn();
const caller = createCaller(createContext({
notificationBroadcast: {
create,
},
}));
await expect(caller.createBroadcast({
title: "Ops update",
targetType: "all",
})).rejects.toMatchObject({
code: "FORBIDDEN",
message: "Manager or Admin role required",
});
expect(create).not.toHaveBeenCalled();
});
it("forbids regular users from reassigning tasks", async () => {
const findUnique = vi.fn();
const caller = createCaller(createContext({
notification: {
findUnique,
},
}));
await expect(caller.assignTask({ id: "task_1", assigneeId: "user_2" })).rejects.toMatchObject({
code: "FORBIDDEN",
message: "Manager or Admin role required",
});
expect(findUnique).not.toHaveBeenCalled();
});
it("allows managers to list broadcasts", async () => {
const findMany = vi.fn().mockResolvedValue([
{
id: "broadcast_1",
title: "Ops update",
createdAt: new Date("2026-03-30T10:00:00Z"),
sender: { id: "user_mgr", name: "Manager", email: "mgr@example.com" },
},
]);
const caller = createCaller(createContext({
notificationBroadcast: {
findMany,
},
}, { role: SystemRole.MANAGER }));
const result = await caller.listBroadcasts({ limit: 10 });
expect(result).toHaveLength(1);
expect(findMany).toHaveBeenCalledWith({
orderBy: { createdAt: "desc" },
take: 10,
include: {
sender: { select: { id: true, name: true, email: true } },
},
});
});
});