test: coverage campaign and mutation testing across five packages (#628)

Coverage 83.6 to 87.36% lines, 81.63 to 84.14% branches. Mutation testing across five packages: image-engine 85, media-engine 92, doc-engine 87, shared+enterprise 86, apps/api security and jobs slice. Runs all five lanes weekly. Fixes the silently-broken mutation CI (babel pin), a redact-pdf envelope-shape test bug, an untested enterprise license valid-signature path, and an audit test that only exercised a hand-copied reproduction. Test and config only, no product code changes beyond the babel pin and one test-only oidc export. Full suite: 16,712 pass, 0 fail.
This commit is contained in:
SnapOtter
2026-07-24 17:36:57 +08:00
committed by GitHub
parent eee6f0d470
commit 301e6eb01a
129 changed files with 30900 additions and 276 deletions
@@ -39,6 +39,7 @@ describe("job queues", () => {
});
afterEach(() => {
vi.useRealTimers();
vi.restoreAllMocks();
});
@@ -112,4 +113,91 @@ describe("job queues", () => {
expect(queueInstances[1].close).toHaveBeenCalledTimes(1);
await expect(queueCounts()).resolves.toEqual({ active: 0, waiting: 0, delayed: 0 });
});
it("treats missing count keys as zero when aggregating queueCounts", async () => {
const { getQueue, queueCounts } = await loadQueuesModule();
getQueue("image");
// BullMQ can return a counts object that omits states with zero jobs;
// every field must fall through the ?? 0 branch.
queueInstances[0].getJobCounts.mockResolvedValueOnce({});
await expect(queueCounts()).resolves.toEqual({ active: 0, waiting: 0, delayed: 0 });
});
it("treats missing count keys as zero in perPoolCounts", async () => {
const { getQueue, perPoolCounts } = await loadQueuesModule();
getQueue("system");
// active present, waiting omitted: exercises both sides of the ?? 0 pair.
queueInstances[0].getJobCounts.mockResolvedValueOnce({ active: 9 });
await expect(perPoolCounts()).resolves.toMatchObject({
system: { active: 9, waiting: 0 },
image: { active: 0, waiting: 0 },
});
});
it("returns oldestWaitingMs null in perPoolHealth when waiting count is missing", async () => {
const { getQueue, perPoolHealth } = await loadQueuesModule();
getQueue("docs");
// No waiting/active/failed keys: (counts.waiting ?? 0) > 0 is false, so
// getJobs is never consulted and every field falls back to zero/null.
queueInstances[0].getJobCounts.mockResolvedValueOnce({});
await expect(perPoolHealth()).resolves.toMatchObject({
docs: { active: 0, waiting: 0, failed: 0, oldestWaitingMs: null },
});
expect(queueInstances[0].getJobs).not.toHaveBeenCalled();
});
it("keeps oldestWaitingMs null when waiting is reported but no waiting jobs are returned", async () => {
const { getQueue, perPoolHealth } = await loadQueuesModule();
getQueue("media");
// Count claims a waiting job, but getJobs returns an empty page: the
// jobs.length > 0 guard must short-circuit and leave oldestWaitingMs null.
queueInstances[0].getJobCounts.mockResolvedValueOnce({ active: 0, waiting: 1, failed: 0 });
queueInstances[0].getJobs.mockResolvedValueOnce([]);
await expect(perPoolHealth()).resolves.toMatchObject({
media: { active: 0, waiting: 1, failed: 0, oldestWaitingMs: null },
});
expect(queueInstances[0].getJobs).toHaveBeenCalledTimes(1);
});
it("keeps oldestWaitingMs null when the returned waiting job slot is empty", async () => {
const { getQueue, perPoolHealth } = await loadQueuesModule();
getQueue("image");
// getJobs returns a page whose first slot is undefined (BullMQ can hand
// back holes for expired jobs): the jobs[0] guard must reject it.
queueInstances[0].getJobCounts.mockResolvedValueOnce({ active: 0, waiting: 1, failed: 0 });
queueInstances[0].getJobs.mockResolvedValueOnce([undefined]);
await expect(perPoolHealth()).resolves.toMatchObject({
image: { active: 0, waiting: 1, failed: 0, oldestWaitingMs: null },
});
expect(queueInstances[0].getJobs).toHaveBeenCalledTimes(1);
});
it("defaults missing active and failed counts to zero in perPoolHealth", async () => {
vi.useFakeTimers();
vi.setSystemTime(new Date("2026-06-29T12:00:00.000Z"));
const { getQueue, perPoolHealth } = await loadQueuesModule();
getQueue("ai");
// Only waiting is present; active and failed exercise their ?? 0 branches
// while a real waiting job still resolves oldestWaitingMs.
queueInstances[0].getJobCounts.mockResolvedValueOnce({ waiting: 1 });
queueInstances[0].getJobs.mockResolvedValueOnce([
{ timestamp: new Date("2026-06-29T11:59:55.000Z").getTime() },
]);
await expect(perPoolHealth()).resolves.toMatchObject({
ai: { active: 0, waiting: 1, failed: 0, oldestWaitingMs: 5_000 },
});
});
});