2014-02-12 05:23:40 -05:00
|
|
|
SandboxedModule = require('sandboxed-module')
|
|
|
|
sinon = require 'sinon'
|
|
|
|
should = require("chai").should()
|
|
|
|
MockRequest = require "../helpers/MockRequest"
|
|
|
|
MockResponse = require "../helpers/MockResponse"
|
|
|
|
modulePath = '../../../../app/js/Features/Subscription/SubscriptionController'
|
|
|
|
|
|
|
|
mockSubscriptions =
|
|
|
|
"subscription-123-active":
|
|
|
|
uuid: "subscription-123-active"
|
|
|
|
plan:
|
|
|
|
name: "Gold"
|
|
|
|
plan_code: "gold"
|
|
|
|
current_period_ends_at: new Date()
|
|
|
|
state: "active"
|
|
|
|
unit_amount_in_cents: 999
|
|
|
|
account:
|
|
|
|
account_code: "user-123"
|
|
|
|
|
2017-03-27 07:07:43 -04:00
|
|
|
describe "SubscriptionController", ->
|
2014-02-12 05:23:40 -05:00
|
|
|
beforeEach ->
|
2016-10-13 08:47:05 -04:00
|
|
|
@user = {email:"tom@yahoo.com", _id: 'one', signUpDate: new Date('2000-10-01')}
|
2014-02-12 05:23:40 -05:00
|
|
|
@activeRecurlySubscription = mockSubscriptions["subscription-123-active"]
|
|
|
|
|
2016-03-10 12:17:26 -05:00
|
|
|
@AuthenticationController =
|
|
|
|
getLoggedInUser: sinon.stub().callsArgWith(1, null, @user)
|
2016-09-07 11:40:49 -04:00
|
|
|
getLoggedInUserId: sinon.stub().returns(@user._id)
|
|
|
|
getSessionUser: sinon.stub().returns(@user)
|
|
|
|
isUserLoggedIn: sinon.stub().returns(true)
|
|
|
|
@SubscriptionHandler =
|
2014-12-22 11:37:09 -05:00
|
|
|
createSubscription: sinon.stub().callsArgWith(3)
|
2014-08-27 12:51:10 -04:00
|
|
|
updateSubscription: sinon.stub().callsArgWith(3)
|
2014-02-12 05:23:40 -05:00
|
|
|
reactivateSubscription: sinon.stub().callsArgWith(1)
|
|
|
|
cancelSubscription: sinon.stub().callsArgWith(1)
|
|
|
|
recurlyCallback: sinon.stub().callsArgWith(1)
|
|
|
|
startFreeTrial: sinon.stub()
|
|
|
|
|
|
|
|
@PlansLocator =
|
|
|
|
findLocalPlanInSettings: sinon.stub()
|
|
|
|
|
2016-09-07 11:40:49 -04:00
|
|
|
@LimitationsManager =
|
2014-08-07 10:29:06 -04:00
|
|
|
userHasSubscriptionOrIsGroupMember: sinon.stub()
|
2014-02-12 05:23:40 -05:00
|
|
|
userHasSubscription : sinon.stub()
|
|
|
|
|
2016-09-07 11:40:49 -04:00
|
|
|
@RecurlyWrapper =
|
2014-02-12 05:23:40 -05:00
|
|
|
sign: sinon.stub().callsArgWith(1, null, "somthing")
|
2017-11-28 06:40:48 -05:00
|
|
|
getSubscription: sinon.stub().callsArgWith(2, null, {})
|
2014-02-12 05:23:40 -05:00
|
|
|
|
2016-09-07 11:40:49 -04:00
|
|
|
@SubscriptionViewModelBuilder =
|
2014-02-12 05:23:40 -05:00
|
|
|
buildUsersSubscriptionViewModel:sinon.stub().callsArgWith(1, null, @activeRecurlySubscription)
|
|
|
|
buildViewModel: sinon.stub()
|
2016-09-07 11:40:49 -04:00
|
|
|
@settings =
|
2014-08-28 13:14:31 -04:00
|
|
|
coupon_codes:
|
2016-09-07 11:40:49 -04:00
|
|
|
upgradeToAnnualPromo:
|
2014-08-28 13:14:31 -04:00
|
|
|
student:"STUDENTCODEHERE"
|
|
|
|
collaborator:"COLLABORATORCODEHERE"
|
|
|
|
apis:
|
|
|
|
recurly:
|
2017-11-23 11:16:13 -05:00
|
|
|
subdomain:"sl"
|
2014-08-29 08:06:50 -04:00
|
|
|
siteUrl: "http://de.sharelatex.dev:3000"
|
2014-10-13 09:10:15 -04:00
|
|
|
gaExperiments:{}
|
|
|
|
@GeoIpLookup =
|
|
|
|
getCurrencyCode:sinon.stub()
|
2016-09-07 11:40:49 -04:00
|
|
|
@SubscriptionDomainHandler =
|
|
|
|
getDomainLicencePage:sinon.stub()
|
2016-10-13 08:47:05 -04:00
|
|
|
@UserGetter =
|
|
|
|
getUser: sinon.stub().callsArgWith(2, null, @user)
|
2014-02-12 05:23:40 -05:00
|
|
|
@SubscriptionController = SandboxedModule.require modulePath, requires:
|
2016-03-10 12:17:26 -05:00
|
|
|
'../Authentication/AuthenticationController': @AuthenticationController
|
2014-02-12 05:23:40 -05:00
|
|
|
'./SubscriptionHandler': @SubscriptionHandler
|
|
|
|
"./PlansLocator": @PlansLocator
|
|
|
|
'./SubscriptionViewModelBuilder': @SubscriptionViewModelBuilder
|
|
|
|
"./LimitationsManager": @LimitationsManager
|
2014-10-13 09:10:15 -04:00
|
|
|
"../../infrastructure/GeoIpLookup":@GeoIpLookup
|
2014-02-12 05:23:40 -05:00
|
|
|
'./RecurlyWrapper': @RecurlyWrapper
|
2016-09-07 11:40:49 -04:00
|
|
|
"logger-sharelatex":
|
2016-03-22 10:27:05 -04:00
|
|
|
log:->
|
|
|
|
warn:->
|
2014-08-28 13:14:31 -04:00
|
|
|
"settings-sharelatex": @settings
|
2015-05-27 15:57:54 -04:00
|
|
|
"./SubscriptionDomainHandler":@SubscriptionDomainHandler
|
2016-10-13 08:47:05 -04:00
|
|
|
"../User/UserGetter": @UserGetter
|
2014-02-12 05:23:40 -05:00
|
|
|
|
|
|
|
|
|
|
|
@res = new MockResponse()
|
|
|
|
@req = new MockRequest()
|
|
|
|
@req.body = {}
|
2016-09-07 11:40:49 -04:00
|
|
|
@req.query =
|
2014-02-12 05:23:40 -05:00
|
|
|
planCode:"123123"
|
|
|
|
|
2014-10-13 09:10:15 -04:00
|
|
|
@stubbedCurrencyCode = "GBP"
|
|
|
|
|
|
|
|
describe "plansPage", ->
|
|
|
|
beforeEach (done) ->
|
2014-10-13 12:55:18 -04:00
|
|
|
@req.ip = "1234.3123.3131.333 313.133.445.666 653.5345.5345.534"
|
2014-10-13 09:10:15 -04:00
|
|
|
@GeoIpLookup.getCurrencyCode.callsArgWith(1, null, @stubbedCurrencyCode)
|
|
|
|
@res.callback = done
|
|
|
|
@SubscriptionController.plansPage(@req, @res)
|
2016-10-13 08:47:05 -04:00
|
|
|
@UserGetter.getUser = sinon.stub().callsArgWith(2, null, @user)
|
2014-10-13 09:10:15 -04:00
|
|
|
|
|
|
|
it "should set the recommended currency from the geoiplookup", (done)->
|
|
|
|
@res.renderedVariables.recomendedCurrency.should.equal(@stubbedCurrencyCode)
|
2014-10-13 12:55:18 -04:00
|
|
|
@GeoIpLookup.getCurrencyCode.calledWith(@req.ip).should.equal true
|
2014-10-13 09:10:15 -04:00
|
|
|
done()
|
|
|
|
|
2016-10-13 08:47:05 -04:00
|
|
|
it 'should fetch the current user', (done) ->
|
|
|
|
@UserGetter.getUser.callCount.should.equal 1
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should decide not to AB test the plans', (done) ->
|
|
|
|
@res.renderedVariables.shouldABTestPlans.should.equal false
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe 'when user is not logged in', (done) ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@AuthenticationController.getLoggedInUserId.returns(null)
|
|
|
|
|
|
|
|
it 'should not fetch the current user', (done) ->
|
|
|
|
@UserGetter.getUser.callCount.should.equal 0
|
|
|
|
done()
|
|
|
|
|
2014-02-12 05:23:40 -05:00
|
|
|
describe "paymentPage", ->
|
2014-10-13 12:39:44 -04:00
|
|
|
beforeEach ->
|
|
|
|
@req.headers = {}
|
2017-03-27 07:07:43 -04:00
|
|
|
@SubscriptionHandler.validateNoSubscriptionInRecurly = sinon.stub().yields(null, true)
|
2014-10-13 12:39:44 -04:00
|
|
|
@GeoIpLookup.getCurrencyCode.callsArgWith(1, null, @stubbedCurrencyCode)
|
|
|
|
|
2014-02-12 05:23:40 -05:00
|
|
|
describe "with a user without a subscription", ->
|
|
|
|
beforeEach ->
|
|
|
|
@LimitationsManager.userHasSubscription.callsArgWith(1, null, false)
|
|
|
|
@PlansLocator.findLocalPlanInSettings.returns({})
|
|
|
|
|
|
|
|
describe "with a valid plan code", ->
|
|
|
|
|
|
|
|
it "should render the new subscription page", (done)->
|
|
|
|
@res.render = (page, opts)=>
|
|
|
|
page.should.equal "subscriptions/new"
|
|
|
|
done()
|
|
|
|
@SubscriptionController.paymentPage @req, @res
|
|
|
|
|
|
|
|
describe "with a user with subscription", ->
|
|
|
|
it "should redirect to the subscription dashboard", (done)->
|
|
|
|
@LimitationsManager.userHasSubscription.callsArgWith(1, null, true)
|
|
|
|
@res.redirect = (url)=>
|
|
|
|
url.should.equal "/user/subscription"
|
|
|
|
done()
|
|
|
|
@SubscriptionController.paymentPage(@req, @res)
|
|
|
|
|
|
|
|
describe "with an invalid plan code", ->
|
|
|
|
it "should redirect to the subscription dashboard", (done)->
|
|
|
|
@LimitationsManager.userHasSubscription.callsArgWith(1, null, false)
|
|
|
|
@PlansLocator.findLocalPlanInSettings.returns(null)
|
|
|
|
@res.redirect = (url)=>
|
|
|
|
url.should.equal "/user/subscription"
|
|
|
|
done()
|
|
|
|
@SubscriptionController.paymentPage(@req, @res)
|
|
|
|
|
2014-10-13 12:39:44 -04:00
|
|
|
describe "which currency to use", ->
|
|
|
|
beforeEach ->
|
|
|
|
@LimitationsManager.userHasSubscription.callsArgWith(1, null, false)
|
|
|
|
@PlansLocator.findLocalPlanInSettings.returns({})
|
|
|
|
|
|
|
|
it "should use the set currency from the query string", (done)->
|
|
|
|
@req.query.currency = "EUR"
|
|
|
|
@res.render = (page, opts)=>
|
|
|
|
opts.currency.should.equal "EUR"
|
|
|
|
opts.currency.should.not.equal @stubbedCurrencyCode
|
|
|
|
done()
|
|
|
|
@SubscriptionController.paymentPage @req, @res
|
|
|
|
|
|
|
|
it "should upercase the currency code", (done)->
|
|
|
|
@req.query.currency = "eur"
|
|
|
|
@res.render = (page, opts)=>
|
|
|
|
opts.currency.should.equal "EUR"
|
|
|
|
done()
|
2016-09-07 11:40:49 -04:00
|
|
|
@SubscriptionController.paymentPage @req, @res
|
2014-10-13 12:39:44 -04:00
|
|
|
|
|
|
|
|
|
|
|
it "should use the geo ip currency if non is provided", (done)->
|
|
|
|
@req.query.currency = null
|
|
|
|
@res.render = (page, opts)=>
|
|
|
|
opts.currency.should.equal @stubbedCurrencyCode
|
|
|
|
done()
|
2016-09-07 11:40:49 -04:00
|
|
|
@SubscriptionController.paymentPage @req, @res
|
2017-03-27 07:07:43 -04:00
|
|
|
|
|
|
|
describe "with a recurly subscription already", ->
|
|
|
|
it "should redirect to the subscription dashboard", (done)->
|
|
|
|
@LimitationsManager.userHasSubscription.callsArgWith(1, null, false)
|
|
|
|
@SubscriptionHandler.validateNoSubscriptionInRecurly = sinon.stub().yields(null, false)
|
|
|
|
@res.redirect = (url)=>
|
|
|
|
url.should.equal "/user/subscription"
|
|
|
|
done()
|
|
|
|
@SubscriptionController.paymentPage(@req, @res)
|
|
|
|
|
2016-09-07 11:40:49 -04:00
|
|
|
|
2014-02-12 05:23:40 -05:00
|
|
|
describe "successful_subscription", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@SubscriptionViewModelBuilder.buildUsersSubscriptionViewModel.callsArgWith(1, null, {})
|
|
|
|
@res.callback = done
|
|
|
|
@SubscriptionController.successful_subscription @req, @res
|
|
|
|
|
|
|
|
describe "userSubscriptionPage", ->
|
|
|
|
describe "with a user without a subscription", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@res.callback = done
|
2014-08-07 10:29:06 -04:00
|
|
|
@LimitationsManager.userHasSubscriptionOrIsGroupMember.callsArgWith(1, null, false)
|
2014-02-12 05:23:40 -05:00
|
|
|
@SubscriptionController.userSubscriptionPage @req, @res
|
|
|
|
|
|
|
|
it "should redirect to the plans page", ->
|
|
|
|
@res.redirected.should.equal true
|
|
|
|
@res.redirectedTo.should.equal "/user/subscription/plans"
|
|
|
|
|
2015-05-27 10:07:46 -04:00
|
|
|
describe "with a potential domain licence", ->
|
|
|
|
beforeEach () ->
|
|
|
|
@groupUrl = "/go/over-here"
|
2015-05-27 15:57:54 -04:00
|
|
|
@SubscriptionDomainHandler.getDomainLicencePage.returns(@groupUrl)
|
2015-05-27 10:07:46 -04:00
|
|
|
|
|
|
|
describe "without an existing subscription", ->
|
|
|
|
beforeEach (done)->
|
|
|
|
@res.callback = done
|
|
|
|
@LimitationsManager.userHasSubscriptionOrIsGroupMember.callsArgWith(1, null, false)
|
|
|
|
@SubscriptionController.userSubscriptionPage @req, @res
|
|
|
|
|
|
|
|
it "should redirect to the group invite url", ->
|
|
|
|
@res.redirected.should.equal true
|
|
|
|
@res.redirectedTo.should.equal @groupUrl
|
|
|
|
|
|
|
|
describe "with an existing subscription", ->
|
|
|
|
beforeEach (done)->
|
|
|
|
@res.callback = done
|
2017-11-28 06:40:48 -05:00
|
|
|
@settings.apis.recurly.subdomain = 'test'
|
|
|
|
@userSub = {account: {hosted_login_token: 'abcd'}}
|
|
|
|
@RecurlyWrapper.getSubscription = sinon.stub()
|
|
|
|
.callsArgWith(2, null, @userSub)
|
|
|
|
@LimitationsManager.userHasSubscriptionOrIsGroupMember
|
|
|
|
.callsArgWith(1, null, true, {})
|
2015-05-27 10:07:46 -04:00
|
|
|
@SubscriptionController.userSubscriptionPage @req, @res
|
|
|
|
|
|
|
|
|
|
|
|
it "should render the dashboard", ->
|
|
|
|
@res.renderedTemplate.should.equal "subscriptions/dashboard"
|
2016-09-07 11:40:49 -04:00
|
|
|
|
2014-02-12 05:23:40 -05:00
|
|
|
describe "with a user with a paid subscription", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@res.callback = done
|
|
|
|
@SubscriptionViewModelBuilder.buildUsersSubscriptionViewModel.callsArgWith(1, null, @activeRecurlySubscription)
|
2017-11-28 06:40:48 -05:00
|
|
|
@LimitationsManager.userHasSubscriptionOrIsGroupMember.callsArgWith(1, null, true, {})
|
2014-02-12 05:23:40 -05:00
|
|
|
@SubscriptionController.userSubscriptionPage @req, @res
|
|
|
|
|
|
|
|
it "should render the dashboard", (done)->
|
|
|
|
@res.rendered.should.equal true
|
|
|
|
@res.renderedTemplate.should.equal "subscriptions/dashboard"
|
|
|
|
done()
|
2016-09-07 11:40:49 -04:00
|
|
|
|
2014-02-12 05:23:40 -05:00
|
|
|
it "should set the correct subscription details", ->
|
|
|
|
@res.renderedVariables.subscription.should.deep.equal @activeRecurlySubscription
|
|
|
|
|
|
|
|
describe "with a user with a free trial", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@res.callback = done
|
|
|
|
@SubscriptionViewModelBuilder.buildUsersSubscriptionViewModel.callsArgWith(1, null, @activeRecurlySubscription)
|
2017-11-28 06:40:48 -05:00
|
|
|
@LimitationsManager.userHasSubscriptionOrIsGroupMember.callsArgWith(1, null, true, {})
|
2014-02-12 05:23:40 -05:00
|
|
|
@SubscriptionController.userSubscriptionPage @req, @res
|
|
|
|
|
|
|
|
it "should render the dashboard", ->
|
|
|
|
@res.renderedTemplate.should.equal "subscriptions/dashboard"
|
2016-09-07 11:40:49 -04:00
|
|
|
|
2014-02-12 05:23:40 -05:00
|
|
|
it "should set the correct subscription details", ->
|
|
|
|
@res.renderedVariables.subscription.should.deep.equal @activeRecurlySubscription
|
|
|
|
|
2014-10-10 10:11:22 -04:00
|
|
|
|
|
|
|
describe "when its a custom subscription which is non recurly", ->
|
|
|
|
beforeEach ()->
|
|
|
|
@LimitationsManager.userHasSubscriptionOrIsGroupMember.callsArgWith(1, null, true, {customAccount:true})
|
|
|
|
@SubscriptionController.userSubscriptionPage @req, @res
|
|
|
|
|
|
|
|
it "should redirect to /user/subscription/custom_account", ->
|
|
|
|
@res.redirectedTo.should.equal("/user/subscription/custom_account")
|
|
|
|
|
2014-10-10 10:44:53 -04:00
|
|
|
describe "userCustomSubscriptionPage", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@res.callback = done
|
2016-03-22 10:27:05 -04:00
|
|
|
@LimitationsManager.userHasSubscriptionOrIsGroupMember.callsArgWith(1, null, true, {})
|
2014-10-10 10:44:53 -04:00
|
|
|
@SubscriptionController.userCustomSubscriptionPage @req, @res
|
|
|
|
|
|
|
|
it "should render the page", (done)->
|
|
|
|
@res.rendered.should.equal true
|
|
|
|
@res.renderedTemplate.should.equal "subscriptions/custom_account"
|
|
|
|
done()
|
2014-10-10 10:11:22 -04:00
|
|
|
|
|
|
|
|
2014-02-12 05:23:40 -05:00
|
|
|
describe "createSubscription", ->
|
|
|
|
beforeEach (done)->
|
|
|
|
@res =
|
2015-07-08 11:56:38 -04:00
|
|
|
sendStatus:->
|
2014-02-12 05:23:40 -05:00
|
|
|
done()
|
2015-07-08 11:56:38 -04:00
|
|
|
sinon.spy @res, "sendStatus"
|
2014-12-22 11:37:09 -05:00
|
|
|
@subscriptionDetails =
|
|
|
|
card:"1234"
|
|
|
|
cvv:"123"
|
|
|
|
@req.body.recurly_token_id = "1234"
|
|
|
|
@req.body.subscriptionDetails = @subscriptionDetails
|
2014-02-12 05:23:40 -05:00
|
|
|
@SubscriptionController.createSubscription @req, @res
|
|
|
|
|
|
|
|
it "should send the user and subscriptionId to the handler", (done)->
|
2014-12-22 11:37:09 -05:00
|
|
|
@SubscriptionHandler.createSubscription.calledWith(@user, @subscriptionDetails, @req.body.recurly_token_id).should.equal true
|
2014-02-12 05:23:40 -05:00
|
|
|
done()
|
|
|
|
|
|
|
|
it "should redurect to the subscription page", (done)->
|
2015-07-08 11:56:38 -04:00
|
|
|
@res.sendStatus.calledWith(201).should.equal true
|
2014-02-12 05:23:40 -05:00
|
|
|
done()
|
|
|
|
|
|
|
|
|
2014-08-27 12:51:10 -04:00
|
|
|
describe "updateSubscription via post", ->
|
2014-02-12 05:23:40 -05:00
|
|
|
beforeEach (done)->
|
|
|
|
@res =
|
|
|
|
redirect:->
|
|
|
|
done()
|
|
|
|
sinon.spy @res, "redirect"
|
|
|
|
@plan_code = "1234"
|
|
|
|
@req.body.plan_code = @plan_code
|
|
|
|
@SubscriptionController.updateSubscription @req, @res
|
|
|
|
|
|
|
|
it "should send the user and subscriptionId to the handler", (done)->
|
|
|
|
@SubscriptionHandler.updateSubscription.calledWith(@user, @plan_code).should.equal true
|
|
|
|
done()
|
|
|
|
|
|
|
|
it "should redurect to the subscription page", (done)->
|
|
|
|
@res.redirect.calledWith("/user/subscription").should.equal true
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe "reactivateSubscription", ->
|
|
|
|
beforeEach (done)->
|
|
|
|
@res =
|
|
|
|
redirect:->
|
|
|
|
done()
|
|
|
|
sinon.spy @res, "redirect"
|
|
|
|
@SubscriptionController.reactivateSubscription @req, @res
|
|
|
|
|
|
|
|
it "should tell the handler to reactivate this user", (done)->
|
|
|
|
@SubscriptionHandler.reactivateSubscription.calledWith(@user).should.equal true
|
|
|
|
done()
|
|
|
|
|
|
|
|
it "should redurect to the subscription page", (done)->
|
|
|
|
@res.redirect.calledWith("/user/subscription").should.equal true
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe "cancelSubscription", ->
|
|
|
|
beforeEach (done)->
|
|
|
|
@res =
|
|
|
|
redirect:->
|
|
|
|
done()
|
|
|
|
sinon.spy @res, "redirect"
|
|
|
|
@SubscriptionController.cancelSubscription @req, @res
|
|
|
|
|
|
|
|
it "should tell the handler to cancel this user", (done)->
|
|
|
|
@SubscriptionHandler.cancelSubscription.calledWith(@user).should.equal true
|
|
|
|
done()
|
|
|
|
|
|
|
|
it "should redurect to the subscription page", (done)->
|
|
|
|
@res.redirect.calledWith("/user/subscription").should.equal true
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe "recurly callback", ->
|
|
|
|
describe "with a actionable request", ->
|
|
|
|
|
|
|
|
beforeEach (done)->
|
|
|
|
@req =
|
|
|
|
body:
|
|
|
|
expired_subscription_notification:
|
|
|
|
subscription:
|
|
|
|
uuid: @activeRecurlySubscription.uuid
|
2015-07-08 11:56:38 -04:00
|
|
|
@res = sendStatus:->
|
2014-02-12 05:23:40 -05:00
|
|
|
done()
|
2015-07-08 11:56:38 -04:00
|
|
|
sinon.spy @res, "sendStatus"
|
2014-02-12 05:23:40 -05:00
|
|
|
@SubscriptionController.recurlyCallback @req, @res
|
|
|
|
|
|
|
|
it "should tell the SubscriptionHandler to process the recurly callback", (done)->
|
|
|
|
@SubscriptionHandler.recurlyCallback.called.should.equal true
|
|
|
|
done()
|
|
|
|
|
|
|
|
|
|
|
|
it "should send a 200", (done)->
|
2015-07-08 11:56:38 -04:00
|
|
|
@res.sendStatus.calledWith(200)
|
2014-02-12 05:23:40 -05:00
|
|
|
done()
|
|
|
|
|
|
|
|
describe "with a non-actionable request", ->
|
|
|
|
beforeEach (done) ->
|
|
|
|
@user.id = @activeRecurlySubscription.account.account_code
|
|
|
|
@req =
|
|
|
|
body:
|
|
|
|
new_subscription_notification:
|
|
|
|
subscription:
|
|
|
|
uuid: @activeRecurlySubscription.uuid
|
2015-07-08 11:56:38 -04:00
|
|
|
@res = sendStatus:->
|
2014-02-12 05:23:40 -05:00
|
|
|
done()
|
2015-07-08 11:56:38 -04:00
|
|
|
sinon.spy @res, "sendStatus"
|
2014-02-12 05:23:40 -05:00
|
|
|
@SubscriptionController.recurlyCallback @req, @res
|
|
|
|
|
|
|
|
it "should not call the subscriptionshandler", ->
|
|
|
|
@SubscriptionHandler.recurlyCallback.called.should.equal false
|
|
|
|
|
|
|
|
it "should respond with a 200 status", ->
|
2015-07-08 11:56:38 -04:00
|
|
|
@res.sendStatus.calledWith(200)
|
2014-02-12 05:23:40 -05:00
|
|
|
|
|
|
|
|
2014-08-27 12:51:10 -04:00
|
|
|
describe "renderUpgradeToAnnualPlanPage", ->
|
|
|
|
|
|
|
|
|
|
|
|
it "should redirect to the plans page if the user does not have a subscription", (done)->
|
|
|
|
@LimitationsManager.userHasSubscription.callsArgWith(1, null, false)
|
|
|
|
@res.redirect = (url)->
|
|
|
|
url.should.equal "/user/subscription/plans"
|
|
|
|
done()
|
|
|
|
@SubscriptionController.renderUpgradeToAnnualPlanPage @req, @res
|
|
|
|
|
2014-02-12 05:23:40 -05:00
|
|
|
|
2014-08-28 13:14:31 -04:00
|
|
|
it "should pass the plan code to the view - student", (done)->
|
|
|
|
|
|
|
|
@LimitationsManager.userHasSubscription.callsArgWith(1, null, true, {planCode:"Student free trial 14 days"})
|
|
|
|
@res.render = (view, opts)->
|
|
|
|
view.should.equal "subscriptions/upgradeToAnnual"
|
|
|
|
opts.planName.should.equal "student"
|
|
|
|
done()
|
|
|
|
@SubscriptionController.renderUpgradeToAnnualPlanPage @req, @res
|
|
|
|
|
|
|
|
it "should pass the plan code to the view - collaborator", (done)->
|
|
|
|
|
|
|
|
@LimitationsManager.userHasSubscription.callsArgWith(1, null, true, {planCode:"free trial for Collaborator free trial 14 days"})
|
|
|
|
@res.render = (view, opts)->
|
|
|
|
opts.planName.should.equal "collaborator"
|
|
|
|
done()
|
|
|
|
@SubscriptionController.renderUpgradeToAnnualPlanPage @req, @res
|
|
|
|
|
2014-08-29 09:13:05 -04:00
|
|
|
it "should pass annual as the plan name if the user is already on an annual plan", (done)->
|
|
|
|
|
|
|
|
@LimitationsManager.userHasSubscription.callsArgWith(1, null, true, {planCode:"student annual with free trial"})
|
|
|
|
@res.render = (view, opts)->
|
|
|
|
opts.planName.should.equal "annual"
|
|
|
|
done()
|
|
|
|
@SubscriptionController.renderUpgradeToAnnualPlanPage @req, @res
|
|
|
|
|
|
|
|
|
2014-08-27 12:51:10 -04:00
|
|
|
describe "processUpgradeToAnnualPlan", ->
|
|
|
|
|
|
|
|
beforeEach ->
|
2016-09-07 11:40:49 -04:00
|
|
|
|
2014-08-28 13:14:31 -04:00
|
|
|
it "should tell the subscription handler to update the subscription with the annual plan and apply a coupon code", (done)->
|
2014-08-27 12:51:10 -04:00
|
|
|
@req.body =
|
2014-08-28 13:14:31 -04:00
|
|
|
planName:"student"
|
2014-08-27 12:51:10 -04:00
|
|
|
|
2015-07-08 11:56:38 -04:00
|
|
|
@res.sendStatus = ()=>
|
2014-08-28 13:14:31 -04:00
|
|
|
@SubscriptionHandler.updateSubscription.calledWith(@user, "student-annual", "STUDENTCODEHERE").should.equal true
|
|
|
|
done()
|
2014-08-27 12:51:10 -04:00
|
|
|
|
2014-08-28 13:14:31 -04:00
|
|
|
@SubscriptionController.processUpgradeToAnnualPlan @req, @res
|
|
|
|
|
|
|
|
it "should get the collaborator coupon code", (done)->
|
|
|
|
|
|
|
|
@req.body =
|
|
|
|
planName:"collaborator"
|
|
|
|
|
2015-07-08 11:56:38 -04:00
|
|
|
@res.sendStatus = (url)=>
|
2014-08-28 13:14:31 -04:00
|
|
|
@SubscriptionHandler.updateSubscription.calledWith(@user, "collaborator-annual", "COLLABORATORCODEHERE").should.equal true
|
2014-08-27 12:51:10 -04:00
|
|
|
done()
|
2014-02-12 05:23:40 -05:00
|
|
|
|
2014-08-28 13:14:31 -04:00
|
|
|
@SubscriptionController.processUpgradeToAnnualPlan @req, @res
|