Files
calendar/packages/features/ee/organizations/lib/OrganizationPaymentService.test.ts
T
837349e3d3 feat: Organization onboarding improvement - Payment before creation of org but onboarding doesn't require payment (#18990)
* create seed for org upgrade

* migrate about/new pages

* pages refactor + use persistant zustand store

* invited members view + confirm button

* add check to org slug

* check reserved subdomain

* remove quotes from subdomain env var

* intro to creation + billing

* create price

* fix types

* createWithPaymentIntent + permission check on teams

* open stripe link in popup

* intro to tests

* organization price and seat override tests

* move permissions to a new permission service

* update env and permission check

* intro to paid invoice trigger

* dont use subId

* wip

* Get e2e working with migration of teams and members

* fix ts errors

* Get flow working again

* Fix various issues and refactor

* Some more fixes

* Fix wrong page route link

* Platform onboarding fix and moving members of team to org rix

* Platform onboarding fix and moving members of team to org rix

* Fix tests, found a bug

* Get custom price flow working

* Get admin impersonation flow working for a non-existent user

* Fix unit test

* Admin onboarding handover

* fix admin onboarding tests

* fix ts error

* Get updateQuantity working

* More fixes

* fix test

* fix schema name

* Add tests

* Add missing file

* More tests

* Add more tests

* fix mt-2 moving down input into overflow

* fix handover layout removing HOC

* Update PR_TODO.md

* fix ts error due to merge conflict

---------

Co-authored-by: Hariom Balhara <hariombalhara@gmgmail.com>
Co-authored-by: Hariom <hariombalhara@gmail.com>
Co-authored-by: Omar López <zomars@me.com>
2025-03-13 11:17:43 +00:00

312 lines
10 KiB
TypeScript

