Skip to content

Commit 836cbc9

Browse files
committed
Fix use of stream.write(data, encoding) in tests
For several tests I used a shortcut to write an list-of-chunks to a stream: chunks.forEach(stream.write.bind(stream)); This is a quick way to make a function from a method. The problem is that `forEach` will pass the index of the array item as a second argument, and `write` has a second argument (buffer) `encoding`. In Node v15, the encoding is actually checked to see if it's valid -- and numbers are not valid buffer encodings: nodejs/node#33075 The fix is simply to be explicit about which arguments are passed, rather than relying on the shortcut. This is a little more verbose, but can still be put in line at least. Signed-off-by: Michael Bridgen <[email protected]>
1 parent 28cd533 commit 836cbc9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

test/frame.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ suite("Parsing", function() {
123123
bufs.push(defs.encodeMethod(f.id, 0, f.fields));
124124
});
125125

126-
partition(bufs).forEach(input.write.bind(input));
126+
partition(bufs).forEach(function (chunk) { input.write(chunk); });
127127
frames.acceptLoop();
128128
if (ex) throw ex;
129129
return i === t.length;

test/mux.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ test("single input", function(done) {
4141
// not 0, it's treated specially by PassThrough for some reason. By
4242
// 'specially' I mean it breaks the stream. See e.g.,
4343
// https://github.com/isaacs/readable-stream/pull/55
44-
data.forEach(input.write.bind(input));
44+
data.forEach(function (chunk) { input.write(chunk); });
4545

4646
readAllObjects(output, function(vals) {
4747
assert.deepEqual(data, vals);
@@ -75,7 +75,7 @@ test("single input, resuming stream", function(done) {
7575
return val;
7676
}
7777

78-
data.forEach(input.write.bind(input));
78+
data.forEach(function (chunk) { input.write(chunk); });
7979

8080
readAllObjects(output, function(vals) {
8181
assert.deepEqual([1,2,3,4,6,7,8,9], vals);
@@ -145,13 +145,13 @@ test("unpipe", function(done) {
145145
mux.pipeFrom(input);
146146

147147
schedule(function() {
148-
pipedData.forEach(input.write.bind(input));
148+
pipedData.forEach(function (chunk) { input.write(chunk); });
149149

150150
schedule(function() {
151151
mux.unpipeFrom(input);
152152

153153
schedule(function() {
154-
unpipedData.forEach(input.write.bind(input));
154+
unpipedData.forEach(function(chunk) { input.write(chunk); });
155155
input.end();
156156
schedule(function() {
157157
// exhaust so that 'end' fires

0 commit comments

Comments
 (0)