152 lines
3.8 KiB
TypeScript
152 lines
3.8 KiB
TypeScript
import {
|
|
type AppEnv,
|
|
type Customer,
|
|
LegacyVersion,
|
|
type LimitedItem,
|
|
type Organization,
|
|
RolloverDuration,
|
|
} from "@autumn/shared";
|
|
import { expect } from "chai";
|
|
import chalk from "chalk";
|
|
import { addHours, addMonths } from "date-fns";
|
|
import type Stripe from "stripe";
|
|
import { addPrefixToProducts } from "tests/attach/utils.js";
|
|
import { setupBefore } from "tests/before.js";
|
|
import { TestFeature } from "tests/setup/v2Features.js";
|
|
import { hoursToFinalizeInvoice } from "tests/utils/constants.js";
|
|
import { createProducts } from "tests/utils/productUtils.js";
|
|
import type { DrizzleCli } from "@/db/initDrizzle.js";
|
|
import { AutumnInt } from "@/external/autumn/autumnCli.js";
|
|
import { constructFeatureItem } from "@/utils/scriptUtils/constructItem.js";
|
|
import { constructProduct } from "@/utils/scriptUtils/createTestProducts.js";
|
|
import { initCustomer } from "@/utils/scriptUtils/initCustomer.js";
|
|
import { advanceTestClock } from "@/utils/scriptUtils/testClockUtils.js";
|
|
import { resetAndGetCusEnt } from "./rolloverTestUtils.js";
|
|
|
|
const freeRollover = { max: 600, length: 1, duration: RolloverDuration.Month };
|
|
const proRollover = { max: 1000, length: 1, duration: RolloverDuration.Month };
|
|
|
|
const freeMsges = constructFeatureItem({
|
|
featureId: TestFeature.Messages,
|
|
includedUsage: 500,
|
|
rolloverConfig: freeRollover,
|
|
}) as LimitedItem;
|
|
|
|
const proMsges = constructFeatureItem({
|
|
featureId: TestFeature.Messages,
|
|
includedUsage: 500,
|
|
rolloverConfig: proRollover,
|
|
}) as LimitedItem;
|
|
|
|
const free = constructProduct({
|
|
items: [freeMsges],
|
|
type: "free",
|
|
isDefault: false,
|
|
});
|
|
|
|
const pro = constructProduct({
|
|
items: [proMsges],
|
|
type: "pro",
|
|
});
|
|
|
|
const testCase = "rollover6";
|
|
|
|
describe(`${chalk.yellowBright(`${testCase}: Testing rollovers for upgrade`)}`, () => {
|
|
const customerId = testCase;
|
|
const autumn: AutumnInt = new AutumnInt({ version: LegacyVersion.v1_4 });
|
|
let testClockId: string;
|
|
let db: DrizzleCli, org: Organization, env: AppEnv;
|
|
let customer: Customer;
|
|
let stripeCli: Stripe;
|
|
const 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: [free, pro],
|
|
prefix: testCase,
|
|
});
|
|
|
|
await createProducts({
|
|
autumn,
|
|
products: [free, pro],
|
|
customerId,
|
|
db,
|
|
orgId: org.id,
|
|
env,
|
|
});
|
|
|
|
const res = await initCustomer({
|
|
autumn: autumnJs,
|
|
customerId,
|
|
db,
|
|
org,
|
|
env,
|
|
attachPm: "success",
|
|
});
|
|
|
|
testClockId = res.testClockId!;
|
|
customer = res.customer;
|
|
});
|
|
|
|
it("should attach free product", async () => {
|
|
await autumn.attach({
|
|
customer_id: customerId,
|
|
product_id: pro.id,
|
|
});
|
|
});
|
|
|
|
it("should create rollovers", async () => {
|
|
await resetAndGetCusEnt({
|
|
customer,
|
|
db,
|
|
productGroup: testCase,
|
|
featureId: TestFeature.Messages,
|
|
});
|
|
await resetAndGetCusEnt({
|
|
customer,
|
|
db,
|
|
productGroup: testCase,
|
|
featureId: TestFeature.Messages,
|
|
});
|
|
|
|
// Attach pro
|
|
await autumn.attach({
|
|
customer_id: customerId,
|
|
product_id: free.id,
|
|
});
|
|
|
|
await advanceTestClock({
|
|
stripeCli,
|
|
testClockId,
|
|
advanceTo: addHours(
|
|
addMonths(curUnix, 1),
|
|
hoursToFinalizeInvoice,
|
|
).getTime(),
|
|
waitForSeconds: 20,
|
|
});
|
|
|
|
const cus = await autumn.customers.get(customerId);
|
|
const msgesFeature = cus.features[TestFeature.Messages];
|
|
const proRolloverBalance = proMsges.included_usage * 2;
|
|
const freeRolloverBalance = Math.min(freeRollover.max, proRolloverBalance);
|
|
|
|
expect(msgesFeature).to.exist;
|
|
expect(msgesFeature?.balance).to.equal(
|
|
freeMsges.included_usage + freeRolloverBalance,
|
|
);
|
|
|
|
// @ts-expect-error
|
|
const rollovers = msgesFeature?.rollovers;
|
|
expect(rollovers[0].balance).to.equal(100);
|
|
expect(rollovers[1].balance).to.equal(500);
|
|
});
|
|
});
|