node/test/parallel/test-http-keepalive-client.js
Brian White 2bc7841d0f
test: use random ports where possible
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>
2016-06-10 22:30:55 -04:00

74 lines
1.3 KiB
JavaScript

'use strict';
require('../common');
var assert = require('assert');
var http = require('http');
var serverSocket = null;
var server = http.createServer(function(req, res) {
// They should all come in on the same server socket.
if (serverSocket) {
assert.equal(req.socket, serverSocket);
} else {
serverSocket = req.socket;
}
res.end(req.url);
});
server.listen(0, function() {
makeRequest(expectRequests);
});
var agent = http.Agent({ keepAlive: true });
var clientSocket = null;
var expectRequests = 10;
var actualRequests = 0;
function makeRequest(n) {
if (n === 0) {
server.close();
agent.destroy();
return;
}
var req = http.request({
port: server.address().port,
agent: agent,
path: '/' + n
});
req.end();
req.on('socket', function(sock) {
if (clientSocket) {
assert.equal(sock, clientSocket);
} else {
clientSocket = sock;
}
});
req.on('response', function(res) {
var data = '';
res.setEncoding('utf8');
res.on('data', function(c) {
data += c;
});
res.on('end', function() {
assert.equal(data, '/' + n);
setTimeout(function() {
actualRequests++;
makeRequest(n - 1);
}, 1);
});
});
}
process.on('exit', function() {
assert.equal(actualRequests, expectRequests);
console.log('ok');
});