mirror of
https://github.com/nodejs/node.git
synced 2025-05-11 05:20:25 +00:00

PR-URL: https://github.com/nodejs/node/pull/17667 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const fs = require('fs');
|
|
|
|
[false, 1, [], {}, null, undefined].forEach((i) => {
|
|
common.expectsError(
|
|
() => fs.rename(i, 'does-not-exist', common.mustNotCall()),
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message:
|
|
'The "oldPath" argument must be one of type string, Buffer, or URL'
|
|
}
|
|
);
|
|
common.expectsError(
|
|
() => fs.rename('does-not-exist', i, common.mustNotCall()),
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message:
|
|
'The "newPath" argument must be one of type string, Buffer, or URL'
|
|
}
|
|
);
|
|
common.expectsError(
|
|
() => fs.renameSync(i, 'does-not-exist'),
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message:
|
|
'The "oldPath" argument must be one of type string, Buffer, or URL'
|
|
}
|
|
);
|
|
common.expectsError(
|
|
() => fs.renameSync('does-not-exist', i),
|
|
{
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError,
|
|
message:
|
|
'The "newPath" argument must be one of type string, Buffer, or URL'
|
|
}
|
|
);
|
|
});
|