mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-13 20:57:24 +01:00
57 lines
1.7 KiB
JavaScript
57 lines
1.7 KiB
JavaScript
import {generateUser, translate as t} from '../../../../../helpers/api-integration/v3';
|
|
import googlePayments from '../../../../../../website/server/libs/payments/google';
|
|
|
|
describe('payments : google #subscribe', () => {
|
|
let endpoint = '/iap/android/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(googlePayments, 'subscribe').resolves({});
|
|
});
|
|
|
|
afterEach(() => {
|
|
googlePayments.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,
|
|
});
|
|
|
|
let sku = 'com.habitrpg.android.habitica.subscription.3month';
|
|
|
|
await user.post(endpoint, {
|
|
sku,
|
|
transaction: {receipt: 'receipt', signature: 'signature'},
|
|
});
|
|
|
|
expect(subscribeStub).to.be.calledOnce;
|
|
expect(subscribeStub.args[0][0]).to.eql(sku);
|
|
expect(subscribeStub.args[0][1]._id).to.eql(user._id);
|
|
expect(subscribeStub.args[0][2]).to.eql('receipt');
|
|
expect(subscribeStub.args[0][3]).to.eql('signature');
|
|
expect(subscribeStub.args[0][4]['x-api-key']).to.eql(user.apiToken);
|
|
expect(subscribeStub.args[0][4]['x-api-user']).to.eql(user._id);
|
|
});
|
|
});
|
|
});
|