2015-05-19 11:00:06 +00:00
|
|
|
'use strict';
|
2016-12-30 23:38:06 +00:00
|
|
|
const common = require('../common');
|
|
|
|
const http = require('http');
|
|
|
|
const assert = require('assert');
|
2011-07-01 22:49:39 +00:00
|
|
|
|
|
|
|
var N = 20;
|
|
|
|
var responses = 0;
|
|
|
|
var maxQueued = 0;
|
|
|
|
|
2011-08-02 04:22:30 +00:00
|
|
|
var agent = http.globalAgent;
|
2011-07-01 22:49:39 +00:00
|
|
|
agent.maxSockets = 10;
|
|
|
|
|
2011-10-04 22:08:18 +00:00
|
|
|
var server = http.createServer(function(req, res) {
|
2011-07-01 22:49:39 +00:00
|
|
|
res.writeHead(200);
|
|
|
|
res.end('Hello World\n');
|
|
|
|
});
|
|
|
|
|
2013-05-23 01:44:24 +00:00
|
|
|
var addrString = agent.getName({ host: '127.0.0.1', port: common.PORT });
|
2012-01-17 18:43:34 +00:00
|
|
|
|
2011-10-04 22:08:18 +00:00
|
|
|
server.listen(common.PORT, '127.0.0.1', function() {
|
2011-07-01 22:49:39 +00:00
|
|
|
for (var i = 0; i < N; i++) {
|
|
|
|
var options = {
|
|
|
|
host: '127.0.0.1',
|
2011-10-04 22:08:18 +00:00
|
|
|
port: common.PORT
|
2011-07-01 22:49:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
var req = http.get(options, function(res) {
|
2016-08-14 03:47:09 +00:00
|
|
|
if (++responses === N) {
|
2011-07-01 22:49:39 +00:00
|
|
|
server.close();
|
|
|
|
}
|
2012-12-13 15:47:33 +00:00
|
|
|
res.resume();
|
2011-07-01 22:49:39 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
assert.equal(req.agent, agent);
|
|
|
|
|
2012-01-17 18:43:34 +00:00
|
|
|
console.log('Socket: ' + agent.sockets[addrString].length + '/' +
|
|
|
|
agent.maxSockets + ' queued: ' + (agent.requests[addrString] ?
|
2013-05-23 01:44:24 +00:00
|
|
|
agent.requests[addrString].length : 0));
|
2012-01-17 18:43:34 +00:00
|
|
|
|
|
|
|
var agentRequests = agent.requests[addrString] ?
|
2012-02-18 23:01:35 +00:00
|
|
|
agent.requests[addrString].length : 0;
|
2011-07-01 22:49:39 +00:00
|
|
|
|
2012-01-17 18:43:34 +00:00
|
|
|
if (maxQueued < agentRequests) {
|
|
|
|
maxQueued = agentRequests;
|
2011-07-01 22:49:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
process.on('exit', function() {
|
2016-08-14 03:47:09 +00:00
|
|
|
assert.strictEqual(responses, N);
|
2011-07-01 22:49:39 +00:00
|
|
|
assert.ok(maxQueued <= 10);
|
|
|
|
});
|