2016-07-04 05:05:34 -04:00
|
|
|
sinon = require('sinon')
|
|
|
|
chai = require('chai')
|
|
|
|
should = chai.should()
|
|
|
|
expect = chai.expect
|
|
|
|
modulePath = "../../../../app/js/Features/User/UserSessionsManager.js"
|
|
|
|
SandboxedModule = require('sandboxed-module')
|
|
|
|
|
|
|
|
describe 'UserSessionsManager', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@user =
|
|
|
|
_id: "abcd"
|
|
|
|
email: "user@example.com"
|
|
|
|
@sessionId = 'some_session_id'
|
2016-07-04 05:37:01 -04:00
|
|
|
|
2016-07-04 05:05:34 -04:00
|
|
|
@rclient =
|
2016-07-04 05:37:01 -04:00
|
|
|
multi: sinon.stub()
|
2016-07-04 05:05:34 -04:00
|
|
|
exec: sinon.stub()
|
2016-07-04 05:37:01 -04:00
|
|
|
get: sinon.stub()
|
2016-07-04 06:15:28 -04:00
|
|
|
del: sinon.stub()
|
2016-07-04 05:37:01 -04:00
|
|
|
sadd: sinon.stub()
|
|
|
|
srem: sinon.stub()
|
|
|
|
smembers: sinon.stub()
|
|
|
|
expire: sinon.stub()
|
|
|
|
@rclient.multi.returns(@rclient)
|
|
|
|
@rclient.get.returns(@rclient)
|
2016-07-04 06:15:28 -04:00
|
|
|
@rclient.del.returns(@rclient)
|
2016-07-04 05:37:01 -04:00
|
|
|
@rclient.sadd.returns(@rclient)
|
|
|
|
@rclient.srem.returns(@rclient)
|
|
|
|
@rclient.smembers.returns(@rclient)
|
|
|
|
@rclient.expire.returns(@rclient)
|
|
|
|
@rclient.exec.callsArgWith(0, null)
|
|
|
|
|
2016-07-04 05:05:34 -04:00
|
|
|
@redis =
|
2016-07-04 05:37:01 -04:00
|
|
|
createClient: () => @rclient
|
2016-07-04 05:05:34 -04:00
|
|
|
@logger =
|
|
|
|
err: sinon.stub()
|
|
|
|
error: sinon.stub()
|
|
|
|
log: sinon.stub()
|
|
|
|
@settings =
|
|
|
|
redis:
|
|
|
|
web: {}
|
|
|
|
@UserSessionsManager = SandboxedModule.require modulePath, requires:
|
|
|
|
"redis-sharelatex": @redis
|
|
|
|
"logger-sharelatex": @logger
|
|
|
|
"settings-sharelatex": @settings
|
|
|
|
|
|
|
|
describe '_sessionSetKey', ->
|
|
|
|
|
|
|
|
it 'should build the correct key', ->
|
|
|
|
result = @UserSessionsManager._sessionSetKey(@user)
|
|
|
|
result.should.equal 'UserSessions:abcd'
|
|
|
|
|
|
|
|
describe '_sessionKey', ->
|
|
|
|
|
|
|
|
it 'should build the correct key', ->
|
|
|
|
result = @UserSessionsManager._sessionKey(@sessionId)
|
|
|
|
result.should.equal 'sess:some_session_id'
|
2016-07-04 05:37:01 -04:00
|
|
|
|
|
|
|
describe 'trackSession', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@call = (callback) =>
|
|
|
|
@UserSessionsManager.trackSession @user, @sessionId, callback
|
|
|
|
@rclient.exec.callsArgWith(0, null)
|
|
|
|
@_checkSessions = sinon.stub(@UserSessionsManager, '_checkSessions').returns(null)
|
|
|
|
|
|
|
|
afterEach ->
|
|
|
|
@_checkSessions.restore()
|
|
|
|
|
|
|
|
it 'should not produce an error', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
expect(err).to.not.be.instanceof Error
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should call the appropriate redis methods', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@rclient.multi.callCount.should.equal 1
|
|
|
|
@rclient.sadd.callCount.should.equal 1
|
|
|
|
@rclient.expire.callCount.should.equal 1
|
|
|
|
@rclient.exec.callCount.should.equal 1
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should call _checkSessions', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@_checkSessions.callCount.should.equal 1
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe 'when rclient produces an error', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@rclient.exec.callsArgWith(0, new Error('woops'))
|
|
|
|
|
|
|
|
it 'should produce an error', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
expect(err).to.be.instanceof Error
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should not call _checkSessions', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@_checkSessions.callCount.should.equal 0
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe 'when no user is supplied', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@call = (callback) =>
|
|
|
|
@UserSessionsManager.trackSession null, @sessionId, callback
|
|
|
|
|
|
|
|
it 'should not produce an error', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
expect(err).to.not.be.instanceof Error
|
|
|
|
expect(err).to.equal null
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should not call the appropriate redis methods', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@rclient.multi.callCount.should.equal 0
|
|
|
|
@rclient.sadd.callCount.should.equal 0
|
|
|
|
@rclient.expire.callCount.should.equal 0
|
|
|
|
@rclient.exec.callCount.should.equal 0
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should not call _checkSessions', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@_checkSessions.callCount.should.equal 0
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe 'when no sessionId is supplied', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@call = (callback) =>
|
|
|
|
@UserSessionsManager.trackSession @user, null, callback
|
|
|
|
|
|
|
|
it 'should not produce an error', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
expect(err).to.not.be.instanceof Error
|
|
|
|
expect(err).to.equal null
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should not call the appropriate redis methods', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@rclient.multi.callCount.should.equal 0
|
|
|
|
@rclient.sadd.callCount.should.equal 0
|
|
|
|
@rclient.expire.callCount.should.equal 0
|
|
|
|
@rclient.exec.callCount.should.equal 0
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should not call _checkSessions', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@_checkSessions.callCount.should.equal 0
|
|
|
|
done()
|
2016-07-04 05:56:13 -04:00
|
|
|
|
|
|
|
describe 'untrackSession', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@call = (callback) =>
|
|
|
|
@UserSessionsManager.untrackSession @user, @sessionId, callback
|
|
|
|
@rclient.exec.callsArgWith(0, null)
|
|
|
|
@_checkSessions = sinon.stub(@UserSessionsManager, '_checkSessions').returns(null)
|
|
|
|
|
|
|
|
afterEach ->
|
|
|
|
@_checkSessions.restore()
|
|
|
|
|
|
|
|
it 'should not produce an error', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
expect(err).to.not.be.instanceof Error
|
2016-07-04 09:04:10 -04:00
|
|
|
expect(err).to.equal undefined
|
2016-07-04 05:56:13 -04:00
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should call the appropriate redis methods', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@rclient.multi.callCount.should.equal 1
|
|
|
|
@rclient.srem.callCount.should.equal 1
|
|
|
|
@rclient.expire.callCount.should.equal 1
|
|
|
|
@rclient.exec.callCount.should.equal 1
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should call _checkSessions', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@_checkSessions.callCount.should.equal 1
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe 'when rclient produces an error', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@rclient.exec.callsArgWith(0, new Error('woops'))
|
|
|
|
|
|
|
|
it 'should produce an error', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
expect(err).to.be.instanceof Error
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should not call _checkSessions', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@_checkSessions.callCount.should.equal 0
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe 'when no user is supplied', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@call = (callback) =>
|
|
|
|
@UserSessionsManager.untrackSession null, @sessionId, callback
|
|
|
|
|
|
|
|
it 'should not produce an error', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
expect(err).to.not.be.instanceof Error
|
|
|
|
expect(err).to.equal null
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should not call the appropriate redis methods', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@rclient.multi.callCount.should.equal 0
|
|
|
|
@rclient.srem.callCount.should.equal 0
|
|
|
|
@rclient.expire.callCount.should.equal 0
|
|
|
|
@rclient.exec.callCount.should.equal 0
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should not call _checkSessions', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@_checkSessions.callCount.should.equal 0
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe 'when no sessionId is supplied', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@call = (callback) =>
|
|
|
|
@UserSessionsManager.untrackSession @user, null, callback
|
|
|
|
|
|
|
|
it 'should not produce an error', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
expect(err).to.not.be.instanceof Error
|
|
|
|
expect(err).to.equal null
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should not call the appropriate redis methods', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@rclient.multi.callCount.should.equal 0
|
|
|
|
@rclient.srem.callCount.should.equal 0
|
|
|
|
@rclient.expire.callCount.should.equal 0
|
|
|
|
@rclient.exec.callCount.should.equal 0
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should not call _checkSessions', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@_checkSessions.callCount.should.equal 0
|
|
|
|
done()
|
2016-07-04 06:15:28 -04:00
|
|
|
|
|
|
|
##
|
|
|
|
describe 'revokeAllUserSessions', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@sessionKeys = ['one', 'two']
|
|
|
|
@rclient.smembers.callsArgWith(1, null, @sessionKeys)
|
|
|
|
@rclient.exec.callsArgWith(0, null)
|
|
|
|
@call = (callback) =>
|
|
|
|
@UserSessionsManager.revokeAllUserSessions @user, callback
|
|
|
|
|
|
|
|
it 'should not produce an error', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
expect(err).to.not.be.instanceof Error
|
2016-07-04 09:04:10 -04:00
|
|
|
expect(err).to.equal null
|
2016-07-04 06:15:28 -04:00
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should call the appropriate redis methods', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@rclient.smembers.callCount.should.equal 1
|
|
|
|
@rclient.multi.callCount.should.equal 1
|
|
|
|
@rclient.del.callCount.should.equal 1
|
|
|
|
@rclient.del.firstCall.args[0].should.deep.equal(@sessionKeys)
|
|
|
|
@rclient.srem.callCount.should.equal 1
|
|
|
|
@rclient.srem.firstCall.args[1].should.deep.equal(@sessionKeys)
|
|
|
|
@rclient.exec.callCount.should.equal 1
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe 'when rclient produces an error', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@rclient.exec.callsArgWith(0, new Error('woops'))
|
|
|
|
|
|
|
|
it 'should produce an error', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
expect(err).to.be.instanceof Error
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe 'when no user is supplied', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@call = (callback) =>
|
|
|
|
@UserSessionsManager.revokeAllUserSessions null, callback
|
|
|
|
|
|
|
|
it 'should not produce an error', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
expect(err).to.not.be.instanceof Error
|
|
|
|
expect(err).to.equal null
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should not call the appropriate redis methods', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@rclient.smembers.callCount.should.equal 0
|
|
|
|
@rclient.multi.callCount.should.equal 0
|
|
|
|
@rclient.del.callCount.should.equal 0
|
|
|
|
@rclient.srem.callCount.should.equal 0
|
|
|
|
@rclient.exec.callCount.should.equal 0
|
|
|
|
done()
|
2016-07-04 09:04:10 -04:00
|
|
|
|
|
|
|
describe 'touch', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@rclient.expire.callsArgWith(2, null)
|
|
|
|
@call = (callback) =>
|
|
|
|
@UserSessionsManager.touch @user, callback
|
|
|
|
|
|
|
|
it 'should not produce an error', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
expect(err).to.not.be.instanceof Error
|
|
|
|
expect(err).to.equal null
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should call rclient.expire', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@rclient.expire.callCount.should.equal 1
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe 'when rclient produces an error', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@rclient.expire.callsArgWith(2, new Error('woops'))
|
|
|
|
|
|
|
|
it 'should produce an error', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
expect(err).to.be.instanceof Error
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe 'when no user is supplied', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@call = (callback) =>
|
|
|
|
@UserSessionsManager.touch null, callback
|
|
|
|
|
|
|
|
it 'should not produce an error', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
expect(err).to.not.be.instanceof Error
|
|
|
|
expect(err).to.equal null
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should not call expire', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@rclient.expire.callCount.should.equal 0
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe '_checkSessions', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@call = (callback) =>
|
|
|
|
@UserSessionsManager._checkSessions @user, callback
|
|
|
|
@sessionKeys = ['one', 'two']
|
|
|
|
@rclient.smembers.callsArgWith(1, null, @sessionKeys)
|
|
|
|
@rclient.get.callsArgWith(1, null, 'some-value')
|
|
|
|
@rclient.srem.callsArgWith(2, null, {})
|
|
|
|
|
|
|
|
it 'should not produce an error', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
expect(err).to.not.be.instanceof Error
|
|
|
|
expect(err).to.equal undefined
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should call the appropriate redis methods', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@rclient.smembers.callCount.should.equal 1
|
|
|
|
@rclient.get.callCount.should.equal 2
|
|
|
|
@rclient.srem.callCount.should.equal 0
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe 'when one of the keys is not present in redis', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@rclient.get.onCall(0).callsArgWith(1, null, 'some-val')
|
|
|
|
@rclient.get.onCall(1).callsArgWith(1, null, null)
|
|
|
|
|
|
|
|
it 'should not produce an error', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
expect(err).to.not.be.instanceof Error
|
|
|
|
expect(err).to.equal undefined
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should remove that key from the set', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@rclient.smembers.callCount.should.equal 1
|
|
|
|
@rclient.get.callCount.should.equal 2
|
|
|
|
@rclient.srem.callCount.should.equal 1
|
|
|
|
@rclient.srem.firstCall.args[1].should.equal 'two'
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe 'when no user is supplied', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@call = (callback) =>
|
|
|
|
@UserSessionsManager._checkSessions null, callback
|
|
|
|
|
|
|
|
it 'should not produce an error', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
expect(err).to.not.be.instanceof Error
|
|
|
|
expect(err).to.equal null
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should not call redis methods', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@rclient.smembers.callCount.should.equal 0
|
|
|
|
@rclient.get.callCount.should.equal 0
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe 'when one of the get operations produces an error', ->
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@rclient.get.onCall(0).callsArgWith(1, new Error('woops'), null)
|
|
|
|
@rclient.get.onCall(1).callsArgWith(1, null, null)
|
|
|
|
|
|
|
|
it 'should produce an error', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
expect(err).to.be.instanceof Error
|
|
|
|
done()
|
|
|
|
|
|
|
|
it 'should call the right redis methods, bailing out early', (done) ->
|
|
|
|
@call (err) =>
|
|
|
|
@rclient.smembers.callCount.should.equal 1
|
|
|
|
@rclient.get.callCount.should.equal 1
|
|
|
|
@rclient.srem.callCount.should.equal 0
|
|
|
|
done()
|