mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
3d2aef3979
Use assert.strictEqual instead of assert.equal in tests, manually convert types where necessary. PR-URL: https://github.com/nodejs/node/pull/10698 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
36 lines
722 B
JavaScript
36 lines
722 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
const Writable = require('stream').Writable;
|
|
|
|
let _writeCalled = false;
|
|
function _write(d, e, n) {
|
|
_writeCalled = true;
|
|
}
|
|
|
|
const w = new Writable({ write: _write });
|
|
w.end(Buffer.from('blerg'));
|
|
|
|
let _writevCalled = false;
|
|
let dLength = 0;
|
|
function _writev(d, n) {
|
|
dLength = d.length;
|
|
_writevCalled = true;
|
|
}
|
|
|
|
const w2 = new Writable({ writev: _writev });
|
|
w2.cork();
|
|
|
|
w2.write(Buffer.from('blerg'));
|
|
w2.write(Buffer.from('blerg'));
|
|
w2.end();
|
|
|
|
process.on('exit', function() {
|
|
assert.strictEqual(w._write, _write);
|
|
assert(_writeCalled);
|
|
assert.strictEqual(w2._writev, _writev);
|
|
assert.strictEqual(dLength, 2);
|
|
assert(_writevCalled);
|
|
});
|