mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 23:10:15 +00:00

Lots of changes, but mostly just search/replace of fixtures.readSync(...) to fixtures.readKey([new key]...) Benchmarks modified to use fixtures.readKey(...): benchmark/tls/throughput.js benchmark/tls/tls-connect.js benchmark/tls/secure-pair.js Also be sure to review the change to L16 of test/parallel/test-crypto-sign-verify.js PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
67 lines
1.5 KiB
JavaScript
67 lines
1.5 KiB
JavaScript
'use strict';
|
|
const fixtures = require('../../test/common/fixtures');
|
|
const tls = require('tls');
|
|
|
|
const common = require('../common.js');
|
|
const bench = common.createBenchmark(main, {
|
|
concurrency: [1, 10],
|
|
dur: [5]
|
|
});
|
|
|
|
var clientConn = 0;
|
|
var serverConn = 0;
|
|
var dur;
|
|
var concurrency;
|
|
var running = true;
|
|
|
|
function main(conf) {
|
|
dur = conf.dur;
|
|
concurrency = conf.concurrency;
|
|
const options = {
|
|
key: fixtures.readKey('rsa_private.pem'),
|
|
cert: fixtures.readKey('rsa_cert.crt'),
|
|
ca: fixtures.readKey('rsa_ca.crt'),
|
|
ciphers: 'AES256-GCM-SHA384'
|
|
};
|
|
|
|
const server = tls.createServer(options, onConnection);
|
|
server.listen(common.PORT, onListening);
|
|
}
|
|
|
|
function onListening() {
|
|
setTimeout(done, dur * 1000);
|
|
bench.start();
|
|
for (var i = 0; i < concurrency; i++)
|
|
makeConnection();
|
|
}
|
|
|
|
function onConnection(conn) {
|
|
serverConn++;
|
|
}
|
|
|
|
function makeConnection() {
|
|
const options = {
|
|
port: common.PORT,
|
|
rejectUnauthorized: false
|
|
};
|
|
const conn = tls.connect(options, () => {
|
|
clientConn++;
|
|
conn.on('error', (er) => {
|
|
console.error('client error', er);
|
|
throw er;
|
|
});
|
|
conn.end();
|
|
if (running) makeConnection();
|
|
});
|
|
}
|
|
|
|
function done() {
|
|
running = false;
|
|
// It's only an established connection if they both saw it.
|
|
// because we destroy the server somewhat abruptly, these
|
|
// don't always match. Generally, serverConn will be
|
|
// the smaller number, but take the min just to be sure.
|
|
bench.end(Math.min(serverConn, clientConn));
|
|
process.exit(0);
|
|
}
|