Files
calendar/packages/features/ee/billing/api/webhook/_invoice.payment_succeeded.test.ts
T
sean-brydonGitHubDevin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
f4abbb2de1 feat: refactor billing to strategy implemention (#27828)
* factory and statergie

* chore: use correct method of DI

* feat: add onchagne

* add logic to HWM stat

* add webhook resolver methods to each statergy

* move seat tracking + webhooks over to own statergy

* Move to factory base approach

* move logic to correct class

* rename create -> createByTeamId

* fix: remove debug `true ||` overrides from IS_STRIPE_ENABLED and IS_TEAM_BILLING_ENABLED

Remove accidentally committed debug overrides that short-circuited
IS_STRIPE_ENABLED and IS_TEAM_BILLING_ENABLED to always be true,
bypassing Stripe credential checks. This would break self-hosted
instances without Stripe configured.

Identified by cubic (https://cubic.dev)

Co-Authored-By: unknown <>

---------

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-02-10 13:11:36 -03:00

79 lines
2.3 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_succeeded";
const onPaymentSucceeded = vi.fn().mockResolvedValue({ handled: true });
const createBySubscriptionId = vi.fn().mockResolvedValue({ onPaymentSucceeded });
vi.mock("@calcom/features/ee/billing/di/containers/Billing", () => ({
getSeatBillingStrategyFactory: () => ({ createBySubscriptionId }),
}));
describe("invoice.payment_succeeded webhook", () => {
beforeEach(() => {
vi.clearAllMocks();
});
it("marks proration as charged when line item is present", async () => {
const data = {
object: {
subscription: "sub_123",
lines: {
data: [
{
metadata: buildMonthlyProrationMetadata({ prorationId: "pr_123" }),
},
],
},
},
} as unknown as SWHMap["invoice.payment_succeeded"]["data"];
const result = await handler(data);
expect(createBySubscriptionId).toHaveBeenCalledWith("sub_123");
expect(onPaymentSucceeded).toHaveBeenCalledWith({
lines: data.object.lines,
});
expect(result).toEqual({ success: true, handled: true });
});
it("skips when no subscription on invoice", async () => {
const data = {
object: {
subscription: null,
lines: {
data: [
{
metadata: { type: "other" },
},
],
},
},
} as unknown as SWHMap["invoice.payment_succeeded"]["data"];
const result = await handler(data);
expect(createBySubscriptionId).not.toHaveBeenCalled();
expect(result).toEqual({ success: true, message: "not a subscription invoice" });
});
it("returns handled=false when strategy does not handle the invoice", async () => {
onPaymentSucceeded.mockResolvedValueOnce({ handled: false });
const data = {
object: {
subscription: "sub_456",
lines: {
data: [{ metadata: { type: "other" } }],
},
},
} as unknown as SWHMap["invoice.payment_succeeded"]["data"];
const result = await handler(data);
expect(result).toEqual({ success: true, handled: false });
});
});