* 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>
171 lines
4.7 KiB
TypeScript
171 lines
4.7 KiB
TypeScript
import { constantsScenarios } from "@calcom/lib/__mocks__/constants";
|
|
import { getBrand } from "@calcom/features/ee/organizations/lib/getBrand";
|
|
import { beforeEach, describe, expect, it, vi } from "vitest";
|
|
import { buildEventUrlFromBooking } from "./buildEventUrlFromBooking";
|
|
|
|
vi.mock("@calcom/features/ee/organizations/lib/getBrand", () => ({
|
|
getBrand: vi.fn(),
|
|
}));
|
|
|
|
vi.mock("@calcom/prisma", () => ({
|
|
default: {},
|
|
prisma: {},
|
|
}));
|
|
|
|
const WEBSITE_URL = "https://buildEventTest.example";
|
|
beforeEach(() => {
|
|
constantsScenarios.setWebsiteUrl(WEBSITE_URL);
|
|
});
|
|
|
|
describe("buildEventUrlFromBooking", () => {
|
|
describe("Non Organization", () => {
|
|
it("should correctly build the event URL for a team event booking", async () => {
|
|
const booking = {
|
|
eventType: {
|
|
slug: "30min",
|
|
team: {
|
|
slug: "engineering",
|
|
parentId: 123,
|
|
},
|
|
},
|
|
profileEnrichedBookingUser: {
|
|
profile: {
|
|
organizationId: null,
|
|
username: "john",
|
|
},
|
|
},
|
|
dynamicGroupSlugRef: null,
|
|
};
|
|
const expectedUrl = `${WEBSITE_URL}/team/engineering/30min`;
|
|
const result = await buildEventUrlFromBooking(booking);
|
|
expect(result).toBe(expectedUrl);
|
|
});
|
|
|
|
it("should correctly build the event URL for a dynamic group booking", async () => {
|
|
const booking = {
|
|
eventType: {
|
|
slug: "30min",
|
|
team: null,
|
|
},
|
|
profileEnrichedBookingUser: {
|
|
profile: {
|
|
organizationId: null,
|
|
username: "john",
|
|
},
|
|
},
|
|
dynamicGroupSlugRef: "john+jane",
|
|
};
|
|
const expectedUrl = `${WEBSITE_URL}/john+jane/30min`;
|
|
const result = await buildEventUrlFromBooking(booking);
|
|
expect(result).toBe(expectedUrl);
|
|
});
|
|
|
|
it("should correctly build the event URL for a personal booking", async () => {
|
|
const booking = {
|
|
eventType: {
|
|
slug: "30min",
|
|
team: null,
|
|
},
|
|
profileEnrichedBookingUser: {
|
|
profile: {
|
|
organizationId: null,
|
|
username: "john",
|
|
},
|
|
},
|
|
dynamicGroupSlugRef: null,
|
|
};
|
|
const expectedUrl = `${WEBSITE_URL}/john/30min`;
|
|
const result = await buildEventUrlFromBooking(booking);
|
|
expect(result).toBe(expectedUrl);
|
|
});
|
|
});
|
|
|
|
describe("Organization", () => {
|
|
const organizationId = 123;
|
|
const orgOrigin = "https://acme.cal.local";
|
|
beforeEach(() => {
|
|
getBrand.mockResolvedValue({
|
|
fullDomain: orgOrigin,
|
|
});
|
|
});
|
|
it("should correctly build the event URL for a team event booking", async () => {
|
|
const booking = {
|
|
eventType: {
|
|
slug: "30min",
|
|
team: {
|
|
slug: "engineering",
|
|
parentId: 123,
|
|
},
|
|
},
|
|
profileEnrichedBookingUser: {
|
|
profile: {
|
|
organizationId,
|
|
username: "john",
|
|
},
|
|
},
|
|
dynamicGroupSlugRef: null,
|
|
};
|
|
const expectedUrl = `${orgOrigin}/team/engineering/30min`;
|
|
const result = await buildEventUrlFromBooking(booking);
|
|
expect(result).toBe(expectedUrl);
|
|
});
|
|
|
|
it("should correctly build the event URL for a dynamic group booking", async () => {
|
|
const booking = {
|
|
eventType: {
|
|
slug: "30min",
|
|
team: null,
|
|
},
|
|
profileEnrichedBookingUser: {
|
|
profile: {
|
|
organizationId,
|
|
username: "john",
|
|
},
|
|
},
|
|
dynamicGroupSlugRef: "john+jane",
|
|
};
|
|
const expectedUrl = `${orgOrigin}/john+jane/30min`;
|
|
const result = await buildEventUrlFromBooking(booking);
|
|
expect(result).toBe(expectedUrl);
|
|
});
|
|
|
|
it("should correctly build the event URL for a personal booking", async () => {
|
|
const booking = {
|
|
eventType: {
|
|
slug: "30min",
|
|
team: null,
|
|
},
|
|
profileEnrichedBookingUser: {
|
|
profile: {
|
|
organizationId,
|
|
username: "john",
|
|
},
|
|
},
|
|
dynamicGroupSlugRef: null,
|
|
};
|
|
const expectedUrl = `${orgOrigin}/john/30min`;
|
|
const result = await buildEventUrlFromBooking(booking);
|
|
expect(result).toBe(expectedUrl);
|
|
});
|
|
});
|
|
|
|
it("should throw if the username isn't set", async () => {
|
|
const booking = {
|
|
eventType: {
|
|
slug: "30min",
|
|
team: null,
|
|
},
|
|
profileEnrichedBookingUser: {
|
|
profile: {
|
|
organizationId: null,
|
|
username: null,
|
|
},
|
|
},
|
|
dynamicGroupSlugRef: null,
|
|
};
|
|
await expect(() => buildEventUrlFromBooking(booking)).rejects.toThrow(
|
|
"No username found for booking user."
|
|
);
|
|
});
|
|
});
|