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.
18 lines
703 B
18 lines
703 B
8 years ago
|
'use strict';
|
||
|
|
||
|
const common = require('../common');
|
||
|
const assert = require('assert');
|
||
|
const SlowBuffer = require('buffer').SlowBuffer;
|
||
|
|
||
|
const bufferNegativeMsg = common.expectsError({
|
||
|
code: 'ERR_INVALID_OPT_VALUE',
|
||
|
type: RangeError,
|
||
|
message: /^The value "[^"]*" is invalid for option "size"$/
|
||
|
}, 5);
|
||
|
assert.throws(() => Buffer(-1).toString('utf8'), bufferNegativeMsg);
|
||
|
assert.throws(() => SlowBuffer(-1).toString('utf8'), bufferNegativeMsg);
|
||
|
assert.throws(() => Buffer.alloc(-1).toString('utf8'), bufferNegativeMsg);
|
||
|
assert.throws(() => Buffer.allocUnsafe(-1).toString('utf8'), bufferNegativeMsg);
|
||
|
assert.throws(() => Buffer.allocUnsafeSlow(-1).toString('utf8'),
|
||
|
bufferNegativeMsg);
|