mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01:00
c065773cc5
PR-URL: https://github.com/nodejs/node/pull/29019 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
20 lines
596 B
JavaScript
20 lines
596 B
JavaScript
// Flags: --expose-internals
|
|
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const { getDefaultHighWaterMark } = require('internal/streams/state');
|
|
|
|
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);
|