node/test/parallel/test-fs-read-stream-err.js
Roman Reiss f29762f4dd test: enable linting for tests
Enable linting for the test directory. A number of changes was made so
all tests conform the current rules used by lib and src directories. The
only exception for tests is that unreachable (dead) code is allowed.

test-fs-non-number-arguments-throw had to be excluded from the changes
because of a weird issue on Windows CI.

PR-URL: https://github.com/nodejs/io.js/pull/1721
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-05-19 21:21:27 +02:00

44 lines
985 B
JavaScript

'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
});