mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
f29762f4dd
Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
59 lines
1.3 KiB
JavaScript
59 lines
1.3 KiB
JavaScript
'use strict';
|
|
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);
|
|
});
|