2019-05-29 05:21:06 -04:00
|
|
|
/* eslint-disable
|
|
|
|
camelcase,
|
2020-12-15 05:23:54 -05:00
|
|
|
node/handle-callback-err,
|
2019-05-29 05:21:06 -04:00
|
|
|
max-len,
|
|
|
|
no-return-assign,
|
|
|
|
no-unused-vars,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
|
|
|
const { expect } = require('chai')
|
|
|
|
const sinon = require('sinon')
|
|
|
|
const crypto = require('crypto')
|
|
|
|
const querystring = require('querystring')
|
|
|
|
const modulePath = '../../../../app/src/Features/Subscription/RecurlyWrapper'
|
|
|
|
const SandboxedModule = require('sandboxed-module')
|
|
|
|
const tk = require('timekeeper')
|
2019-12-16 05:52:21 -05:00
|
|
|
const Errors = require('../../../../app/src/Features/Errors/Errors')
|
2019-08-22 07:57:50 -04:00
|
|
|
const SubscriptionErrors = require('../../../../app/src/Features/Subscription/Errors')
|
2019-05-29 05:21:06 -04:00
|
|
|
|
|
|
|
const fixtures = {
|
|
|
|
'subscriptions/44f83d7cba354d5b84812419f923ea96':
|
|
|
|
'<?xml version="1.0" encoding="UTF-8"?>' +
|
|
|
|
'<subscription href="https://api.recurly.com/v2/subscriptions/44f83d7cba354d5b84812419f923ea96">' +
|
|
|
|
' <account href="https://api.recurly.com/v2/accounts/104"/>' +
|
|
|
|
' <plan href="https://api.recurly.com/v2/plans/gold">' +
|
|
|
|
' <plan_code>gold</plan_code>' +
|
|
|
|
' <name>Gold plan</name>' +
|
|
|
|
' </plan>' +
|
|
|
|
' <uuid>44f83d7cba354d5b84812419f923ea96</uuid>' +
|
|
|
|
' <state>active</state>' +
|
|
|
|
' <unit_amount_in_cents type="integer">800</unit_amount_in_cents>' +
|
|
|
|
' <currency>EUR</currency>' +
|
|
|
|
' <quantity type="integer">1</quantity>' +
|
|
|
|
' <activated_at type="datetime">2011-05-27T07:00:00Z</activated_at>' +
|
|
|
|
' <canceled_at nil="nil"></canceled_at>' +
|
|
|
|
' <expires_at nil="nil"></expires_at>' +
|
|
|
|
' <current_period_started_at type="datetime">2011-06-27T07:00:00Z</current_period_started_at>' +
|
|
|
|
' <current_period_ends_at type="datetime">2011-07-27T07:00:00Z</current_period_ends_at>' +
|
|
|
|
' <trial_started_at nil="nil"></trial_started_at>' +
|
|
|
|
' <trial_ends_at nil="nil"></trial_ends_at>' +
|
|
|
|
' <subscription_add_ons type="array">' +
|
|
|
|
' <subscription_add_on>' +
|
|
|
|
' <add_on_code>ipaddresses</add_on_code>' +
|
|
|
|
' <quantity>10</quantity>' +
|
|
|
|
' <unit_amount_in_cents>150</unit_amount_in_cents>' +
|
|
|
|
' </subscription_add_on>' +
|
|
|
|
' </subscription_add_ons>' +
|
|
|
|
' <a name="cancel" href="https://api.recurly.com/v2/subscriptions/44f83d7cba354d5b84812419f923ea96/cancel" method="put"/>' +
|
|
|
|
' <a name="terminate" href="https://api.recurly.com/v2/subscriptions/44f83d7cba354d5b84812419f923ea96/terminate" method="put"/>' +
|
|
|
|
' <a name="postpone" href="https://api.recurly.com/v2/subscriptions/44f83d7cba354d5b84812419f923ea96/postpone" method="put"/>' +
|
|
|
|
'</subscription>',
|
|
|
|
'recurly_js/result/70db44b10f5f4b238669480c9903f6f5':
|
|
|
|
'<?xml version="1.0" encoding="UTF-8"?>' +
|
|
|
|
'<subscription href="https://api.recurly.com/v2/subscriptions/44f83d7cba354d5b84812419f923ea96">' +
|
|
|
|
' <account href="https://api.recurly.com/v2/accounts/104"/>' +
|
|
|
|
' <plan href="https://api.recurly.com/v2/plans/gold">' +
|
|
|
|
' <plan_code>gold</plan_code>' +
|
|
|
|
' <name>Gold plan</name>' +
|
|
|
|
' </plan>' +
|
|
|
|
' <uuid>44f83d7cba354d5b84812419f923ea96</uuid>' +
|
|
|
|
' <state>active</state>' +
|
|
|
|
' <unit_amount_in_cents type="integer">800</unit_amount_in_cents>' +
|
|
|
|
' <currency>EUR</currency>' +
|
|
|
|
' <quantity type="integer">1</quantity>' +
|
|
|
|
' <activated_at type="datetime">2011-05-27T07:00:00Z</activated_at>' +
|
|
|
|
' <canceled_at nil="nil"></canceled_at>' +
|
|
|
|
' <expires_at nil="nil"></expires_at>' +
|
|
|
|
' <current_period_started_at type="datetime">2011-06-27T07:00:00Z</current_period_started_at>' +
|
|
|
|
' <current_period_ends_at type="datetime">2011-07-27T07:00:00Z</current_period_ends_at>' +
|
|
|
|
' <trial_started_at nil="nil"></trial_started_at>' +
|
|
|
|
' <trial_ends_at nil="nil"></trial_ends_at>' +
|
|
|
|
' <subscription_add_ons type="array">' +
|
|
|
|
' <subscription_add_on>' +
|
|
|
|
' <add_on_code>ipaddresses</add_on_code>' +
|
|
|
|
' <quantity>10</quantity>' +
|
|
|
|
' <unit_amount_in_cents>150</unit_amount_in_cents>' +
|
|
|
|
' </subscription_add_on>' +
|
|
|
|
' </subscription_add_ons>' +
|
|
|
|
' <a name="cancel" href="https://api.recurly.com/v2/subscriptions/44f83d7cba354d5b84812419f923ea96/cancel" method="put"/>' +
|
|
|
|
' <a name="terminate" href="https://api.recurly.com/v2/subscriptions/44f83d7cba354d5b84812419f923ea96/terminate" method="put"/>' +
|
|
|
|
' <a name="postpone" href="https://api.recurly.com/v2/subscriptions/44f83d7cba354d5b84812419f923ea96/postpone" method="put"/>' +
|
|
|
|
'</subscription>',
|
|
|
|
'accounts/104':
|
|
|
|
'<?xml version="1.0" encoding="UTF-8"?>' +
|
|
|
|
'<account href="https://api.recurly.com/v2/accounts/104">' +
|
|
|
|
' <adjustments href="https://api.recurly.com/v2/accounts/1/adjustments"/>' +
|
|
|
|
' <billing_info href="https://api.recurly.com/v2/accounts/1/billing_info"/>' +
|
|
|
|
' <invoices href="https://api.recurly.com/v2/accounts/1/invoices"/>' +
|
|
|
|
' <redemption href="https://api.recurly.com/v2/accounts/1/redemption"/>' +
|
|
|
|
' <subscriptions href="https://api.recurly.com/v2/accounts/1/subscriptions"/>' +
|
|
|
|
' <transactions href="https://api.recurly.com/v2/accounts/1/transactions"/>' +
|
|
|
|
' <account_code>104</account_code>' +
|
|
|
|
' <state>active</state>' +
|
|
|
|
' <username nil="nil"></username>' +
|
|
|
|
' <email>verena@example.com</email>' +
|
|
|
|
' <first_name>Verena</first_name>' +
|
|
|
|
' <last_name>Example</last_name>' +
|
|
|
|
' <accept_language nil="nil"></accept_language>' +
|
|
|
|
' <hosted_login_token>a92468579e9c4231a6c0031c4716c01d</hosted_login_token>' +
|
|
|
|
' <created_at type="datetime">2011-10-25T12:00:00</created_at>' +
|
2021-04-27 03:52:58 -04:00
|
|
|
'</account>',
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
const mockApiRequest = function (options, callback) {
|
2019-05-29 05:21:06 -04:00
|
|
|
if (fixtures[options.url]) {
|
|
|
|
return callback(null, { statusCode: 200 }, fixtures[options.url])
|
|
|
|
} else {
|
2019-07-01 09:54:23 -04:00
|
|
|
return callback(new Error('Not found'), { statusCode: 404 })
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('RecurlyWrapper', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
let RecurlyWrapper
|
|
|
|
this.settings = {
|
|
|
|
plans: [
|
|
|
|
{
|
|
|
|
planCode: 'collaborator',
|
|
|
|
name: 'Collaborator',
|
|
|
|
features: {
|
|
|
|
collaborators: -1,
|
2021-04-27 03:52:58 -04:00
|
|
|
versioning: true,
|
|
|
|
},
|
|
|
|
},
|
2019-05-29 05:21:06 -04:00
|
|
|
],
|
|
|
|
defaultPlanCode: {
|
|
|
|
collaborators: 0,
|
2021-04-27 03:52:58 -04:00
|
|
|
versioning: false,
|
2019-05-29 05:21:06 -04:00
|
|
|
},
|
|
|
|
apis: {
|
|
|
|
recurly: {
|
|
|
|
apiKey: 'nonsense',
|
2021-04-27 03:52:58 -04:00
|
|
|
privateKey: 'private_nonsense',
|
|
|
|
},
|
|
|
|
},
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
tk.freeze(Date.now()) // freeze the time for these tests
|
|
|
|
return (this.RecurlyWrapper = RecurlyWrapper = SandboxedModule.require(
|
|
|
|
modulePath,
|
|
|
|
{
|
|
|
|
requires: {
|
|
|
|
'settings-sharelatex': this.settings,
|
2019-06-04 07:08:28 -04:00
|
|
|
request: sinon.stub(),
|
2021-04-27 03:52:58 -04:00
|
|
|
'./Errors': SubscriptionErrors,
|
|
|
|
},
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
))
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
afterEach(function () {
|
2019-08-07 10:04:04 -04:00
|
|
|
return tk.reset()
|
|
|
|
})
|
2019-05-29 05:21:06 -04:00
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('getSubscription', function () {
|
|
|
|
describe('with proper subscription id', function () {
|
|
|
|
beforeEach(function () {
|
2019-11-18 09:37:05 -05:00
|
|
|
this.apiRequest = sinon
|
|
|
|
.stub(this.RecurlyWrapper, 'apiRequest')
|
|
|
|
.callsFake(mockApiRequest)
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.RecurlyWrapper.getSubscription(
|
|
|
|
'44f83d7cba354d5b84812419f923ea96',
|
|
|
|
(error, recurlySubscription) => {
|
|
|
|
return (this.recurlySubscription = recurlySubscription)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
2021-04-14 09:17:21 -04:00
|
|
|
afterEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.RecurlyWrapper.apiRequest.restore()
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should look up the subscription at the normal API end point', function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.apiRequest.args[0][0].url.should.equal(
|
|
|
|
'subscriptions/44f83d7cba354d5b84812419f923ea96'
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should return the subscription', function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.recurlySubscription.uuid.should.equal(
|
|
|
|
'44f83d7cba354d5b84812419f923ea96'
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('with ReculyJS token', function () {
|
|
|
|
beforeEach(function () {
|
2019-11-18 09:37:05 -05:00
|
|
|
this.apiRequest = sinon
|
|
|
|
.stub(this.RecurlyWrapper, 'apiRequest')
|
|
|
|
.callsFake(mockApiRequest)
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.RecurlyWrapper.getSubscription(
|
|
|
|
'70db44b10f5f4b238669480c9903f6f5',
|
|
|
|
{ recurlyJsResult: true },
|
|
|
|
(error, recurlySubscription) => {
|
|
|
|
return (this.recurlySubscription = recurlySubscription)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
2021-04-14 09:17:21 -04:00
|
|
|
afterEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.RecurlyWrapper.apiRequest.restore()
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should return the subscription', function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.recurlySubscription.uuid.should.equal(
|
|
|
|
'44f83d7cba354d5b84812419f923ea96'
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should look up the subscription at the RecurlyJS API end point', function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.apiRequest.args[0][0].url.should.equal(
|
|
|
|
'recurly_js/result/70db44b10f5f4b238669480c9903f6f5'
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('with includeAccount', function () {
|
|
|
|
beforeEach(function () {
|
2019-11-18 09:37:05 -05:00
|
|
|
this.apiRequest = sinon
|
|
|
|
.stub(this.RecurlyWrapper, 'apiRequest')
|
|
|
|
.callsFake(mockApiRequest)
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.RecurlyWrapper.getSubscription(
|
|
|
|
'44f83d7cba354d5b84812419f923ea96',
|
|
|
|
{ includeAccount: true },
|
|
|
|
(error, recurlySubscription) => {
|
|
|
|
return (this.recurlySubscription = recurlySubscription)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
2021-04-14 09:17:21 -04:00
|
|
|
afterEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.RecurlyWrapper.apiRequest.restore()
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should request the account from the API', function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.apiRequest.args[1][0].url.should.equal('accounts/104')
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should populate the account attribute', function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.recurlySubscription.account.account_code.should.equal('104')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('updateAccountEmailAddress', function () {
|
|
|
|
beforeEach(function (done) {
|
2020-02-20 11:08:30 -05:00
|
|
|
this.recurlyAccountId = 'account-id-123'
|
|
|
|
this.newEmail = 'example@overleaf.com'
|
|
|
|
this.apiRequest = sinon
|
|
|
|
.stub(this.RecurlyWrapper, 'apiRequest')
|
|
|
|
.callsFake((options, callback) => {
|
|
|
|
this.requestOptions = options
|
|
|
|
callback(null, {}, fixtures['accounts/104'])
|
|
|
|
})
|
|
|
|
|
|
|
|
this.RecurlyWrapper.updateAccountEmailAddress(
|
|
|
|
this.recurlyAccountId,
|
|
|
|
this.newEmail,
|
|
|
|
(error, recurlyAccount) => {
|
|
|
|
this.recurlyAccount = recurlyAccount
|
|
|
|
done()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
afterEach(function () {
|
2020-02-20 11:08:30 -05:00
|
|
|
return this.RecurlyWrapper.apiRequest.restore()
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('sends correct XML', function () {
|
2020-02-20 11:08:30 -05:00
|
|
|
this.apiRequest.called.should.equal(true)
|
|
|
|
const { body } = this.apiRequest.lastCall.args[0]
|
|
|
|
expect(body).to.equal(`\
|
|
|
|
<account>
|
|
|
|
<email>example@overleaf.com</email>
|
|
|
|
</account>\
|
|
|
|
`)
|
|
|
|
this.requestOptions.url.should.equal(`accounts/${this.recurlyAccountId}`)
|
|
|
|
this.requestOptions.method.should.equal('PUT')
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should return the updated account', function () {
|
2021-03-31 08:20:55 -04:00
|
|
|
expect(this.recurlyAccount).to.exist
|
2020-02-20 11:08:30 -05:00
|
|
|
this.recurlyAccount.account_code.should.equal('104')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('updateSubscription', function () {
|
|
|
|
beforeEach(function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.recurlySubscriptionId = 'subscription-id-123'
|
2019-11-18 09:37:05 -05:00
|
|
|
this.apiRequest = sinon
|
|
|
|
.stub(this.RecurlyWrapper, 'apiRequest')
|
|
|
|
.callsFake((options, callback) => {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.requestOptions = options
|
|
|
|
return callback(
|
|
|
|
null,
|
|
|
|
{},
|
|
|
|
fixtures['subscriptions/44f83d7cba354d5b84812419f923ea96']
|
|
|
|
)
|
2019-11-18 09:37:05 -05:00
|
|
|
})
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.RecurlyWrapper.updateSubscription(
|
|
|
|
this.recurlySubscriptionId,
|
|
|
|
{ plan_code: 'silver', timeframe: 'now' },
|
|
|
|
(error, recurlySubscription) => {
|
|
|
|
this.recurlySubscription = recurlySubscription
|
|
|
|
return done()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
2021-04-14 09:17:21 -04:00
|
|
|
afterEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.RecurlyWrapper.apiRequest.restore()
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('sends correct XML', function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.apiRequest.called.should.equal(true)
|
2019-06-04 07:08:28 -04:00
|
|
|
const { body } = this.apiRequest.lastCall.args[0]
|
|
|
|
expect(body).to.equal(`\
|
2019-05-29 05:21:06 -04:00
|
|
|
<subscription>
|
2019-06-04 07:08:28 -04:00
|
|
|
<plan_code>silver</plan_code>
|
|
|
|
<timeframe>now</timeframe>
|
2019-05-29 05:21:06 -04:00
|
|
|
</subscription>\
|
|
|
|
`)
|
|
|
|
this.requestOptions.url.should.equal(
|
|
|
|
`subscriptions/${this.recurlySubscriptionId}`
|
|
|
|
)
|
|
|
|
return this.requestOptions.method.should.equal('put')
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should return the updated subscription', function () {
|
2021-03-31 08:20:55 -04:00
|
|
|
expect(this.recurlySubscription).to.exist
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.recurlySubscription.plan.plan_code.should.equal('gold')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('redeemCoupon', function () {
|
|
|
|
beforeEach(function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.recurlyAccountId = 'account-id-123'
|
|
|
|
this.coupon_code = '312321312'
|
2019-11-18 09:37:05 -05:00
|
|
|
this.apiRequest = sinon
|
|
|
|
.stub(this.RecurlyWrapper, 'apiRequest')
|
|
|
|
.callsFake((options, callback) => {
|
2019-05-29 05:21:06 -04:00
|
|
|
options.url.should.equal(`coupons/${this.coupon_code}/redeem`)
|
|
|
|
options.method.should.equal('post')
|
|
|
|
return callback()
|
2019-11-18 09:37:05 -05:00
|
|
|
})
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.RecurlyWrapper.redeemCoupon(
|
|
|
|
this.recurlyAccountId,
|
|
|
|
this.coupon_code,
|
|
|
|
done
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
afterEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.RecurlyWrapper.apiRequest.restore()
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('sends correct XML', function () {
|
2019-06-04 07:08:28 -04:00
|
|
|
this.apiRequest.called.should.equal(true)
|
|
|
|
const { body } = this.apiRequest.lastCall.args[0]
|
|
|
|
return expect(body).to.equal(`\
|
|
|
|
<redemption>
|
|
|
|
<account_code>account-id-123</account_code>
|
|
|
|
<currency>USD</currency>
|
|
|
|
</redemption>\
|
|
|
|
`)
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('createFixedAmmountCoupon', function () {
|
|
|
|
beforeEach(function (done) {
|
2019-06-04 07:08:28 -04:00
|
|
|
this.couponCode = 'a-coupon-code'
|
|
|
|
this.couponName = 'a-coupon-name'
|
|
|
|
this.currencyCode = 'EUR'
|
|
|
|
this.discount = 1337
|
|
|
|
this.planCode = 'a-plan-code'
|
2019-11-18 09:37:05 -05:00
|
|
|
this.apiRequest = sinon
|
|
|
|
.stub(this.RecurlyWrapper, 'apiRequest')
|
|
|
|
.callsFake((options, callback) => {
|
2019-06-04 07:08:28 -04:00
|
|
|
return callback()
|
2019-11-18 09:37:05 -05:00
|
|
|
})
|
2019-06-04 07:08:28 -04:00
|
|
|
return this.RecurlyWrapper.createFixedAmmountCoupon(
|
|
|
|
this.couponCode,
|
|
|
|
this.couponName,
|
|
|
|
this.currencyCode,
|
|
|
|
this.discount,
|
|
|
|
this.planCode,
|
|
|
|
done
|
|
|
|
)
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
afterEach(function () {
|
2019-06-04 07:08:28 -04:00
|
|
|
return this.RecurlyWrapper.apiRequest.restore()
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('sends correct XML', function () {
|
2019-06-04 07:08:28 -04:00
|
|
|
this.apiRequest.called.should.equal(true)
|
|
|
|
const { body } = this.apiRequest.lastCall.args[0]
|
|
|
|
return expect(body).to.equal(`\
|
|
|
|
<coupon>
|
|
|
|
<coupon_code>a-coupon-code</coupon_code>
|
|
|
|
<name>a-coupon-name</name>
|
|
|
|
<discount_type>dollars</discount_type>
|
|
|
|
<discount_in_cents>
|
|
|
|
<EUR>1337</EUR>
|
|
|
|
</discount_in_cents>
|
|
|
|
<plan_codes>
|
|
|
|
<plan_code>a-plan-code</plan_code>
|
|
|
|
</plan_codes>
|
|
|
|
<applies_to_all_plans>false</applies_to_all_plans>
|
|
|
|
</coupon>\
|
|
|
|
`)
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('createSubscription', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.user = {
|
|
|
|
_id: 'some_id',
|
2021-04-27 03:52:58 -04:00
|
|
|
email: 'user@example.com',
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
this.subscriptionDetails = {
|
|
|
|
currencyCode: 'EUR',
|
|
|
|
plan_code: 'some_plan_code',
|
|
|
|
coupon_code: '',
|
|
|
|
isPaypal: true,
|
|
|
|
address: {
|
|
|
|
address1: 'addr_one',
|
|
|
|
address2: 'addr_two',
|
|
|
|
country: 'some_country',
|
|
|
|
state: 'some_state',
|
2021-04-27 03:52:58 -04:00
|
|
|
zip: 'some_zip',
|
|
|
|
},
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
this.subscription = {}
|
2019-08-22 07:57:50 -04:00
|
|
|
this.recurlyTokenIds = {
|
|
|
|
billing: 'a-token-id',
|
2021-04-27 03:52:58 -04:00
|
|
|
threeDSecureActionResult: 'a-3d-token-id',
|
2019-08-22 07:57:50 -04:00
|
|
|
}
|
2019-05-29 05:21:06 -04:00
|
|
|
return (this.call = callback => {
|
|
|
|
return this.RecurlyWrapper.createSubscription(
|
|
|
|
this.user,
|
|
|
|
this.subscriptionDetails,
|
2019-08-22 07:57:50 -04:00
|
|
|
this.recurlyTokenIds,
|
2019-05-29 05:21:06 -04:00
|
|
|
callback
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when paypal', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.subscriptionDetails.isPaypal = true
|
|
|
|
this._createPaypalSubscription = sinon.stub(
|
|
|
|
this.RecurlyWrapper,
|
|
|
|
'_createPaypalSubscription'
|
|
|
|
)
|
|
|
|
return this._createPaypalSubscription.callsArgWith(
|
|
|
|
3,
|
|
|
|
null,
|
|
|
|
this.subscription
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
afterEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this._createPaypalSubscription.restore()
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should not produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
expect(err).to.equal(null)
|
|
|
|
expect(err).to.not.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce a subscription object', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
expect(sub).to.deep.equal(this.subscription)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should call _createPaypalSubscription', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
this._createPaypalSubscription.callCount.should.equal(1)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when _createPaypalSubscription produces an error', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this._createPaypalSubscription.callsArgWith(
|
|
|
|
3,
|
|
|
|
new Error('woops')
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
expect(err).to.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when not paypal', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.subscriptionDetails.isPaypal = false
|
|
|
|
this._createCreditCardSubscription = sinon.stub(
|
|
|
|
this.RecurlyWrapper,
|
|
|
|
'_createCreditCardSubscription'
|
|
|
|
)
|
|
|
|
return this._createCreditCardSubscription.callsArgWith(
|
|
|
|
3,
|
|
|
|
null,
|
|
|
|
this.subscription
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
afterEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this._createCreditCardSubscription.restore()
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should not produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
expect(err).to.equal(null)
|
|
|
|
expect(err).to.not.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce a subscription object', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
expect(sub).to.deep.equal(this.subscription)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should call _createCreditCardSubscription', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
this._createCreditCardSubscription.callCount.should.equal(1)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when _createCreditCardSubscription produces an error', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this._createCreditCardSubscription.callsArgWith(
|
|
|
|
3,
|
|
|
|
new Error('woops')
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
expect(err).to.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('_createCreditCardSubscription', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.user = {
|
|
|
|
_id: 'some_id',
|
2019-06-04 07:10:29 -04:00
|
|
|
email: 'user@example.com',
|
|
|
|
first_name: 'Foo',
|
2021-04-27 03:52:58 -04:00
|
|
|
last_name: 'Johnson',
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
this.subscriptionDetails = {
|
|
|
|
currencyCode: 'EUR',
|
|
|
|
plan_code: 'some_plan_code',
|
|
|
|
coupon_code: '',
|
|
|
|
isPaypal: true,
|
2019-06-04 07:10:29 -04:00
|
|
|
first_name: 'Prairie',
|
2019-05-29 05:21:06 -04:00
|
|
|
address: {
|
|
|
|
address1: 'addr_one',
|
|
|
|
address2: 'addr_two',
|
|
|
|
country: 'some_country',
|
|
|
|
state: 'some_state',
|
2021-04-27 03:52:58 -04:00
|
|
|
zip: 'some_zip',
|
2019-10-25 04:22:23 -04:00
|
|
|
},
|
|
|
|
ITMCampaign: 'itm-campaign-value',
|
2021-04-27 03:52:58 -04:00
|
|
|
ITMContent: 'itm-content-value',
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
this.subscription = {}
|
2019-08-22 07:57:50 -04:00
|
|
|
this.recurlyTokenIds = {
|
|
|
|
billing: 'a-token-id',
|
2021-04-27 03:52:58 -04:00
|
|
|
threeDSecureActionResult: 'a-3d-token-id',
|
2019-08-22 07:57:50 -04:00
|
|
|
}
|
2019-05-29 05:21:06 -04:00
|
|
|
this.apiRequest = sinon.stub(this.RecurlyWrapper, 'apiRequest')
|
|
|
|
this.response = { statusCode: 200 }
|
|
|
|
this.body = '<xml>is_bad</xml>'
|
|
|
|
this.apiRequest.callsArgWith(1, null, this.response, this.body)
|
|
|
|
this._parseSubscriptionXml = sinon.stub(
|
|
|
|
this.RecurlyWrapper,
|
|
|
|
'_parseSubscriptionXml'
|
|
|
|
)
|
|
|
|
this._parseSubscriptionXml.callsArgWith(1, null, this.subscription)
|
|
|
|
return (this.call = callback => {
|
|
|
|
return this.RecurlyWrapper._createCreditCardSubscription(
|
|
|
|
this.user,
|
|
|
|
this.subscriptionDetails,
|
2019-08-22 07:57:50 -04:00
|
|
|
this.recurlyTokenIds,
|
2019-05-29 05:21:06 -04:00
|
|
|
callback
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
afterEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.apiRequest.restore()
|
|
|
|
return this._parseSubscriptionXml.restore()
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('sends correct XML', function (done) {
|
2019-06-04 07:08:28 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
const { body } = this.apiRequest.lastCall.args[0]
|
|
|
|
expect(body).to.equal(`\
|
|
|
|
<subscription>
|
|
|
|
<plan_code>some_plan_code</plan_code>
|
|
|
|
<currency>EUR</currency>
|
|
|
|
<coupon_code/>
|
|
|
|
<account>
|
|
|
|
<account_code>some_id</account_code>
|
|
|
|
<email>user@example.com</email>
|
2019-06-04 07:10:29 -04:00
|
|
|
<first_name>Prairie</first_name>
|
|
|
|
<last_name>Johnson</last_name>
|
2019-06-04 07:08:28 -04:00
|
|
|
<billing_info>
|
|
|
|
<token_id>a-token-id</token_id>
|
2019-08-22 07:57:50 -04:00
|
|
|
<three_d_secure_action_result_token_id>a-3d-token-id</three_d_secure_action_result_token_id>
|
2019-06-04 07:08:28 -04:00
|
|
|
</billing_info>
|
|
|
|
</account>
|
2019-10-25 04:22:23 -04:00
|
|
|
<custom_fields>
|
|
|
|
<custom_field>
|
|
|
|
<name>itm_campaign</name>
|
|
|
|
<value>itm-campaign-value</value>
|
|
|
|
</custom_field>
|
|
|
|
<custom_field>
|
|
|
|
<name>itm_content</name>
|
|
|
|
<value>itm-content-value</value>
|
|
|
|
</custom_field>
|
|
|
|
</custom_fields>
|
2019-06-04 07:08:28 -04:00
|
|
|
</subscription>\
|
|
|
|
`)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should not produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
expect(err).to.not.be.instanceof(Error)
|
|
|
|
expect(err).to.equal(null)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce a subscription', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
expect(sub).to.equal(this.subscription)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should call apiRequest', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
this.apiRequest.callCount.should.equal(1)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should call _parseSubscriptionXml', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
this._parseSubscriptionXml.callCount.should.equal(1)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when api request returns 422', function () {
|
|
|
|
beforeEach(function () {
|
2019-08-22 07:57:50 -04:00
|
|
|
const body = `\
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<errors>
|
|
|
|
<transaction_error>
|
|
|
|
<error_code>three_d_secure_action_required</error_code>
|
|
|
|
<error_category>3d_secure_action_required</error_category>
|
|
|
|
<merchant_message>Your payment gateway is requesting that the transaction be completed with 3D Secure in accordance with PSD2.</merchant_message>
|
|
|
|
<customer_message>Your card must be authenticated with 3D Secure before continuing.</customer_message>
|
|
|
|
<gateway_error_code nil="nil"></gateway_error_code>
|
|
|
|
<three_d_secure_action_token_id>mock_three_d_secure_action_token</three_d_secure_action_token_id>
|
|
|
|
</transaction_error>
|
|
|
|
<error field="subscription.account.base" symbol="three_d_secure_action_required">Your card must be authenticated with 3D Secure before continuing.</error>
|
|
|
|
</errors>
|
|
|
|
`
|
|
|
|
this.apiRequest.yields(null, { statusCode: 422 }, body)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce an error', function (done) {
|
2019-08-22 07:57:50 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
expect(err).to.be.instanceof(
|
|
|
|
SubscriptionErrors.RecurlyTransactionError
|
|
|
|
)
|
|
|
|
expect(err.info.public.message).to.be.equal(
|
|
|
|
'Your card must be authenticated with 3D Secure before continuing.'
|
|
|
|
)
|
|
|
|
expect(err.info.public.threeDSecureActionTokenId).to.be.equal(
|
|
|
|
'mock_three_d_secure_action_token'
|
|
|
|
)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when api request produces an error', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.apiRequest.callsArgWith(1, new Error('woops'))
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
expect(err).to.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should call apiRequest', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
this.apiRequest.callCount.should.equal(1)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should not _parseSubscriptionXml', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
this._parseSubscriptionXml.callCount.should.equal(0)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when parse xml produces an error', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this._parseSubscriptionXml.callsArgWith(1, new Error('woops'))
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
expect(err).to.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('_createPaypalSubscription', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.checkAccountExists = sinon.stub(
|
|
|
|
this.RecurlyWrapper._paypal,
|
|
|
|
'checkAccountExists'
|
|
|
|
)
|
|
|
|
this.createAccount = sinon.stub(
|
|
|
|
this.RecurlyWrapper._paypal,
|
|
|
|
'createAccount'
|
|
|
|
)
|
|
|
|
this.createBillingInfo = sinon.stub(
|
|
|
|
this.RecurlyWrapper._paypal,
|
|
|
|
'createBillingInfo'
|
|
|
|
)
|
2020-04-29 08:43:45 -04:00
|
|
|
this.setAddressAndCompanyBillingInfo = sinon.stub(
|
|
|
|
this.RecurlyWrapper._paypal,
|
|
|
|
'setAddressAndCompanyBillingInfo'
|
|
|
|
)
|
2019-05-29 05:21:06 -04:00
|
|
|
this.createSubscription = sinon.stub(
|
|
|
|
this.RecurlyWrapper._paypal,
|
|
|
|
'createSubscription'
|
|
|
|
)
|
|
|
|
this.user = {
|
|
|
|
_id: 'some_id',
|
2021-04-27 03:52:58 -04:00
|
|
|
email: 'user@example.com',
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
this.subscriptionDetails = {
|
|
|
|
currencyCode: 'EUR',
|
|
|
|
plan_code: 'some_plan_code',
|
|
|
|
coupon_code: '',
|
|
|
|
isPaypal: true,
|
|
|
|
address: {
|
|
|
|
address1: 'addr_one',
|
|
|
|
address2: 'addr_two',
|
|
|
|
country: 'some_country',
|
|
|
|
state: 'some_state',
|
2021-04-27 03:52:58 -04:00
|
|
|
zip: 'some_zip',
|
|
|
|
},
|
2019-05-29 05:21:06 -04:00
|
|
|
}
|
|
|
|
this.subscription = {}
|
2019-08-22 07:57:50 -04:00
|
|
|
this.recurlyTokenIds = {
|
|
|
|
billing: 'a-token-id',
|
2021-04-27 03:52:58 -04:00
|
|
|
threeDSecureActionResult: 'a-3d-token-id',
|
2019-08-22 07:57:50 -04:00
|
|
|
}
|
2019-05-29 05:21:06 -04:00
|
|
|
|
|
|
|
// set up data callbacks
|
|
|
|
const { user } = this
|
|
|
|
const { subscriptionDetails } = this
|
2019-08-22 07:57:50 -04:00
|
|
|
const { recurlyTokenIds } = this
|
2019-05-29 05:21:06 -04:00
|
|
|
|
|
|
|
this.checkAccountExists.callsArgWith(1, null, {
|
|
|
|
user,
|
|
|
|
subscriptionDetails,
|
2019-08-22 07:57:50 -04:00
|
|
|
recurlyTokenIds,
|
2019-05-29 05:21:06 -04:00
|
|
|
userExists: false,
|
2021-04-27 03:52:58 -04:00
|
|
|
account: { accountCode: 'xx' },
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
this.createAccount.callsArgWith(1, null, {
|
|
|
|
user,
|
|
|
|
subscriptionDetails,
|
2019-08-22 07:57:50 -04:00
|
|
|
recurlyTokenIds,
|
2019-05-29 05:21:06 -04:00
|
|
|
userExists: false,
|
2021-04-27 03:52:58 -04:00
|
|
|
account: { accountCode: 'xx' },
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
this.createBillingInfo.callsArgWith(1, null, {
|
|
|
|
user,
|
|
|
|
subscriptionDetails,
|
2019-08-22 07:57:50 -04:00
|
|
|
recurlyTokenIds,
|
2019-05-29 05:21:06 -04:00
|
|
|
userExists: false,
|
|
|
|
account: { accountCode: 'xx' },
|
2021-04-27 03:52:58 -04:00
|
|
|
billingInfo: { token_id: 'abc' },
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
2020-04-29 08:43:45 -04:00
|
|
|
this.setAddressAndCompanyBillingInfo.callsArgWith(1, null, {
|
2019-05-29 05:21:06 -04:00
|
|
|
user,
|
|
|
|
subscriptionDetails,
|
2019-08-22 07:57:50 -04:00
|
|
|
recurlyTokenIds,
|
2019-05-29 05:21:06 -04:00
|
|
|
userExists: false,
|
|
|
|
account: { accountCode: 'xx' },
|
2021-04-27 03:52:58 -04:00
|
|
|
billingInfo: { token_id: 'abc' },
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
this.createSubscription.callsArgWith(1, null, {
|
|
|
|
user,
|
|
|
|
subscriptionDetails,
|
2019-08-22 07:57:50 -04:00
|
|
|
recurlyTokenIds,
|
2019-05-29 05:21:06 -04:00
|
|
|
userExists: false,
|
|
|
|
account: { accountCode: 'xx' },
|
|
|
|
billingInfo: { token_id: 'abc' },
|
2021-04-27 03:52:58 -04:00
|
|
|
subscription: this.subscription,
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
return (this.call = callback => {
|
|
|
|
return this.RecurlyWrapper._createPaypalSubscription(
|
|
|
|
this.user,
|
|
|
|
this.subscriptionDetails,
|
2019-08-22 07:57:50 -04:00
|
|
|
this.recurlyTokenIds,
|
2019-05-29 05:21:06 -04:00
|
|
|
callback
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
afterEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.checkAccountExists.restore()
|
|
|
|
this.createAccount.restore()
|
|
|
|
this.createBillingInfo.restore()
|
2020-04-29 08:43:45 -04:00
|
|
|
this.setAddressAndCompanyBillingInfo.restore()
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.createSubscription.restore()
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should not produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
expect(err).to.not.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce a subscription object', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
expect(sub).to.not.equal(null)
|
|
|
|
expect(sub).to.equal(this.subscription)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should call each of the paypal stages', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
this.checkAccountExists.callCount.should.equal(1)
|
|
|
|
this.createAccount.callCount.should.equal(1)
|
|
|
|
this.createBillingInfo.callCount.should.equal(1)
|
2020-04-29 08:43:45 -04:00
|
|
|
this.setAddressAndCompanyBillingInfo.callCount.should.equal(1)
|
2019-05-29 05:21:06 -04:00
|
|
|
this.createSubscription.callCount.should.equal(1)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when one of the paypal stages produces an error', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.createAccount.callsArgWith(1, new Error('woops'))
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
expect(err).to.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should stop calling the paypal stages after the error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, sub) => {
|
|
|
|
this.checkAccountExists.callCount.should.equal(1)
|
|
|
|
this.createAccount.callCount.should.equal(1)
|
|
|
|
this.createBillingInfo.callCount.should.equal(0)
|
2020-04-29 08:43:45 -04:00
|
|
|
this.setAddressAndCompanyBillingInfo.callCount.should.equal(0)
|
2019-05-29 05:21:06 -04:00
|
|
|
this.createSubscription.callCount.should.equal(0)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('paypal actions', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.apiRequest = sinon.stub(this.RecurlyWrapper, 'apiRequest')
|
|
|
|
this._parseAccountXml = sinon.spy(this.RecurlyWrapper, '_parseAccountXml')
|
|
|
|
this._parseBillingInfoXml = sinon.spy(
|
|
|
|
this.RecurlyWrapper,
|
|
|
|
'_parseBillingInfoXml'
|
|
|
|
)
|
|
|
|
this._parseSubscriptionXml = sinon.spy(
|
|
|
|
this.RecurlyWrapper,
|
|
|
|
'_parseSubscriptionXml'
|
|
|
|
)
|
|
|
|
return (this.cache = {
|
2019-06-04 07:08:28 -04:00
|
|
|
user: (this.user = {
|
|
|
|
_id: 'some_id',
|
|
|
|
email: 'foo@bar.com',
|
|
|
|
first_name: 'Foo',
|
2021-04-27 03:52:58 -04:00
|
|
|
last_name: 'Bar',
|
2019-06-04 07:08:28 -04:00
|
|
|
}),
|
2019-08-22 07:57:50 -04:00
|
|
|
recurlyTokenIds: (this.recurlyTokenIds = {
|
|
|
|
billing: 'a-token-id',
|
2021-04-27 03:52:58 -04:00
|
|
|
threeDSecureActionResult: 'a-3d-token-id',
|
2019-08-22 07:57:50 -04:00
|
|
|
}),
|
2019-05-29 05:21:06 -04:00
|
|
|
subscriptionDetails: (this.subscriptionDetails = {
|
|
|
|
currencyCode: 'EUR',
|
|
|
|
plan_code: 'some_plan_code',
|
|
|
|
coupon_code: '',
|
|
|
|
isPaypal: true,
|
|
|
|
address: {
|
|
|
|
address1: 'addr_one',
|
|
|
|
address2: 'addr_two',
|
2019-06-04 07:08:28 -04:00
|
|
|
city: 'some_city',
|
2019-05-29 05:21:06 -04:00
|
|
|
country: 'some_country',
|
|
|
|
state: 'some_state',
|
2021-04-27 03:52:58 -04:00
|
|
|
zip: 'some_zip',
|
2019-10-25 04:22:23 -04:00
|
|
|
},
|
|
|
|
ITMCampaign: 'itm-campaign-value',
|
2021-04-27 03:52:58 -04:00
|
|
|
ITMContent: 'itm-content-value',
|
|
|
|
}),
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
afterEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.apiRequest.restore()
|
|
|
|
this._parseAccountXml.restore()
|
|
|
|
this._parseBillingInfoXml.restore()
|
|
|
|
return this._parseSubscriptionXml.restore()
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('_paypal.checkAccountExists', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return (this.call = callback => {
|
|
|
|
return this.RecurlyWrapper._paypal.checkAccountExists(
|
|
|
|
this.cache,
|
|
|
|
callback
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when the account exists', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
const resultXml =
|
|
|
|
'<account><account_code>abc</account_code></account>'
|
|
|
|
return this.apiRequest.callsArgWith(
|
|
|
|
1,
|
|
|
|
null,
|
|
|
|
{ statusCode: 200 },
|
|
|
|
resultXml
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should not produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(err).to.not.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should call apiRequest', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
this.apiRequest.callCount.should.equal(1)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should call _parseAccountXml', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
this.RecurlyWrapper._parseAccountXml.callCount.should.equal(1)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should add the account to the cumulative result', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(result.account).to.not.equal(null)
|
|
|
|
expect(result.account).to.not.equal(undefined)
|
|
|
|
expect(result.account).to.deep.equal({
|
2021-04-27 03:52:58 -04:00
|
|
|
account_code: 'abc',
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should set userExists to true', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(result.userExists).to.equal(true)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when the account does not exist', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.apiRequest.callsArgWith(1, null, { statusCode: 404 }, '')
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should not produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(err).to.not.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should call apiRequest', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
this.apiRequest.callCount.should.equal(1)
|
|
|
|
this.apiRequest.firstCall.args[0].method.should.equal('GET')
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should not call _parseAccountXml', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
this.RecurlyWrapper._parseAccountXml.callCount.should.equal(0)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should not add the account to result', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(result.account).to.equal(undefined)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should set userExists to false', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(result.userExists).to.equal(false)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when apiRequest produces an error', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.apiRequest.callsArgWith(1, new Error('woops'), {
|
2021-04-27 03:52:58 -04:00
|
|
|
statusCode: 500,
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(err).to.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('_paypal.createAccount', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return (this.call = callback => {
|
|
|
|
return this.RecurlyWrapper._paypal.createAccount(this.cache, callback)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when address is missing from subscriptionDetails', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return (this.cache.subscriptionDetails.address = null)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(err).to.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when country is missing from address', function () {
|
|
|
|
beforeEach(function () {
|
2019-12-16 05:52:21 -05:00
|
|
|
return (this.cache.subscriptionDetails.address = {})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce an error', function (done) {
|
2019-12-16 05:52:21 -05:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(err).to.be.instanceof(Errors.InvalidError)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when account already exists', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.cache.userExists = true
|
|
|
|
return (this.cache.account = { account_code: 'abc' })
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should not produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(err).to.not.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce cache object', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(result).to.deep.equal(this.cache)
|
|
|
|
expect(result.account).to.deep.equal({
|
2021-04-27 03:52:58 -04:00
|
|
|
account_code: 'abc',
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should not call apiRequest', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
this.apiRequest.callCount.should.equal(0)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should not call _parseAccountXml', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
this.RecurlyWrapper._parseAccountXml.callCount.should.equal(0)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when account does not exist', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.cache.userExists = false
|
|
|
|
const resultXml =
|
|
|
|
'<account><account_code>abc</account_code></account>'
|
|
|
|
return this.apiRequest.callsArgWith(
|
|
|
|
1,
|
|
|
|
null,
|
|
|
|
{ statusCode: 200 },
|
|
|
|
resultXml
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('sends correct XML', function (done) {
|
2019-06-04 07:08:28 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
const { body } = this.apiRequest.lastCall.args[0]
|
|
|
|
expect(body).to.equal(`\
|
|
|
|
<account>
|
|
|
|
<account_code>some_id</account_code>
|
|
|
|
<email>foo@bar.com</email>
|
|
|
|
<first_name>Foo</first_name>
|
|
|
|
<last_name>Bar</last_name>
|
|
|
|
<address>
|
|
|
|
<address1>addr_one</address1>
|
|
|
|
<address2>addr_two</address2>
|
|
|
|
<city>some_city</city>
|
|
|
|
<state>some_state</state>
|
|
|
|
<zip>some_zip</zip>
|
|
|
|
<country>some_country</country>
|
|
|
|
</address>
|
|
|
|
</account>\
|
|
|
|
`)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should not produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(err).to.not.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should call apiRequest', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
this.apiRequest.callCount.should.equal(1)
|
|
|
|
this.apiRequest.firstCall.args[0].method.should.equal('POST')
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should call _parseAccountXml', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
this.RecurlyWrapper._parseAccountXml.callCount.should.equal(1)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when apiRequest produces an error', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.apiRequest.callsArgWith(1, new Error('woops'), {
|
2021-04-27 03:52:58 -04:00
|
|
|
statusCode: 500,
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(err).to.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('_paypal.createBillingInfo', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.cache.account = { account_code: 'abc' }
|
|
|
|
return (this.call = callback => {
|
|
|
|
return this.RecurlyWrapper._paypal.createBillingInfo(
|
|
|
|
this.cache,
|
|
|
|
callback
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when account_code is missing from cache', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return (this.cache.account.account_code = null)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(err).to.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when all goes well', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
const resultXml = '<billing_info><a>1</a></billing_info>'
|
|
|
|
return this.apiRequest.callsArgWith(
|
|
|
|
1,
|
|
|
|
null,
|
|
|
|
{ statusCode: 200 },
|
|
|
|
resultXml
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('sends correct XML', function (done) {
|
2019-06-04 07:08:28 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
const { body } = this.apiRequest.lastCall.args[0]
|
|
|
|
expect(body).to.equal(`\
|
|
|
|
<billing_info>
|
2019-08-22 07:57:50 -04:00
|
|
|
<token_id>a-token-id</token_id>
|
2019-06-04 07:08:28 -04:00
|
|
|
</billing_info>\
|
|
|
|
`)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should not produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(err).to.not.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should call apiRequest', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
this.apiRequest.callCount.should.equal(1)
|
|
|
|
this.apiRequest.firstCall.args[0].method.should.equal('POST')
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should call _parseBillingInfoXml', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
this.RecurlyWrapper._parseBillingInfoXml.callCount.should.equal(1)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should set billingInfo on cache', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(result.billingInfo).to.deep.equal({
|
2021-04-27 03:52:58 -04:00
|
|
|
a: '1',
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when apiRequest produces an error', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.apiRequest.callsArgWith(1, new Error('woops'), {
|
2021-04-27 03:52:58 -04:00
|
|
|
statusCode: 500,
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(err).to.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('_paypal.setAddressAndCompanyBillingInfo', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.cache.account = { account_code: 'abc' }
|
|
|
|
this.cache.billingInfo = {}
|
|
|
|
return (this.call = callback => {
|
2020-04-29 08:43:45 -04:00
|
|
|
return this.RecurlyWrapper._paypal.setAddressAndCompanyBillingInfo(
|
|
|
|
this.cache,
|
|
|
|
callback
|
|
|
|
)
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when account_code is missing from cache', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return (this.cache.account.account_code = null)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(err).to.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when country is missing', function () {
|
|
|
|
beforeEach(function () {
|
2019-12-16 05:52:21 -05:00
|
|
|
return (this.cache.subscriptionDetails.address = { country: '' })
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
2019-12-16 05:52:21 -05:00
|
|
|
expect(err).to.be.instanceof(Errors.InvalidError)
|
2019-05-29 05:21:06 -04:00
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when all goes well', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
const resultXml = '<billing_info><city>London</city></billing_info>'
|
|
|
|
return this.apiRequest.callsArgWith(
|
|
|
|
1,
|
|
|
|
null,
|
|
|
|
{ statusCode: 200 },
|
|
|
|
resultXml
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('sends correct XML', function (done) {
|
2019-06-04 07:08:28 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
const { body } = this.apiRequest.lastCall.args[0]
|
|
|
|
expect(body).to.equal(`\
|
|
|
|
<billing_info>
|
|
|
|
<address1>addr_one</address1>
|
|
|
|
<address2>addr_two</address2>
|
|
|
|
<city>some_city</city>
|
|
|
|
<state>some_state</state>
|
|
|
|
<zip>some_zip</zip>
|
|
|
|
<country>some_country</country>
|
|
|
|
</billing_info>\
|
|
|
|
`)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should not produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(err).to.not.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should call apiRequest', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
this.apiRequest.callCount.should.equal(1)
|
|
|
|
this.apiRequest.firstCall.args[0].method.should.equal('PUT')
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should call _parseBillingInfoXml', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
this.RecurlyWrapper._parseBillingInfoXml.callCount.should.equal(1)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should set billingInfo on cache', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(result.billingInfo).to.deep.equal({
|
2021-04-27 03:52:58 -04:00
|
|
|
city: 'London',
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when apiRequest produces an error', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.apiRequest.callsArgWith(1, new Error('woops'), {
|
2021-04-27 03:52:58 -04:00
|
|
|
statusCode: 500,
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(err).to.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('_paypal.createSubscription', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.cache.account = { account_code: 'abc' }
|
|
|
|
this.cache.billingInfo = {}
|
|
|
|
return (this.call = callback => {
|
|
|
|
return this.RecurlyWrapper._paypal.createSubscription(
|
|
|
|
this.cache,
|
|
|
|
callback
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when all goes well', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
const resultXml = '<subscription><a>1</a></subscription>'
|
|
|
|
return this.apiRequest.callsArgWith(
|
|
|
|
1,
|
|
|
|
null,
|
|
|
|
{ statusCode: 200 },
|
|
|
|
resultXml
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('sends correct XML', function (done) {
|
2019-06-04 07:08:28 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
const { body } = this.apiRequest.lastCall.args[0]
|
|
|
|
expect(body).to.equal(`\
|
|
|
|
<subscription>
|
|
|
|
<plan_code>some_plan_code</plan_code>
|
|
|
|
<currency>EUR</currency>
|
|
|
|
<coupon_code/>
|
|
|
|
<account>
|
|
|
|
<account_code>some_id</account_code>
|
|
|
|
</account>
|
2019-10-25 04:22:23 -04:00
|
|
|
<custom_fields>
|
|
|
|
<custom_field>
|
|
|
|
<name>itm_campaign</name>
|
|
|
|
<value>itm-campaign-value</value>
|
|
|
|
</custom_field>
|
|
|
|
<custom_field>
|
|
|
|
<name>itm_content</name>
|
|
|
|
<value>itm-content-value</value>
|
|
|
|
</custom_field>
|
|
|
|
</custom_fields>
|
2019-06-04 07:08:28 -04:00
|
|
|
</subscription>\
|
|
|
|
`)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should not produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(err).to.not.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should call apiRequest', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
this.apiRequest.callCount.should.equal(1)
|
|
|
|
this.apiRequest.firstCall.args[0].method.should.equal('POST')
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should call _parseSubscriptionXml', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
this.RecurlyWrapper._parseSubscriptionXml.callCount.should.equal(1)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should set subscription on cache', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(result.subscription).to.deep.equal({
|
2021-04-27 03:52:58 -04:00
|
|
|
a: '1',
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('when apiRequest produces an error', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.apiRequest.callsArgWith(1, new Error('woops'), {
|
2021-04-27 03:52:58 -04:00
|
|
|
statusCode: 500,
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should produce an error', function (done) {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.call((err, result) => {
|
|
|
|
expect(err).to.be.instanceof(Error)
|
|
|
|
return done()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('listAccountActiveSubscriptions', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.user_id = 'mock-user-id'
|
|
|
|
this.callback = sinon.stub()
|
|
|
|
this.RecurlyWrapper.apiRequest = sinon
|
|
|
|
.stub()
|
|
|
|
.yields(
|
|
|
|
null,
|
|
|
|
(this.response = { mock: 'response' }),
|
|
|
|
(this.body = '<mock body/>')
|
|
|
|
)
|
|
|
|
return (this.RecurlyWrapper._parseSubscriptionsXml = sinon
|
|
|
|
.stub()
|
|
|
|
.yields(null, (this.subscriptions = ['mock', 'subscriptions'])))
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('with an account', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.RecurlyWrapper.listAccountActiveSubscriptions(
|
|
|
|
this.user_id,
|
|
|
|
this.callback
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should send a request to Recurly', function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.RecurlyWrapper.apiRequest
|
|
|
|
.calledWith({
|
|
|
|
url: `accounts/${this.user_id}/subscriptions`,
|
|
|
|
qs: {
|
2021-04-27 03:52:58 -04:00
|
|
|
state: 'active',
|
2019-05-29 05:21:06 -04:00
|
|
|
},
|
2021-04-27 03:52:58 -04:00
|
|
|
expect404: true,
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should return the subscriptions', function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.callback
|
|
|
|
.calledWith(null, this.subscriptions)
|
|
|
|
.should.equal(true)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
describe('without an account', function () {
|
|
|
|
beforeEach(function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
this.response.statusCode = 404
|
|
|
|
return this.RecurlyWrapper.listAccountActiveSubscriptions(
|
|
|
|
this.user_id,
|
|
|
|
this.callback
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
2021-04-14 09:17:21 -04:00
|
|
|
it('should return an empty array of subscriptions', function () {
|
2019-05-29 05:21:06 -04:00
|
|
|
return this.callback.calledWith(null, []).should.equal(true)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|