node-osc
Version:
pyOSC inspired library for sending and receiving OSC messages
53 lines (38 loc) • 1.28 kB
JavaScript
var tap = require('tap');
var util = require('./util.js');
var nodeOsc = require('node-osc');
tap.beforeEach(util.bootstrap);
function flaky() {
return process.release.lts === 'Dubnium' && process.platform === 'win32';
}
function skip(t) {
t.skip(`flaky ~ ${t.name}`);
t.end();
}
tap.test('osc: argument message no callback', (t) => {
if (flaky()) return skip(t);
const oscServer = new nodeOsc.Server(t.context.port, '0.0.0.0');
const client = new nodeOsc.Client('0.0.0.0', t.context.port);
t.plan(1);
oscServer.on('message', (msg) => {
oscServer.close();
client.close();
t.same(msg, ['/test', 1, 2, 'testing'], 'We should receive expected payload');
});
client.send('/test', 1, 2, 'testing');
});
tap.test('osc: client with callback and message as arguments', (t) => {
if (flaky()) return skip(t);
const oscServer = new nodeOsc.Server(t.context.port, '0.0.0.0');
const client = new nodeOsc.Client('0.0.0.0', t.context.port);
t.plan(2);
oscServer.on('message', (msg) => {
oscServer.close();
t.same(msg, ['/test', 1, 2, 'testing'], 'We should receive expected payload');
});
client.send('/test', 1, 2, 'testing', (err) => {
t.error(err, 'there should be no error');
client.close();
});
});
;