import { describe, expect, it, vi, beforeEach } from "vitest";
import { ORGANIZATION_SELF_SERVE_MIN_SEATS } from "@calcom/lib/constants";
import { prisma } from "@calcom/prisma";
import type { TrpcSessionUser } from "@calcom/trpc/server/trpc";
import { OrganizationPaymentService } from "./OrganizationPaymentService";
import type { IOrganizationPermissionService } from "./OrganizationPermissionService";
vi.stubEnv("STRIPE_ORG_PRODUCT_ID", "STRIPE_ORG_PRODUCT_ID");
vi.stubEnv("STRIPE_ORG_MONTHLY_PRICE_ID", "STRIPE_ORG_MONTHLY_PRICE_ID");
const defaultOrgOnboarding = {
id: "onboard-id-1",
name: "Test Org",
slug: "test-org",
orgOwnerEmail: "test@example.com",
billingPeriod: "MONTHLY",
seats: 5,
pricePerSeat: 20,
isComplete: false,
stripeCustomerId: "mock_stripe_customer_id",
};
vi.mock("@calcom/prisma", () => {
const prismaMock = {
organizationOnboarding: {
findFirst: vi.fn(),
create: vi.fn(),
update: vi.fn(),
},
membership: {
findMany: vi.fn(),
},
user: {
findUnique: vi.fn(),
update: vi.fn(),
},
};
return {
prisma: prismaMock,
default: prismaMock,
};
});
vi.mock("@calcom/features/ee/billing/stripe-billling-service", () => ({
StripeBillingService: vi.fn().mockImplementation(() => ({
createCustomer: vi.fn().mockResolvedValue({ id: "mock_customer_id" }),
createPrice: vi.fn().mockResolvedValue({ id: "mock_price_id", isCustom: false }),
createSubscription: vi.fn().mockResolvedValue({ id: "mock_subscription_id" }),
createSubscriptionCheckout: vi.fn().mockResolvedValue({
checkoutUrl: "https://checkout.stripe.com/mock-checkout-url",
}),
})),
}));
describe("OrganizationPaymentService", () => {
let service: OrganizationPaymentService;
let mockPermissionService: IOrganizationPermissionService;
const mockUser: TrpcSessionUser = {
id: 1,
email: "test@example.com",
role: "USER",
};
beforeEach(() => {
vi.clearAllMocks();
mockPermissionService = {
hasPermissionToCreateForEmail: vi.fn().mockResolvedValue(true),
hasPendingOrganizations: vi.fn().mockResolvedValue(false),
hasPermissionToModifyDefaultPayment: vi.fn().mockReturnValue(false),
hasPermissionToMigrateTeams: vi.fn().mockResolvedValue(true),
hasModifiedDefaultPayment: vi.fn().mockReturnValue(false),
validatePermissions: vi.fn().mockResolvedValue(true),
};
service = new OrganizationPaymentService(mockUser, mockPermissionService);
vi.mocked(prisma.user.findUnique).mockResolvedValue({ metadata: {} } as any);
// Mock successful organization onboarding creation
vi.mocked(prisma.organizationOnboarding.create).mockResolvedValue({
id: 1,
name: "Test Org",
slug: "test-org",
orgOwnerEmail: "test@example.com",
billingPeriod: "MONTHLY",
seats: 5,
pricePerSeat: 20,
stripeCustomerId: "mock_customer_id",
isComplete: false,
} as any);
});
describe("createPaymentIntent", () => {
const baseInput = {
bio: "BIO",
logo: "LOGO",
teams: [{ id: 1, isBeingMigrated: true, name: "Team 1", slug: "team1" }],
};
it("should not allow non-admin to modify payment settings", async () => {
mockPermissionService.validatePermissions.mockRejectedValueOnce(
new Error("You do not have permission to modify the default payment settings")
);
await expect(
service.createPaymentIntent(
{
...baseInput,
pricePerSeat: 1000, // Trying to modify price
},
defaultOrgOnboarding
)
).rejects.toThrow("You do not have permission to modify the default payment settings");
});
it("should use minimum seats when total unique members is less than minimum", async () => {
// Mock 3 unique members (less than minimum of 5)
vi.mocked(prisma.membership.findMany).mockImplementation(async () => [
{ userId: 1, user: { email: "user1@example.com" } },
{ userId: 2, user: { email: "user2@example.com" } },
{ userId: 3, user: { email: "user3@example.com" } },
]);
const result = await service.createPaymentIntent(
{
...baseInput,
invitedMembers: [{ email: "invited1@example.com" }], // Adding 1 invited member
},
defaultOrgOnboarding
);
expect(result).toBeDefined();
const updateCall = vi.mocked(prisma.organizationOnboarding.update).mock.calls[0][0];
expect(updateCall.where).toEqual({ id: "onboard-id-1" });
const { updatedAt, ...data } = updateCall.data;
expect(data).toEqual({
bio: "BIO",
logo: "LOGO",
teams: [
{
id: 1,
isBeingMigrated: true,
name: "Team 1",
slug: "team1",
},
],
invitedMembers: [
{
email: "invited1@example.com",
},
],
stripeCustomerId: "mock_stripe_customer_id",
pricePerSeat: defaultOrgOnboarding.pricePerSeat,
billingPeriod: "MONTHLY",
seats: Number(ORGANIZATION_SELF_SERVE_MIN_SEATS),
});
});
it("should use total unique members when more than minimum", async () => {
// Mock 7 unique team members
vi.mocked(prisma.membership.findMany).mockImplementation(async () =>
Array.from({ length: 7 }, (_, i) => ({
userId: i + 1,
user: { email: `user${i + 1}@example.com` },
}))
);
const result = await service.createPaymentIntent(
{
...baseInput,
invitedMembers: [
{ email: "invited1@example.com" },
{ email: "invited2@example.com" },
{ email: "invited3@example.com" },
], // Adding 3 invited members, total should be 7 as these new invites are pending
},
defaultOrgOnboarding
);
expect(result).toBeDefined();
const updateCall = vi.mocked(prisma.organizationOnboarding.update).mock.calls[0][0];
expect(updateCall.where).toEqual({ id: "onboard-id-1" });
const { updatedAt, ...data } = updateCall.data;
expect(data).toEqual({
bio: "BIO",
logo: "LOGO",
teams: [
{
id: 1,
isBeingMigrated: true,
name: "Team 1",
slug: "team1",
},
],
invitedMembers: [
{ email: "invited1@example.com" },
{ email: "invited2@example.com" },
{ email: "invited3@example.com" },
],
stripeCustomerId: "mock_stripe_customer_id",
pricePerSeat: defaultOrgOnboarding.pricePerSeat,
billingPeriod: "MONTHLY",
seats: 10,
});
});
describe("admin overrides", () => {
beforeEach(() => {
mockPermissionService.hasPermissionToModifyDefaultPayment.mockReturnValue(true);
mockPermissionService.hasModifiedDefaultPayment.mockReturnValue(true);
mockPermissionService.validatePermissions.mockResolvedValue(true);
// Mock membership count to be 0 for admin override tests
vi.mocked(prisma.membership.findMany).mockResolvedValue([]);
});
it("should allow admin to override minimum seats to a lower value", async () => {
const customSeats = 3;
await service.createPaymentIntent(
{
...baseInput,
seats: customSeats,
},
{
...defaultOrgOnboarding,
seats: customSeats,
}
);
expect(vi.mocked(prisma.organizationOnboarding.update)).toHaveBeenCalled();
const updateCall = vi.mocked(prisma.organizationOnboarding.update).mock.calls[0][0];
expect(updateCall.where).toEqual({ id: "onboard-id-1" });
const { updatedAt, ...data } = updateCall.data;
expect(data).toEqual({
bio: "BIO",
logo: "LOGO",
teams: [
{
id: 1,
isBeingMigrated: true,
name: "Team 1",
slug: "team1",
},
],
stripeCustomerId: "mock_stripe_customer_id",
pricePerSeat: defaultOrgOnboarding.pricePerSeat,
billingPeriod: "MONTHLY",
seats: customSeats,
});
});
it("should allow admin to override price per seat", async () => {
const customPrice = 1000;
const result = await service.createPaymentIntent(baseInput, {
...defaultOrgOnboarding,
pricePerSeat: customPrice,
});
expect(result).toBeDefined();
const updateCall = vi.mocked(prisma.organizationOnboarding.update).mock.calls[0][0];
expect(updateCall.where).toEqual({ id: "onboard-id-1" });
const { updatedAt, ...data } = updateCall.data;
expect(data).toEqual({
bio: "BIO",
logo: "LOGO",
teams: [
{
id: 1,
isBeingMigrated: true,
name: "Team 1",
slug: "team1",
},
],
stripeCustomerId: "mock_stripe_customer_id",
pricePerSeat: customPrice,
billingPeriod: "MONTHLY",
seats: 5,
});
});
it("should create custom price in Stripe when admin overrides price", async () => {
const customPrice = 1500;
await service.createPaymentIntent(
{
...baseInput,
pricePerSeat: customPrice,
},
{
...defaultOrgOnboarding,
pricePerSeat: customPrice,
}
);
// Verify a custom price was created in Stripe
expect(vi.mocked(service["billingService"].createPrice)).toHaveBeenCalledWith(
expect.objectContaining({
amount: customPrice * 100, // Convert to cents for Stripe
currency: "usd",
interval: "month",
productId: "STRIPE_ORG_PRODUCT_ID",
nickname: expect.stringContaining("Custom Organization Price"),
metadata: expect.objectContaining({
billingPeriod: "MONTHLY",
organizationOnboardingId: "onboard-id-1",
pricePerSeat: customPrice,
}),
})
);
});
});
});
});