Files
calendar/packages/features/tasker/tasks/sendWorkflowEmails.test.ts
T
98b6d63164 refactor: apply biome formatting to packages/features (#27844)
* refactor: apply biome formatting to packages/features (batch 1 - small subdirs)

Format small subdirectories in packages/features: di, flags, holidays, oauth,
settings, users, assignment-reason, selectedCalendar, hashedLink, host, form,
form-builder, availability, data-table, pbac, schedules, troubleshooter,
eventtypes, calendar-subscription, and root-level files.

Also includes straggler apps/web BookEventForm.tsx.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* refactor: apply biome formatting to packages/features (batch 2 - medium subdirs)

Format medium subdirectories in packages/features: auth, credentials,
calendars, routing-forms, routing-trace, attributes, watchlist, calAIPhone,
tasker, and webhooks.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* refactor: apply biome formatting to packages/features (batch 3 - bookings + insights)

Format bookings and insights subdirectories in packages/features.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* refactor: apply biome formatting to packages/features (batch 4 - ee)

Format packages/features/ee subdirectory covering billing, workflows,
organizations, teams, managed-event-types, round-robin, dsync,
integration-attribute-sync, and payments.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* refactor: apply biome formatting to packages/features (batch 5 - booking-audit part 1)

Format booking-audit di, actions, common, dto, repository, and types
subdirectories in packages/features/booking-audit.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* refactor: apply biome formatting to packages/features (batch 6 - booking-audit part 2)

Format booking-audit service subdirectory in packages/features/booking-audit.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-11 15:47:14 +01:00

218 lines
6.4 KiB
TypeScript

import { describe, expect, vi, beforeEach, test } from "vitest";
vi.mock("@calcom/emails/workflow-email-service", () => ({
sendCustomWorkflowEmail: vi.fn(),
}));
const mockGetBookingForCalEventBuilderFromUid = vi.fn();
vi.mock("@calcom/features/bookings/repositories/BookingRepository", () => ({
BookingRepository: vi.fn().mockImplementation(function () {
return {
getBookingForCalEventBuilderFromUid: mockGetBookingForCalEventBuilderFromUid,
};
}),
}));
vi.mock("@calcom/features/bookings/repositories/BookingSeatRepository", () => ({
BookingSeatRepository: vi.fn(),
}));
const mockHandleSendEmailWorkflowTask = vi.fn();
vi.mock("@calcom/features/ee/workflows/lib/service/EmailWorkflowService", () => ({
EmailWorkflowService: vi.fn().mockImplementation(function () {
return {
handleSendEmailWorkflowTask: mockHandleSendEmailWorkflowTask,
};
}),
}));
vi.mock("@calcom/features/ee/workflows/repositories/WorkflowReminderRepository", () => ({
WorkflowReminderRepository: vi.fn(),
}));
vi.mock("@calcom/prisma", () => ({
default: {},
prisma: {},
}));
vi.mock("@calcom/features/CalendarEventBuilder", () => ({
CalendarEventBuilder: {
fromBooking: vi.fn(),
},
}));
import { sendCustomWorkflowEmail } from "@calcom/emails/workflow-email-service";
import { CalendarEventBuilder } from "@calcom/features/CalendarEventBuilder";
import { sendWorkflowEmails, ZSendWorkflowEmailsSchema } from "./sendWorkflowEmails";
const mockSendCustomWorkflowEmail = vi.mocked(sendCustomWorkflowEmail);
const mockCalendarEventBuilder = vi.mocked(CalendarEventBuilder);
describe("sendWorkflowEmails", () => {
beforeEach(() => {
vi.clearAllMocks();
});
describe("Schema validation", () => {
test("should validate eager email payload", () => {
const eagerPayload = {
to: ["test@example.com"],
subject: "Test Subject",
html: "<p>Test Body</p>",
replyTo: "reply@example.com",
sender: "Sender Name",
attachments: [
{
content: "content",
filename: "file.txt",
},
],
};
const result = ZSendWorkflowEmailsSchema.parse(eagerPayload);
expect(result).toEqual(eagerPayload);
});
test("should validate lazy email payload", () => {
const lazyPayload = {
bookingUid: "booking-123",
workflowReminderId: 1,
};
const result = ZSendWorkflowEmailsSchema.parse(lazyPayload);
expect(result).toEqual(lazyPayload);
});
});
describe("Eager email sending", () => {
test("should send email with eager payload", async () => {
const payload = {
to: ["test@example.com", "test2@example.com"],
subject: "Test Subject",
html: "<p>Test Body</p>",
replyTo: "reply@example.com",
sender: "Sender Name",
};
await sendWorkflowEmails(JSON.stringify(payload));
expect(mockSendCustomWorkflowEmail).toHaveBeenCalledTimes(2);
expect(mockSendCustomWorkflowEmail).toHaveBeenCalledWith({
to: "test@example.com",
subject: "Test Subject",
html: "<p>Test Body</p>",
replyTo: "reply@example.com",
sender: "Sender Name",
});
expect(mockSendCustomWorkflowEmail).toHaveBeenCalledWith({
to: "test2@example.com",
subject: "Test Subject",
html: "<p>Test Body</p>",
replyTo: "reply@example.com",
sender: "Sender Name",
});
});
test("should send email with attachments", async () => {
const payload = {
to: ["test@example.com"],
subject: "Test Subject",
html: "<p>Test Body</p>",
attachments: [
{
content: "base64content",
filename: "event.ics",
},
],
};
await sendWorkflowEmails(JSON.stringify(payload));
expect(mockSendCustomWorkflowEmail).toHaveBeenCalledWith({
to: "test@example.com",
subject: "Test Subject",
html: "<p>Test Body</p>",
attachments: [
{
content: "base64content",
filename: "event.ics",
},
],
});
});
});
describe("Lazy email generation", () => {
test("should generate and send email with lazy payload", async () => {
const payload = {
bookingUid: "booking-123",
workflowReminderId: 1,
};
const mockBooking = {
uid: "booking-123",
user: { id: 1, name: "User", email: "user@example.com" },
eventType: { id: 1, title: "Meeting" },
};
const mockCalendarEvent = {
uid: "booking-123",
title: "Meeting",
organizer: { email: "user@example.com" },
attendees: [{ email: "attendee@example.com" }],
};
const mockBuilder = {
build: vi.fn().mockReturnValue(mockCalendarEvent),
} as unknown as CalendarEventBuilder;
mockGetBookingForCalEventBuilderFromUid.mockResolvedValue(mockBooking);
mockCalendarEventBuilder.fromBooking.mockResolvedValue(mockBuilder);
await sendWorkflowEmails(JSON.stringify(payload));
expect(mockGetBookingForCalEventBuilderFromUid).toHaveBeenCalledWith("booking-123");
expect(mockHandleSendEmailWorkflowTask).toHaveBeenCalledWith({
evt: mockCalendarEvent,
workflowReminderId: 1,
});
});
test("should throw error if booking not found", async () => {
const payload = {
bookingUid: "non-existent-booking",
workflowReminderId: 1,
};
mockGetBookingForCalEventBuilderFromUid.mockResolvedValue(null);
await expect(sendWorkflowEmails(JSON.stringify(payload))).rejects.toThrow("Booking not found");
});
test("should throw error if calendar event cannot be built", async () => {
const payload = {
bookingUid: "booking-123",
workflowReminderId: 1,
};
const mockBooking = {
uid: "booking-123",
user: { id: 1, name: "User", email: "user@example.com" },
eventType: { id: 1, title: "Meeting" },
};
const mockBuilder = {
build: vi.fn().mockReturnValue(null),
} as unknown as CalendarEventBuilder;
mockGetBookingForCalEventBuilderFromUid.mockResolvedValue(mockBooking);
mockCalendarEventBuilder.fromBooking.mockResolvedValue(mockBuilder);
await expect(sendWorkflowEmails(JSON.stringify(payload))).rejects.toThrow(
"Calendar event could not be built"
);
});
});
});