Files
calendar/packages/features/tasker/tasks/triggerFormSubmittedNoEvent/triggerFormSubmittedNoEventWorkflow.test.ts
T
RomitGitHubDevin 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

177 lines
5.8 KiB
TypeScript

import prismaMock from "@calcom/testing/lib/__mocks__/prismaMock";
import { scheduleWorkflowReminders } from "@calcom/ee/workflows/lib/reminders/reminderScheduler";
import type { ZTriggerFormSubmittedNoEventWorkflowPayloadSchema } from "@calcom/features/tasker/tasks/triggerFormSubmittedNoEvent/triggerFormSubmittedNoEventWorkflow";
import { triggerFormSubmittedNoEventWorkflow } from "@calcom/features/tasker/tasks/triggerFormSubmittedNoEvent/triggerFormSubmittedNoEventWorkflow";
import { TimeUnit, WorkflowActions, WorkflowTemplates, WorkflowTriggerEvents } from "@calcom/prisma/enums";
import { beforeEach, describe, expect, it, vi } from "vitest";
import type { z } from "zod";
import { shouldTriggerFormSubmittedNoEvent } from "./formSubmissionValidation";
// Mock the scheduleWorkflowReminders function
vi.mock("@calcom/ee/workflows/lib/reminders/reminderScheduler", () => ({
scheduleWorkflowReminders: vi.fn(() => Promise.resolve()),
}));
// Mock the form submission validation
vi.mock("./formSubmissionValidation", () => ({
shouldTriggerFormSubmittedNoEvent: vi.fn(() => Promise.resolve(true)),
}));
// Mock the logger
vi.mock("@calcom/lib/logger", () => ({
default: {
getSubLogger: vi.fn(() => ({ error: vi.fn() })),
error: vi.fn(),
},
}));
const mockScheduleWorkflowReminders = vi.mocked(scheduleWorkflowReminders);
const mockShouldTriggerFormSubmittedNoEvent = vi.mocked(shouldTriggerFormSubmittedNoEvent);
type WorkflowPayload = z.infer<typeof ZTriggerFormSubmittedNoEventWorkflowPayloadSchema>;
function expectFormSubmittedNoEventWorkflowToBeCalled(payload: WorkflowPayload) {
expect(mockScheduleWorkflowReminders).toHaveBeenCalledWith(
expect.objectContaining({
workflows: [payload.workflow],
formData: {
responses: payload.responses,
user: {
email: payload.form.user.email,
timeFormat: payload.form.user.timeFormat,
locale: payload.form.user.locale ?? "en",
},
routedEventTypeId: payload.routedEventTypeId ?? null,
},
hideBranding: payload.hideBranding,
smsReminderNumber: payload.smsReminderNumber,
})
);
}
describe("Form submitted, no event booked workflow trigger", () => {
beforeEach(() => {
vi.clearAllMocks();
// Mock the form response queries to return empty arrays by default
prismaMock.app_RoutingForms_FormResponse.findMany.mockResolvedValue([]);
});
it(`should trigger workflow when form was submitted but no booking was made`, async () => {
const payload: WorkflowPayload = {
responseId: 1,
form: {
id: "1234",
userId: 1,
teamId: null,
fields: [{ type: "text", identifier: "Test field 1" }],
user: {
email: "test@example.com",
timeFormat: 12,
locale: "en",
},
},
responses: {
"Test field 1": {
value: "Test input 1",
response: "Test input 1",
},
},
routedEventTypeId: null,
hideBranding: false,
smsReminderNumber: null,
submittedAt: new Date("2024-01-01T10:00:00Z"),
workflow: {
id: 1,
name: "Test Workflow 1",
teamId: null,
trigger: WorkflowTriggerEvents.FORM_SUBMITTED_NO_EVENT,
time: 15,
timeUnit: TimeUnit.MINUTE,
userId: 1,
steps: [
{
id: 1,
action: WorkflowActions.EMAIL_ATTENDEE,
sendTo: null,
template: WorkflowTemplates.CUSTOM,
reminderBody: "Follow up on your form submission",
emailSubject: "Follow Up",
sender: null,
includeCalendarEvent: false,
numberVerificationPending: false,
numberRequired: false,
verifiedAt: null,
},
],
},
};
const payloadString = JSON.stringify(payload);
// Mock that no booking exists
prismaMock.booking.findFirst.mockResolvedValue(null);
await triggerFormSubmittedNoEventWorkflow(payloadString);
expectFormSubmittedNoEventWorkflowToBeCalled(payload);
});
it(`should not trigger workflow when form was submitted and also booking was made after`, async () => {
const payload: WorkflowPayload = {
responseId: 2,
form: {
id: "6789",
userId: 2,
teamId: null,
fields: [{ type: "text", identifier: "Test field 2" }],
user: {
email: "test2@example.com",
timeFormat: 24,
locale: "en",
},
},
responses: {
"Test field 2": {
value: "Test input 2",
response: "Test input 2",
},
},
routedEventTypeId: null,
hideBranding: false,
smsReminderNumber: null,
submittedAt: new Date("2024-01-01T11:00:00Z"),
workflow: {
id: 2,
name: "Test Workflow 2",
teamId: null,
trigger: WorkflowTriggerEvents.FORM_SUBMITTED_NO_EVENT,
time: 30,
timeUnit: TimeUnit.MINUTE,
userId: 2,
steps: [
{
id: 2,
action: WorkflowActions.SMS_ATTENDEE,
sendTo: null,
template: WorkflowTemplates.CUSTOM,
reminderBody: "SMS follow up",
emailSubject: null,
sender: null,
includeCalendarEvent: false,
numberVerificationPending: false,
numberRequired: false,
verifiedAt: null,
},
],
},
};
const payloadString = JSON.stringify(payload);
// Mock that validation should not trigger (booking exists)
mockShouldTriggerFormSubmittedNoEvent.mockResolvedValue(false);
await triggerFormSubmittedNoEventWorkflow(payloadString);
// Should not call scheduleWorkflowReminders when validation fails
expect(mockScheduleWorkflowReminders).not.toHaveBeenCalled();
});
});