mirror of
https://github.com/nodejs/node.git
synced 2024-11-28 22:46:31 +01:00
3e1b1dd4a9
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.
26 lines
604 B
JavaScript
26 lines
604 B
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
var http = require('http');
|
|
|
|
var body = '';
|
|
|
|
var server = net.createServer(function(socket) {
|
|
// Neither Content-Length nor Connection
|
|
socket.end('HTTP/1.1 200 ok\r\n\r\nHello');
|
|
}).listen(common.PORT, function() {
|
|
var req = http.get({port: common.PORT}, function(res) {
|
|
res.setEncoding('utf8');
|
|
res.on('data', function(chunk) {
|
|
body += chunk;
|
|
});
|
|
res.on('end', function() {
|
|
server.close();
|
|
});
|
|
});
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(body, 'Hello');
|
|
});
|