node/test/parallel/test-stream-end-paused.js
Italo A. Casas 4d958725b4 test: cleanup stream tests
const and let instead var
assert.strictEqual instead assert.equal

PR-URL: https://github.com/nodejs/node/pull/8668
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
2016-09-23 00:54:35 +03:00

30 lines
646 B
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
// Make sure we don't miss the end event for paused 0-length streams
const Readable = require('stream').Readable;
const stream = new Readable();
let calledRead = false;
stream._read = function() {
assert(!calledRead);
calledRead = true;
this.push(null);
};
stream.on('data', function() {
throw new Error('should not ever get data');
});
stream.pause();
setTimeout(common.mustCall(function() {
stream.on('end', common.mustCall(function() {}));
stream.resume();
}));
process.on('exit', function() {
assert(calledRead);
console.log('ok');
});