mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
2bc7841d0f
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>
78 lines
1.7 KiB
JavaScript
78 lines
1.7 KiB
JavaScript
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
|
|
var body = 'hello world\n';
|
|
var headers = {'connection': 'keep-alive'};
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
res.writeHead(200, {'Content-Length': body.length, 'Connection': 'close'});
|
|
res.write(body);
|
|
res.end();
|
|
});
|
|
|
|
var connectCount = 0;
|
|
|
|
|
|
server.listen(0, function() {
|
|
var agent = new http.Agent({ maxSockets: 1 });
|
|
var name = agent.getName({ port: this.address().port });
|
|
var request = http.request({
|
|
method: 'GET',
|
|
path: '/',
|
|
headers: headers,
|
|
port: this.address().port,
|
|
agent: agent
|
|
}, function(res) {
|
|
assert.equal(1, agent.sockets[name].length);
|
|
res.resume();
|
|
});
|
|
request.on('socket', function(s) {
|
|
s.on('connect', function() {
|
|
connectCount++;
|
|
});
|
|
});
|
|
request.end();
|
|
|
|
request = http.request({
|
|
method: 'GET',
|
|
path: '/',
|
|
headers: headers,
|
|
port: this.address().port,
|
|
agent: agent
|
|
}, function(res) {
|
|
assert.equal(1, agent.sockets[name].length);
|
|
res.resume();
|
|
});
|
|
request.on('socket', function(s) {
|
|
s.on('connect', function() {
|
|
connectCount++;
|
|
});
|
|
});
|
|
request.end();
|
|
request = http.request({
|
|
method: 'GET',
|
|
path: '/',
|
|
headers: headers,
|
|
port: this.address().port,
|
|
agent: agent
|
|
}, function(response) {
|
|
response.on('end', function() {
|
|
assert.equal(1, agent.sockets[name].length);
|
|
server.close();
|
|
});
|
|
response.resume();
|
|
});
|
|
request.on('socket', function(s) {
|
|
s.on('connect', function() {
|
|
connectCount++;
|
|
});
|
|
});
|
|
request.end();
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(3, connectCount);
|
|
});
|