summaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-fchown.js
blob: a7e6bf6cbca571bd0f4508342a7d085d64e3780f (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
'use strict';

const common = require('../common');
const fs = require('fs');

['', false, null, undefined, {}, [], Infinity, -1].forEach((i) => {
  common.expectsError(
    () => fs.fchown(i),
    {
      code: 'ERR_INVALID_ARG_TYPE',
      type: TypeError,
      message: 'The "fd" argument must be of type integer'
    }
  );
  common.expectsError(
    () => fs.fchownSync(i),
    {
      code: 'ERR_INVALID_ARG_TYPE',
      type: TypeError,
      message: 'The "fd" argument must be of type integer'
    }
  );

  common.expectsError(
    () => fs.fchown(1, i),
    {
      code: 'ERR_INVALID_ARG_TYPE',
      type: TypeError,
      message: 'The "uid" argument must be of type integer'
    }
  );
  common.expectsError(
    () => fs.fchownSync(1, i),
    {
      code: 'ERR_INVALID_ARG_TYPE',
      type: TypeError,
      message: 'The "uid" argument must be of type integer'
    }
  );

  common.expectsError(
    () => fs.fchown(1, 1, i),
    {
      code: 'ERR_INVALID_ARG_TYPE',
      type: TypeError,
      message: 'The "gid" argument must be of type integer'
    }
  );
  common.expectsError(
    () => fs.fchownSync(1, 1, i),
    {
      code: 'ERR_INVALID_ARG_TYPE',
      type: TypeError,
      message: 'The "gid" argument must be of type integer'
    }
  );
});