0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/parallel/test-http-keep-alive.js
Adrian Estrada 1e98ea3f5e test: refactor the code in test-http-keep-alive
* use common.mustCall to control the functions execution automatically
* use let and const instead of var
* use assert.strictEqual instead assert.equal

PR-URL: https://github.com/nodejs/node/pull/10350
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Italo A. Casas <me@italoacasas.com>
2016-12-21 20:43:12 -05:00

52 lines
1.5 KiB
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
const http = require('http');
const server = http.createServer(common.mustCall((req, res) => {
const body = 'hello world\n';
res.writeHead(200, {'Content-Length': body.length});
res.write(body);
res.end();
}, 3));
const agent = new http.Agent({maxSockets: 1});
const headers = {'connection': 'keep-alive'};
let name;
server.listen(0, common.mustCall(function() {
name = agent.getName({ port: this.address().port });
http.get({
path: '/', headers: headers, port: this.address().port, agent: agent
}, common.mustCall((response) => {
assert.strictEqual(agent.sockets[name].length, 1);
assert.strictEqual(agent.requests[name].length, 2);
response.resume();
}));
http.get({
path: '/', headers: headers, port: this.address().port, agent: agent
}, common.mustCall((response) => {
assert.strictEqual(agent.sockets[name].length, 1);
assert.strictEqual(agent.requests[name].length, 1);
response.resume();
}));
http.get({
path: '/', headers: headers, port: this.address().port, agent: agent
}, common.mustCall((response) => {
response.on('end', common.mustCall(() => {
assert.strictEqual(agent.sockets[name].length, 1);
assert(!agent.requests.hasOwnProperty(name));
server.close();
}));
response.resume();
}));
}));
process.on('exit', () => {
assert(!agent.sockets.hasOwnProperty(name));
assert(!agent.requests.hasOwnProperty(name));
});