-
Notifications
You must be signed in to change notification settings - Fork 30k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stream: support readable/writableHWM for Duplex
This commits adds support for readableHighWaterMark and writableHighWaterMark in Duplex stream, so that they can be set without accessing the internal state. Fixes: #14555 PR-URL: #14636 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Matteo Collina <[email protected]>
- Loading branch information
Showing
4 changed files
with
107 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
test/parallel/test-stream-transform-split-highwatermark.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
'use strict'; | ||
require('../common'); | ||
const assert = require('assert'); | ||
|
||
const { Transform, Readable, Writable } = require('stream'); | ||
|
||
const DEFAULT = 16 * 1024; | ||
|
||
function testTransform(expectedReadableHwm, expectedWritableHwm, options) { | ||
const t = new Transform(options); | ||
assert.strictEqual(t._readableState.highWaterMark, expectedReadableHwm); | ||
assert.strictEqual(t._writableState.highWaterMark, expectedWritableHwm); | ||
} | ||
|
||
// test overriding defaultHwm | ||
testTransform(666, DEFAULT, { readableHighWaterMark: 666 }); | ||
testTransform(DEFAULT, 777, { writableHighWaterMark: 777 }); | ||
testTransform(666, 777, { | ||
readableHighWaterMark: 666, | ||
writableHighWaterMark: 777, | ||
}); | ||
|
||
// test 0 overriding defaultHwm | ||
testTransform(0, DEFAULT, { readableHighWaterMark: 0 }); | ||
testTransform(DEFAULT, 0, { writableHighWaterMark: 0 }); | ||
|
||
// test highWaterMark overriding | ||
testTransform(555, 555, { | ||
highWaterMark: 555, | ||
readableHighWaterMark: 666, | ||
}); | ||
testTransform(555, 555, { | ||
highWaterMark: 555, | ||
writableHighWaterMark: 777, | ||
}); | ||
testTransform(555, 555, { | ||
highWaterMark: 555, | ||
readableHighWaterMark: 666, | ||
writableHighWaterMark: 777, | ||
}); | ||
|
||
// test highWaterMark = 0 overriding | ||
testTransform(0, 0, { | ||
highWaterMark: 0, | ||
readableHighWaterMark: 666, | ||
}); | ||
testTransform(0, 0, { | ||
highWaterMark: 0, | ||
writableHighWaterMark: 777, | ||
}); | ||
testTransform(0, 0, { | ||
highWaterMark: 0, | ||
readableHighWaterMark: 666, | ||
writableHighWaterMark: 777, | ||
}); | ||
|
||
// test undefined, null, NaN | ||
[undefined, null, NaN].forEach((v) => { | ||
testTransform(DEFAULT, DEFAULT, { readableHighWaterMark: v }); | ||
testTransform(DEFAULT, DEFAULT, { writableHighWaterMark: v }); | ||
testTransform(666, DEFAULT, { highWaterMark: v, readableHighWaterMark: 666 }); | ||
testTransform(DEFAULT, 777, { highWaterMark: v, writableHighWaterMark: 777 }); | ||
}); | ||
|
||
// test non Duplex streams ignore the options | ||
{ | ||
const r = new Readable({ readableHighWaterMark: 666 }); | ||
assert.strictEqual(r._readableState.highWaterMark, DEFAULT); | ||
const w = new Writable({ writableHighWaterMark: 777 }); | ||
assert.strictEqual(w._writableState.highWaterMark, DEFAULT); | ||
} |