-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: stream readableState readingMore state
PR-URL: #9868 Refs: #8685 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com>
- Loading branch information
1 parent
d8b902f
commit 544920f
Showing
1 changed file
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const Readable = require('stream').Readable; | ||
|
||
const readable = new Readable({ | ||
read(size) {} | ||
}); | ||
|
||
const state = readable._readableState; | ||
|
||
// Starting off with false initially. | ||
assert.strictEqual(state.reading, false); | ||
assert.strictEqual(state.readingMore, false); | ||
|
||
readable.on('data', common.mustCall((data) => { | ||
// while in a flowing state, should try to read more. | ||
if (state.flowing) | ||
assert.strictEqual(state.readingMore, true); | ||
|
||
// reading as long as we've not ended | ||
assert.strictEqual(state.reading, !state.ended); | ||
}, 2)); | ||
|
||
function onStreamEnd() { | ||
// End of stream; state.reading is false | ||
// And so should be readingMore. | ||
assert.strictEqual(state.readingMore, false); | ||
assert.strictEqual(state.reading, false); | ||
} | ||
|
||
readable.on('readable', common.mustCall(() => { | ||
// 'readable' always gets called before 'end' | ||
// since 'end' hasn't been emitted, more data could be incoming | ||
assert.strictEqual(state.readingMore, true); | ||
|
||
// if the stream has ended, we shouldn't be reading | ||
assert.strictEqual(state.ended, !state.reading); | ||
|
||
if (readable.read() === null) // reached end of stream | ||
process.nextTick(common.mustCall(onStreamEnd, 1)); | ||
}, 2)); | ||
|
||
readable.on('end', common.mustCall(onStreamEnd)); | ||
|
||
readable.push('pushed'); | ||
|
||
// stop emitting 'data' events | ||
readable.pause(); | ||
|
||
// read() should only be called while operating in paused mode | ||
readable.read(6); | ||
|
||
// reading | ||
assert.strictEqual(state.reading, true); | ||
assert.strictEqual(state.readingMore, true); | ||
|
||
// resume emitting 'data' events | ||
readable.resume(); | ||
|
||
// add chunk to front | ||
readable.unshift('unshifted'); | ||
|
||
// end | ||
readable.push(null); |