2014-01-24 22:29:57 +00:00
|
|
|
|
2015-10-11 22:59:51 +00:00
|
|
|
'use strict';
|
|
|
|
|
2015-10-05 18:23:47 +00:00
|
|
|
const request = require('supertest');
|
2015-10-13 06:19:42 +00:00
|
|
|
const Koa = require('../..');
|
2014-01-24 22:29:57 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
describe('ctx.onerror(err)', () => {
|
|
|
|
it('should respond', done => {
|
2015-10-13 06:19:42 +00:00
|
|
|
const app = new Koa();
|
2014-01-24 22:29:57 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
app.use((ctx, next) => {
|
2015-10-14 00:45:18 +00:00
|
|
|
ctx.body = 'something else';
|
2014-01-24 22:29:57 +00:00
|
|
|
|
2015-10-14 00:45:18 +00:00
|
|
|
ctx.throw(418, 'boom');
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
2014-01-24 22:29:57 +00:00
|
|
|
|
2015-10-05 18:23:47 +00:00
|
|
|
const server = app.listen();
|
2014-01-24 22:29:57 +00:00
|
|
|
|
|
|
|
request(server)
|
2015-10-28 07:53:49 +00:00
|
|
|
.get('/')
|
|
|
|
.expect(418)
|
|
|
|
.expect('Content-Type', 'text/plain; charset=utf-8')
|
|
|
|
.expect('Content-Length', '4')
|
|
|
|
.end(done);
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
2014-01-24 22:29:57 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
it('should unset all headers', done => {
|
2015-10-13 06:19:42 +00:00
|
|
|
const app = new Koa();
|
2014-01-24 22:29:57 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
app.use((ctx, next) => {
|
2015-10-14 00:45:18 +00:00
|
|
|
ctx.set('Vary', 'Accept-Encoding');
|
|
|
|
ctx.set('X-CSRF-Token', 'asdf');
|
|
|
|
ctx.body = 'response';
|
2014-01-24 22:29:57 +00:00
|
|
|
|
2015-10-14 00:45:18 +00:00
|
|
|
ctx.throw(418, 'boom');
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
2014-01-24 22:29:57 +00:00
|
|
|
|
2015-10-05 18:23:47 +00:00
|
|
|
const server = app.listen();
|
2014-01-24 22:29:57 +00:00
|
|
|
|
|
|
|
request(server)
|
2015-10-28 07:53:49 +00:00
|
|
|
.get('/')
|
|
|
|
.expect(418)
|
|
|
|
.expect('Content-Type', 'text/plain; charset=utf-8')
|
|
|
|
.expect('Content-Length', '4')
|
2015-10-25 07:54:57 +00:00
|
|
|
.end((err, res) => {
|
2015-10-28 07:53:49 +00:00
|
|
|
if (err) return done(err);
|
2014-01-24 22:29:57 +00:00
|
|
|
|
2015-10-28 07:53:49 +00:00
|
|
|
res.headers.should.not.have.property('vary');
|
|
|
|
res.headers.should.not.have.property('x-csrf-token');
|
2014-01-24 22:29:57 +00:00
|
|
|
|
2015-10-28 07:53:49 +00:00
|
|
|
done();
|
|
|
|
});
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
2014-08-06 13:31:55 +00:00
|
|
|
|
2016-02-29 20:22:59 +00:00
|
|
|
it('should set headers specified in the error', done => {
|
|
|
|
const app = new Koa();
|
|
|
|
|
|
|
|
app.use((ctx, next) => {
|
|
|
|
ctx.set('Vary', 'Accept-Encoding');
|
|
|
|
ctx.set('X-CSRF-Token', 'asdf');
|
|
|
|
ctx.body = 'response';
|
|
|
|
|
|
|
|
throw Object.assign(new Error('boom'), {
|
|
|
|
status: 418,
|
|
|
|
expose: true,
|
|
|
|
headers: {
|
|
|
|
'X-New-Header': 'Value'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
const server = app.listen();
|
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(418)
|
|
|
|
.expect('Content-Type', 'text/plain; charset=utf-8')
|
|
|
|
.expect('X-New-Header', 'Value')
|
|
|
|
.end((err, res) => {
|
|
|
|
if (err) return done(err);
|
|
|
|
|
|
|
|
res.headers.should.not.have.property('vary');
|
|
|
|
res.headers.should.not.have.property('x-csrf-token');
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
describe('when invalid err.status', () => {
|
|
|
|
describe('not number', () => {
|
|
|
|
it('should respond 500', done => {
|
2015-10-13 06:19:42 +00:00
|
|
|
const app = new Koa();
|
2014-08-06 13:10:52 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
app.use((ctx, next) => {
|
2015-10-14 00:45:18 +00:00
|
|
|
ctx.body = 'something else';
|
2015-10-05 18:23:47 +00:00
|
|
|
const err = new Error('some error');
|
2014-08-06 13:10:52 +00:00
|
|
|
err.status = 'notnumber';
|
2014-08-06 13:31:55 +00:00
|
|
|
throw err;
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
2014-08-06 13:10:52 +00:00
|
|
|
|
2015-10-05 18:23:47 +00:00
|
|
|
const server = app.listen();
|
2014-08-06 13:10:52 +00:00
|
|
|
|
|
|
|
request(server)
|
2015-10-28 07:53:49 +00:00
|
|
|
.get('/')
|
|
|
|
.expect(500)
|
|
|
|
.expect('Content-Type', 'text/plain; charset=utf-8')
|
|
|
|
.expect('Internal Server Error', done);
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
|
|
|
});
|
2014-08-06 13:10:52 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
describe('not http status code', () => {
|
|
|
|
it('should respond 500', done => {
|
2015-10-13 06:19:42 +00:00
|
|
|
const app = new Koa();
|
2014-08-06 13:10:52 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
app.use((ctx, next) => {
|
2015-10-14 00:45:18 +00:00
|
|
|
ctx.body = 'something else';
|
2015-10-05 18:23:47 +00:00
|
|
|
const err = new Error('some error');
|
2014-08-06 13:10:52 +00:00
|
|
|
err.status = 9999;
|
2014-08-06 13:31:55 +00:00
|
|
|
throw err;
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
2014-08-06 13:10:52 +00:00
|
|
|
|
2015-10-05 18:23:47 +00:00
|
|
|
const server = app.listen();
|
2014-08-06 13:10:52 +00:00
|
|
|
|
|
|
|
request(server)
|
2015-10-28 07:53:49 +00:00
|
|
|
.get('/')
|
|
|
|
.expect(500)
|
|
|
|
.expect('Content-Type', 'text/plain; charset=utf-8')
|
|
|
|
.expect('Internal Server Error', done);
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2015-04-14 02:30:19 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
describe('when non-error thrown', () => {
|
|
|
|
it('should response non-error thrown message', done => {
|
2015-10-13 06:19:42 +00:00
|
|
|
const app = new Koa();
|
2015-04-14 02:30:19 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
app.use((ctx, next) => {
|
2015-10-12 20:36:41 +00:00
|
|
|
throw 'string error'; // eslint-disable-line no-throw-literal
|
|
|
|
});
|
2015-04-14 02:30:19 +00:00
|
|
|
|
2015-10-05 18:23:47 +00:00
|
|
|
const server = app.listen();
|
2015-04-14 02:30:19 +00:00
|
|
|
|
|
|
|
request(server)
|
2015-10-28 07:53:49 +00:00
|
|
|
.get('/')
|
|
|
|
.expect(500)
|
|
|
|
.expect('Content-Type', 'text/plain; charset=utf-8')
|
|
|
|
.expect('Internal Server Error', done);
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|