aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-read-stream-err.js
blob: 1eb6aa57906b05c22c4142c56b76b6d1e48fce1e (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';
var common = require('../common');
var assert = require('assert');
var fs = require('fs');

var stream = fs.createReadStream(__filename, {
  bufferSize: 64
});
var err = new Error('BAM');

stream.on('error', common.mustCall(function errorHandler(err_) {
  console.error('error event');
  process.nextTick(function() {
    assert.equal(stream.fd, null);
    assert.equal(err_, err);
  });
}));

fs.close = common.mustCall(function(fd_, cb) {
  assert.equal(fd_, stream.fd);
  process.nextTick(cb);
});

var read = fs.read;
fs.read = function() {
  // first time is ok.
  read.apply(fs, arguments);
  // then it breaks
  fs.read = function() {
    var cb = arguments[arguments.length - 1];
    process.nextTick(function() {
      cb(err);
    });
    // and should not be called again!
    fs.read = function() {
      throw new Error('BOOM!');
    };
  };
};

stream.on('data', function(buf) {
  stream.on('data', assert.fail);  // no more 'data' events should follow
});