mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-27 11:01:56 +02:00
105 lines
2.7 KiB
JavaScript
105 lines
2.7 KiB
JavaScript
const APP_ROOT = '../../../../app/src'
|
|
const SandboxedModule = require('sandboxed-module')
|
|
const sinon = require('sinon')
|
|
const { expect } = require('chai')
|
|
|
|
const modulePath = `${APP_ROOT}/Features/SamlLog/SamlLogHandler`
|
|
|
|
describe('SamlLogHandler', function () {
|
|
let SamlLog, SamlLogHandler, SamlLogModel
|
|
|
|
let data, providerId, samlLog, sessionId
|
|
|
|
beforeEach(function () {
|
|
samlLog = {
|
|
save: sinon.stub(),
|
|
}
|
|
SamlLog = function () {
|
|
return samlLog
|
|
}
|
|
SamlLogModel = { SamlLog }
|
|
SamlLogHandler = SandboxedModule.require(modulePath, {
|
|
requires: {
|
|
'../../models/SamlLog': SamlLogModel,
|
|
},
|
|
})
|
|
|
|
data = { foo: true }
|
|
providerId = 'provider-id'
|
|
sessionId = 'session-id'
|
|
})
|
|
|
|
describe('with valid data object', function () {
|
|
beforeEach(function () {
|
|
SamlLogHandler.log(
|
|
{
|
|
session: { saml: { universityId: providerId } },
|
|
sessionID: sessionId,
|
|
},
|
|
data
|
|
)
|
|
})
|
|
|
|
it('should log data', function () {
|
|
samlLog.providerId.should.equal(providerId)
|
|
samlLog.sessionId.should.equal(sessionId.substr(0, 8))
|
|
samlLog.jsonData.should.equal(
|
|
JSON.stringify({
|
|
foo: true,
|
|
samlSession: { universityId: 'provider-id' },
|
|
})
|
|
)
|
|
expect(samlLog.data).to.be.undefined
|
|
samlLog.save.should.have.been.calledOnce
|
|
})
|
|
})
|
|
|
|
describe('when a json stringify error occurs', function () {
|
|
beforeEach(function () {
|
|
const circularRef = {}
|
|
circularRef.circularRef = circularRef
|
|
|
|
SamlLogHandler.log(
|
|
{
|
|
session: { saml: { universityId: providerId } },
|
|
sessionID: sessionId,
|
|
},
|
|
circularRef
|
|
)
|
|
})
|
|
|
|
it('should log without data and log error', function () {
|
|
samlLog.providerId.should.equal(providerId)
|
|
samlLog.sessionId.should.equal(sessionId.substr(0, 8))
|
|
expect(samlLog.data).to.be.undefined
|
|
expect(samlLog.jsonData).to.be.undefined
|
|
samlLog.save.should.have.been.calledOnce
|
|
this.logger.error.should.have.been.calledOnce.and.calledWithMatch(
|
|
{ providerId, sessionId: sessionId.substr(0, 8) },
|
|
'SamlLog JSON.stringify Error'
|
|
)
|
|
})
|
|
})
|
|
|
|
describe('when logging error occurs', function () {
|
|
beforeEach(function () {
|
|
samlLog.save = sinon.stub().yields('error')
|
|
|
|
SamlLogHandler.log(
|
|
{
|
|
session: { saml: { universityId: providerId } },
|
|
sessionID: sessionId,
|
|
},
|
|
data
|
|
)
|
|
})
|
|
|
|
it('should log error', function () {
|
|
this.logger.error.should.have.been.calledOnce.and.calledWithMatch(
|
|
{ err: 'error', providerId, sessionId: sessionId.substr(0, 8) },
|
|
'SamlLog Error'
|
|
)
|
|
})
|
|
})
|
|
})
|