aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-http-agent-maxsockets-regress-4050.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http-agent-maxsockets-regress-4050.js')
-rw-r--r--test/parallel/test-http-agent-maxsockets-regress-4050.js41
1 files changed, 0 insertions, 41 deletions
diff --git a/test/parallel/test-http-agent-maxsockets-regress-4050.js b/test/parallel/test-http-agent-maxsockets-regress-4050.js
deleted file mode 100644
index eb1c95d520..0000000000
--- a/test/parallel/test-http-agent-maxsockets-regress-4050.js
+++ /dev/null
@@ -1,41 +0,0 @@
-'use strict';
-const common = require('../common');
-const assert = require('assert');
-const http = require('http');
-const Countdown = require('../common/countdown');
-
-const MAX_SOCKETS = 2;
-
-const agent = new http.Agent({
- keepAlive: true,
- keepAliveMsecs: 1000,
- maxSockets: MAX_SOCKETS,
- maxFreeSockets: 2
-});
-
-const server = http.createServer(common.mustCall((req, res) => {
- res.end('hello world');
-}, 6));
-
-const countdown = new Countdown(6, () => server.close());
-
-function get(path, callback) {
- return http.get({
- host: 'localhost',
- port: server.address().port,
- agent: agent,
- path: path
- }, callback);
-}
-
-server.listen(0, common.mustCall(() => {
- for (let i = 0; i < 6; i++) {
- const request = get('/1', common.mustCall());
- request.on('response', common.mustCall(() => {
- request.abort();
- const sockets = agent.sockets[Object.keys(agent.sockets)[0]];
- assert(sockets.length <= MAX_SOCKETS);
- countdown.dec();
- }));
- }
-}));