41 lines
1.2 KiB
JavaScript
41 lines
1.2 KiB
JavaScript
var dnode = require('../../');
|
|
var test = require('tape');
|
|
|
|
test('null', function (t) {
|
|
t.plan(7);
|
|
var port = Math.floor(Math.random() * 40000 + 10000);
|
|
|
|
var server = dnode({
|
|
empty : null,
|
|
timesTen : function (n, reply) {
|
|
t.equal(n, 50);
|
|
reply(n * 10);
|
|
},
|
|
moo : function (reply) { reply(100) },
|
|
sTimesTen : function (n, cb) {
|
|
t.equal(n, 5);
|
|
cb(n * 10, null);
|
|
},
|
|
}).listen(port.toString()); // test for stringified ports too why not
|
|
|
|
server.on('listening', function () {
|
|
dnode.connect(port, function (remote, conn) {
|
|
t.ok(conn.id);
|
|
t.equal(conn.stream.remoteAddress, '127.0.0.1');
|
|
|
|
remote.moo(function (x) {
|
|
t.equal(x, 100, 'remote moo == 100');
|
|
});
|
|
remote.sTimesTen(5, function (m) {
|
|
t.equal(m, 50, '5 * 10 == 50');
|
|
remote.timesTen(m, function (n) {
|
|
t.equal(n, 500, '50 * 10 == 500');
|
|
conn.end();
|
|
server.close();
|
|
t.end();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|