Files
calendar/packages/features/ee/billing/api/webhook/_invoice.payment_failed.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

86 lines
2.7 KiB
TypeScript

import { beforeEach, describe, expect, it, vi } from "vitest";
import { buildMonthlyProrationMetadata } from "../../lib/proration-utils";
import type { SWHMap } from "./__handler";
import handler from "./_invoice.payment_failed";
const onPaymentFailed = vi.fn().mockResolvedValue({ handled: true });
const createBySubscriptionId = vi.fn().mockResolvedValue({ onPaymentFailed });
const getPaymentIntentFailureReason = vi.fn().mockResolvedValue("card_declined");
vi.mock("@calcom/ee/billing/di/containers/Billing", () => ({
getBillingProviderService: () => ({
getPaymentIntentFailureReason,
}),
getSeatBillingStrategyFactory: () => ({ createBySubscriptionId }),
}));
describe("invoice.payment_failed webhook", () => {
beforeEach(() => {
vi.clearAllMocks();
});
it("records proration failure with payment intent reason", async () => {
const data = {
object: {
subscription: "sub_123",
payment_intent: "pi_123",
status: "open",
lines: {
data: [
{
metadata: buildMonthlyProrationMetadata({ prorationId: "pr_123" }),
},
],
},
},
} as unknown as SWHMap["invoice.payment_failed"]["data"];
const result = await handler(data);
expect(getPaymentIntentFailureReason).toHaveBeenCalledWith("pi_123");
expect(createBySubscriptionId).toHaveBeenCalledWith("sub_123");
expect(onPaymentFailed).toHaveBeenCalledWith({ lines: data.object.lines }, "card_declined");
expect(result).toEqual({ success: true, handled: true });
});
it("skips when no subscription on invoice", async () => {
const data = {
object: {
subscription: null,
payment_intent: "pi_123",
status: "open",
lines: { data: [] },
},
} as unknown as SWHMap["invoice.payment_failed"]["data"];
const result = await handler(data);
expect(createBySubscriptionId).not.toHaveBeenCalled();
expect(result).toEqual({ success: true, message: "not a subscription invoice" });
});
it("uses invoice status as fallback when no payment intent", async () => {
const data = {
object: {
subscription: "sub_456",
payment_intent: null,
status: "open",
lines: {
data: [
{
metadata: buildMonthlyProrationMetadata({ prorationId: "pr_456" }),
},
],
},
},
} as unknown as SWHMap["invoice.payment_failed"]["data"];
const result = await handler(data);
expect(getPaymentIntentFailureReason).not.toHaveBeenCalled();
expect(onPaymentFailed).toHaveBeenCalledWith({ lines: data.object.lines }, "open");
expect(result).toEqual({ success: true, handled: true });
});
});