mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-11 23:20:47 +02:00
Remove HttpErrors.InternalServerError (#3027)
* Added legacyInternal() 500 to HttpErrorHandler * replaced HttpErrors.InternalServerError being thrown with calls to HttpHandler.legacyInternal() GitOrigin-RevId: 0b7086a9693b57cdf93976d4221b90315960e8bb
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
const { expect } = require('chai')
|
||||
const sinon = require('sinon')
|
||||
const MockResponse = require('../helpers/MockResponse')
|
||||
const MockRequest = require('../helpers/MockRequest')
|
||||
const SandboxedModule = require('sandboxed-module')
|
||||
@@ -9,8 +10,16 @@ describe('HttpErrorHandler', function() {
|
||||
this.req = new MockRequest()
|
||||
this.res = new MockResponse()
|
||||
|
||||
this.logger = {
|
||||
warn() {},
|
||||
error() {}
|
||||
}
|
||||
|
||||
this.HttpErrorHandler = SandboxedModule.require(modulePath, {
|
||||
globals: { console }
|
||||
globals: { console },
|
||||
requires: {
|
||||
'logger-sharelatex': this.logger
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
@@ -201,5 +210,51 @@ describe('HttpErrorHandler', function() {
|
||||
foo: 'bar'
|
||||
})
|
||||
})
|
||||
|
||||
describe('legacyInternal', function() {
|
||||
it('returns 500', function() {
|
||||
this.HttpErrorHandler.legacyInternal(this.req, this.res, new Error())
|
||||
expect(this.res.statusCode).to.equal(500)
|
||||
})
|
||||
|
||||
it('should send the error to the logger', function() {
|
||||
const error = new Error('message')
|
||||
this.logger.error = sinon.stub()
|
||||
this.HttpErrorHandler.legacyInternal(
|
||||
this.req,
|
||||
this.res,
|
||||
'message',
|
||||
error
|
||||
)
|
||||
expect(this.logger.error).to.have.been.calledWith(error)
|
||||
})
|
||||
|
||||
it('should print a message when no content-type is included', function() {
|
||||
this.HttpErrorHandler.legacyInternal(this.req, this.res, new Error())
|
||||
expect(this.res.body).to.equal('internal server error')
|
||||
})
|
||||
|
||||
it("should render a template when content-type is 'html'", function() {
|
||||
this.req.accepts = () => 'html'
|
||||
this.HttpErrorHandler.legacyInternal(this.req, this.res, new Error())
|
||||
expect(this.res.renderedTemplate).to.equal('general/500')
|
||||
expect(this.res.renderedVariables).to.deep.equal({
|
||||
title: 'Server Error'
|
||||
})
|
||||
})
|
||||
|
||||
it("should return a json object with a static message when content-type is 'json'", function() {
|
||||
this.req.accepts = () => 'json'
|
||||
this.HttpErrorHandler.legacyInternal(
|
||||
this.req,
|
||||
this.res,
|
||||
'a message',
|
||||
new Error()
|
||||
)
|
||||
expect(JSON.parse(this.res.body)).to.deep.equal({
|
||||
message: 'a message'
|
||||
})
|
||||
})
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user