mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
2.1 KiB
109 lines
2.1 KiB
14 years ago
|
var common = require('../common');
|
||
|
var assert = require('assert');
|
||
|
var http = require('http');
|
||
|
var net = require('net');
|
||
14 years ago
|
|
||
|
var webPort = common.PORT
|
||
|
var tcpPort = webPort + 1;
|
||
14 years ago
|
|
||
|
var listenCount = 0;
|
||
|
var gotThanks = false;
|
||
14 years ago
|
var tcpLengthSeen = 0;
|
||
|
var bufferSize = 5 * 1024 * 1024;
|
||
14 years ago
|
|
||
|
|
||
|
/*
|
||
|
* 5MB of random buffer.
|
||
14 years ago
|
*/
|
||
14 years ago
|
var buffer = Buffer(bufferSize);
|
||
14 years ago
|
for (var i = 0; i < buffer.length; i++) {
|
||
14 years ago
|
buffer[i] = parseInt(Math.random()*10000) % 256;
|
||
14 years ago
|
}
|
||
14 years ago
|
|
||
|
|
||
14 years ago
|
var web = http.Server(function (req, res) {
|
||
|
web.close();
|
||
|
|
||
14 years ago
|
console.log(req.headers);
|
||
|
|
||
14 years ago
|
var socket = net.Stream();
|
||
|
socket.connect(tcpPort);
|
||
14 years ago
|
|
||
|
socket.on('connect', function () {
|
||
|
console.log('socket connected');
|
||
|
});
|
||
14 years ago
|
|
||
14 years ago
|
req.pipe(socket);
|
||
14 years ago
|
|
||
|
req.on('end', function () {
|
||
|
res.writeHead(200);
|
||
|
res.write("thanks");
|
||
|
res.end();
|
||
14 years ago
|
console.log("response with 'thanks'");
|
||
|
});
|
||
|
|
||
|
req.connection.on('error', function (e) {
|
||
|
console.log("http server-side error: " + e.message);
|
||
|
process.exit(1);
|
||
14 years ago
|
});
|
||
|
});
|
||
14 years ago
|
web.listen(webPort, startClient);
|
||
|
|
||
|
|
||
|
|
||
14 years ago
|
var tcp = net.Server(function (s) {
|
||
14 years ago
|
tcp.close();
|
||
|
|
||
14 years ago
|
console.log("tcp server connection");
|
||
|
|
||
14 years ago
|
var i = 0;
|
||
|
|
||
14 years ago
|
s.on('data', function (d) {
|
||
|
process.stdout.write(".");
|
||
|
tcpLengthSeen += d.length;
|
||
14 years ago
|
for (var j = 0; j < d.length; j++) {
|
||
14 years ago
|
assert.equal(buffer[i], d[j]);
|
||
14 years ago
|
i++;
|
||
|
}
|
||
|
});
|
||
|
|
||
14 years ago
|
s.on('end', function () {
|
||
|
console.log("tcp socket disconnect");
|
||
|
s.end();
|
||
|
});
|
||
|
|
||
|
s.on('error', function (e) {
|
||
|
console.log("tcp server-side error: " + e.message);
|
||
|
process.exit(1);
|
||
14 years ago
|
});
|
||
|
});
|
||
|
tcp.listen(tcpPort, startClient);
|
||
|
|
||
|
|
||
|
function startClient () {
|
||
|
listenCount++;
|
||
14 years ago
|
if (listenCount < 2) return;
|
||
14 years ago
|
|
||
14 years ago
|
console.log("Making request");
|
||
14 years ago
|
|
||
|
var client = http.createClient(common.PORT);
|
||
14 years ago
|
var req = client.request('GET', '/', { 'content-length': buffer.length });
|
||
14 years ago
|
req.write(buffer);
|
||
|
req.end();
|
||
|
|
||
|
req.on('response', function (res) {
|
||
14 years ago
|
console.log('Got response');
|
||
14 years ago
|
res.setEncoding('utf8');
|
||
14 years ago
|
res.on('data', function (string) {
|
||
|
assert.equal("thanks", string);
|
||
14 years ago
|
gotThanks = true;
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
|
||
|
process.on('exit', function () {
|
||
|
assert.ok(gotThanks);
|
||
14 years ago
|
assert.equal(bufferSize, tcpLengthSeen);
|
||
14 years ago
|
});
|
||
14 years ago
|
|