mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
38 lines
1 KiB
CoffeeScript
38 lines
1 KiB
CoffeeScript
|
sinon = require('sinon')
|
||
|
chai = require('chai')
|
||
|
should = chai.should()
|
||
|
modulePath = "../../../../app/js/Features/User/UserLocator.js"
|
||
|
SandboxedModule = require('sandboxed-module')
|
||
|
|
||
|
describe "UserLocator", ->
|
||
|
|
||
|
beforeEach ->
|
||
|
@user = {_id:"12390i"}
|
||
|
@UserLocator = SandboxedModule.require modulePath, requires:
|
||
|
"../../infrastructure/mongojs": db: @db = { users: {} }
|
||
|
@db.users =
|
||
|
findOne : sinon.stub().callsArgWith(1, null, @user)
|
||
|
|
||
|
@email = "bob.oswald@gmail.com"
|
||
|
|
||
|
|
||
|
describe "findByEmail", ->
|
||
|
|
||
|
it "should try and find a user with that email address", (done)->
|
||
|
@UserLocator.findByEmail @email, (err, user)=>
|
||
|
@db.users.findOne.calledWith(email:@email).should.equal true
|
||
|
done()
|
||
|
|
||
|
it "should trim white space", (done)->
|
||
|
@UserLocator.findByEmail "#{@email} ", (err, user)=>
|
||
|
@db.users.findOne.calledWith(email:@email).should.equal true
|
||
|
done()
|
||
|
|
||
|
it "should return the user if found", (done)->
|
||
|
@UserLocator.findByEmail @email, (err, user)=>
|
||
|
user.should.deep.equal @user
|
||
|
done()
|
||
|
|
||
|
|
||
|
|