2020-07-27 06:46:27 -04:00
|
|
|
const { expect } = require('chai')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
requireLogin: {
|
|
|
|
json(response, body) {
|
|
|
|
expect(response.statusCode).to.equal(401)
|
|
|
|
expect(body).to.equal('Unauthorized')
|
|
|
|
expect(response.headers['www-authenticate']).to.equal('OverleafLogin')
|
2021-04-27 03:52:58 -04:00
|
|
|
},
|
2020-07-27 06:46:27 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
restricted: {
|
|
|
|
html(response, body) {
|
|
|
|
expect(response.statusCode).to.equal(403)
|
|
|
|
expect(body).to.match(/<head><title>Restricted/)
|
|
|
|
},
|
|
|
|
json(response, body) {
|
|
|
|
expect(response.statusCode).to.equal(403)
|
|
|
|
expect(body).to.deep.equal({ message: 'restricted' })
|
2021-04-27 03:52:58 -04:00
|
|
|
},
|
|
|
|
},
|
2020-07-27 06:46:27 -04:00
|
|
|
}
|