-
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 readableListening internal state
PR-URL: #9864 Refs: #8683 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
- Loading branch information
1 parent
a92f2ad
commit c792e2a
Showing
1 changed file
with
34 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,34 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const stream = require('stream'); | ||
|
||
const r = new stream.Readable({ | ||
read: () => {} | ||
}); | ||
|
||
// readableListening state should start in `false`. | ||
assert.strictEqual(r._readableState.readableListening, false); | ||
|
||
r.on('readable', common.mustCall(() => { | ||
// Inside the readable event this state should be true. | ||
assert.strictEqual(r._readableState.readableListening, true); | ||
})); | ||
|
||
r.push(Buffer.from('Testing readableListening state')); | ||
|
||
const r2 = new stream.Readable({ | ||
read: () => {} | ||
}); | ||
|
||
// readableListening state should start in `false`. | ||
assert.strictEqual(r2._readableState.readableListening, false); | ||
|
||
r2.on('data', common.mustCall((chunk) => { | ||
// readableListening should be false because we don't have | ||
// a `readable` listener | ||
assert.strictEqual(r2._readableState.readableListening, false); | ||
})); | ||
|
||
r2.push(Buffer.from('Testing readableListening state')); |