node/test/parallel/test-http-outgoing-buffer.js
Meghan Denny 9a3e755bdb
test: don't use expose internals in test-http-outgoing-buffer.js
PR-URL: https://github.com/nodejs/node/pull/59219
Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
2025-07-28 03:25:59 +00:00

18 lines
551 B
JavaScript

'use strict';
require('../common');
const assert = require('assert');
const { getDefaultHighWaterMark } = require('stream');
const http = require('http');
const OutgoingMessage = http.OutgoingMessage;
const msg = new OutgoingMessage();
msg._implicitHeader = function() {};
// Writes should be buffered until highwatermark
// even when no socket is assigned.
assert.strictEqual(msg.write('asd'), true);
while (msg.write('asd'));
const highwatermark = msg.writableHighWaterMark || getDefaultHighWaterMark();
assert(msg.outputSize >= highwatermark);