fix: expiring product in cancel handler instead of waiting for stripe webhook

This commit is contained in:
John Yeo
2025-06-18 17:24:40 +01:00
parent b7ee260e0c
commit 47d14b0bfc
3 changed files with 135 additions and 11 deletions

View File

@@ -418,7 +418,7 @@ export class AutumnInt {
return data;
};
cancel = async (params: CancelParams & { expire_immediately?: boolean }) => {
cancel = async (params: CancelParams) => {
const data = await this.post(`/cancel`, params);
return data;
};

View File

@@ -183,7 +183,18 @@ export const expireCusProduct = async ({
// For regular products
// 1. Cancel stripe subscriptions
const cancelled = await cancelCusProductSubscriptions({
logger.info(`Expiring current product: ${cusProduct.product.name}`);
await expireAndActivate({
db,
env,
cusProduct,
org,
logger,
});
logger.info(`Cancelling stripe subscriptions`);
await cancelCusProductSubscriptions({
cusProduct,
org,
env,
@@ -191,15 +202,15 @@ export const expireCusProduct = async ({
prorate,
});
if (!cancelled) {
await expireAndActivate({
db,
env,
cusProduct,
org,
logger,
});
} // else will be handled by webhook
// if (!cancelled) {
// await expireAndActivate({
// db,
// env,
// cusProduct,
// org,
// logger,
// });
// } // else will be handled by webhook
return;
};

View File

@@ -0,0 +1,113 @@
import { AutumnInt } from "@/external/autumn/autumnCli.js";
import { initCustomer } from "@/utils/scriptUtils/initCustomer.js";
import { APIVersion, AppEnv, Organization } from "@autumn/shared";
import chalk from "chalk";
import Stripe from "stripe";
import { DrizzleCli } from "@/db/initDrizzle.js";
import { setupBefore } from "tests/before.js";
import { createProducts } from "tests/utils/productUtils.js";
import { addPrefixToProducts, runAttachTest } from "../utils.js";
import {
constructArrearItem,
constructArrearProratedItem,
} from "@/utils/scriptUtils/constructItem.js";
import { TestFeature } from "tests/setup/v2Features.js";
import { constructProduct } from "@/utils/scriptUtils/createTestProducts.js";
import { expectAutumnError } from "tests/utils/expectUtils/expectErrUtils.js";
import { attachFailedPaymentMethod } from "@/external/stripe/stripeCusUtils.js";
import { CusService } from "@/internal/customers/CusService.js";
import { timeout } from "@/utils/genUtils.js";
import { expectProductAttached } from "tests/utils/expectUtils/expectProductAttached.js";
import { expectSubItemsCorrect } from "tests/utils/expectUtils/expectSubUtils.js";
import { expectFeaturesCorrect } from "tests/utils/expectUtils/expectFeaturesCorrect.js";
const testCase = "upgrade7";
export let pro = constructProduct({
items: [],
type: "pro",
});
export let premium = constructProduct({
items: [],
type: "premium",
});
describe(`${chalk.yellowBright(`${testCase}: Testing upgrade via cancel + attach`)}`, () => {
let customerId = testCase;
let autumn: AutumnInt = new AutumnInt({ version: APIVersion.v1_4 });
let testClockId: string;
let db: DrizzleCli, org: Organization, env: AppEnv;
let stripeCli: Stripe;
before(async function () {
await setupBefore(this);
const { autumnJs } = this;
db = this.db;
org = this.org;
env = this.env;
stripeCli = this.stripeCli;
const { testClockId: testClockId1 } = await initCustomer({
autumn: autumnJs,
customerId,
db,
org,
env,
attachPm: "success",
});
addPrefixToProducts({
products: [pro, premium],
prefix: testCase,
});
await createProducts({
autumn,
products: [pro, premium],
db,
orgId: org.id,
env,
});
testClockId = testClockId1!;
});
it("should attach pro product", async function () {
await runAttachTest({
autumn,
customerId,
product: pro,
stripeCli,
db,
org,
env,
});
});
it("should cancel than attach premium product", async function () {
await autumn.cancel({
customer_id: customerId,
product_id: pro.id,
cancel_immediately: true,
});
await autumn.attach({
customer_id: customerId,
product_id: premium.id,
force_checkout: true,
});
// await runAttachTest({
// autumn,
// customerId,
// product: premium,
// stripeCli,
// db,
// org,
// env,
// });
});
});