chore: ran biome format
This commit is contained in:
@@ -17,143 +17,143 @@ import { createProducts } from "tests/utils/productUtils.js";
|
||||
// const oneTimeOverrideQuantity = 4;
|
||||
// const monthlyQuantity = 2;
|
||||
let oneTimeItem = constructPrepaidItem({
|
||||
featureId: features.metered1.id,
|
||||
price: 9,
|
||||
billingUnits: 250,
|
||||
isOneOff: true,
|
||||
featureId: features.metered1.id,
|
||||
price: 9,
|
||||
billingUnits: 250,
|
||||
isOneOff: true,
|
||||
});
|
||||
|
||||
let oneTime = constructRawProduct({
|
||||
id: "basic3_one_off",
|
||||
items: [oneTimeItem],
|
||||
isAddOn: true,
|
||||
id: "basic3_one_off",
|
||||
items: [oneTimeItem],
|
||||
isAddOn: true,
|
||||
});
|
||||
|
||||
let monthlyItem = constructPrepaidItem({
|
||||
featureId: features.metered1.id,
|
||||
price: 9,
|
||||
billingUnits: 250,
|
||||
featureId: features.metered1.id,
|
||||
price: 9,
|
||||
billingUnits: 250,
|
||||
});
|
||||
|
||||
let monthly = constructRawProduct({
|
||||
id: "basic3_monthly",
|
||||
items: [
|
||||
constructPrepaidItem({
|
||||
featureId: features.metered1.id,
|
||||
price: 9,
|
||||
billingUnits: 250,
|
||||
}),
|
||||
],
|
||||
id: "basic3_monthly",
|
||||
items: [
|
||||
constructPrepaidItem({
|
||||
featureId: features.metered1.id,
|
||||
price: 9,
|
||||
billingUnits: 250,
|
||||
}),
|
||||
],
|
||||
});
|
||||
|
||||
// UNCOMMENT FROM HERE
|
||||
const testCase = "basic3";
|
||||
describe(`${chalk.yellowBright("basic3: Testing attach one time / monthly add ons")}`, () => {
|
||||
let customerId = testCase;
|
||||
let autumn: AutumnInt = new AutumnInt();
|
||||
let db, org, env;
|
||||
let customerId = testCase;
|
||||
let autumn: AutumnInt = new AutumnInt();
|
||||
let db, org, env;
|
||||
|
||||
before(async function () {
|
||||
await setupBefore(this);
|
||||
db = this.db;
|
||||
org = this.org;
|
||||
env = this.env;
|
||||
before(async function () {
|
||||
await setupBefore(this);
|
||||
db = this.db;
|
||||
org = this.org;
|
||||
env = this.env;
|
||||
|
||||
await initCustomer({
|
||||
autumn: this.autumnJs,
|
||||
customerId,
|
||||
db,
|
||||
org,
|
||||
env,
|
||||
attachPm: "success",
|
||||
});
|
||||
await initCustomer({
|
||||
autumn: this.autumnJs,
|
||||
customerId,
|
||||
db,
|
||||
org,
|
||||
env,
|
||||
attachPm: "success",
|
||||
});
|
||||
|
||||
await createProducts({
|
||||
autumn: this.autumnJs,
|
||||
db,
|
||||
orgId: org.id,
|
||||
env,
|
||||
products: [oneTime, monthly],
|
||||
});
|
||||
});
|
||||
await createProducts({
|
||||
autumn: this.autumnJs,
|
||||
db,
|
||||
orgId: org.id,
|
||||
env,
|
||||
products: [oneTime, monthly],
|
||||
});
|
||||
});
|
||||
|
||||
it("should attach pro", async function () {
|
||||
await autumn.attach({
|
||||
customer_id: customerId,
|
||||
product_id: products.pro.id,
|
||||
});
|
||||
it("should attach pro", async function () {
|
||||
await autumn.attach({
|
||||
customer_id: customerId,
|
||||
product_id: products.pro.id,
|
||||
});
|
||||
|
||||
const res = await AutumnCli.getCustomer(customerId);
|
||||
compareMainProduct({
|
||||
sent: products.pro,
|
||||
cusRes: res,
|
||||
});
|
||||
});
|
||||
const res = await AutumnCli.getCustomer(customerId);
|
||||
compareMainProduct({
|
||||
sent: products.pro,
|
||||
cusRes: res,
|
||||
});
|
||||
});
|
||||
|
||||
const oneTimeQuantity = 500;
|
||||
const oneTimeBillingUnits = oneTimeItem.billing_units;
|
||||
const oneTimePurchaseCount = 2;
|
||||
const oneTimeQuantity = 500;
|
||||
const oneTimeBillingUnits = oneTimeItem.billing_units;
|
||||
const oneTimePurchaseCount = 2;
|
||||
|
||||
it("should attach one time add on twice, force checkout", async function () {
|
||||
for (let i = 0; i < 2; i++) {
|
||||
const res = await autumn.attach({
|
||||
customer_id: customerId,
|
||||
product_id: oneTime.id,
|
||||
force_checkout: true,
|
||||
});
|
||||
it("should attach one time add on twice, force checkout", async function () {
|
||||
for (let i = 0; i < 2; i++) {
|
||||
const res = await autumn.attach({
|
||||
customer_id: customerId,
|
||||
product_id: oneTime.id,
|
||||
force_checkout: true,
|
||||
});
|
||||
|
||||
await completeCheckoutForm(
|
||||
res.checkout_url,
|
||||
oneTimeQuantity / oneTimeBillingUnits!
|
||||
);
|
||||
await timeout(15000);
|
||||
}
|
||||
});
|
||||
await completeCheckoutForm(
|
||||
res.checkout_url,
|
||||
oneTimeQuantity / oneTimeBillingUnits!,
|
||||
);
|
||||
await timeout(15000);
|
||||
}
|
||||
});
|
||||
|
||||
it("should have correct product & entitlements", async function () {
|
||||
const cusRes = await AutumnCli.getCustomer(customerId);
|
||||
it("should have correct product & entitlements", async function () {
|
||||
const cusRes = await AutumnCli.getCustomer(customerId);
|
||||
|
||||
const addOnBalance = cusRes.entitlements.find(
|
||||
(e: any) =>
|
||||
e.feature_id === features.metered1.id &&
|
||||
e.interval ==
|
||||
products.oneTimeAddOnMetered1.entitlements.metered1.interval
|
||||
);
|
||||
const addOnBalance = cusRes.entitlements.find(
|
||||
(e: any) =>
|
||||
e.feature_id === features.metered1.id &&
|
||||
e.interval ==
|
||||
products.oneTimeAddOnMetered1.entitlements.metered1.interval,
|
||||
);
|
||||
|
||||
const expectedAmt = oneTimeQuantity * oneTimePurchaseCount;
|
||||
const expectedAmt = oneTimeQuantity * oneTimePurchaseCount;
|
||||
|
||||
expect(addOnBalance!.balance).to.equal(
|
||||
expectedAmt,
|
||||
"add on balance should be correct"
|
||||
);
|
||||
expect(addOnBalance!.balance).to.equal(
|
||||
expectedAmt,
|
||||
"add on balance should be correct",
|
||||
);
|
||||
|
||||
expect(cusRes.add_ons).to.have.lengthOf(
|
||||
1,
|
||||
"should only have one add on product after two purchases (since they combine)"
|
||||
);
|
||||
expect(cusRes.add_ons[0].id).to.equal(
|
||||
oneTime.id,
|
||||
"add on product should exist"
|
||||
);
|
||||
expect(cusRes.invoices.length).to.equal(
|
||||
1 + oneTimePurchaseCount,
|
||||
"invoices should be correct"
|
||||
);
|
||||
});
|
||||
expect(cusRes.add_ons).to.have.lengthOf(
|
||||
1,
|
||||
"should only have one add on product after two purchases (since they combine)",
|
||||
);
|
||||
expect(cusRes.add_ons[0].id).to.equal(
|
||||
oneTime.id,
|
||||
"add on product should exist",
|
||||
);
|
||||
expect(cusRes.invoices.length).to.equal(
|
||||
1 + oneTimePurchaseCount,
|
||||
"invoices should be correct",
|
||||
);
|
||||
});
|
||||
|
||||
it("should have correct /check result for metered1", async function () {
|
||||
const res: any = await AutumnCli.entitled(customerId, features.metered1.id);
|
||||
it("should have correct /check result for metered1", async function () {
|
||||
const res: any = await AutumnCli.entitled(customerId, features.metered1.id);
|
||||
|
||||
expect(res!.allowed).to.be.true;
|
||||
expect(res!.allowed).to.be.true;
|
||||
|
||||
const proMetered1Amt = products.pro.entitlements.metered1.allowance;
|
||||
const addOnBalance = res!.balances.find(
|
||||
(b: any) => b.feature_id === features.metered1.id
|
||||
);
|
||||
const proMetered1Amt = products.pro.entitlements.metered1.allowance;
|
||||
const addOnBalance = res!.balances.find(
|
||||
(b: any) => b.feature_id === features.metered1.id,
|
||||
);
|
||||
|
||||
expect(res!.allowed).to.be.true;
|
||||
expect(addOnBalance!.balance).to.equal(
|
||||
proMetered1Amt! + oneTimeQuantity * oneTimePurchaseCount
|
||||
);
|
||||
});
|
||||
expect(res!.allowed).to.be.true;
|
||||
expect(addOnBalance!.balance).to.equal(
|
||||
proMetered1Amt! + oneTimeQuantity * oneTimePurchaseCount,
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user