mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #1097 from sharelatex/hb-fix-institutions-callbacks
Fix multiple callback and silent failures on institutions controller GitOrigin-RevId: 2883445a4d960e7aca2dfbab45b8e268437e4769
This commit is contained in:
parent
efaa77dbd7
commit
6ea0b9cf46
2 changed files with 26 additions and 13 deletions
|
@ -24,14 +24,17 @@ affiliateUsers = (hostname, callback = (error)->) ->
|
|||
if error?
|
||||
logger.err error: error, 'problem fetching users by hostname'
|
||||
return callback(error)
|
||||
async.map users, ((user) ->
|
||||
matchingEmails = user.emails.filter (email) -> email.reversedHostname == reversedHostname
|
||||
for email in matchingEmails
|
||||
addAffiliation user._id, email.email, {confirmedAt: email.confirmedAt}, (error) =>
|
||||
if error?
|
||||
logger.err error: error, 'problem adding affiliation while confirming hostname'
|
||||
return callback(error)
|
||||
), (error) ->
|
||||
if error?
|
||||
return callback(error)
|
||||
callback()
|
||||
|
||||
async.map users, ((user, innerCallback) ->
|
||||
affiliateUserByReversedHostname user, reversedHostname, innerCallback
|
||||
), callback
|
||||
|
||||
affiliateUserByReversedHostname = (user, reversedHostname, callback) ->
|
||||
matchingEmails = user.emails.filter (email) -> email.reversedHostname == reversedHostname
|
||||
async.map matchingEmails, ((email, innerCallback) ->
|
||||
addAffiliation user._id, email.email, {confirmedAt: email.confirmedAt}, (error) =>
|
||||
if error?
|
||||
logger.err error: error, 'problem adding affiliation while confirming hostname'
|
||||
return innerCallback(error)
|
||||
innerCallback()
|
||||
), callback
|
||||
|
|
|
@ -47,17 +47,27 @@ describe "InstitutionsController", ->
|
|||
json: sinon.stub()
|
||||
@next = sinon.stub()
|
||||
|
||||
describe 'confirmDomain', ->
|
||||
describe 'affiliateUsers', ->
|
||||
it 'should add affiliations for matching users', (done)->
|
||||
@res.sendStatus = (code) =>
|
||||
code.should.equal 200
|
||||
@getUsersByHostname.calledOnce.should.equal true
|
||||
@addAffiliation.calledThrice.should.equal true
|
||||
@addAffiliation.calledWith(@stubbedUser1._id, @stubbedUser1.emails[0].email).should.equal true
|
||||
@addAffiliation.calledWith(@stubbedUser1._id, @stubbedUser1.emails[2].email).should.equal true
|
||||
@addAffiliation.calledWith(@stubbedUser2._id, @stubbedUser2.emails[0].email).should.equal true
|
||||
done()
|
||||
@InstitutionsController.confirmDomain @req, @res, @next
|
||||
|
||||
describe 'create institution', ->
|
||||
it 'should return errors if last affiliation cannot be added', (done)->
|
||||
@addAffiliation.onCall(2).callsArgWith(3, new Error("error"))
|
||||
@next = (error) =>
|
||||
expect(error).to.exist
|
||||
@getUsersByHostname.calledOnce.should.equal true
|
||||
done()
|
||||
@InstitutionsController.confirmDomain @req, @res, @next
|
||||
|
||||
describe 'createInstitution', ->
|
||||
it 'should create new institution', (done)->
|
||||
@req.body.institution_id = 123
|
||||
expectedData = v1Id: 123
|
||||
|
|
Loading…
Reference in a new issue