tests.js
4.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/*jshint node:true */
/*global describe:false, it:false */
"use strict";
var consume = require('../');
var Stream = require('stream');
var Readable = Stream.Readable;
var Writable = Stream.Writable;
var Duplex = Stream.Duplex;
var should = require('should');
var through = require('through2');
require('mocha');
describe('stream-consume', function() {
it('should cause a Readable stream to complete if it\'s not piped anywhere', function(done) {
var rs = new Readable({highWaterMark: 2});
var a = 0;
var ended = false;
rs._read = function() {
if (a++ < 100) {
rs.push(a + "");
} else {
ended = true;
rs.push(null);
}
};
rs.on("end", function() {
a.should.be.above(99);
ended.should.be.true;
done();
});
consume(rs);
});
it('should work with Readable streams in objectMode', function(done) {
var rs = new Readable({highWaterMark: 2, objectMode: true});
var a = 0;
var ended = false;
rs._read = function() {
if (a++ < 100) {
rs.push(a);
} else {
ended = true;
rs.push(null);
}
};
rs.on("end", function() {
a.should.be.above(99);
ended.should.be.true;
done();
});
consume(rs);
});
it('should not interfere with a Readable stream that is piped somewhere', function(done) {
var rs = new Readable({highWaterMark: 2});
var a = 0;
var ended = false;
rs._read = function() {
if (a++ < 100) {
rs.push(".");
} else {
ended = true;
rs.push(null);
}
};
var sizeRead = 0;
var ws = new Writable({highWaterMark: 2});
ws._write = function(chunk, enc, next) {
sizeRead += chunk.length;
next();
}
ws.on("finish", function() {
a.should.be.above(99);
ended.should.be.true;
sizeRead.should.equal(100);
done();
});
rs.pipe(ws);
consume(rs);
});
it('should not interfere with a Writable stream', function(done) {
var rs = new Readable({highWaterMark: 2});
var a = 0;
var ended = false;
rs._read = function() {
if (a++ < 100) {
rs.push(".");
} else {
ended = true;
rs.push(null);
}
};
var sizeRead = 0;
var ws = new Writable({highWaterMark: 2});
ws._write = function(chunk, enc, next) {
sizeRead += chunk.length;
next();
}
ws.on("finish", function() {
a.should.be.above(99);
ended.should.be.true;
sizeRead.should.equal(100);
done();
});
rs.pipe(ws);
consume(ws);
});
it('should handle a Transform stream', function(done) {
var rs = new Readable({highWaterMark: 2});
var a = 0;
var ended = false;
rs._read = function() {
if (a++ < 100) {
rs.push(".");
} else {
ended = true;
rs.push(null);
}
};
var sizeRead = 0;
var flushed = false;
var ts = through({highWaterMark: 2}, function(chunk, enc, cb) {
sizeRead += chunk.length;
this.push(chunk);
cb();
}, function(cb) {
flushed = true;
cb();
});
ts.on("end", function() {
a.should.be.above(99);
ended.should.be.true;
sizeRead.should.equal(100);
flushed.should.be.true;
done();
});
rs.pipe(ts);
consume(ts);
});
it('should handle a classic stream', function(done) {
var rs = new Stream();
var ended = false;
var i;
rs.on("end", function() {
ended.should.be.true;
done();
});
consume(rs);
for (i = 0; i < 100; i++) {
rs.emit("data", i);
}
ended = true;
rs.emit("end");
});
});