do not expose when err.status not valid
This commit is contained in:
parent
e2f61595b8
commit
fa5948cca3
3 changed files with 27 additions and 4 deletions
|
@ -75,7 +75,7 @@ var proto = module.exports = {
|
|||
|
||||
var err = msg instanceof Error ? msg : new Error(msg);
|
||||
err.status = status || err.status || 500;
|
||||
err.expose = err.status < 500;
|
||||
err.expose = 'number' == typeof err.status && http.STATUS_CODES[err.status] && err.status < 500;
|
||||
throw err;
|
||||
},
|
||||
|
||||
|
|
|
@ -50,6 +50,7 @@ describe('ctx.onerror(err)', function(){
|
|||
done();
|
||||
})
|
||||
})
|
||||
|
||||
describe('when invalid err.status', function(){
|
||||
describe('not number', function(){
|
||||
it('should respond 500', function(done){
|
||||
|
@ -59,7 +60,7 @@ describe('ctx.onerror(err)', function(){
|
|||
this.body = 'something else';
|
||||
var err = new Error('some error');
|
||||
err.status = 'notnumber';
|
||||
this.throw(err);
|
||||
throw err;
|
||||
})
|
||||
|
||||
var server = app.listen();
|
||||
|
@ -80,7 +81,7 @@ describe('ctx.onerror(err)', function(){
|
|||
this.body = 'something else';
|
||||
var err = new Error('some error');
|
||||
err.status = 9999;
|
||||
this.throw(err);
|
||||
throw err;
|
||||
})
|
||||
|
||||
var server = app.listen();
|
||||
|
|
|
@ -10,7 +10,7 @@ describe('ctx.throw(msg)', function(){
|
|||
ctx.throw('boom');
|
||||
} catch (err) {
|
||||
assert(500 == err.status);
|
||||
assert(false === err.expose);
|
||||
assert(!err.expose);
|
||||
done();
|
||||
}
|
||||
})
|
||||
|
@ -26,6 +26,7 @@ describe('ctx.throw(err)', function(){
|
|||
} catch (err) {
|
||||
assert(500 == err.status);
|
||||
assert('test' == err.message);
|
||||
assert(!err.expose);
|
||||
done();
|
||||
}
|
||||
})
|
||||
|
@ -41,6 +42,7 @@ describe('ctx.throw(err, status)', function(){
|
|||
} catch (err) {
|
||||
assert(422 == err.status);
|
||||
assert('test' == err.message);
|
||||
assert(true === err.expose);
|
||||
done();
|
||||
}
|
||||
})
|
||||
|
@ -56,6 +58,7 @@ describe('ctx.throw(status, err)', function(){
|
|||
} catch (err) {
|
||||
assert(422 == err.status);
|
||||
assert('test' == err.message);
|
||||
assert(true === err.expose);
|
||||
done();
|
||||
}
|
||||
})
|
||||
|
@ -70,6 +73,7 @@ describe('ctx.throw(msg, status)', function(){
|
|||
} catch (err) {
|
||||
assert('name required' == err.message);
|
||||
assert(400 == err.status);
|
||||
assert(true === err.expose);
|
||||
done();
|
||||
}
|
||||
})
|
||||
|
@ -84,6 +88,7 @@ describe('ctx.throw(status, msg)', function(){
|
|||
} catch (err) {
|
||||
assert('name required' == err.message);
|
||||
assert(400 == err.status);
|
||||
assert(true === err.expose);
|
||||
done();
|
||||
}
|
||||
})
|
||||
|
@ -98,7 +103,24 @@ describe('ctx.throw(status)', function(){
|
|||
} catch (err) {
|
||||
assert('Bad Request' == err.message);
|
||||
assert(400 == err.status);
|
||||
assert(true === err.expose);
|
||||
done();
|
||||
}
|
||||
})
|
||||
|
||||
describe('when not valid status', function(){
|
||||
it('should not expose', function(done){
|
||||
var ctx = context();
|
||||
|
||||
try {
|
||||
var err = new Error('some error');
|
||||
err.status = -1;
|
||||
ctx.throw(err);
|
||||
} catch(err) {
|
||||
assert('some error' == err.message);
|
||||
assert(!err.expose);
|
||||
done();
|
||||
}
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue