forked from HabitRPG/habitica
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d6c8b0e
commit 82bf265
Showing
12 changed files
with
467 additions
and
17 deletions.
There are no files selected for viewing
Submodule habitica-images
updated
7 files
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,180 @@ | ||
import moment from 'moment'; | ||
|
||
import { | ||
generateGroup, | ||
} from '../../../../../helpers/api-unit.helper'; | ||
import { model as User } from '../../../../../../website/server/models/user'; | ||
import amzLib from '../../../../../../website/server/libs/payments/amazon'; | ||
import payments from '../../../../../../website/server/libs/payments/payments'; | ||
import common from '../../../../../../website/common'; | ||
import { createNonLeaderGroupMember } from '../paymentHelpers'; | ||
|
||
const { i18n } = common; | ||
|
||
describe('Amazon Payments - Cancel Subscription', () => { | ||
const subKey = 'basic_3mo'; | ||
|
||
let user; let group; let headers; let billingAgreementId; let subscriptionBlock; let | ||
subscriptionLength; | ||
let getBillingAgreementDetailsSpy; | ||
let paymentCancelSubscriptionSpy; | ||
|
||
function expectAmazonStubs () { | ||
expect(getBillingAgreementDetailsSpy).to.be.calledOnce; | ||
expect(getBillingAgreementDetailsSpy).to.be.calledWith({ | ||
AmazonBillingAgreementId: billingAgreementId, | ||
}); | ||
} | ||
|
||
function expectAmazonCancelSubscriptionSpy (groupId, lastBillingDate) { | ||
expect(paymentCancelSubscriptionSpy).to.be.calledWith({ | ||
user, | ||
groupId, | ||
nextBill: moment(lastBillingDate).add({ days: subscriptionLength }), | ||
paymentMethod: amzLib.constants.PAYMENT_METHOD, | ||
headers, | ||
cancellationReason: undefined, | ||
}); | ||
} | ||
|
||
function expectAmazonCancelUserSubscriptionSpy () { | ||
expect(paymentCancelSubscriptionSpy).to.be.calledOnce; | ||
expectAmazonCancelSubscriptionSpy(undefined, user.purchased.plan.lastBillingDate); | ||
} | ||
|
||
function expectAmazonCancelGroupSubscriptionSpy (groupId) { | ||
expect(paymentCancelSubscriptionSpy).to.be.calledOnce; | ||
expectAmazonCancelSubscriptionSpy(groupId, group.purchased.plan.lastBillingDate); | ||
} | ||
|
||
function expectBillingAggreementDetailSpy () { | ||
getBillingAgreementDetailsSpy = sinon.stub(amzLib, 'getBillingAgreementDetails') | ||
.resolves({ | ||
BillingAgreementDetails: { | ||
BillingAgreementStatus: { State: 'Open' }, | ||
}, | ||
}); | ||
} | ||
|
||
beforeEach(async () => { | ||
user = new User(); | ||
user.profile.name = 'sender'; | ||
user.purchased.plan.customerId = 'customer-id'; | ||
user.purchased.plan.planId = subKey; | ||
user.purchased.plan.lastBillingDate = new Date(); | ||
|
||
group = generateGroup({ | ||
name: 'test group', | ||
type: 'guild', | ||
privacy: 'public', | ||
leader: user._id, | ||
}); | ||
group.purchased.plan.customerId = 'customer-id'; | ||
group.purchased.plan.planId = subKey; | ||
group.purchased.plan.lastBillingDate = new Date(); | ||
await group.save(); | ||
|
||
subscriptionBlock = common.content.subscriptionBlocks[subKey]; | ||
subscriptionLength = subscriptionBlock.months * 30; | ||
|
||
headers = {}; | ||
|
||
getBillingAgreementDetailsSpy = sinon.stub(amzLib, 'getBillingAgreementDetails'); | ||
getBillingAgreementDetailsSpy.resolves({ | ||
BillingAgreementDetails: { | ||
BillingAgreementStatus: { State: 'Closed' }, | ||
}, | ||
}); | ||
|
||
paymentCancelSubscriptionSpy = sinon.stub(payments, 'cancelSubscription'); | ||
paymentCancelSubscriptionSpy.resolves({}); | ||
}); | ||
|
||
afterEach(() => { | ||
amzLib.getBillingAgreementDetails.restore(); | ||
payments.cancelSubscription.restore(); | ||
}); | ||
|
||
it('should throw an error if we are missing a subscription', async () => { | ||
user.purchased.plan.customerId = undefined; | ||
|
||
await expect(amzLib.cancelSubscription({ user })) | ||
.to.eventually.be.rejected.and.to.eql({ | ||
httpCode: 401, | ||
name: 'NotAuthorized', | ||
message: i18n.t('missingSubscription'), | ||
}); | ||
}); | ||
|
||
it('should cancel a user subscription', async () => { | ||
billingAgreementId = user.purchased.plan.customerId; | ||
|
||
await amzLib.cancelSubscription({ user, headers }); | ||
|
||
expectAmazonCancelUserSubscriptionSpy(); | ||
expectAmazonStubs(); | ||
}); | ||
|
||
it('should close a user subscription if amazon not closed', async () => { | ||
amzLib.getBillingAgreementDetails.restore(); | ||
expectBillingAggreementDetailSpy(); | ||
const closeBillingAgreementSpy = sinon.stub(amzLib, 'closeBillingAgreement').resolves({}); | ||
billingAgreementId = user.purchased.plan.customerId; | ||
|
||
await amzLib.cancelSubscription({ user, headers }); | ||
|
||
expectAmazonStubs(); | ||
expect(closeBillingAgreementSpy).to.be.calledOnce; | ||
expect(closeBillingAgreementSpy).to.be.calledWith({ | ||
AmazonBillingAgreementId: billingAgreementId, | ||
}); | ||
expectAmazonCancelUserSubscriptionSpy(); | ||
amzLib.closeBillingAgreement.restore(); | ||
}); | ||
|
||
it('should throw an error if group is not found', async () => { | ||
await expect(amzLib.cancelSubscription({ user, groupId: 'fake-id' })) | ||
.to.eventually.be.rejected.and.to.eql({ | ||
httpCode: 404, | ||
name: 'NotFound', | ||
message: i18n.t('groupNotFound'), | ||
}); | ||
}); | ||
|
||
it('should throw an error if user is not group leader', async () => { | ||
const nonLeader = await createNonLeaderGroupMember(group); | ||
|
||
await expect(amzLib.cancelSubscription({ user: nonLeader, groupId: group._id })) | ||
.to.eventually.be.rejected.and.to.eql({ | ||
httpCode: 401, | ||
name: 'NotAuthorized', | ||
message: i18n.t('onlyGroupLeaderCanManageSubscription'), | ||
}); | ||
}); | ||
|
||
it('should cancel a group subscription', async () => { | ||
billingAgreementId = group.purchased.plan.customerId; | ||
|
||
await amzLib.cancelSubscription({ user, groupId: group._id, headers }); | ||
|
||
expectAmazonCancelGroupSubscriptionSpy(group._id); | ||
expectAmazonStubs(); | ||
}); | ||
|
||
it('should close a group subscription if amazon not closed', async () => { | ||
amzLib.getBillingAgreementDetails.restore(); | ||
expectBillingAggreementDetailSpy(); | ||
const closeBillingAgreementSpy = sinon.stub(amzLib, 'closeBillingAgreement').resolves({}); | ||
billingAgreementId = group.purchased.plan.customerId; | ||
|
||
await amzLib.cancelSubscription({ user, groupId: group._id, headers }); | ||
|
||
expectAmazonStubs(); | ||
expect(closeBillingAgreementSpy).to.be.calledOnce; | ||
expect(closeBillingAgreementSpy).to.be.calledWith({ | ||
AmazonBillingAgreementId: billingAgreementId, | ||
}); | ||
expectAmazonCancelGroupSubscriptionSpy(group._id); | ||
amzLib.closeBillingAgreement.restore(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.