node/test/parallel/test-fs-write-stream-err.js
James M Snell 85ab4a5f12 buffer: add .from(), .alloc() and .allocUnsafe()
Several changes:

* Soft-Deprecate Buffer() constructors
* Add `Buffer.from()`, `Buffer.alloc()`, and `Buffer.allocUnsafe()`
* Add `--zero-fill-buffers` command line option
* Add byteOffset and length to `new Buffer(arrayBuffer)` constructor
* buffer.fill('') previously had no effect, now zero-fills
* Update the docs

PR-URL: https://github.com/nodejs/node/pull/4682
Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
2016-03-16 08:34:02 -07:00

54 lines
1.2 KiB
JavaScript

'use strict';
var common = require('../common');
var assert = require('assert');
var fs = require('fs');
common.refreshTmpDir();
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(Buffer.allocUnsafe(256), function() {
console.error('first cb');
stream.write(Buffer.allocUnsafe(256), common.mustCall(function(err_) {
console.error('second cb');
assert.equal(err_, err);
}));
});