blob: a20fc2ee732d0f13eeb72f455f9db24a620337f5 (
plain)
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
|
'use strict';
const common = require('../common');
const assert = require('assert');
const Readable = require('stream').Readable;
{
// First test, not reading when the readable is added.
// make sure that on('readable', ...) triggers a readable event.
const r = new Readable({
highWaterMark: 3
});
r._read = common.fail;
// This triggers a 'readable' event, which is lost.
r.push(Buffer.from('blerg'));
setTimeout(function() {
// we're testing what we think we are
assert(!r._readableState.reading);
r.on('readable', common.mustCall(function() {}));
});
}
{
// second test, make sure that readable is re-emitted if there's
// already a length, while it IS reading.
const r = new Readable({
highWaterMark: 3
});
r._read = common.mustCall(function(n) {});
// This triggers a 'readable' event, which is lost.
r.push(Buffer.from('bl'));
setTimeout(function() {
// assert we're testing what we think we are
assert(r._readableState.reading);
r.on('readable', common.mustCall(function() {}));
});
}
{
// Third test, not reading when the stream has not passed
// the highWaterMark but *has* reached EOF.
const r = new Readable({
highWaterMark: 30
});
r._read = common.fail;
// This triggers a 'readable' event, which is lost.
r.push(Buffer.from('blerg'));
r.push(null);
setTimeout(function() {
// assert we're testing what we think we are
assert(!r._readableState.reading);
r.on('readable', common.mustCall(function() {}));
});
}
|