mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +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>
67 lines
1.2 KiB
JavaScript
67 lines
1.2 KiB
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
function test(clazz, cb) {
|
|
var have_ping = false;
|
|
var have_pong = false;
|
|
|
|
function check() {
|
|
assert.ok(have_ping);
|
|
assert.ok(have_pong);
|
|
}
|
|
|
|
function ping() {
|
|
var conn = new clazz();
|
|
|
|
conn.on('error', function(err) {
|
|
throw err;
|
|
});
|
|
|
|
conn.connect(common.PIPE, function() {
|
|
conn.write('PING', 'utf-8');
|
|
});
|
|
|
|
conn.on('data', function(data) {
|
|
assert.equal(data.toString(), 'PONG');
|
|
have_pong = true;
|
|
conn.destroy();
|
|
});
|
|
}
|
|
|
|
function pong(conn) {
|
|
conn.on('error', function(err) {
|
|
throw err;
|
|
});
|
|
|
|
conn.on('data', function(data) {
|
|
assert.equal(data.toString(), 'PING');
|
|
have_ping = true;
|
|
conn.write('PONG', 'utf-8');
|
|
});
|
|
|
|
conn.on('close', function() {
|
|
server.close();
|
|
});
|
|
}
|
|
|
|
var timeout = setTimeout(function() {
|
|
server.close();
|
|
}, 2000);
|
|
|
|
var server = net.Server();
|
|
server.listen(common.PIPE, ping);
|
|
server.on('connection', pong);
|
|
server.on('close', function() {
|
|
clearTimeout(timeout);
|
|
check();
|
|
cb && cb();
|
|
});
|
|
}
|
|
|
|
test(net.Stream, function() {
|
|
test(net.Socket);
|
|
});
|
|
|