mirror of
https://github.com/nodejs/node.git
synced 2025-05-17 17:48:21 +00:00

Export a new common.noop no-operation function for general use. Allow using common.mustCall() without a fn argument to simplify test cases. Replace various non-op functions throughout tests with common.noop PR-URL: https://github.com/nodejs/node/pull/12027 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
60 lines
1.7 KiB
JavaScript
60 lines
1.7 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const stream = require('stream');
|
|
const assert = require('assert');
|
|
|
|
// This is very similar to test-stream-pipe-cleanup-pause.js.
|
|
|
|
const reader = new stream.Readable();
|
|
const writer1 = new stream.Writable();
|
|
const writer2 = new stream.Writable();
|
|
const writer3 = new stream.Writable();
|
|
|
|
// 560000 is chosen here because it is larger than the (default) highWaterMark
|
|
// and will cause `.write()` to return false
|
|
// See: https://github.com/nodejs/node/issues/5820
|
|
const buffer = Buffer.allocUnsafe(560000);
|
|
|
|
reader._read = common.noop;
|
|
|
|
writer1._write = common.mustCall(function(chunk, encoding, cb) {
|
|
this.emit('chunk-received');
|
|
cb();
|
|
}, 1);
|
|
|
|
writer1.once('chunk-received', function() {
|
|
assert.strictEqual(reader._readableState.awaitDrain, 0,
|
|
'initial value is not 0');
|
|
setImmediate(function() {
|
|
// This one should *not* get through to writer1 because writer2 is not
|
|
// "done" processing.
|
|
reader.push(buffer);
|
|
});
|
|
});
|
|
|
|
// A "slow" consumer:
|
|
writer2._write = common.mustCall(function(chunk, encoding, cb) {
|
|
assert.strictEqual(
|
|
reader._readableState.awaitDrain, 1,
|
|
'awaitDrain isn\'t 1 after first push'
|
|
);
|
|
// Not calling cb here to "simulate" slow stream.
|
|
// This should be called exactly once, since the first .write() call
|
|
// will return false.
|
|
}, 1);
|
|
|
|
writer3._write = common.mustCall(function(chunk, encoding, cb) {
|
|
assert.strictEqual(
|
|
reader._readableState.awaitDrain, 2,
|
|
'awaitDrain isn\'t 2 after second push'
|
|
);
|
|
// Not calling cb here to "simulate" slow stream.
|
|
// This should be called exactly once, since the first .write() call
|
|
// will return false.
|
|
}, 1);
|
|
|
|
reader.pipe(writer1);
|
|
reader.pipe(writer2);
|
|
reader.pipe(writer3);
|
|
reader.push(buffer);
|