mirror of
https://github.com/nodejs/node.git
synced 2025-05-03 03:56:02 +00:00

This helps to prevent issues where a failed test can keep a bound socket open long enough to cause other tests to fail with EADDRINUSE because the same port number is used. PR-URL: https://github.com/nodejs/node/pull/7045 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
40 lines
899 B
JavaScript
40 lines
899 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
// Make sure that throwing in 'end' handler doesn't lock
|
|
// up the socket forever.
|
|
//
|
|
// This is NOT a good way to handle errors in general, but all
|
|
// the same, we should not be so brittle and easily broken.
|
|
|
|
const http = require('http');
|
|
|
|
let n = 0;
|
|
const server = http.createServer((req, res) => {
|
|
if (++n === 10) server.close();
|
|
res.end('ok');
|
|
});
|
|
|
|
server.listen(0, common.mustCall(() => {
|
|
for (let i = 0; i < 10; i++) {
|
|
const options = { port: server.address().port };
|
|
const req = http.request(options, (res) => {
|
|
res.resume();
|
|
res.on('end', common.mustCall(() => {
|
|
throw new Error('gleep glorp');
|
|
}));
|
|
});
|
|
req.end();
|
|
}
|
|
}));
|
|
|
|
let errors = 0;
|
|
process.on('uncaughtException', () => {
|
|
errors++;
|
|
});
|
|
|
|
process.on('exit', () => {
|
|
assert.equal(errors, 10);
|
|
});
|