node/test/parallel/test-stream-push-strings.js
Tobias Nießen fe2188620d
test: use arrow functions instead of bind
PR-URL: https://github.com/nodejs/node/pull/17070
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Lance Ball <lball@redhat.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Khaidi Chu <i@2333.moe>
2017-12-19 15:18:27 -05:00

46 lines
1,010 B
JavaScript

'use strict';
require('../common');
const assert = require('assert');
const Readable = require('stream').Readable;
class MyStream extends Readable {
constructor(options) {
super(options);
this._chunks = 3;
}
_read(n) {
switch (this._chunks--) {
case 0:
return this.push(null);
case 1:
return setTimeout(() => {
this.push('last chunk');
}, 100);
case 2:
return this.push('second to last chunk');
case 3:
return process.nextTick(() => {
this.push('first chunk');
});
default:
throw new Error('?');
}
}
}
const ms = new MyStream();
const results = [];
ms.on('readable', function() {
let chunk;
while (null !== (chunk = ms.read()))
results.push(String(chunk));
});
const expect = [ 'first chunksecond to last chunk', 'last chunk' ];
process.on('exit', function() {
assert.strictEqual(ms._chunks, -1);
assert.deepStrictEqual(results, expect);
console.log('ok');
});