Files
cfw-autumn/server/tests/attach/downgrade/downgrade4.ts
2025-06-05 16:24:22 +01:00

137 lines
3.2 KiB
TypeScript

import chalk from "chalk";
import Stripe from "stripe";
import { AutumnInt } from "@/external/autumn/autumnCli.js";
import { initCustomer } from "@/utils/scriptUtils/initCustomer.js";
import {
APIVersion,
AppEnv,
BillingInterval,
Customer,
Organization,
} from "@autumn/shared";
import { DrizzleCli } from "@/db/initDrizzle.js";
import { setupBefore } from "tests/before.js";
import { addPrefixToProducts, runAttachTest } from "../utils.js";
import { constructArrearItem } from "@/utils/scriptUtils/constructItem.js";
import { TestFeature } from "tests/setup/v2Features.js";
import { constructProduct } from "@/utils/scriptUtils/createTestProducts.js";
import {
expectDowngradeCorrect,
expectNextCycleCorrect,
} from "tests/utils/expectUtils/expectScheduleUtils.js";
import { createProducts } from "tests/utils/productUtils.js";
import { advanceMonths } from "tests/utils/stripeUtils.js";
import { timeout } from "@/utils/genUtils.js";
const testCase = "downgrade4";
let proQuarter = constructProduct({
items: [constructArrearItem({ featureId: TestFeature.Words })],
type: "pro",
interval: BillingInterval.Quarter,
});
let pro = constructProduct({
items: [constructArrearItem({ featureId: TestFeature.Words })],
type: "pro",
});
describe(`${chalk.yellowBright(`${testCase}: Testing downgrade: premium -> pro -> free -> pro -> premium`)}`, () => {
let customerId = testCase;
let autumn: AutumnInt = new AutumnInt({ version: APIVersion.v1_4 });
let customer: Customer;
let testClockId: string;
let db: DrizzleCli, org: Organization, env: AppEnv;
let stripeCli: Stripe;
let curUnix = new Date().getTime();
before(async function () {
await setupBefore(this);
const { autumnJs } = this;
db = this.db;
org = this.org;
env = this.env;
stripeCli = this.stripeCli;
addPrefixToProducts({
products: [proQuarter, pro],
prefix: testCase,
});
await createProducts({
autumn,
products: [proQuarter, pro],
customerId,
db,
orgId: org.id,
env,
});
const { testClockId: testClockId1, customer: customer_ } =
await initCustomer({
autumn: autumnJs,
customerId,
db,
org,
env,
attachPm: "success",
});
testClockId = testClockId1!;
customer = customer_!;
});
it("should attach pro quarterly product", async function () {
await runAttachTest({
autumn,
customerId,
product: proQuarter,
stripeCli,
db,
org,
env,
});
});
let preview = null;
it("should downgrade to pro", async function () {
const { preview: preview_ } = await expectDowngradeCorrect({
autumn,
customerId,
curProduct: proQuarter,
newProduct: pro,
stripeCli,
db,
org,
env,
});
preview = preview_;
});
it("should have correct invoice after cycle", async function () {
await advanceMonths({ stripeCli, testClockId, numberOfMonths: 3 });
await timeout(10000);
await expectNextCycleCorrect({
preview: preview!,
autumn,
stripeCli,
customerId,
testClockId,
product: pro,
db,
org,
env,
});
});
return;
});