2015-10-12 04:59:30 +00:00
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2017-05-11 03:30:32 +00:00
|
|
|
const assert = require('assert');
|
2015-10-13 06:19:42 +00:00
|
|
|
const Koa = require('../..');
|
2019-07-30 10:00:43 +00:00
|
|
|
const mm = require('mm');
|
2015-10-12 04:59:30 +00:00
|
|
|
|
2015-10-25 07:54:57 +00:00
|
|
|
describe('app.onerror(err)', () => {
|
2019-07-30 10:00:43 +00:00
|
|
|
afterEach(mm.restore);
|
2017-05-11 03:30:32 +00:00
|
|
|
|
|
|
|
it('should throw an error if a non-error is given', () => {
|
|
|
|
const app = new Koa();
|
2015-10-12 04:59:30 +00:00
|
|
|
|
2017-05-11 03:30:32 +00:00
|
|
|
assert.throws(() => {
|
|
|
|
app.onerror('foo');
|
2018-06-06 04:55:20 +00:00
|
|
|
}, TypeError, 'non-error thrown: foo');
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
2015-10-12 04:59:30 +00:00
|
|
|
|
2017-05-11 03:30:32 +00:00
|
|
|
it('should do nothing if status is 404', () => {
|
2015-10-13 06:19:42 +00:00
|
|
|
const app = new Koa();
|
2015-10-12 04:59:30 +00:00
|
|
|
const err = new Error();
|
|
|
|
|
|
|
|
err.status = 404;
|
|
|
|
|
2019-07-30 10:00:43 +00:00
|
|
|
let called = false;
|
|
|
|
mm(console, 'error', () => { called = true; });
|
2017-05-11 03:30:32 +00:00
|
|
|
app.onerror(err);
|
2019-07-30 10:00:43 +00:00
|
|
|
assert(!called);
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
2015-10-12 04:59:30 +00:00
|
|
|
|
2017-05-11 03:30:32 +00:00
|
|
|
it('should do nothing if .silent', () => {
|
2015-10-13 06:19:42 +00:00
|
|
|
const app = new Koa();
|
2015-10-12 04:59:30 +00:00
|
|
|
app.silent = true;
|
|
|
|
const err = new Error();
|
|
|
|
|
2019-07-30 10:00:43 +00:00
|
|
|
let called = false;
|
|
|
|
mm(console, 'error', () => { called = true; });
|
2017-05-11 03:30:32 +00:00
|
|
|
app.onerror(err);
|
2019-07-30 10:00:43 +00:00
|
|
|
assert(!called);
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
2015-10-12 04:59:30 +00:00
|
|
|
|
2017-05-11 03:30:32 +00:00
|
|
|
it('should log the error to stderr', () => {
|
2015-10-13 06:19:42 +00:00
|
|
|
const app = new Koa();
|
2015-10-12 04:59:30 +00:00
|
|
|
app.env = 'dev';
|
|
|
|
|
|
|
|
const err = new Error();
|
|
|
|
err.stack = 'Foo';
|
|
|
|
|
2019-07-30 10:00:43 +00:00
|
|
|
let msg = '';
|
|
|
|
mm(console, 'error', input => {
|
|
|
|
if (input) msg = input;
|
|
|
|
});
|
2017-05-11 03:30:32 +00:00
|
|
|
app.onerror(err);
|
2019-07-30 10:00:43 +00:00
|
|
|
assert(msg === ' Foo');
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
2015-10-12 04:59:30 +00:00
|
|
|
|
2017-05-11 03:30:32 +00:00
|
|
|
it('should use err.toString() instad of err.stack', () => {
|
2015-10-13 06:19:42 +00:00
|
|
|
const app = new Koa();
|
2015-10-12 04:59:30 +00:00
|
|
|
app.env = 'dev';
|
|
|
|
|
|
|
|
const err = new Error('mock stack null');
|
|
|
|
err.stack = null;
|
|
|
|
|
2017-05-11 03:30:32 +00:00
|
|
|
app.onerror(err);
|
2015-10-12 04:59:30 +00:00
|
|
|
|
2019-07-30 10:00:43 +00:00
|
|
|
let msg = '';
|
|
|
|
mm(console, 'error', input => {
|
|
|
|
if (input) msg = input;
|
|
|
|
});
|
|
|
|
app.onerror(err);
|
|
|
|
assert(msg === ' Error: mock stack null');
|
2015-10-12 20:36:41 +00:00
|
|
|
});
|
|
|
|
});
|