* 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>
91 lines
2.9 KiB
TypeScript
91 lines
2.9 KiB
TypeScript
import { convertResponsesToVariableFormats } from "@calcom/features/tasker/tasks/executeAIPhoneCall";
|
|
import { describe, expect, it } from "vitest";
|
|
|
|
vi.mock("@calcom/prisma", () => ({
|
|
default: {},
|
|
prisma: {},
|
|
}));
|
|
|
|
describe("executeAIPhoneCall - convertResponsesToVariableFormats", () => {
|
|
it("should generate both variable formats for identifiers with underscores", () => {
|
|
const responses = {
|
|
Company_Name: { value: "Acme Corp" },
|
|
Monthly_Infrastructure_Spend: { value: "$5000" },
|
|
};
|
|
|
|
const variables = convertResponsesToVariableFormats(responses);
|
|
|
|
// Should have both underscore and non-underscore versions
|
|
expect(variables.COMPANY_NAME).toBe("Acme Corp");
|
|
expect(variables.COMPANYNAME).toBe("Acme Corp");
|
|
expect(variables.MONTHLY_INFRASTRUCTURE_SPEND).toBe("$5000");
|
|
expect(variables.MONTHLYINFRASTRUCTURESPEND).toBe("$5000");
|
|
});
|
|
|
|
it("should generate single format for identifiers without underscores", () => {
|
|
const responses = {
|
|
"Company Name": { value: "Acme Corp" },
|
|
Email: { value: "test@example.com" },
|
|
};
|
|
|
|
const variables = convertResponsesToVariableFormats(responses);
|
|
|
|
// Space-separated identifiers convert to underscore format
|
|
expect(variables.COMPANY_NAME).toBe("Acme Corp");
|
|
// Simple identifiers stay as-is
|
|
expect(variables.EMAIL).toBe("test@example.com");
|
|
});
|
|
|
|
it("should handle mixed identifiers correctly", () => {
|
|
const responses = {
|
|
Company_Name: { value: "Acme Corp" },
|
|
"Contact Email": { value: "contact@acme.com" },
|
|
Notes: { value: "Some notes" },
|
|
};
|
|
|
|
const variables = convertResponsesToVariableFormats(responses);
|
|
|
|
// Underscore identifier: both formats
|
|
expect(variables.COMPANY_NAME).toBe("Acme Corp");
|
|
expect(variables.COMPANYNAME).toBe("Acme Corp");
|
|
|
|
// Space identifier: single format (space becomes underscore)
|
|
expect(variables.CONTACT_EMAIL).toBe("contact@acme.com");
|
|
|
|
// Simple identifier: single format
|
|
expect(variables.NOTES).toBe("Some notes");
|
|
});
|
|
|
|
it("should preserve the same value for both variable formats", () => {
|
|
const testValue = "Test Value 123";
|
|
const responses = {
|
|
Test_Field: { value: testValue },
|
|
};
|
|
|
|
const variables = convertResponsesToVariableFormats(responses);
|
|
|
|
expect(variables.TEST_FIELD).toBe(testValue);
|
|
expect(variables.TESTFIELD).toBe(testValue);
|
|
expect(variables.TEST_FIELD).toBe(variables.TESTFIELD);
|
|
});
|
|
|
|
it("should handle empty responses", () => {
|
|
const responses = {};
|
|
|
|
const variables = convertResponsesToVariableFormats(responses);
|
|
|
|
expect(Object.keys(variables)).toHaveLength(0);
|
|
});
|
|
|
|
it("should handle undefined values", () => {
|
|
const responses = {
|
|
Field_Name: { value: undefined },
|
|
};
|
|
|
|
const variables = convertResponsesToVariableFormats(responses);
|
|
|
|
expect(variables.FIELD_NAME).toBe("");
|
|
expect(variables.FIELDNAME).toBe("");
|
|
});
|
|
});
|