0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 07:27:22 +01:00
nodejs/test/pummel/test-http-many-keep-alive-connections.js
Gibson Fahnestock 3d2aef3979 test: s/assert.equal/assert.strictEqual/
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>
2017-01-11 14:19:26 +00:00

49 lines
1017 B
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
const http = require('http');
const expected = 10000;
let responses = 0;
let requests = 0;
let connection;
const server = http.Server(function(req, res) {
requests++;
assert.strictEqual(req.connection, connection);
res.writeHead(200);
res.end('hello world\n');
});
server.once('connection', function(c) {
connection = c;
});
server.listen(common.PORT, function connect() {
const request = http.get({
port: common.PORT,
path: '/',
headers: {
'Connection': 'Keep-alive'
}
}, function(res) {
res.on('end', function() {
if (++responses < expected) {
connect();
} else {
server.close();
}
});
res.resume();
}).on('error', function(e) {
console.log(e.message);
process.exit(1);
});
request.agent.maxSockets = 1;
});
process.on('exit', function() {
assert.strictEqual(expected, responses);
assert.strictEqual(expected, requests);
});