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.
33 lines
677 B
33 lines
677 B
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
|
|
var stream = require('stream');
|
|
var PassThrough = stream.PassThrough;
|
|
|
|
var src = new PassThrough({ objectMode: true });
|
|
var tx = new PassThrough({ objectMode: true });
|
|
var dest = new PassThrough({ objectMode: true });
|
|
|
|
var expect = [ -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ];
|
|
var results = [];
|
|
process.on('exit', function() {
|
|
assert.deepEqual(results, expect);
|
|
console.log('ok');
|
|
});
|
|
|
|
dest.on('data', function(x) {
|
|
results.push(x);
|
|
});
|
|
|
|
src.pipe(tx).pipe(dest);
|
|
|
|
var i = -1;
|
|
var int = setInterval(function() {
|
|
if (i > 10) {
|
|
src.end();
|
|
clearInterval(int);
|
|
} else {
|
|
src.write(i++);
|
|
}
|
|
});
|
|
|