mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
3d2aef3979
Use assert.strictEqual instead of assert.equal in tests, manually convert types where necessary. PR-URL: https://github.com/nodejs/node/pull/10698 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
53 lines
1.2 KiB
JavaScript
53 lines
1.2 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const http = require('http');
|
|
const assert = require('assert');
|
|
|
|
const N = 20;
|
|
let responses = 0;
|
|
let maxQueued = 0;
|
|
|
|
const agent = http.globalAgent;
|
|
agent.maxSockets = 10;
|
|
|
|
const server = http.createServer(function(req, res) {
|
|
res.writeHead(200);
|
|
res.end('Hello World\n');
|
|
});
|
|
|
|
const addrString = agent.getName({ host: '127.0.0.1', port: common.PORT });
|
|
|
|
server.listen(common.PORT, '127.0.0.1', function() {
|
|
for (let i = 0; i < N; i++) {
|
|
const options = {
|
|
host: '127.0.0.1',
|
|
port: common.PORT
|
|
};
|
|
|
|
const req = http.get(options, function(res) {
|
|
if (++responses === N) {
|
|
server.close();
|
|
}
|
|
res.resume();
|
|
});
|
|
|
|
assert.strictEqual(req.agent, agent);
|
|
|
|
console.log('Socket: ' + agent.sockets[addrString].length + '/' +
|
|
agent.maxSockets + ' queued: ' + (agent.requests[addrString] ?
|
|
agent.requests[addrString].length : 0));
|
|
|
|
const agentRequests = agent.requests[addrString] ?
|
|
agent.requests[addrString].length : 0;
|
|
|
|
if (maxQueued < agentRequests) {
|
|
maxQueued = agentRequests;
|
|
}
|
|
}
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.strictEqual(responses, N);
|
|
assert.ok(maxQueued <= 10);
|
|
});
|