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.

97 lines
1.8 KiB

'use strict';
const common = require('../common');
const assert = require('assert');
const http = require('http');
const net = require('net');
14 years ago
const webPort = common.PORT;
const tcpPort = webPort + 1;
const bufferSize = 5 * 1024 * 1024;
let listenCount = 0;
let gotThanks = false;
let tcpLengthSeen = 0;
/*
* 5MB of random buffer.
*/
const buffer = Buffer.allocUnsafe(bufferSize);
for (let i = 0; i < buffer.length; i++) {
14 years ago
buffer[i] = parseInt(Math.random() * 10000) % 256;
}
const web = http.Server(common.mustCall((req, res) => {
web.close();
const socket = net.Stream();
socket.connect(tcpPort);
14 years ago
socket.on('connect', common.mustCall(() => {}));
req.pipe(socket);
req.on('end', common.mustCall(() => {
res.writeHead(200);
14 years ago
res.write('thanks');
res.end();
}));
14 years ago
req.connection.on('error', (e) => {
assert.ifError(e);
});
}));
web.listen(webPort, startClient);
const tcp = net.Server(common.mustCall((s) => {
tcp.close();
let i = 0;
s.on('data', (d) => {
14 years ago
tcpLengthSeen += d.length;
for (let j = 0; j < d.length; j++) {
assert.strictEqual(buffer[i], d[j]);
i++;
}
});
s.on('end', common.mustCall(() => {
14 years ago
s.end();
}));
14 years ago
s.on('error', (e) => {
assert.ifError(e);
});
}));
tcp.listen(tcpPort, startClient);
14 years ago
function startClient() {
listenCount++;
14 years ago
if (listenCount < 2) return;
const req = http.request({
port: common.PORT,
method: 'GET',
path: '/',
headers: { 'content-length': buffer.length }
}, common.mustCall((res) => {
res.setEncoding('utf8');
res.on('data', common.mustCall((string) => {
assert.strictEqual('thanks', string);
gotThanks = true;
}));
}));
req.write(buffer);
req.end();
}
process.on('exit', () => {
assert.ok(gotThanks);
assert.strictEqual(bufferSize, tcpLengthSeen);
});