summaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-read-type.js
blob: b47a7be177e7a3e1d6d4f83361ecdf435b9f2af4 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
'use strict';
const common = require('../common');
const fs = require('fs');
const fixtures = require('../common/fixtures');

const filepath = fixtures.path('x.txt');
const fd = fs.openSync(filepath, 'r');
const expected = 'xyz\n';


// Error must be thrown with string
common.expectsError(
  () => fs.read(fd, expected.length, 0, 'utf-8', common.mustNotCall()),
  {
    code: 'ERR_INVALID_ARG_TYPE',
    type: TypeError,
    message: 'The "buffer" argument must be one of type Buffer or Uint8Array.' +
             ' Received type number'
  }
);

[true, null, undefined, () => {}, {}].forEach((value) => {
  common.expectsError(() => {
    fs.read(value,
            Buffer.allocUnsafe(expected.length),
            0,
            expected.length,
            0,
            common.mustNotCall());
  }, {
    code: 'ERR_INVALID_ARG_TYPE',
    type: TypeError,
    message: 'The "fd" argument must be of type integer'
  });
});

common.expectsError(() => {
  fs.read(fd,
          Buffer.allocUnsafe(expected.length),
          -1,
          expected.length,
          0,
          common.mustNotCall());
}, { code: 'ERR_OUT_OF_RANGE', type: RangeError,
     message: 'The value of "offset" is out of range.' });

common.expectsError(() => {
  fs.read(fd,
          Buffer.allocUnsafe(expected.length),
          0,
          -1,
          0,
          common.mustNotCall());
}, { code: 'ERR_OUT_OF_RANGE', type: RangeError,
     message: 'The value of "length" is out of range.' });


common.expectsError(
  () => fs.readSync(fd, expected.length, 0, 'utf-8'),
  {
    code: 'ERR_INVALID_ARG_TYPE',
    type: TypeError,
    message: 'The "buffer" argument must be one of type Buffer or Uint8Array.' +
             ' Received type number'
  }
);

[true, null, undefined, () => {}, {}].forEach((value) => {
  common.expectsError(() => {
    fs.readSync(value,
                Buffer.allocUnsafe(expected.length),
                0,
                expected.length,
                0);
  }, {
    code: 'ERR_INVALID_ARG_TYPE',
    type: TypeError,
    message: 'The "fd" argument must be of type integer'
  });
});

common.expectsError(() => {
  fs.readSync(fd,
              Buffer.allocUnsafe(expected.length),
              -1,
              expected.length,
              0);
}, { code: 'ERR_OUT_OF_RANGE', type: RangeError,
     message: 'The value of "offset" is out of range.' });

common.expectsError(() => {
  fs.readSync(fd,
              Buffer.allocUnsafe(expected.length),
              0,
              -1,
              0);
}, { code: 'ERR_OUT_OF_RANGE', type: RangeError,
     message: 'The value of "length" is out of range.' });