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
|
'use strict';
const common = require('../common');
const assert = require('assert');
const { isDisturbed, isErrored, Readable } = require('stream');
function noop() {}
function check(readable, data, fn) {
assert.strictEqual(readable.readableDidRead, false);
assert.strictEqual(isDisturbed(readable), false);
assert.strictEqual(isErrored(readable), false);
if (data === -1) {
readable.on('error', common.mustCall(() => {
assert.strictEqual(isErrored(readable), true);
}));
readable.on('data', common.mustNotCall());
readable.on('end', common.mustNotCall());
} else {
readable.on('error', common.mustNotCall());
if (data === -2) {
readable.on('end', common.mustNotCall());
} else {
readable.on('end', common.mustCall());
}
if (data > 0) {
readable.on('data', common.mustCallAtLeast(data));
} else {
readable.on('data', common.mustNotCall());
}
}
readable.on('close', common.mustCall());
fn();
setImmediate(() => {
assert.strictEqual(readable.readableDidRead, data > 0);
if (data > 0) {
assert.strictEqual(isDisturbed(readable), true);
}
});
}
{
const readable = new Readable({
read() {
this.push(null);
}
});
check(readable, 0, () => {
readable.read();
});
}
{
const readable = new Readable({
read() {
this.push(null);
}
});
check(readable, 0, () => {
readable.resume();
});
}
{
const readable = new Readable({
read() {
this.push(null);
}
});
check(readable, -2, () => {
readable.destroy();
});
}
{
const readable = new Readable({
read() {
this.push(null);
}
});
check(readable, -1, () => {
readable.destroy(new Error());
});
}
{
const readable = new Readable({
read() {
this.push('data');
this.push(null);
}
});
check(readable, 1, () => {
readable.on('data', noop);
});
}
{
const readable = new Readable({
read() {
this.push('data');
this.push(null);
}
});
check(readable, 1, () => {
readable.on('data', noop);
readable.off('data', noop);
});
}
|