mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
186 lines
5.8 KiB
CoffeeScript
186 lines
5.8 KiB
CoffeeScript
SandboxedModule = require('sandboxed-module')
|
|
assert = require('assert')
|
|
require('chai').should()
|
|
sinon = require('sinon')
|
|
modulePath = require('path').join __dirname, '../../../../app/js/Features/Referal/ReferalAllocator.js'
|
|
|
|
describe 'Referalallocator', ->
|
|
|
|
beforeEach ->
|
|
@ReferalAllocator = SandboxedModule.require modulePath, requires:
|
|
'../../models/User': User: @User = {}
|
|
"../Subscription/SubscriptionLocator": @SubscriptionLocator = {}
|
|
"settings-sharelatex": @Settings = {}
|
|
'logger-sharelatex':
|
|
log:->
|
|
err:->
|
|
@callback = sinon.stub()
|
|
@referal_id = "referal-id-123"
|
|
@referal_medium = "twitter"
|
|
@user_id = "user-id-123"
|
|
@new_user_id = "new-user-id-123"
|
|
|
|
describe "allocate", ->
|
|
describe "when the referal was a bonus referal", ->
|
|
beforeEach ->
|
|
@referal_source = "bonus"
|
|
@User.update = sinon.stub().callsArgWith 3, null
|
|
@User.findOne = sinon.stub().callsArgWith 1, null, { _id: @user_id }
|
|
@ReferalAllocator.assignBonus = sinon.stub().callsArg 1
|
|
@ReferalAllocator.allocate @referal_id, @new_user_id, @referal_source, @referal_medium, @callback
|
|
|
|
it 'should update the referring user with the refered users id', ->
|
|
@User.update.calledWith({
|
|
"referal_id":@referal_id
|
|
}, {
|
|
$push:
|
|
refered_users: @new_user_id
|
|
$inc:
|
|
refered_user_count: 1
|
|
}).should.equal true
|
|
|
|
it "find the referring users id", ->
|
|
@User.findOne
|
|
.calledWith( referal_id: @referal_id )
|
|
.should.equal true
|
|
|
|
it "shoudl assign the user their bonus", ->
|
|
@ReferalAllocator.assignBonus
|
|
.calledWith(@user_id)
|
|
.should.equal true
|
|
|
|
it "should call the callback", ->
|
|
@callback.called.should.equal true
|
|
|
|
describe "when the referal is not a bonus referal", ->
|
|
beforeEach ->
|
|
@referal_source = "public_share"
|
|
@User.update = sinon.stub().callsArgWith 3, null
|
|
@User.findOne = sinon.stub().callsArgWith 1, null, { _id: @user_id }
|
|
@ReferalAllocator.assignBonus = sinon.stub().callsArg 1
|
|
@ReferalAllocator.allocate @referal_id, @new_user_id, @referal_source, @referal_medium, @callback
|
|
|
|
it 'should not update the referring user with the refered users id', ->
|
|
@User.update.called.should.equal false
|
|
|
|
it "find the referring users id", ->
|
|
@User.findOne
|
|
.calledWith( referal_id: @referal_id )
|
|
.should.equal true
|
|
|
|
it "should not assign the user a bonus", ->
|
|
@ReferalAllocator.assignBonus.called.should.equal false
|
|
|
|
it "should call the callback", ->
|
|
@callback.called.should.equal true
|
|
|
|
describe "assignBonus", ->
|
|
beforeEach ->
|
|
@refered_user_count = 3
|
|
@Settings.bonus_features =
|
|
"3":
|
|
collaborators: 3
|
|
dropbox: false
|
|
versioning: false
|
|
stubbedUser = {
|
|
refered_user_count: @refered_user_count,
|
|
features:{collaborators:1, dropbox:false, versioning:false}
|
|
}
|
|
|
|
@User.findOne = sinon.stub().callsArgWith 1, null, stubbedUser
|
|
@User.update = sinon.stub().callsArgWith 2, null
|
|
@ReferalAllocator.assignBonus @user_id, @callback
|
|
|
|
it "should get the users number of refered user", ->
|
|
@User.findOne
|
|
.calledWith(_id: @user_id)
|
|
.should.equal true
|
|
|
|
it "should update the user to bonus features", ->
|
|
@User.update
|
|
.calledWith({
|
|
_id: @user_id
|
|
}, {
|
|
$set:
|
|
features:
|
|
@Settings.bonus_features[@refered_user_count.toString()]
|
|
})
|
|
.should.equal true
|
|
|
|
it "should call the callback", ->
|
|
@callback.called.should.equal true
|
|
|
|
describe "when there is nothing to assign", ->
|
|
|
|
beforeEach ->
|
|
@ReferalAllocator._calculateBonuses = sinon.stub().returns({})
|
|
@stubbedUser =
|
|
refered_user_count:4
|
|
features:{collaborators:3, versioning:true, dropbox:false}
|
|
@Settings.bonus_features =
|
|
"4":
|
|
collaborators:3
|
|
versioning:true
|
|
dropbox:false
|
|
@User.findOne = sinon.stub().callsArgWith 1, null, @stubbedUser
|
|
@User.update = sinon.stub().callsArgWith 2, null
|
|
|
|
it "should not call update if there are no bonuses to apply", (done)->
|
|
@ReferalAllocator.assignBonus @user_id, (err)=>
|
|
@User.update.called.should.equal false
|
|
done()
|
|
|
|
describe "when the user has better features already", ->
|
|
|
|
beforeEach ->
|
|
@refered_user_count = 3
|
|
@stubbedUser =
|
|
refered_user_count:4
|
|
features:
|
|
collaborators:3
|
|
dropbox:false
|
|
versioning:false
|
|
@Settings.bonus_features =
|
|
"4":
|
|
collaborators: 10
|
|
dropbox: true
|
|
versioning: false
|
|
|
|
@User.findOne = sinon.stub().callsArgWith 1, null, @stubbedUser
|
|
@User.update = sinon.stub().callsArgWith 2, null
|
|
|
|
it "should not set in in mongo when the feature is better", (done)->
|
|
@ReferalAllocator.assignBonus @user_id, =>
|
|
@User.update.calledWith({_id: @user_id }, {$set: features:{dropbox:true, versioning:false, collaborators:10} }).should.equal true
|
|
done()
|
|
|
|
it "should not overright if the user has -1 users", (done)->
|
|
@stubbedUser.features.collaborators = -1
|
|
@ReferalAllocator.assignBonus @user_id, =>
|
|
@User.update.calledWith({_id: @user_id }, {$set: features:{dropbox:true, versioning:false, collaborators:-1} }).should.equal true
|
|
done()
|
|
|
|
describe "when the user is not at a bonus level", ->
|
|
beforeEach ->
|
|
@refered_user_count = 0
|
|
@Settings.bonus_features =
|
|
"1":
|
|
collaborators: 3
|
|
dropbox: false
|
|
versioning: false
|
|
@User.findOne = sinon.stub().callsArgWith 1, null, { refered_user_count: @refered_user_count }
|
|
@User.update = sinon.stub().callsArgWith 2, null
|
|
@ReferalAllocator.assignBonus @user_id, @callback
|
|
|
|
it "should get the users number of refered user", ->
|
|
@User.findOne
|
|
.calledWith(_id: @user_id)
|
|
.should.equal true
|
|
|
|
it "should not update the user to bonus features", ->
|
|
@User.update.called.should.equal false
|
|
|
|
it "should call the callback", ->
|
|
@callback.called.should.equal true
|
|
|
|
|