mirror of
https://github.com/nodejs/node.git
synced 2025-05-04 12:43:20 +00:00

PR-URL: https://github.com/nodejs/node/pull/17334 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
43 lines
888 B
JavaScript
43 lines
888 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const fs = require('fs');
|
|
|
|
['', false, null, undefined, {}, []].forEach((i) => {
|
|
common.expectsError(
|
|
() => fs.close(i),
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message: 'The "fd" argument must be of type number'
|
|
}
|
|
);
|
|
common.expectsError(
|
|
() => fs.closeSync(i),
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message: 'The "fd" argument must be of type number'
|
|
}
|
|
);
|
|
});
|
|
|
|
[-1, 0xFFFFFFFF + 1].forEach((i) => {
|
|
common.expectsError(
|
|
() => fs.close(i),
|
|
{
|
|
code: 'ERR_OUT_OF_RANGE',
|
|
type: RangeError,
|
|
message: 'The "fd" argument is out of range'
|
|
}
|
|
);
|
|
common.expectsError(
|
|
() => fs.closeSync(i),
|
|
{
|
|
code: 'ERR_OUT_OF_RANGE',
|
|
type: RangeError,
|
|
message: 'The "fd" argument is out of range'
|
|
}
|
|
);
|
|
});
|