mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
abe8a344a5
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>
40 lines
859 B
JavaScript
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);
|