overleaf/services/web/test/acceptance/src/BodyParserErrorsTest.mjs
Andrew Rumble e0dba75b81 Convert top level acceptance tests to ES module
GitOrigin-RevId: ab45010ec557d62576c470d2e024549e67261c66
2024-10-16 09:35:34 +00:00

87 lines
2.2 KiB
JavaScript

import Settings from '@overleaf/settings'
import request from './helpers/request.js'
// create a string that is longer than the max allowed (as defined in Server.js)
const wayTooLongString = 'a'.repeat(Settings.max_json_request_size + 1)
describe('BodyParserErrors', function () {
describe('when request is too large', function () {
describe('json', function () {
it('return 413', function (done) {
request.post(
{
url: '/login',
body: { password: wayTooLongString },
json: true,
},
(error, response, body) => {
if (error) {
return done(error)
}
response.statusCode.should.equal(413)
body.should.deep.equal({})
done()
}
)
})
})
describe('urlencoded', function () {
it('return 413', function (done) {
request.post(
{
url: '/login',
form: { password: wayTooLongString },
},
(error, response, body) => {
if (error) {
return done(error)
}
response.statusCode.should.equal(413)
body.should.match(/There was a problem with your request/)
done()
}
)
})
})
})
describe('when request is not too large', function () {
describe('json', function () {
it('return normal status code', function (done) {
request.post(
{
url: '/login',
body: { password: 'foo' },
json: true,
},
(error, response, body) => {
if (error) {
return done(error)
}
response.statusCode.should.equal(403)
done()
}
)
})
})
describe('urlencoded', function () {
it('return normal status code', function (done) {
request.post(
{
url: '/login',
form: { password: 'foo' },
},
(error, response, body) => {
if (error) {
return done(error)
}
response.statusCode.should.equal(403)
done()
}
)
})
})
})
})