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.
67 lines
1.3 KiB
67 lines
1.3 KiB
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
|
|
common.refreshTmpDir();
|
|
|
|
function test(clazz, cb) {
|
|
let have_ping = false;
|
|
let have_pong = false;
|
|
|
|
function check() {
|
|
assert.ok(have_ping);
|
|
assert.ok(have_pong);
|
|
}
|
|
|
|
function ping() {
|
|
const 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.strictEqual(data.toString(), 'PONG');
|
|
have_pong = true;
|
|
conn.destroy();
|
|
});
|
|
}
|
|
|
|
function pong(conn) {
|
|
conn.on('error', function(err) {
|
|
throw err;
|
|
});
|
|
|
|
conn.on('data', function(data) {
|
|
assert.strictEqual(data.toString(), 'PING');
|
|
have_ping = true;
|
|
conn.write('PONG', 'utf-8');
|
|
});
|
|
|
|
conn.on('close', function() {
|
|
server.close();
|
|
});
|
|
}
|
|
|
|
const timeout = setTimeout(function() {
|
|
server.close();
|
|
}, 2000);
|
|
|
|
const 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);
|
|
});
|
|
|