mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-14 13:17:24 +01:00
55 lines
1.5 KiB
JavaScript
55 lines
1.5 KiB
JavaScript
import { generateUser, translate as t } from '../../../../../helpers/api-integration/v3';
|
|
import applePayments from '../../../../../../website/server/libs/payments/apple';
|
|
|
|
describe('payments : apple #subscribe', () => {
|
|
const endpoint = '/iap/ios/subscribe';
|
|
let user;
|
|
|
|
beforeEach(async () => {
|
|
user = await generateUser();
|
|
});
|
|
|
|
it('verifies sub key', async () => {
|
|
await expect(user.post(endpoint)).to.eventually.be.rejected.and.eql({
|
|
code: 400,
|
|
error: 'BadRequest',
|
|
message: t('missingSubscriptionCode'),
|
|
});
|
|
});
|
|
|
|
describe('success', () => {
|
|
let subscribeStub;
|
|
|
|
beforeEach(async () => {
|
|
subscribeStub = sinon.stub(applePayments, 'subscribe').resolves({});
|
|
});
|
|
|
|
afterEach(() => {
|
|
applePayments.subscribe.restore();
|
|
});
|
|
|
|
it('makes a purchase', async () => {
|
|
user = await generateUser({
|
|
'profile.name': 'sender',
|
|
'purchased.plan.customerId': 'customer-id',
|
|
'purchased.plan.planId': 'basic_3mo',
|
|
'purchased.plan.lastBillingDate': new Date(),
|
|
balance: 2,
|
|
});
|
|
|
|
const sku = 'com.habitrpg.ios.habitica.subscription.3month';
|
|
|
|
await user.post(endpoint, {
|
|
sku,
|
|
receipt: 'receipt',
|
|
});
|
|
|
|
expect(subscribeStub).to.be.calledOnce;
|
|
expect(subscribeStub.args[0][0]._id).to.eql(user._id);
|
|
expect(subscribeStub.args[0][1]).to.eql('receipt');
|
|
expect(subscribeStub.args[0][2]['x-api-key']).to.eql(user.apiToken);
|
|
expect(subscribeStub.args[0][2]['x-api-user']).to.eql(user._id);
|
|
});
|
|
});
|
|
});
|