node-osc
Version:
pyOSC inspired library for sending and receiving OSC messages
90 lines (70 loc) • 1.84 kB
JavaScript
var tap = require('tap');
var nodeOsc = require('node-osc');
var util = require('./util.js');
tap.beforeEach(util.bootstrap);
tap.test('bundle: verbose bundle', (t) => {
const server = new nodeOsc.Server(t.context.port, '127.0.0.1');
const client = new nodeOsc.Client('127.0.0.1', t.context.port);
t.plan(2);
t.teardown(() => {
server.close();
client.close();
});
server.on('bundle', (bundle) => {
t.same(bundle.elements[0], ['/one', 1]);
t.same(bundle.elements[1], ['/two', 2]);
});
client.send(new nodeOsc.Bundle(1, {
address: '/one',
args: [
1
]
}, {
address: '/two',
args: [
2
]
}));
});
tap.test('bundle: array syntax', (t) => {
const server = new nodeOsc.Server(t.context.port, '127.0.0.1');
const client = new nodeOsc.Client('127.0.0.1', t.context.port);
t.plan(2);
t.teardown(() => {
server.close();
client.close();
});
server.on('bundle', (bundle) => {
t.same(bundle.elements[0], ['/one', 1]);
t.same(bundle.elements[1], ['/two', 2]);
});
client.send(new nodeOsc.Bundle(
['/one', 1],
['/two', 2]
));
});
tap.test('bundle: nested bundle', (t) => {
const server = new nodeOsc.Server(t.context.port, '127.0.0.1');
const client = new nodeOsc.Client('127.0.0.1', t.context.port);
t.plan(4);
t.teardown(() => {
server.close();
client.close();
});
const payload = new nodeOsc.Bundle(
['/one', 1],
['/two', 2],
['/three', 3]
);
payload.append(new nodeOsc.Bundle(10,
['/four', 4]
));
server.on('bundle', (bundle) => {
t.same(bundle.elements[0], ['/one', 1]);
t.same(bundle.elements[1], ['/two', 2]);
t.same(bundle.elements[2], ['/three', 3]);
t.same(bundle.elements[3].elements[0], ['/four', 4]);
});
client.send(payload);
});
;