Files
calendar/packages/trpc/server/routers/viewer/delegationCredential/toggleEnabled.handler.test.ts
T
RomitGitHubDevin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
4291a59b2c fix: add missing vi.mock() calls to prevent vitest worker shutdown flakiness (#28459)
* fix: add missing vi.mock() calls to prevent vitest worker shutdown flakiness

Add vi.mock() calls for modules that trigger background network requests
or database connections during import. These transitive imports can cause
the vitest worker RPC to shut down while pending fetch/network operations
are still in flight, resulting in flaky test failures with:
  Error: [vitest-worker]: Closing rpc while "fetch" was pending

The primary modules mocked are:
- @calcom/app-store/delegationCredential (triggers credential lookups)
- @calcom/prisma (triggers database initialization)
- @calcom/features/calendars/lib/CalendarManager (triggers calendar API calls)
- @calcom/features/auth/lib/verifyEmail (triggers email service)
- @calcom/lib/domainManager/organization (triggers domain lookups)

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix: remove conflicting empty prisma mocks from files with prismock/prismaMock setups

- Remove vi.mock('@calcom/prisma', () => ({ default: {}, prisma: {} })) from 28 files
  that already have prismock/prismaMock test doubles. Vitest hoists all vi.mock() calls
  and the last one wins, so these empty mocks were overriding the functional test doubles.
- Fix CalendarSubscriptionService.test.ts to reuse the shared mock from
  __mocks__/delegationCredential instead of creating a new unconfigured vi.fn()
- Remove DelegationCredentialRepository.test.ts empty prisma mock (different pattern)
- Remove vi.mock from inside beforeEach in intentToCreateOrg.handler.test.ts

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix: add comprehensive delegationCredential mock exports to prevent CI test failures

The vi.mock blocks for @calcom/app-store/delegationCredential were missing
exports that the code under test transitively imports (e.g.
enrichUsersWithDelegationCredentials, enrichUserWithDelegationCredentialsIncludeServiceAccountKey,
buildAllCredentials, getFirstDelegationConferencingCredentialAppLocation).

Added all exports with passthrough implementations so the booking flow
works correctly without triggering real network requests.

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix: correct credential mock return shapes to match real module API

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>

* fix: revert unintended yarn.lock changes

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>

---------

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-03-17 09:55:37 +05:30

157 lines
4.3 KiB
TypeScript

import { DelegationCredentialRepository } from "@calcom/features/delegation-credentials/repositories/DelegationCredentialRepository";
import { beforeEach, describe, expect, it, vi } from "vitest";
import { toggleDelegationCredentialEnabled } from "./toggleEnabled.handler";
// Mock the repository
vi.mock("@calcom/features/delegation-credentials/repositories/DelegationCredentialRepository", () => ({
DelegationCredentialRepository: {
findById: vi.fn(),
updateById: vi.fn(),
findByIdIncludeSensitiveServiceAccountKey: vi.fn(),
},
}));
// Mock other dependencies
vi.mock("@calcom/app-store/delegationCredential", () => ({
checkIfSuccessfullyConfiguredInWorkspace: vi.fn().mockResolvedValue(true),
}));
vi.mock("@calcom/emails/integration-email-service", () => ({
sendDelegationCredentialDisabledEmail: vi.fn(),
}));
vi.mock("./getAffectedMembersForDisable.handler", () => ({
getAffectedMembersForDisable: vi.fn().mockResolvedValue([]),
}));
vi.mock("./utils", () => ({
ensureNoServiceAccountKey: vi.fn((credential) => credential),
}));
vi.mock("@calcom/prisma", () => ({
default: {},
prisma: {},
}));
describe("toggleDelegationCredentialEnabled - Security Fix", () => {
beforeEach(() => {
vi.clearAllMocks();
});
it("should prevent users without organizationId from accessing any credentials", async () => {
const userWithoutOrg = {
id: 1,
email: "user@example.com",
organizationId: null,
};
const input = {
id: "any-credential",
enabled: true,
};
const mockCredential = {
id: "any-credential",
organizationId: 1,
enabled: false,
workspacePlatform: { slug: "google" },
};
vi.mocked(DelegationCredentialRepository.findById).mockResolvedValue(mockCredential);
await expect(toggleDelegationCredentialEnabled(userWithoutOrg, input)).rejects.toThrow(
"You must be part of an organization to toggle a delegation credential"
);
expect(DelegationCredentialRepository.updateById).not.toHaveBeenCalled();
});
it("should prevent cross-organization access", async () => {
const userFromOrg1 = {
id: 1,
email: "user@org1.com",
organizationId: 1,
};
const input = {
id: "org2-credential",
enabled: false,
};
const org2Credential = {
id: "org2-credential",
organizationId: 2, // Different organization
enabled: true,
workspacePlatform: { slug: "google" },
};
vi.mocked(DelegationCredentialRepository.findById).mockResolvedValue(org2Credential);
await expect(toggleDelegationCredentialEnabled(userFromOrg1, input)).rejects.toThrow(
"Delegation credential not found"
);
expect(DelegationCredentialRepository.updateById).not.toHaveBeenCalled();
});
it("should allow same-organization access", async () => {
const userFromOrg1 = {
id: 1,
email: "admin@org1.com",
organizationId: 1,
};
const input = {
id: "org1-credential",
enabled: false,
};
const org1Credential = {
id: "org1-credential",
organizationId: 1, // Same organization
enabled: true,
workspacePlatform: { slug: "google" },
};
const updatedCredential = {
...org1Credential,
enabled: false,
lastDisabledAt: new Date(),
};
vi.mocked(DelegationCredentialRepository.findById).mockResolvedValue(org1Credential);
vi.mocked(DelegationCredentialRepository.updateById).mockResolvedValue(updatedCredential);
const result = await toggleDelegationCredentialEnabled(userFromOrg1, input);
expect(result).toEqual(updatedCredential);
expect(DelegationCredentialRepository.updateById).toHaveBeenCalledWith({
id: "org1-credential",
data: {
enabled: false,
lastEnabledAt: undefined,
lastDisabledAt: expect.any(Date),
},
});
});
it("should handle nonexistent credentials", async () => {
const user = {
id: 1,
email: "user@org1.com",
organizationId: 1,
};
const input = {
id: "nonexistent-credential",
enabled: true,
};
vi.mocked(DelegationCredentialRepository.findById).mockResolvedValue(null);
await expect(toggleDelegationCredentialEnabled(user, input)).rejects.toThrow(
"Delegation credential not found"
);
});
});