mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
f29762f4dd
Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
'use strict';
|
|
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!');
|
|
}, common.platformTimeout(1000)).unref();
|
|
|
|
process.on('uncaughtException', catcher);
|
|
var errors = 0;
|
|
function catcher() {
|
|
errors++;
|
|
}
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(errors, 10);
|
|
console.log('ok');
|
|
});
|