mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 16:22:29 +00:00

Make writeQueueSize represent the actual size of the write queue within the TLS socket. Add tls test to confirm that bufferSize works as expected. PR-URL: https://github.com/nodejs/node/pull/15791 Fixes: https://github.com/nodejs/node/issues/15005 Refs: https://github.com/nodejs/node/pull/15006 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
44 lines
1.0 KiB
JavaScript
44 lines
1.0 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
const assert = require('assert');
|
|
const fixtures = require('../common/fixtures');
|
|
const tls = require('tls');
|
|
|
|
const iter = 10;
|
|
const overhead = 30;
|
|
|
|
const server = tls.createServer({
|
|
key: fixtures.readKey('agent2-key.pem'),
|
|
cert: fixtures.readKey('agent2-cert.pem')
|
|
}, common.mustCall((socket) => {
|
|
socket.on('readable', common.mustCallAtLeast(() => {
|
|
socket.read();
|
|
}, 1));
|
|
|
|
socket.on('end', common.mustCall(() => {
|
|
server.close();
|
|
}));
|
|
}));
|
|
|
|
server.listen(0, common.mustCall(() => {
|
|
const client = tls.connect({
|
|
port: server.address().port,
|
|
rejectUnauthorized: false
|
|
}, common.mustCall(() => {
|
|
assert.strictEqual(client.bufferSize, 0);
|
|
|
|
for (let i = 1; i < iter; i++) {
|
|
client.write('a');
|
|
assert.strictEqual(client.bufferSize, i + overhead);
|
|
}
|
|
|
|
client.on('finish', common.mustCall(() => {
|
|
assert.strictEqual(client.bufferSize, 0);
|
|
}));
|
|
|
|
client.end();
|
|
}));
|
|
}));
|