mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 08:19:38 +01:00
3e1b1dd4a9
The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
47 lines
1.0 KiB
JavaScript
47 lines
1.0 KiB
JavaScript
var common = require('../common');
|
|
var 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.
|
|
|
|
var http = require('http');
|
|
|
|
var n = 0;
|
|
var server = http.createServer(function(req, res) {
|
|
if (++n === 10) server.close();
|
|
res.end('ok');
|
|
});
|
|
|
|
server.listen(common.PORT, function() {
|
|
for (var i = 0; i < 10; i++) {
|
|
var options = { port: common.PORT };
|
|
|
|
var req = http.request(options, function (res) {
|
|
res.resume()
|
|
res.on('end', function() {
|
|
throw new Error('gleep glorp');
|
|
});
|
|
});
|
|
req.end();
|
|
}
|
|
});
|
|
|
|
setTimeout(function() {
|
|
process.removeListener('uncaughtException', catcher);
|
|
throw new Error('Taking too long!');
|
|
}, 1000).unref();
|
|
|
|
process.on('uncaughtException', catcher);
|
|
var errors = 0;
|
|
function catcher() {
|
|
errors++;
|
|
}
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(errors, 10);
|
|
console.log('ok');
|
|
});
|