mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 11:29:35 +00:00

When sending a very large buffer (400000 bytes) the test fails due to the client socket from the `a` server erroring with `ECONNRESET`. There's a race condition between the closing of this socket and the `ssl` socket closing on the other side of the connection. To improve things, destroy the socket as soon as possible: in the `end` event of the `dest` socket. PR-URL: https://github.com/nodejs/node/pull/4195 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Fedor Indutny <fedor@indutny.com>
71 lines
1.5 KiB
JavaScript
71 lines
1.5 KiB
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
console.log('1..0 # Skipped: missing crypto');
|
|
return;
|
|
}
|
|
var tls = require('tls');
|
|
|
|
var fs = require('fs');
|
|
var path = require('path');
|
|
var net = require('net');
|
|
|
|
var options, a, b;
|
|
|
|
var body = new Buffer(400000).fill('A');
|
|
|
|
options = {
|
|
key: fs.readFileSync(path.join(common.fixturesDir, 'test_key.pem')),
|
|
cert: fs.readFileSync(path.join(common.fixturesDir, 'test_cert.pem'))
|
|
};
|
|
|
|
// the "proxy" server
|
|
a = tls.createServer(options, function(socket) {
|
|
var options = {
|
|
host: '127.0.0.1',
|
|
port: b.address().port,
|
|
rejectUnauthorized: false
|
|
};
|
|
var dest = net.connect(options);
|
|
dest.pipe(socket);
|
|
socket.pipe(dest);
|
|
|
|
dest.on('end', function() {
|
|
socket.destroy();
|
|
});
|
|
});
|
|
|
|
// the "target" server
|
|
b = tls.createServer(options, function(socket) {
|
|
socket.end(body);
|
|
});
|
|
|
|
a.listen(common.PORT, function() {
|
|
b.listen(common.PORT + 1, function() {
|
|
options = {
|
|
host: '127.0.0.1',
|
|
port: a.address().port,
|
|
rejectUnauthorized: false
|
|
};
|
|
var socket = tls.connect(options);
|
|
var ssl;
|
|
ssl = tls.connect({
|
|
socket: socket,
|
|
rejectUnauthorized: false
|
|
});
|
|
ssl.setEncoding('utf8');
|
|
var buf = '';
|
|
ssl.on('data', function(data) {
|
|
buf += data;
|
|
});
|
|
ssl.on('end', common.mustCall(function() {
|
|
assert.equal(buf, body);
|
|
ssl.end();
|
|
a.close();
|
|
b.close();
|
|
}));
|
|
});
|
|
});
|