mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1003 B
39 lines
1003 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const dgram = require('dgram');
|
|
const UDP = process.binding('udp_wrap').UDP;
|
|
const _createSocketHandle = dgram._createSocketHandle;
|
|
|
|
// Throws if an "existing fd" is passed in.
|
|
assert.throws(() => {
|
|
_createSocketHandle(common.localhostIPv4, 0, 'udp4', 42);
|
|
}, /^AssertionError: false == true$/);
|
|
|
|
{
|
|
// Create a handle that is not bound.
|
|
const handle = _createSocketHandle(null, null, 'udp4');
|
|
|
|
assert(handle instanceof UDP);
|
|
assert.strictEqual(typeof handle.fd, 'number');
|
|
assert(handle.fd < 0);
|
|
}
|
|
|
|
{
|
|
// Create a bound handle.
|
|
const handle = _createSocketHandle(common.localhostIPv4, 0, 'udp4');
|
|
|
|
assert(handle instanceof UDP);
|
|
assert.strictEqual(typeof handle.fd, 'number');
|
|
|
|
if (!common.isWindows)
|
|
assert(handle.fd > 0);
|
|
}
|
|
|
|
{
|
|
// Return an error if binding fails.
|
|
const err = _createSocketHandle('localhost', 0, 'udp4');
|
|
|
|
assert.strictEqual(typeof err, 'number');
|
|
assert(err < 0);
|
|
}
|
|
|