mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
dbfe8c4ea2
PR-URL: https://github.com/nodejs/node/pull/13976 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
29 lines
928 B
JavaScript
29 lines
928 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
const msg = common.expectsError({
|
|
code: 'ERR_INVALID_OPT_VALUE',
|
|
type: RangeError,
|
|
message: /^The value "[^"]*" is invalid for option "size"$/
|
|
}, 12);
|
|
|
|
// Test that negative Buffer length inputs throw errors.
|
|
|
|
assert.throws(() => Buffer(-Buffer.poolSize), msg);
|
|
assert.throws(() => Buffer(-100), msg);
|
|
assert.throws(() => Buffer(-1), msg);
|
|
|
|
assert.throws(() => Buffer.alloc(-Buffer.poolSize), msg);
|
|
assert.throws(() => Buffer.alloc(-100), msg);
|
|
assert.throws(() => Buffer.alloc(-1), msg);
|
|
|
|
assert.throws(() => Buffer.allocUnsafe(-Buffer.poolSize), msg);
|
|
assert.throws(() => Buffer.allocUnsafe(-100), msg);
|
|
assert.throws(() => Buffer.allocUnsafe(-1), msg);
|
|
|
|
assert.throws(() => Buffer.allocUnsafeSlow(-Buffer.poolSize), msg);
|
|
assert.throws(() => Buffer.allocUnsafeSlow(-100), msg);
|
|
assert.throws(() => Buffer.allocUnsafeSlow(-1), msg);
|