mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
69 lines
2.2 KiB
CoffeeScript
69 lines
2.2 KiB
CoffeeScript
|
sinon = require('sinon')
|
||
|
chai = require('chai')
|
||
|
should = chai.should()
|
||
|
modulePath = "../../../../app/js/Features/User/UserHandler.js"
|
||
|
SandboxedModule = require('sandboxed-module')
|
||
|
|
||
|
describe "UserHandler", ->
|
||
|
|
||
|
beforeEach ->
|
||
|
@user =
|
||
|
_id:"12390i"
|
||
|
email: "bob@bob.com"
|
||
|
remove: sinon.stub().callsArgWith(0)
|
||
|
|
||
|
@licence =
|
||
|
subscription_id: 12323434
|
||
|
@SubscriptionDomainHandler =
|
||
|
getLicenceUserCanJoin: sinon.stub()
|
||
|
|
||
|
@SubscriptionGroupHandler =
|
||
|
isUserPartOfGroup:sinon.stub()
|
||
|
@createStub = sinon.stub().callsArgWith(0)
|
||
|
@NotificationsBuilder =
|
||
|
groupPlan:sinon.stub().returns({create:@createStub})
|
||
|
|
||
|
@UserHandler = SandboxedModule.require modulePath, requires:
|
||
|
"logger-sharelatex": @logger = { log: sinon.stub() }
|
||
|
"../Notifications/NotificationsBuilder":@NotificationsBuilder
|
||
|
"../Subscription/SubscriptionDomainHandler":@SubscriptionDomainHandler
|
||
|
"../Subscription/SubscriptionGroupHandler":@SubscriptionGroupHandler
|
||
|
|
||
|
describe "_populateGroupLicenceInvite", ->
|
||
|
|
||
|
describe "no licence", ->
|
||
|
beforeEach (done)->
|
||
|
@SubscriptionDomainHandler.getLicenceUserCanJoin.returns()
|
||
|
@UserHandler._populateGroupLicenceInvite @user, done
|
||
|
|
||
|
it "should not call NotificationsBuilder", (done)->
|
||
|
@NotificationsBuilder.groupPlan.called.should.equal false
|
||
|
done()
|
||
|
|
||
|
it "should not call isUserPartOfGroup", (done)->
|
||
|
@SubscriptionGroupHandler.isUserPartOfGroup.called.should.equal false
|
||
|
done()
|
||
|
|
||
|
describe "with matching licence user is not in", ->
|
||
|
|
||
|
beforeEach (done)->
|
||
|
@SubscriptionDomainHandler.getLicenceUserCanJoin.returns(@licence)
|
||
|
@SubscriptionGroupHandler.isUserPartOfGroup.callsArgWith(2, null, false)
|
||
|
@UserHandler._populateGroupLicenceInvite @user, done
|
||
|
|
||
|
it "should create notifcation", (done)->
|
||
|
@NotificationsBuilder.groupPlan.calledWith(@user, @licence).should.equal true
|
||
|
done()
|
||
|
|
||
|
|
||
|
|
||
|
describe "with matching licence user is already in", ->
|
||
|
|
||
|
beforeEach (done)->
|
||
|
@SubscriptionDomainHandler.getLicenceUserCanJoin.returns(@licence)
|
||
|
@SubscriptionGroupHandler.isUserPartOfGroup.callsArgWith(2, null, true)
|
||
|
@UserHandler._populateGroupLicenceInvite @user, done
|
||
|
|
||
|
it "should create notifcation", (done)->
|
||
|
@NotificationsBuilder.groupPlan.called.should.equal false
|
||
|
done()
|