mirror of https://github.com/nodejs/node.git
test: update dgram tests after API change
parent
105c6ec8d5
commit
edd3de8fea
|
@ -162,7 +162,9 @@ if (process.argv[2] !== 'child') {
|
||||||
// bind the address explicitly for sending
|
// bind the address explicitly for sending
|
||||||
// INADDR_BROADCAST to only one interface
|
// INADDR_BROADCAST to only one interface
|
||||||
sendSocket.bind(common.PORT, bindAddress);
|
sendSocket.bind(common.PORT, bindAddress);
|
||||||
sendSocket.setBroadcast(true);
|
sendSocket.on('listening', function () {
|
||||||
|
sendSocket.setBroadcast(true);
|
||||||
|
});
|
||||||
|
|
||||||
sendSocket.on('close', function() {
|
sendSocket.on('close', function() {
|
||||||
console.error('[PARENT] sendSocket closed');
|
console.error('[PARENT] sendSocket closed');
|
||||||
|
|
|
@ -0,0 +1,43 @@
|
||||||
|
// Copyright Joyent, Inc. and other Node contributors.
|
||||||
|
//
|
||||||
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
|
// copy of this software and associated documentation files (the
|
||||||
|
// "Software"), to deal in the Software without restriction, including
|
||||||
|
// without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||||||
|
// persons to whom the Software is furnished to do so, subject to the
|
||||||
|
// following conditions:
|
||||||
|
//
|
||||||
|
// The above copyright notice and this permission notice shall be included
|
||||||
|
// in all copies or substantial portions of the Software.
|
||||||
|
//
|
||||||
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||||
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||||||
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||||||
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||||
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||||||
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
var common = require('../common');
|
||||||
|
var assert = require('assert');
|
||||||
|
var dgram = require('dgram');
|
||||||
|
|
||||||
|
var socket = dgram.createSocket('udp4');
|
||||||
|
|
||||||
|
socket.bind();
|
||||||
|
|
||||||
|
var fired = false;
|
||||||
|
var timer = setTimeout(function () {
|
||||||
|
socket.close();
|
||||||
|
}, 100);
|
||||||
|
|
||||||
|
socket.on('listening', function () {
|
||||||
|
clearTimeout(timer);
|
||||||
|
fired = true;
|
||||||
|
socket.close();
|
||||||
|
});
|
||||||
|
|
||||||
|
socket.on('close', function () {
|
||||||
|
assert(fired, 'listening should fire after bind');
|
||||||
|
});
|
|
@ -149,10 +149,13 @@ if (process.argv[2] !== 'child') {
|
||||||
// call is what creates the actual socket...
|
// call is what creates the actual socket...
|
||||||
sendSocket.bind();
|
sendSocket.bind();
|
||||||
|
|
||||||
sendSocket.setTTL(1);
|
// The socket is actually created async now
|
||||||
sendSocket.setBroadcast(true);
|
sendSocket.on('listening', function () {
|
||||||
sendSocket.setMulticastTTL(1);
|
sendSocket.setTTL(1);
|
||||||
sendSocket.setMulticastLoopback(true);
|
sendSocket.setBroadcast(true);
|
||||||
|
sendSocket.setMulticastTTL(1);
|
||||||
|
sendSocket.setMulticastLoopback(true);
|
||||||
|
});
|
||||||
|
|
||||||
sendSocket.on('close', function() {
|
sendSocket.on('close', function() {
|
||||||
console.error('[PARENT] sendSocket closed');
|
console.error('[PARENT] sendSocket closed');
|
||||||
|
@ -221,5 +224,7 @@ if (process.argv[2] === 'child') {
|
||||||
|
|
||||||
listenSocket.bind(common.PORT);
|
listenSocket.bind(common.PORT);
|
||||||
|
|
||||||
listenSocket.addMembership(LOCAL_BROADCAST_HOST);
|
listenSocket.on('listening', function () {
|
||||||
|
listenSocket.addMembership(LOCAL_BROADCAST_HOST);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,16 +26,18 @@ var common = require('../common'),
|
||||||
socket = dgram.createSocket('udp4');
|
socket = dgram.createSocket('udp4');
|
||||||
|
|
||||||
socket.bind(common.PORT);
|
socket.bind(common.PORT);
|
||||||
socket.setMulticastTTL(16);
|
socket.on('listening', function () {
|
||||||
|
socket.setMulticastTTL(16);
|
||||||
|
|
||||||
//Try to set an invalid TTL (valid ttl is > 0 and < 256)
|
//Try to set an invalid TTL (valid ttl is > 0 and < 256)
|
||||||
try {
|
try {
|
||||||
socket.setMulticastTTL(1000);
|
socket.setMulticastTTL(1000);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
thrown = true;
|
thrown = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
assert(thrown, 'Setting an invalid multicast TTL should throw some error');
|
assert(thrown, 'Setting an invalid multicast TTL should throw some error');
|
||||||
|
|
||||||
//close the socket
|
//close the socket
|
||||||
socket.close();
|
socket.close();
|
||||||
|
});
|
||||||
|
|
Loading…
Reference in New Issue