0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-28 22:46:31 +01:00
nodejs/test/parallel/test-http-malformed-request.js

37 lines
903 B
JavaScript
Raw Normal View History

2010-12-05 00:20:34 +01:00
var common = require('../common');
var assert = require('assert');
var net = require('net');
var http = require('http');
var url = require('url');
// Make sure no exceptions are thrown when receiving malformed HTTP
// requests.
2010-12-05 00:20:34 +01:00
var nrequests_completed = 0;
var nrequests_expected = 1;
var server = http.createServer(function(req, res) {
console.log('req: ' + JSON.stringify(url.parse(req.url)));
res.writeHead(200, {'Content-Type': 'text/plain'});
res.write('Hello World');
res.end();
if (++nrequests_completed == nrequests_expected) server.close();
});
server.listen(common.PORT);
server.on('listening', function() {
var c = net.createConnection(common.PORT);
c.on('connect', function() {
c.write('GET /hello?foo=%99bar HTTP/1.1\r\n\r\n');
c.end();
});
// TODO add more!
});
process.on('exit', function() {
assert.equal(nrequests_expected, nrequests_completed);
});