mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 15:32:15 +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
875 B
JavaScript
40 lines
875 B
JavaScript
'use strict';
|
|
require('../common');
|
|
|
|
// no warnings should happen!
|
|
var trace = console.trace;
|
|
console.trace = function() {
|
|
trace.apply(console, arguments);
|
|
throw new Error('no tracing should happen here');
|
|
};
|
|
|
|
var http = require('http');
|
|
var net = require('net');
|
|
|
|
var numRequests = 20;
|
|
var first = false;
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
if (!first) {
|
|
first = true;
|
|
req.socket.on('close', function() {
|
|
server.close();
|
|
});
|
|
}
|
|
|
|
res.end('ok');
|
|
// Oh no! The connection died!
|
|
req.socket.destroy();
|
|
});
|
|
|
|
server.listen(0, function() {
|
|
var client = net.connect({ port: this.address().port, allowHalfOpen: true });
|
|
for (var i = 0; i < numRequests; i++) {
|
|
client.write('GET / HTTP/1.1\r\n' +
|
|
'Host: some.host.name\r\n' +
|
|
'\r\n\r\n');
|
|
}
|
|
client.end();
|
|
client.pipe(process.stdout);
|
|
});
|