mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 08:00:26 +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>
49 lines
1.0 KiB
JavaScript
49 lines
1.0 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
|
|
var ntimeouts = 0;
|
|
var nchunks = 0;
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(ntimeouts, 1);
|
|
assert.equal(nchunks, 2);
|
|
});
|
|
|
|
const options = {
|
|
method: 'GET',
|
|
port: undefined,
|
|
host: '127.0.0.1',
|
|
path: '/'
|
|
};
|
|
|
|
const server = http.createServer(function(req, res) {
|
|
res.writeHead(200, {'Content-Length': '2'});
|
|
res.write('*');
|
|
setTimeout(function() { res.end('*'); }, common.platformTimeout(100));
|
|
});
|
|
|
|
server.listen(0, options.host, function() {
|
|
options.port = this.address().port;
|
|
const req = http.request(options, onresponse);
|
|
req.end();
|
|
|
|
function onresponse(res) {
|
|
req.setTimeout(50, function() {
|
|
assert.equal(nchunks, 1); // should have received the first chunk by now
|
|
ntimeouts++;
|
|
});
|
|
|
|
res.on('data', function(data) {
|
|
assert.equal('' + data, '*');
|
|
nchunks++;
|
|
});
|
|
|
|
res.on('end', function() {
|
|
assert.equal(nchunks, 2);
|
|
server.close();
|
|
});
|
|
}
|
|
});
|