0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-24 20:29:23 +01:00
nodejs/test/parallel/test-http-uncaught-from-request-callback.js
Anna Henningsen fab3eff2e5
src: inform callback scopes about exceptions in HTTP parser
Refs: 4aca277f16
Refs: https://github.com/nodejs/node/pull/30236
Fixes: https://github.com/nodejs/node/issues/31796

PR-URL: https://github.com/nodejs/node/pull/31801
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: David Carlier <devnexen@gmail.com>
2020-02-18 02:50:02 +01:00

30 lines
671 B
JavaScript

'use strict';
const common = require('../common');
const asyncHooks = require('async_hooks');
const http = require('http');
// Regression test for https://github.com/nodejs/node/issues/31796
asyncHooks.createHook({
after: () => {}
}).enable();
process.once('uncaughtException', common.mustCall(() => {
server.close();
}));
const server = http.createServer(common.mustCall((request, response) => {
response.writeHead(200, { 'Content-Type': 'text/plain' });
response.end();
}));
server.listen(0, common.mustCall(() => {
http.get({
host: 'localhost',
port: server.address().port
}, common.mustCall(() => {
throw new Error('whoah');
}));
}));