mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
8b76c3e60c
PR-URL: https://github.com/nodejs/node/pull/12735 Refs: https://github.com/nodejs/node/pull/12455 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
69 lines
1.6 KiB
JavaScript
69 lines
1.6 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const tls = require('tls');
|
|
const stream = require('stream');
|
|
const net = require('net');
|
|
|
|
const cert_dir = common.fixturesDir;
|
|
const options = { key: fs.readFileSync(`${cert_dir}/test_key.pem`),
|
|
cert: fs.readFileSync(`${cert_dir}/test_cert.pem`),
|
|
ca: [ fs.readFileSync(`${cert_dir}/test_ca.pem`) ],
|
|
ciphers: 'AES256-GCM-SHA384' };
|
|
const content = 'hello world';
|
|
const recv_bufs = [];
|
|
let send_data = '';
|
|
const server = tls.createServer(options, function(s) {
|
|
s.on('data', function(c) {
|
|
recv_bufs.push(c);
|
|
});
|
|
});
|
|
server.listen(0, function() {
|
|
const raw = net.connect(this.address().port);
|
|
|
|
let pending = false;
|
|
raw.on('readable', function() {
|
|
if (pending)
|
|
p._read();
|
|
});
|
|
|
|
const p = new stream.Duplex({
|
|
read: function read() {
|
|
pending = false;
|
|
|
|
const chunk = raw.read();
|
|
if (chunk) {
|
|
this.push(chunk);
|
|
} else {
|
|
pending = true;
|
|
}
|
|
},
|
|
write: function write(data, enc, cb) {
|
|
raw.write(data, enc, cb);
|
|
}
|
|
});
|
|
|
|
const socket = tls.connect({
|
|
socket: p,
|
|
rejectUnauthorized: false
|
|
}, function() {
|
|
for (let i = 0; i < 50; ++i) {
|
|
socket.write(content);
|
|
send_data += content;
|
|
}
|
|
socket.end();
|
|
server.close();
|
|
});
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
const recv_data = (Buffer.concat(recv_bufs)).toString();
|
|
assert.strictEqual(send_data, recv_data);
|
|
});
|