Skip to content

Commit

Permalink
test: stream readableListening internal state
Browse files Browse the repository at this point in the history
PR-URL: #9864
Refs: #8683
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
italoacasas authored and MylesBorins committed Jan 24, 2017
1 parent be84612 commit 0cc8d69
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions test/parallel/test-stream-readableListening-state.js
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'));

0 comments on commit 0cc8d69

Please sign in to comment.