mirror of
https://github.com/nodejs/node.git
synced 2025-05-10 17:30:22 +00:00

Adds a readableEnded property and improved finished compat with possible stream-like objects. PR-URL: https://github.com/nodejs/node/pull/28814 Refs: https://github.com/nodejs/node/issues/28813 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
34 lines
797 B
JavaScript
34 lines
797 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const { Readable } = require('stream');
|
|
const assert = require('assert');
|
|
|
|
// basic
|
|
{
|
|
// Find it on Readable.prototype
|
|
assert(Readable.prototype.hasOwnProperty('readableEnded'));
|
|
}
|
|
|
|
// event
|
|
{
|
|
const readable = new Readable();
|
|
|
|
readable._read = () => {
|
|
// The state ended should start in false.
|
|
assert.strictEqual(readable.readableEnded, false);
|
|
readable.push('asd');
|
|
assert.strictEqual(readable.readableEnded, false);
|
|
readable.push(null);
|
|
assert.strictEqual(readable.readableEnded, false);
|
|
};
|
|
|
|
readable.on('end', common.mustCall(() => {
|
|
assert.strictEqual(readable.readableEnded, true);
|
|
}));
|
|
|
|
readable.on('data', common.mustCall(() => {
|
|
assert.strictEqual(readable.readableEnded, false);
|
|
}));
|
|
}
|