|
|
@ -25,37 +25,35 @@ var assert = require('assert'); |
|
|
|
var http = require('http'); |
|
|
|
var net = require('net'); |
|
|
|
|
|
|
|
// Create a TCP server
|
|
|
|
var srv = net.createServer(function(c) { |
|
|
|
c.write('bad http - should trigger parse error\r\n'); |
|
|
|
var connects = 0; |
|
|
|
var parseErrors = 0; |
|
|
|
|
|
|
|
// Create a TCP server
|
|
|
|
net.createServer(function(c) { |
|
|
|
console.log('connection'); |
|
|
|
|
|
|
|
c.on('end', function() { c.end(); }); |
|
|
|
}); |
|
|
|
|
|
|
|
var parseError = false; |
|
|
|
|
|
|
|
srv.listen(common.PORT, '127.0.0.1', function() { |
|
|
|
var req = http.request({ |
|
|
|
host: '127.0.0.1', |
|
|
|
port: common.PORT, |
|
|
|
method: 'GET', |
|
|
|
path: '/'}); |
|
|
|
req.end(); |
|
|
|
|
|
|
|
req.on('error', function(e) { |
|
|
|
console.log('got error from client'); |
|
|
|
srv.close(); |
|
|
|
assert.ok(e.message.indexOf('Parse Error') >= 0); |
|
|
|
assert.equal(e.code, 'HPE_INVALID_CONSTANT'); |
|
|
|
parseError = true; |
|
|
|
}); |
|
|
|
if (++connects === 1) { |
|
|
|
c.end('HTTP/1.1 302 Object Moved\r\nContent-Length: 0\r\n\r\nhi world'); |
|
|
|
} else { |
|
|
|
c.end('bad http - should trigger parse error\r\n'); |
|
|
|
this.close(); |
|
|
|
} |
|
|
|
}).listen(common.PORT, '127.0.0.1', function() { |
|
|
|
for (var i = 0; i < 2; i++) { |
|
|
|
http.request({ |
|
|
|
host: '127.0.0.1', |
|
|
|
port: common.PORT, |
|
|
|
method: 'GET', |
|
|
|
path: '/' |
|
|
|
}).on('error', function(e) { |
|
|
|
console.log('got error from client'); |
|
|
|
assert.ok(e.message.indexOf('Parse Error') >= 0); |
|
|
|
assert.equal(e.code, 'HPE_INVALID_CONSTANT'); |
|
|
|
parseErrors++; |
|
|
|
}).end(); |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
process.on('exit', function() { |
|
|
|
assert.ok(parseError); |
|
|
|
assert.equal(connects, 2); |
|
|
|
assert.equal(parseErrors, 2); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|