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.
122 lines
3.1 KiB
122 lines
3.1 KiB
13 years ago
|
// Copyright Joyent, Inc. and other Node contributors.
|
||
|
//
|
||
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
||
|
// copy of this software and associated documentation files (the
|
||
|
// "Software"), to deal in the Software without restriction, including
|
||
|
// without limitation the rights to use, copy, modify, merge, publish,
|
||
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
||
|
// persons to whom the Software is furnished to do so, subject to the
|
||
|
// following conditions:
|
||
|
//
|
||
|
// The above copyright notice and this permission notice shall be included
|
||
|
// in all copies or substantial portions of the Software.
|
||
|
//
|
||
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
||
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
||
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||
|
|
||
14 years ago
|
// Test that having a bunch of streams piping in parallel
|
||
|
// doesn't break anything.
|
||
|
|
||
13 years ago
|
var common = require('../common');
|
||
|
var assert = require('assert');
|
||
|
var Stream = require('stream').Stream;
|
||
14 years ago
|
var rr = [];
|
||
|
var ww = [];
|
||
|
var cnt = 100;
|
||
|
var chunks = 1000;
|
||
|
var chunkSize = 250;
|
||
|
var data = new Buffer(chunkSize);
|
||
|
var wclosed = 0;
|
||
|
var rclosed = 0;
|
||
|
|
||
|
function FakeStream() {
|
||
|
Stream.apply(this);
|
||
|
this.wait = false;
|
||
|
this.writable = true;
|
||
|
this.readable = true;
|
||
|
}
|
||
|
|
||
|
FakeStream.prototype = Object.create(Stream.prototype);
|
||
|
|
||
|
FakeStream.prototype.write = function(chunk) {
|
||
13 years ago
|
console.error(this.ID, 'write', this.wait);
|
||
14 years ago
|
if (this.wait) {
|
||
13 years ago
|
process.nextTick(this.emit.bind(this, 'drain'));
|
||
14 years ago
|
}
|
||
|
this.wait = !this.wait;
|
||
|
return this.wait;
|
||
|
};
|
||
|
|
||
|
FakeStream.prototype.end = function() {
|
||
13 years ago
|
this.emit('end');
|
||
14 years ago
|
process.nextTick(this.close.bind(this));
|
||
|
};
|
||
|
|
||
|
// noop - closes happen automatically on end.
|
||
|
FakeStream.prototype.close = function() {
|
||
13 years ago
|
this.emit('close');
|
||
14 years ago
|
};
|
||
|
|
||
|
|
||
|
// expect all streams to close properly.
|
||
13 years ago
|
process.on('exit', function() {
|
||
|
assert.equal(cnt, wclosed, 'writable streams closed');
|
||
|
assert.equal(cnt, rclosed, 'readable streams closed');
|
||
14 years ago
|
});
|
||
|
|
||
13 years ago
|
for (var i = 0; i < chunkSize; i++) {
|
||
14 years ago
|
chunkSize[i] = i % 256;
|
||
|
}
|
||
|
|
||
|
for (var i = 0; i < cnt; i++) {
|
||
|
var r = new FakeStream();
|
||
13 years ago
|
r.on('close', function() {
|
||
|
console.error(this.ID, 'read close');
|
||
14 years ago
|
rclosed++;
|
||
|
});
|
||
|
rr.push(r);
|
||
|
|
||
|
var w = new FakeStream();
|
||
13 years ago
|
w.on('close', function() {
|
||
|
console.error(this.ID, 'write close');
|
||
14 years ago
|
wclosed++;
|
||
|
});
|
||
|
ww.push(w);
|
||
|
|
||
|
r.ID = w.ID = i;
|
||
|
r.pipe(w);
|
||
|
}
|
||
|
|
||
|
// now start passing through data
|
||
|
// simulate a relatively fast async stream.
|
||
13 years ago
|
rr.forEach(function(r) {
|
||
14 years ago
|
var cnt = chunks;
|
||
|
var paused = false;
|
||
|
|
||
13 years ago
|
r.on('pause', function() {
|
||
14 years ago
|
paused = true;
|
||
|
});
|
||
|
|
||
13 years ago
|
r.on('resume', function() {
|
||
14 years ago
|
paused = false;
|
||
|
step();
|
||
|
});
|
||
|
|
||
|
function step() {
|
||
13 years ago
|
r.emit('data', data);
|
||
14 years ago
|
if (--cnt === 0) {
|
||
|
r.end();
|
||
|
return;
|
||
|
}
|
||
|
if (paused) return;
|
||
|
process.nextTick(step);
|
||
|
}
|
||
|
|
||
|
process.nextTick(step);
|
||
|
});
|