summaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-rename-type-check.js
blob: 68126e9f7e66e89a964a83087eae87466c6334df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
'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'
    }
  );
});