mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 19:08:17 +00:00

Remove duplication of buffer tests, separate out into separate files, update and cleanup code, move to using strictEqual where possible. PR-URL: https://github.com/nodejs/node/pull/8256 Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
25 lines
808 B
JavaScript
25 lines
808 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
const msg = /"size" argument must not be negative/;
|
|
|
|
// 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);
|