117 lines
3.9 KiB
JavaScript
117 lines
3.9 KiB
JavaScript
/*global describe, expect, it*/
|
|
|
|
const ipc = from '../../node-ipc');
|
|
|
|
describe(
|
|
'UDP Socket verification.',
|
|
function UDPSocketSpec(){
|
|
it(
|
|
'Verify UDP server of type udp4 connects to UDP server named "udp4Server" and receives message.',
|
|
function testIt(done){
|
|
ipc.config.networkPort=8095;
|
|
ipc.config.id ='testClient';
|
|
ipc.config.retry = 60;
|
|
|
|
let clientPort=8001;
|
|
|
|
ipc.serveNet(
|
|
clientPort,
|
|
'udp4',
|
|
function serverStarted(){
|
|
ipc.server.on(
|
|
'message',
|
|
function gotMessage(data,socket){
|
|
expect(socket).toBeDefined();
|
|
expect(data.id).toBe('udpServer');
|
|
expect(data.message).toBe('I am UDP4 server!');
|
|
testDone();
|
|
}
|
|
);
|
|
|
|
ipc.server.on(
|
|
'error',
|
|
function gotErr(err){
|
|
expect(err).toBe(false);
|
|
testDone();
|
|
}
|
|
);
|
|
|
|
ipc.server.emit(
|
|
{
|
|
address : 'localhost',
|
|
port : ipc.config.networkPort
|
|
},
|
|
'message',
|
|
{
|
|
id : ipc.config.id,
|
|
message : 'I am testClient'
|
|
}
|
|
);
|
|
}
|
|
);
|
|
|
|
function testDone(){
|
|
ipc.server.stop();
|
|
done();
|
|
}
|
|
|
|
ipc.server.start();
|
|
}
|
|
);
|
|
|
|
it(
|
|
'Verify UDP server of type udp6 connects to UDP server named "udp6Server" and receives message.',
|
|
function testIt(done){
|
|
ipc.config.networkPort=8099;
|
|
ipc.config.id ='testClient';
|
|
ipc.config.retry = 60;
|
|
|
|
let clientPort=8010;
|
|
|
|
ipc.serveNet(
|
|
'::1',
|
|
clientPort,
|
|
'udp6',
|
|
function serverStarted(){
|
|
ipc.server.on(
|
|
'message',
|
|
function gotMessage(data,socket){
|
|
expect(socket).toBeDefined();
|
|
expect(data.id).toBe('udp6Server');
|
|
expect(data.message).toBe('I am UDP6 server!');
|
|
testDone();
|
|
}
|
|
);
|
|
|
|
ipc.server.on(
|
|
'error',
|
|
function gotErr(err){
|
|
expect(err).toBe(false);
|
|
testDone();
|
|
}
|
|
);
|
|
|
|
ipc.server.emit(
|
|
{
|
|
address : '::1',
|
|
port : ipc.config.networkPort
|
|
},
|
|
'message',
|
|
{
|
|
id : ipc.config.id,
|
|
message : 'I am testClient'
|
|
}
|
|
);
|
|
}
|
|
);
|
|
|
|
function testDone(){
|
|
ipc.server.stop();
|
|
done();
|
|
}
|
|
|
|
ipc.server.start();
|
|
}
|
|
);
|
|
}
|
|
);
|