2018-03-21 00:46:30 +08:00
|
|
|
// Flags: --expose-internals
|
2018-08-06 14:40:30 -07:00
|
|
|
'use strict';
|
2017-06-11 17:58:53 -04:00
|
|
|
|
|
|
|
const common = require('../common');
|
|
|
|
const assert = require('assert');
|
|
|
|
const dgram = require('dgram');
|
2018-03-21 00:46:30 +08:00
|
|
|
const { SystemError } = require('internal/errors');
|
2018-08-06 14:40:30 -07:00
|
|
|
const { internalBinding } = require('internal/test/binding');
|
|
|
|
const {
|
|
|
|
UV_EBADF,
|
|
|
|
UV_EINVAL,
|
|
|
|
UV_ENOTSOCK
|
|
|
|
} = internalBinding('uv');
|
2018-03-21 00:46:30 +08:00
|
|
|
|
|
|
|
function getExpectedError(type) {
|
|
|
|
const code = common.isWindows ? 'ENOTSOCK' : 'EBADF';
|
|
|
|
const message = common.isWindows ?
|
|
|
|
'socket operation on non-socket' : 'bad file descriptor';
|
2018-08-06 14:40:30 -07:00
|
|
|
const errno = common.isWindows ? UV_ENOTSOCK : UV_EBADF;
|
2018-03-21 00:46:30 +08:00
|
|
|
const syscall = `uv_${type}_buffer_size`;
|
|
|
|
const suffix = common.isWindows ?
|
|
|
|
'ENOTSOCK (socket operation on non-socket)' : 'EBADF (bad file descriptor)';
|
|
|
|
const error = {
|
|
|
|
code: 'ERR_SOCKET_BUFFER_SIZE',
|
|
|
|
type: SystemError,
|
|
|
|
message: `Could not get or set buffer size: ${syscall} returned ${suffix}`,
|
|
|
|
info: {
|
|
|
|
code,
|
|
|
|
message,
|
|
|
|
errno,
|
|
|
|
syscall
|
|
|
|
}
|
|
|
|
};
|
|
|
|
return error;
|
|
|
|
}
|
2017-06-11 17:58:53 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
// Should throw error if the socket is never bound.
|
2018-03-21 00:46:30 +08:00
|
|
|
const errorObj = getExpectedError('send');
|
2017-06-11 17:58:53 -04:00
|
|
|
|
|
|
|
const socket = dgram.createSocket('udp4');
|
|
|
|
|
2017-12-06 20:02:42 +05:30
|
|
|
common.expectsError(() => {
|
2018-03-21 00:46:30 +08:00
|
|
|
socket.setSendBufferSize(8192);
|
2017-12-06 20:02:42 +05:30
|
|
|
}, errorObj);
|
2017-06-11 17:58:53 -04:00
|
|
|
|
2017-12-06 20:02:42 +05:30
|
|
|
common.expectsError(() => {
|
2018-03-21 00:46:30 +08:00
|
|
|
socket.getSendBufferSize();
|
2017-12-06 20:02:42 +05:30
|
|
|
}, errorObj);
|
2018-03-21 00:46:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const socket = dgram.createSocket('udp4');
|
|
|
|
|
|
|
|
// Should throw error if the socket is never bound.
|
|
|
|
const errorObj = getExpectedError('recv');
|
2017-06-11 17:58:53 -04:00
|
|
|
|
2017-12-06 20:02:42 +05:30
|
|
|
common.expectsError(() => {
|
2018-03-21 00:46:30 +08:00
|
|
|
socket.setRecvBufferSize(8192);
|
2017-12-06 20:02:42 +05:30
|
|
|
}, errorObj);
|
2017-06-11 17:58:53 -04:00
|
|
|
|
2017-12-06 20:02:42 +05:30
|
|
|
common.expectsError(() => {
|
2018-03-21 00:46:30 +08:00
|
|
|
socket.getRecvBufferSize();
|
2017-12-06 20:02:42 +05:30
|
|
|
}, errorObj);
|
2017-06-11 17:58:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
// Should throw error if invalid buffer size is specified
|
|
|
|
const errorObj = {
|
|
|
|
code: 'ERR_SOCKET_BAD_BUFFER_SIZE',
|
|
|
|
type: TypeError,
|
|
|
|
message: /^Buffer size must be a positive integer$/
|
|
|
|
};
|
|
|
|
|
|
|
|
const badBufferSizes = [-1, Infinity, 'Doh!'];
|
|
|
|
|
|
|
|
const socket = dgram.createSocket('udp4');
|
|
|
|
|
|
|
|
socket.bind(common.mustCall(() => {
|
|
|
|
badBufferSizes.forEach((badBufferSize) => {
|
2017-12-06 20:02:42 +05:30
|
|
|
common.expectsError(() => {
|
2017-06-11 17:58:53 -04:00
|
|
|
socket.setRecvBufferSize(badBufferSize);
|
2017-12-06 20:02:42 +05:30
|
|
|
}, errorObj);
|
2017-06-11 17:58:53 -04:00
|
|
|
|
2017-12-06 20:02:42 +05:30
|
|
|
common.expectsError(() => {
|
2017-06-11 17:58:53 -04:00
|
|
|
socket.setSendBufferSize(badBufferSize);
|
2017-12-06 20:02:42 +05:30
|
|
|
}, errorObj);
|
2017-06-11 17:58:53 -04:00
|
|
|
});
|
|
|
|
socket.close();
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
// Can set and get buffer sizes after binding the socket.
|
|
|
|
const socket = dgram.createSocket('udp4');
|
|
|
|
|
|
|
|
socket.bind(common.mustCall(() => {
|
|
|
|
socket.setRecvBufferSize(10000);
|
|
|
|
socket.setSendBufferSize(10000);
|
|
|
|
|
|
|
|
// note: linux will double the buffer size
|
|
|
|
const expectedBufferSize = common.isLinux ? 20000 : 10000;
|
|
|
|
assert.strictEqual(socket.getRecvBufferSize(), expectedBufferSize);
|
|
|
|
assert.strictEqual(socket.getSendBufferSize(), expectedBufferSize);
|
|
|
|
socket.close();
|
|
|
|
}));
|
|
|
|
}
|
2017-09-17 12:11:51 +02:00
|
|
|
|
2018-03-21 00:46:30 +08:00
|
|
|
{
|
|
|
|
const info = {
|
|
|
|
code: 'EINVAL',
|
|
|
|
message: 'invalid argument',
|
2018-08-06 14:40:30 -07:00
|
|
|
errno: UV_EINVAL,
|
2018-03-21 00:46:30 +08:00
|
|
|
syscall: 'uv_recv_buffer_size'
|
|
|
|
};
|
2017-09-17 12:11:51 +02:00
|
|
|
const errorObj = {
|
|
|
|
code: 'ERR_SOCKET_BUFFER_SIZE',
|
2018-03-21 00:46:30 +08:00
|
|
|
type: SystemError,
|
|
|
|
message: 'Could not get or set buffer size: uv_recv_buffer_size ' +
|
|
|
|
'returned EINVAL (invalid argument)',
|
|
|
|
info
|
2017-09-17 12:11:51 +02:00
|
|
|
};
|
|
|
|
const socket = dgram.createSocket('udp4');
|
|
|
|
socket.bind(common.mustCall(() => {
|
2017-12-06 20:02:42 +05:30
|
|
|
common.expectsError(() => {
|
2018-03-21 00:46:30 +08:00
|
|
|
socket.setRecvBufferSize(2147483648);
|
2017-12-06 20:02:42 +05:30
|
|
|
}, errorObj);
|
2017-09-17 12:11:51 +02:00
|
|
|
socket.close();
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2018-03-21 00:46:30 +08:00
|
|
|
{
|
|
|
|
const info = {
|
|
|
|
code: 'EINVAL',
|
|
|
|
message: 'invalid argument',
|
2018-08-06 14:40:30 -07:00
|
|
|
errno: UV_EINVAL,
|
2018-03-21 00:46:30 +08:00
|
|
|
syscall: 'uv_send_buffer_size'
|
|
|
|
};
|
|
|
|
const errorObj = {
|
|
|
|
code: 'ERR_SOCKET_BUFFER_SIZE',
|
|
|
|
type: SystemError,
|
|
|
|
message: 'Could not get or set buffer size: uv_send_buffer_size ' +
|
|
|
|
'returned EINVAL (invalid argument)',
|
|
|
|
info
|
|
|
|
};
|
|
|
|
const socket = dgram.createSocket('udp4');
|
|
|
|
socket.bind(common.mustCall(() => {
|
|
|
|
common.expectsError(() => {
|
|
|
|
socket.setSendBufferSize(2147483648);
|
|
|
|
}, errorObj);
|
|
|
|
socket.close();
|
|
|
|
}));
|
|
|
|
}
|