0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/parallel/test-http-many-ended-pipelines.js
Rich Trott abe8a344a5 test: remove unused variables form http tests
The http tests seem especially prone to including unused variables.
This change removes them.

PR-URL: https://github.com/nodejs/node/pull/4422
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
2015-12-28 16:17:24 -08:00

40 lines
859 B
JavaScript

'use strict';
var common = require('../common');
// no warnings should happen!
var trace = console.trace;
console.trace = function() {
trace.apply(console, arguments);
throw new Error('no tracing should happen here');
};
var http = require('http');
var net = require('net');
var numRequests = 20;
var first = false;
var server = http.createServer(function(req, res) {
if (!first) {
first = true;
req.socket.on('close', function() {
server.close();
});
}
res.end('ok');
// Oh no! The connection died!
req.socket.destroy();
});
server.listen(common.PORT);
var client = net.connect({ port: common.PORT, allowHalfOpen: true });
for (var i = 0; i < numRequests; i++) {
client.write('GET / HTTP/1.1\r\n' +
'Host: some.host.name\r\n' +
'\r\n\r\n');
}
client.end();
client.pipe(process.stdout);