0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/parallel/test-http-keepalive-request.js
Roman Reiss f29762f4dd test: enable linting for tests
Enable linting for the test directory. A number of changes was made so
all tests conform the current rules used by lib and src directories. The
only exception for tests is that unreachable (dead) code is allowed.

test-fs-non-number-arguments-throw had to be excluded from the changes
because of a weird issue on Windows CI.

PR-URL: https://github.com/nodejs/io.js/pull/1721
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-05-19 21:21:27 +02:00

73 lines
1.3 KiB
JavaScript

'use strict';
var common = require('../common');
var assert = require('assert');
var http = require('http');
var serverSocket = null;
var server = http.createServer(function(req, res) {
// They should all come in on the same server socket.
if (serverSocket) {
assert.equal(req.socket, serverSocket);
} else {
serverSocket = req.socket;
}
res.end(req.url);
});
server.listen(common.PORT);
var agent = http.Agent({ keepAlive: true });
var clientSocket = null;
var expectRequests = 10;
var actualRequests = 0;
makeRequest(expectRequests);
function makeRequest(n) {
if (n === 0) {
server.close();
agent.destroy();
return;
}
var req = http.request({
port: common.PORT,
path: '/' + n,
agent: agent
});
req.end();
req.on('socket', function(sock) {
if (clientSocket) {
assert.equal(sock, clientSocket);
} else {
clientSocket = sock;
}
});
req.on('response', function(res) {
var data = '';
res.setEncoding('utf8');
res.on('data', function(c) {
data += c;
});
res.on('end', function() {
assert.equal(data, '/' + n);
setTimeout(function() {
actualRequests++;
makeRequest(n - 1);
}, 1);
});
});
}
process.on('exit', function() {
assert.equal(actualRequests, expectRequests);
console.log('ok');
});