mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
597 B
32 lines
597 B
'use strict';
|
|
require('../common');
|
|
var Readable = require('stream').Readable;
|
|
var assert = require('assert');
|
|
|
|
var s = new Readable({
|
|
highWaterMark: 20,
|
|
encoding: 'ascii'
|
|
});
|
|
|
|
var list = ['1', '2', '3', '4', '5', '6'];
|
|
|
|
s._read = function(n) {
|
|
var one = list.shift();
|
|
if (!one) {
|
|
s.push(null);
|
|
} else {
|
|
var two = list.shift();
|
|
s.push(one);
|
|
s.push(two);
|
|
}
|
|
};
|
|
|
|
s.read(0);
|
|
|
|
// ACTUALLY [1, 3, 5, 6, 4, 2]
|
|
|
|
process.on('exit', function() {
|
|
assert.deepStrictEqual(s._readableState.buffer,
|
|
['1', '2', '3', '4', '5', '6']);
|
|
console.log('ok');
|
|
});
|
|
|