mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-27 02:51:57 +02:00
Repair not logged in subscription controller test
This commit is contained in:
@@ -124,13 +124,11 @@ describe "SubscriptionController", ->
|
||||
@UserGetter =
|
||||
getUser: sinon.stub().callsArgWith(2, null, null)
|
||||
@res.callback = done
|
||||
@SubscriptionController.plansPage(@req, @res)
|
||||
@AuthenticationController =
|
||||
getLoggedInUser: sinon.stub().callsArgWith(1, null, null)
|
||||
getLoggedInUserId: sinon.stub().returns(null)
|
||||
getSessionUser: sinon.stub().returns(null)
|
||||
isUserLoggedIn: sinon.stub().returns(false)
|
||||
|
||||
@SubscriptionController = SandboxedModule.require modulePath, requires:
|
||||
'../Authentication/AuthenticationController': @AuthenticationController
|
||||
'./SubscriptionHandler': @SubscriptionHandler
|
||||
@@ -146,6 +144,7 @@ describe "SubscriptionController", ->
|
||||
"../User/UserGetter": @UserGetter
|
||||
"./RecurlyWrapper": @RecurlyWrapper = {}
|
||||
"./FeaturesUpdater": @FeaturesUpdater = {}
|
||||
@SubscriptionController.plansPage(@req, @res)
|
||||
|
||||
it 'should not fetch the current user', (done) ->
|
||||
@UserGetter.getUser.callCount.should.equal 0
|
||||
@@ -500,4 +499,4 @@ describe "SubscriptionController", ->
|
||||
@SubscriptionHandler.updateSubscription.calledWith(@user, "collaborator-annual", "COLLABORATORCODEHERE").should.equal true
|
||||
done()
|
||||
|
||||
@SubscriptionController.processUpgradeToAnnualPlan @req, @res
|
||||
@SubscriptionController.processUpgradeToAnnualPlan @req, @res
|
||||
|
||||
Reference in New Issue
Block a user