mirror of
https://github.com/nodejs/node.git
synced 2025-05-03 18:37:06 +00:00

The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
37 lines
903 B
JavaScript
37 lines
903 B
JavaScript
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.
|
|
|
|
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);
|
|
});
|