mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 08:19:38 +01:00
3e1b1dd4a9
The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
43 lines
971 B
JavaScript
43 lines
971 B
JavaScript
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
|
|
});
|