mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-10-29 12:12:36 +01:00
* content: add gems blocks * gemsBlocks: include ios and android identifiers * wip: promo code * split common constants into multiple files * add second promo part * geCurrentEvent, refactor promo * fix lint * fix exports, use world state api * start adding world state tests * remove console.log * use gems block for purchases * remove comments * fix most unit tests * restore comment * fix lint * prevent apple/google gift tests from breaking other tests when stub is not reset * fix unit tests, clarify tests names * iap: use gift object when gifting gems * allow gift object with less data * fix iap tests, remove findById stubs * iap: require less data from the mobile apps * apply discounts * add missing worldState file * fix lint * add test event * start removing 20 gems option for web * start adding support for all gems packages on web * fix unit tests for apple, stripe and google * amazon: support all gems blocks * paypal: support all gems blocks * fix payments unit tests, add tests for getGemsBlock * web: add gems plans with discounts, update stripe * fix amazon and paypal clients, payments success modals * amazon pay: disabled state * update icons, start abstracting payments buttons * begin redesign * redesign gems modal * fix buttons * fix hover color for gems modal close icon * add key to world state current event * extend test event length * implement gems modals designs * early test fall2020 * fix header banner position * add missing files * use iso 8601 for dates, minor ui fixes * fix time zones * events: fix ISO8601 format * fix css indentation * start abstracting banners * refactor payments buttons * test spooky, fix group plans box * implement gems promo banners, refactor banners, fixes * fix lint * fix dates * remove unused i18n strings * fix stripe integration test * fix world state integration tests * the current active event * add missing unit tests * add storybook story for payments buttons component * fix typo * fix(stripe): correct label when gifting subscriptions
236 lines
5.6 KiB
JavaScript
236 lines
5.6 KiB
JavaScript
import stripeModule from 'stripe';
|
|
|
|
import { model as User } from '../../../../../../website/server/models/user';
|
|
import stripePayments from '../../../../../../website/server/libs/payments/stripe';
|
|
import payments from '../../../../../../website/server/libs/payments/payments';
|
|
import common from '../../../../../../website/common';
|
|
import apiError from '../../../../../../website/server/libs/apiError';
|
|
|
|
const { i18n } = common;
|
|
|
|
describe('stripe - checkout', () => {
|
|
const subKey = 'basic_3mo';
|
|
const stripe = stripeModule('test');
|
|
let stripeChargeStub; let paymentBuyGemsStub; let
|
|
paymentCreateSubscritionStub;
|
|
let user; let gift; let groupId; let email; let headers; let coupon; let customerIdResponse; let
|
|
token; const gemsBlockKey = '21gems'; const gemsBlock = common.content.gems[gemsBlockKey];
|
|
|
|
beforeEach(() => {
|
|
user = new User();
|
|
user.profile.name = 'sender';
|
|
user.purchased.plan.customerId = 'customer-id';
|
|
user.purchased.plan.planId = subKey;
|
|
user.purchased.plan.lastBillingDate = new Date();
|
|
|
|
token = 'test-token';
|
|
|
|
customerIdResponse = 'example-customerIdResponse';
|
|
const stripCustomerResponse = {
|
|
id: customerIdResponse,
|
|
};
|
|
stripeChargeStub = sinon.stub(stripe.charges, 'create').resolves(stripCustomerResponse);
|
|
paymentBuyGemsStub = sinon.stub(payments, 'buyGems').resolves({});
|
|
paymentCreateSubscritionStub = sinon.stub(payments, 'createSubscription').resolves({});
|
|
});
|
|
|
|
afterEach(() => {
|
|
stripe.charges.create.restore();
|
|
payments.buyGems.restore();
|
|
payments.createSubscription.restore();
|
|
});
|
|
|
|
it('should error if there is no token', async () => {
|
|
await expect(stripePayments.checkout({
|
|
user,
|
|
gift,
|
|
groupId,
|
|
email,
|
|
headers,
|
|
coupon,
|
|
}, stripe))
|
|
.to.eventually.be.rejected.and.to.eql({
|
|
httpCode: 400,
|
|
message: 'Missing req.body.id',
|
|
name: 'BadRequest',
|
|
});
|
|
});
|
|
|
|
it('should error if gem amount is too low', async () => {
|
|
const receivingUser = new User();
|
|
receivingUser.save();
|
|
gift = {
|
|
type: 'gems',
|
|
gems: {
|
|
amount: 0,
|
|
uuid: receivingUser._id,
|
|
},
|
|
};
|
|
|
|
await expect(stripePayments.checkout({
|
|
token,
|
|
user,
|
|
gift,
|
|
groupId,
|
|
email,
|
|
headers,
|
|
coupon,
|
|
}, stripe))
|
|
.to.eventually.be.rejected.and.to.eql({
|
|
httpCode: 400,
|
|
message: 'Amount must be at least 1.',
|
|
name: 'BadRequest',
|
|
});
|
|
});
|
|
|
|
it('should error if user cannot get gems', async () => {
|
|
gift = undefined;
|
|
sinon.stub(user, 'canGetGems').resolves(false);
|
|
|
|
await expect(stripePayments.checkout({
|
|
token,
|
|
user,
|
|
gemsBlock: gemsBlockKey,
|
|
gift,
|
|
groupId,
|
|
email,
|
|
headers,
|
|
coupon,
|
|
}, stripe)).to.eventually.be.rejected.and.to.eql({
|
|
httpCode: 401,
|
|
message: i18n.t('groupPolicyCannotGetGems'),
|
|
name: 'NotAuthorized',
|
|
});
|
|
});
|
|
|
|
it('should error if the gems block is invalid', async () => {
|
|
gift = undefined;
|
|
|
|
await expect(stripePayments.checkout({
|
|
token,
|
|
user,
|
|
gemsBlock: 'invalid',
|
|
gift,
|
|
groupId,
|
|
email,
|
|
headers,
|
|
coupon,
|
|
}, stripe)).to.eventually.be.rejected.and.to.eql({
|
|
httpCode: 400,
|
|
message: apiError('invalidGemsBlock'),
|
|
name: 'BadRequest',
|
|
});
|
|
});
|
|
|
|
it('should purchase gems', async () => {
|
|
gift = undefined;
|
|
sinon.stub(user, 'canGetGems').resolves(true);
|
|
|
|
await stripePayments.checkout({
|
|
token,
|
|
user,
|
|
gemsBlock: gemsBlockKey,
|
|
gift,
|
|
groupId,
|
|
email,
|
|
headers,
|
|
coupon,
|
|
}, stripe);
|
|
|
|
expect(stripeChargeStub).to.be.calledOnce;
|
|
expect(stripeChargeStub).to.be.calledWith({
|
|
amount: 499,
|
|
currency: 'usd',
|
|
card: token,
|
|
});
|
|
|
|
expect(paymentBuyGemsStub).to.be.calledOnce;
|
|
expect(paymentBuyGemsStub).to.be.calledWith({
|
|
user,
|
|
customerId: customerIdResponse,
|
|
paymentMethod: 'Stripe',
|
|
gift,
|
|
gemsBlock,
|
|
});
|
|
expect(user.canGetGems).to.be.calledOnce;
|
|
user.canGetGems.restore();
|
|
});
|
|
|
|
it('should gift gems', async () => {
|
|
const receivingUser = new User();
|
|
await receivingUser.save();
|
|
gift = {
|
|
type: 'gems',
|
|
uuid: receivingUser._id,
|
|
gems: {
|
|
amount: 16,
|
|
},
|
|
};
|
|
|
|
await stripePayments.checkout({
|
|
token,
|
|
user,
|
|
gift,
|
|
groupId,
|
|
email,
|
|
headers,
|
|
coupon,
|
|
}, stripe);
|
|
|
|
expect(stripeChargeStub).to.be.calledOnce;
|
|
expect(stripeChargeStub).to.be.calledWith({
|
|
amount: '400',
|
|
currency: 'usd',
|
|
card: token,
|
|
});
|
|
|
|
expect(paymentBuyGemsStub).to.be.calledOnce;
|
|
expect(paymentBuyGemsStub).to.be.calledWith({
|
|
user,
|
|
customerId: customerIdResponse,
|
|
paymentMethod: 'Gift',
|
|
gift,
|
|
gemsBlock: undefined,
|
|
});
|
|
});
|
|
|
|
it('should gift a subscription', async () => {
|
|
const receivingUser = new User();
|
|
receivingUser.save();
|
|
gift = {
|
|
type: 'subscription',
|
|
subscription: {
|
|
key: subKey,
|
|
uuid: receivingUser._id,
|
|
},
|
|
};
|
|
|
|
await stripePayments.checkout({
|
|
token,
|
|
user,
|
|
gift,
|
|
groupId,
|
|
email,
|
|
headers,
|
|
coupon,
|
|
}, stripe);
|
|
|
|
gift.member = receivingUser;
|
|
expect(stripeChargeStub).to.be.calledOnce;
|
|
expect(stripeChargeStub).to.be.calledWith({
|
|
amount: '1500',
|
|
currency: 'usd',
|
|
card: token,
|
|
});
|
|
|
|
expect(paymentCreateSubscritionStub).to.be.calledOnce;
|
|
expect(paymentCreateSubscritionStub).to.be.calledWith({
|
|
user,
|
|
customerId: customerIdResponse,
|
|
paymentMethod: 'Gift',
|
|
gift,
|
|
gemsBlock: undefined,
|
|
});
|
|
});
|
|
});
|