mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 18:07:48 +00:00

PR-URL: https://github.com/nodejs/node/pull/43071 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
41 lines
869 B
JavaScript
41 lines
869 B
JavaScript
'use strict';
|
|
|
|
// Checks for crash regression: https://github.com/nodejs/node/issues/37430
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const {
|
|
open,
|
|
openSync,
|
|
promises: {
|
|
open: openPromise,
|
|
},
|
|
} = require('fs');
|
|
|
|
// These should throw, not crash.
|
|
const invalid = 4_294_967_296;
|
|
|
|
assert.throws(() => open(__filename, invalid, common.mustNotCall()), {
|
|
code: 'ERR_OUT_OF_RANGE'
|
|
});
|
|
|
|
assert.throws(() => open(__filename, 0, invalid, common.mustNotCall()), {
|
|
code: 'ERR_OUT_OF_RANGE'
|
|
});
|
|
|
|
assert.throws(() => openSync(__filename, invalid), {
|
|
code: 'ERR_OUT_OF_RANGE'
|
|
});
|
|
|
|
assert.throws(() => openSync(__filename, 0, invalid), {
|
|
code: 'ERR_OUT_OF_RANGE'
|
|
});
|
|
|
|
assert.rejects(openPromise(__filename, invalid), {
|
|
code: 'ERR_OUT_OF_RANGE'
|
|
});
|
|
|
|
assert.rejects(openPromise(__filename, 0, invalid), {
|
|
code: 'ERR_OUT_OF_RANGE'
|
|
});
|