mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 05:41:13 +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>
44 lines
1.0 KiB
JavaScript
44 lines
1.0 KiB
JavaScript
'use strict';
|
|
// https://github.com/joyent/node/issues/4948
|
|
|
|
require('../common');
|
|
var http = require('http');
|
|
|
|
var reqCount = 0;
|
|
var server = http.createServer(function(serverReq, serverRes) {
|
|
if (reqCount) {
|
|
serverRes.end();
|
|
server.close();
|
|
return;
|
|
}
|
|
reqCount = 1;
|
|
|
|
|
|
// normally the use case would be to call an external site
|
|
// does not require connecting locally or to itself to fail
|
|
var r = http.request({hostname: 'localhost',
|
|
port: this.address().port}, function(res) {
|
|
// required, just needs to be in the client response somewhere
|
|
serverRes.end();
|
|
|
|
// required for test to fail
|
|
res.on('data', function(data) { });
|
|
|
|
});
|
|
r.on('error', function(e) {});
|
|
r.end();
|
|
|
|
serverRes.write('some data');
|
|
}).listen(0, function() {
|
|
// simulate a client request that closes early
|
|
var net = require('net');
|
|
|
|
var sock = new net.Socket();
|
|
sock.connect(this.address().port, 'localhost');
|
|
|
|
sock.on('connect', function() {
|
|
sock.write('GET / HTTP/1.1\r\n\r\n');
|
|
sock.end();
|
|
});
|
|
});
|