mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.1 KiB
54 lines
1.1 KiB
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
|
|
var agent = new http.Agent({
|
|
keepAlive: true,
|
|
keepAliveMsecs: 1000,
|
|
maxSockets: 2,
|
|
maxFreeSockets: 2
|
|
});
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
res.end('hello world');
|
|
});
|
|
|
|
function get(path, callback) {
|
|
return http.get({
|
|
host: 'localhost',
|
|
port: common.PORT,
|
|
agent: agent,
|
|
path: path
|
|
}, callback);
|
|
}
|
|
|
|
var count = 0;
|
|
function done() {
|
|
if (++count !== 2) {
|
|
return;
|
|
}
|
|
var freepool = agent.freeSockets[Object.keys(agent.freeSockets)[0]];
|
|
assert.equal(freepool.length, 2,
|
|
'expect keep 2 free sockets, but got ' + freepool.length);
|
|
agent.destroy();
|
|
server.close();
|
|
}
|
|
|
|
server.listen(common.PORT, function() {
|
|
get('/1', function(res) {
|
|
assert.equal(res.statusCode, 200);
|
|
res.resume();
|
|
res.on('end', function() {
|
|
process.nextTick(done);
|
|
});
|
|
});
|
|
|
|
get('/2', function(res) {
|
|
assert.equal(res.statusCode, 200);
|
|
res.resume();
|
|
res.on('end', function() {
|
|
process.nextTick(done);
|
|
});
|
|
});
|
|
});
|
|
|