Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
test: update dgram tests after API change
  • Loading branch information
tjfontaine authored and bnoordhuis committed Jul 26, 2012
1 parent 799d7f6 commit 42734bb
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 16 deletions.
4 changes: 3 additions & 1 deletion test/simple/test-dgram-broadcast-multi-process.js
Expand Up @@ -162,7 +162,9 @@ if (process.argv[2] !== 'child') {
// bind the address explicitly for sending
// INADDR_BROADCAST to only one interface
sendSocket.bind(common.PORT, bindAddress);
sendSocket.setBroadcast(true);
sendSocket.on('listening', function () {
sendSocket.setBroadcast(true);
});

sendSocket.on('close', function() {
console.error('[PARENT] sendSocket closed');
Expand Down
43 changes: 43 additions & 0 deletions test/simple/test-dgram-listen-after-bind.js
@@ -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');
});
15 changes: 10 additions & 5 deletions test/simple/test-dgram-multicast-multi-process.js
Expand Up @@ -149,10 +149,13 @@ if (process.argv[2] !== 'child') {
// call is what creates the actual socket...
sendSocket.bind();

sendSocket.setTTL(1);
sendSocket.setBroadcast(true);
sendSocket.setMulticastTTL(1);
sendSocket.setMulticastLoopback(true);
// The socket is actually created async now
sendSocket.on('listening', function () {
sendSocket.setTTL(1);
sendSocket.setBroadcast(true);
sendSocket.setMulticastTTL(1);
sendSocket.setMulticastLoopback(true);
});

sendSocket.on('close', function() {
console.error('[PARENT] sendSocket closed');
Expand Down Expand Up @@ -221,5 +224,7 @@ if (process.argv[2] === 'child') {

listenSocket.bind(common.PORT);

listenSocket.addMembership(LOCAL_BROADCAST_HOST);
listenSocket.on('listening', function () {
listenSocket.addMembership(LOCAL_BROADCAST_HOST);
});
}
22 changes: 12 additions & 10 deletions test/simple/test-dgram-multicast-setTTL.js
Expand Up @@ -26,16 +26,18 @@ var common = require('../common'),
socket = dgram.createSocket('udp4');

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 {
socket.setMulticastTTL(1000);
} catch (e) {
thrown = true;
}
//Try to set an invalid TTL (valid ttl is > 0 and < 256)
try {
socket.setMulticastTTL(1000);
} catch (e) {
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
socket.close();
//close the socket
socket.close();
});

0 comments on commit 42734bb

Please sign in to comment.