mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 08:19:38 +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.
58 lines
1.3 KiB
JavaScript
58 lines
1.3 KiB
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
var tcpPort = common.PORT;
|
|
var bytesRead = 0;
|
|
var bytesWritten = 0;
|
|
var count = 0;
|
|
|
|
var tcp = net.Server(function(s) {
|
|
console.log('tcp server connection');
|
|
|
|
// trigger old mode.
|
|
s.resume();
|
|
|
|
s.on('end', function() {
|
|
bytesRead += s.bytesRead;
|
|
console.log('tcp socket disconnect #' + count);
|
|
});
|
|
});
|
|
|
|
tcp.listen(common.PORT, function doTest() {
|
|
console.error('listening');
|
|
var socket = net.createConnection(tcpPort);
|
|
|
|
socket.on('connect', function() {
|
|
count++;
|
|
console.error('CLIENT connect #%d', count);
|
|
|
|
socket.write('foo', function() {
|
|
console.error('CLIENT: write cb');
|
|
socket.end('bar');
|
|
});
|
|
});
|
|
|
|
socket.on('finish', function() {
|
|
bytesWritten += socket.bytesWritten;
|
|
console.error('CLIENT end event #%d', count);
|
|
});
|
|
|
|
socket.on('close', function() {
|
|
console.error('CLIENT close event #%d', count);
|
|
console.log('Bytes read: ' + bytesRead);
|
|
console.log('Bytes written: ' + bytesWritten);
|
|
if (count < 2) {
|
|
console.error('RECONNECTING');
|
|
socket.connect(tcpPort);
|
|
} else {
|
|
tcp.close();
|
|
}
|
|
});
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(bytesRead, 12);
|
|
assert.equal(bytesWritten, 12);
|
|
});
|