40 lines
765 B
JavaScript
40 lines
765 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
const { strictEqual } = require('assert');
|
|
const { Writable } = require('stream');
|
|
|
|
const w = new Writable();
|
|
|
|
w.on('error', common.expectsError({
|
|
name: 'Error',
|
|
code: 'ERR_METHOD_NOT_IMPLEMENTED',
|
|
message: 'The _write() method is not implemented'
|
|
}));
|
|
|
|
const bufferBlerg = Buffer.from('blerg');
|
|
|
|
w.end(bufferBlerg);
|
|
|
|
const _write = common.mustCall((chunk, _, next) => {
|
|
next();
|
|
});
|
|
|
|
const _writev = common.mustCall((chunks, next) => {
|
|
strictEqual(chunks.length, 2);
|
|
next();
|
|
});
|
|
|
|
const w2 = new Writable({ write: _write, writev: _writev });
|
|
|
|
strictEqual(w2._write, _write);
|
|
strictEqual(w2._writev, _writev);
|
|
|
|
w2.write(bufferBlerg);
|
|
|
|
w2.cork();
|
|
w2.write(bufferBlerg);
|
|
w2.write(bufferBlerg);
|
|
|
|
w2.end();
|