mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
176 lines
5.3 KiB
JavaScript
176 lines
5.3 KiB
JavaScript
/* eslint-disable
|
|
handle-callback-err,
|
|
no-return-assign,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
/*
|
|
* decaffeinate suggestions:
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
const {EventEmitter} = require('events');
|
|
const {expect} = require('chai');
|
|
const SandboxedModule = require('sandboxed-module');
|
|
const modulePath = '../../../app/js/SessionSockets';
|
|
const sinon = require('sinon');
|
|
|
|
describe('SessionSockets', function() {
|
|
before(function() {
|
|
this.SessionSocketsModule = SandboxedModule.require(modulePath);
|
|
this.io = new EventEmitter();
|
|
this.id1 = Math.random().toString();
|
|
this.id2 = Math.random().toString();
|
|
const redisResponses = {
|
|
error: [new Error('Redis: something went wrong'), null],
|
|
unknownId: [null, null]
|
|
};
|
|
redisResponses[this.id1] = [null, {user: {_id: '123'}}];
|
|
redisResponses[this.id2] = [null, {user: {_id: 'abc'}}];
|
|
|
|
this.sessionStore = {
|
|
get: sinon.stub().callsFake((id, fn) => fn.apply(null, redisResponses[id]))
|
|
};
|
|
this.cookieParser = function(req, res, next) {
|
|
req.signedCookies = req._signedCookies;
|
|
return next();
|
|
};
|
|
this.SessionSockets = this.SessionSocketsModule(this.io, this.sessionStore, this.cookieParser, 'ol.sid');
|
|
return this.checkSocket = (socket, fn) => {
|
|
this.SessionSockets.once('connection', fn);
|
|
return this.io.emit('connection', socket);
|
|
};
|
|
});
|
|
|
|
describe('without cookies', function() {
|
|
before(function() {
|
|
return this.socket = {handshake: {}};});
|
|
|
|
it('should return a lookup error', function(done) {
|
|
return this.checkSocket(this.socket, (error) => {
|
|
expect(error).to.exist;
|
|
expect(error.message).to.equal('could not look up session by key');
|
|
return done();
|
|
});
|
|
});
|
|
|
|
return it('should not query redis', function(done) {
|
|
return this.checkSocket(this.socket, () => {
|
|
expect(this.sessionStore.get.called).to.equal(false);
|
|
return done();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('with a different cookie', function() {
|
|
before(function() {
|
|
return this.socket = {handshake: {_signedCookies: {other: 1}}};});
|
|
|
|
it('should return a lookup error', function(done) {
|
|
return this.checkSocket(this.socket, (error) => {
|
|
expect(error).to.exist;
|
|
expect(error.message).to.equal('could not look up session by key');
|
|
return done();
|
|
});
|
|
});
|
|
|
|
return it('should not query redis', function(done) {
|
|
return this.checkSocket(this.socket, () => {
|
|
expect(this.sessionStore.get.called).to.equal(false);
|
|
return done();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('with a valid cookie and a failing session lookup', function() {
|
|
before(function() {
|
|
return this.socket = {handshake: {_signedCookies: {'ol.sid': 'error'}}};});
|
|
|
|
it('should query redis', function(done) {
|
|
return this.checkSocket(this.socket, () => {
|
|
expect(this.sessionStore.get.called).to.equal(true);
|
|
return done();
|
|
});
|
|
});
|
|
|
|
return it('should return a redis error', function(done) {
|
|
return this.checkSocket(this.socket, (error) => {
|
|
expect(error).to.exist;
|
|
expect(error.message).to.equal('Redis: something went wrong');
|
|
return done();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('with a valid cookie and no matching session', function() {
|
|
before(function() {
|
|
return this.socket = {handshake: {_signedCookies: {'ol.sid': 'unknownId'}}};});
|
|
|
|
it('should query redis', function(done) {
|
|
return this.checkSocket(this.socket, () => {
|
|
expect(this.sessionStore.get.called).to.equal(true);
|
|
return done();
|
|
});
|
|
});
|
|
|
|
return it('should return a lookup error', function(done) {
|
|
return this.checkSocket(this.socket, (error) => {
|
|
expect(error).to.exist;
|
|
expect(error.message).to.equal('could not look up session by key');
|
|
return done();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('with a valid cookie and a matching session', function() {
|
|
before(function() {
|
|
return this.socket = {handshake: {_signedCookies: {'ol.sid': this.id1}}};});
|
|
|
|
it('should query redis', function(done) {
|
|
return this.checkSocket(this.socket, () => {
|
|
expect(this.sessionStore.get.called).to.equal(true);
|
|
return done();
|
|
});
|
|
});
|
|
|
|
it('should not return an error', function(done) {
|
|
return this.checkSocket(this.socket, (error) => {
|
|
expect(error).to.not.exist;
|
|
return done();
|
|
});
|
|
});
|
|
|
|
return it('should return the session', function(done) {
|
|
return this.checkSocket(this.socket, (error, s, session) => {
|
|
expect(session).to.deep.equal({user: {_id: '123'}});
|
|
return done();
|
|
});
|
|
});
|
|
});
|
|
|
|
return describe('with a different valid cookie and matching session', function() {
|
|
before(function() {
|
|
return this.socket = {handshake: {_signedCookies: {'ol.sid': this.id2}}};});
|
|
|
|
it('should query redis', function(done) {
|
|
return this.checkSocket(this.socket, () => {
|
|
expect(this.sessionStore.get.called).to.equal(true);
|
|
return done();
|
|
});
|
|
});
|
|
|
|
it('should not return an error', function(done) {
|
|
return this.checkSocket(this.socket, (error) => {
|
|
expect(error).to.not.exist;
|
|
return done();
|
|
});
|
|
});
|
|
|
|
return it('should return the other session', function(done) {
|
|
return this.checkSocket(this.socket, (error, s, session) => {
|
|
expect(session).to.deep.equal({user: {_id: 'abc'}});
|
|
return done();
|
|
});
|
|
});
|
|
});
|
|
});
|