mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
8123be16a5
PR-URL: https://github.com/nodejs/node/pull/52215 Fixes: https://github.com/nodejs/node/issues/52214 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: theanarkh <theratliter@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
30 lines
773 B
JavaScript
30 lines
773 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
// Buffer with size > INT32_MAX
|
|
common.skipIf32Bits();
|
|
|
|
const assert = require('assert');
|
|
const { StringDecoder } = require('node:string_decoder');
|
|
const kStringMaxLength = require('buffer').constants.MAX_STRING_LENGTH;
|
|
|
|
const size = 2 ** 31;
|
|
|
|
const stringTooLongError = {
|
|
message: `Cannot create a string longer than 0x${kStringMaxLength.toString(16)}` +
|
|
' characters',
|
|
code: 'ERR_STRING_TOO_LONG',
|
|
name: 'Error',
|
|
};
|
|
|
|
try {
|
|
const buf = Buffer.allocUnsafe(size);
|
|
const decoder = new StringDecoder('utf8');
|
|
assert.throws(() => decoder.write(buf), stringTooLongError);
|
|
} catch (e) {
|
|
if (e.code !== 'ERR_MEMORY_ALLOCATION_FAILED') {
|
|
throw e;
|
|
}
|
|
common.skip('insufficient space for Buffer.alloc');
|
|
}
|