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>
51 lines
1.2 KiB
JavaScript
51 lines
1.2 KiB
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var fs = require('fs');
|
|
|
|
var stream = fs.createWriteStream(common.tmpDir + '/out', {
|
|
highWaterMark: 10
|
|
});
|
|
var err = new Error('BAM');
|
|
|
|
var write = fs.write;
|
|
var writeCalls = 0;
|
|
fs.write = function() {
|
|
switch (writeCalls++) {
|
|
case 0:
|
|
console.error('first write');
|
|
// first time is ok.
|
|
return write.apply(fs, arguments);
|
|
case 1:
|
|
// then it breaks
|
|
console.error('second write');
|
|
var cb = arguments[arguments.length - 1];
|
|
return process.nextTick(function() {
|
|
cb(err);
|
|
});
|
|
default:
|
|
// and should not be called again!
|
|
throw new Error('BOOM!');
|
|
}
|
|
};
|
|
|
|
fs.close = common.mustCall(function(fd_, cb) {
|
|
console.error('fs.close', fd_, stream.fd);
|
|
assert.equal(fd_, stream.fd);
|
|
process.nextTick(cb);
|
|
});
|
|
|
|
stream.on('error', common.mustCall(function(err_) {
|
|
console.error('error handler');
|
|
assert.equal(stream.fd, null);
|
|
assert.equal(err_, err);
|
|
}));
|
|
|
|
|
|
stream.write(new Buffer(256), function() {
|
|
console.error('first cb');
|
|
stream.write(new Buffer(256), common.mustCall(function(err_) {
|
|
console.error('second cb');
|
|
assert.equal(err_, err);
|
|
}));
|
|
});
|