node/test/parallel/test-stream-pipe-multiple-pipes.js
Rich Trott 380929ec0c test: remove common.noop
This change removes `common.noop` from the Node.js internal testing
common module.

Over the last few weeks, I've grown to dislike the `common.noop`
abstraction.

First, new (and experienced) contributors are unaware of it and so it
results in a large number of low-value nits on PRs. It also increases
the number of things newcomers and infrequent contributors have to be
aware of to be effective on the project.

Second, it is confusing. Is it a singleton/property or a getter? Which
should be expected? This can lead to subtle and hard-to-find bugs. (To
my knowledge, none have landed on master. But I also think it's only a
matter of time.)

Third, the abstraction is low-value in my opinion. What does it really
get us? A case could me made that it is without value at all.

Lastly, and this is minor, but the abstraction is wordier than not using
the abstraction. `common.noop` doesn't save anything over `() => {}`.

So, I propose removing it.

PR-URL: https://github.com/nodejs/node/pull/12822
Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
Reviewed-By: Timothy Gu <timothygu99@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Refael Ackermann <refack@gmail.com>
2017-07-03 11:39:35 -07:00

52 lines
1.2 KiB
JavaScript

'use strict';
const common = require('../common');
const stream = require('stream');
const assert = require('assert');
const readable = new stream.Readable({
read: () => {}
});
const writables = [];
for (let i = 0; i < 5; i++) {
const target = new stream.Writable({
write: common.mustCall((chunk, encoding, callback) => {
target.output.push(chunk);
callback();
}, 1)
});
target.output = [];
target.on('pipe', common.mustCall());
readable.pipe(target);
writables.push(target);
}
const input = Buffer.from([1, 2, 3, 4, 5]);
readable.push(input);
// The pipe() calls will postpone emission of the 'resume' event using nextTick,
// so no data will be available to the writable streams until then.
process.nextTick(common.mustCall(() => {
for (const target of writables) {
assert.deepStrictEqual(target.output, [input]);
target.on('unpipe', common.mustCall());
readable.unpipe(target);
}
readable.push('something else'); // This does not get through.
readable.push(null);
readable.resume(); // Make sure the 'end' event gets emitted.
}));
readable.on('end', common.mustCall(() => {
for (const target of writables) {
assert.deepStrictEqual(target.output, [input]);
}
}));