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
|
|
|
|
|
|
|
describe('ctx.onerror(err)', function(){
|
|
|
|
it('should respond', function(done){
|
2015-10-13 06:19:42 +00:00
|
|
|
const app = new Koa();
|
2014-01-24 22:29:57 +00:00
|
|
|
|
|
|
|
app.use(function *(next){
|
|
|
|
this.body = 'something else';
|
|
|
|
|
2014-03-13 01:29:14 +00:00
|
|
|
this.throw(418, 'boom');
|
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)
|
|
|
|
.get('/')
|
2014-03-13 01:29:14 +00:00
|
|
|
.expect(418)
|
2014-01-24 22:29:57 +00:00
|
|
|
.expect('Content-Type', 'text/plain; charset=utf-8')
|
|
|
|
.expect('Content-Length', '4')
|
|
|
|
.end(done);
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should unset all headers', function(done){
|
2015-10-13 06:19:42 +00:00
|
|
|
const app = new Koa();
|
2014-01-24 22:29:57 +00:00
|
|
|
|
|
|
|
app.use(function *(next){
|
|
|
|
this.set('Vary', 'Accept-Encoding');
|
|
|
|
this.set('X-CSRF-Token', 'asdf');
|
|
|
|
this.body = 'response';
|
|
|
|
|
2014-03-13 01:29:14 +00:00
|
|
|
this.throw(418, 'boom');
|
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)
|
|
|
|
.get('/')
|
2014-03-13 01:29:14 +00:00
|
|
|
.expect(418)
|
2014-01-24 22:29:57 +00:00
|
|
|
.expect('Content-Type', 'text/plain; charset=utf-8')
|
|
|
|
.expect('Content-Length', '4')
|
|
|
|
.end(function(err, res){
|
|
|
|
if (err) return done(err);
|
|
|
|
|
|
|
|
res.headers.should.not.have.property('vary');
|
|
|
|
res.headers.should.not.have.property('x-csrf-token');
|
|
|
|
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
})
|
2014-08-06 13:31:55 +00:00
|
|
|
|
2014-08-06 13:10:52 +00:00
|
|
|
describe('when invalid err.status', function(){
|
|
|
|
describe('not number', function(){
|
|
|
|
it('should respond 500', function(done){
|
2015-10-13 06:19:42 +00:00
|
|
|
const app = new Koa();
|
2014-08-06 13:10:52 +00:00
|
|
|
|
|
|
|
app.use(function *(next){
|
|
|
|
this.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;
|
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)
|
|
|
|
.get('/')
|
|
|
|
.expect(500)
|
|
|
|
.expect('Content-Type', 'text/plain; charset=utf-8')
|
|
|
|
.expect('Internal Server Error', done);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('not http status code', function(){
|
|
|
|
it('should respond 500', function(done){
|
2015-10-13 06:19:42 +00:00
|
|
|
const app = new Koa();
|
2014-08-06 13:10:52 +00:00
|
|
|
|
|
|
|
app.use(function *(next){
|
|
|
|
this.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;
|
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)
|
|
|
|
.get('/')
|
|
|
|
.expect(500)
|
|
|
|
.expect('Content-Type', 'text/plain; charset=utf-8')
|
|
|
|
.expect('Internal Server Error', done);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
2015-04-14 02:30:19 +00:00
|
|
|
|
|
|
|
describe('when non-error thrown', function(){
|
|
|
|
it('should response non-error thrown message', function(done){
|
2015-10-13 06:19:42 +00:00
|
|
|
const app = new Koa();
|
2015-04-14 02:30:19 +00:00
|
|
|
|
|
|
|
app.use(function *(next){
|
|
|
|
throw 'string error';
|
|
|
|
})
|
|
|
|
|
2015-10-05 18:23:47 +00:00
|
|
|
const server = app.listen();
|
2015-04-14 02:30:19 +00:00
|
|
|
|
|
|
|
request(server)
|
|
|
|
.get('/')
|
|
|
|
.expect(500)
|
|
|
|
.expect('Content-Type', 'text/plain; charset=utf-8')
|
|
|
|
.expect('Internal Server Error', done);
|
|
|
|
})
|
|
|
|
})
|
2014-04-24 17:08:08 +00:00
|
|
|
})
|