mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
2.9 KiB
90 lines
2.9 KiB
'use strict';
|
|
|
|
const initHooks = require('./init-hooks');
|
|
const tick = require('./tick');
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const { checkInvocations } = require('./hook-checks');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
|
|
const tls = require('tls');
|
|
const Connection = process.binding('crypto').Connection;
|
|
const hooks = initHooks();
|
|
hooks.enable();
|
|
|
|
function createServerConnection(
|
|
onhandshakestart,
|
|
certificate = null,
|
|
isServer = true,
|
|
servername = 'some server',
|
|
rejectUnauthorized
|
|
) {
|
|
if (certificate == null) certificate = tls.createSecureContext();
|
|
const ssl = new Connection(
|
|
certificate.context, isServer, servername, rejectUnauthorized
|
|
);
|
|
if (isServer) {
|
|
ssl.onhandshakestart = onhandshakestart;
|
|
ssl.lastHandshakeTime = 0;
|
|
}
|
|
return ssl;
|
|
}
|
|
|
|
// creating first server connection
|
|
const sc1 = createServerConnection(common.mustCall(onfirstHandShake));
|
|
|
|
let as = hooks.activitiesOfTypes('SSLCONNECTION');
|
|
assert.strictEqual(as.length, 1,
|
|
'one CONNECTION after first connection created');
|
|
const f1 = as[0];
|
|
assert.strictEqual(f1.type, 'SSLCONNECTION', 'connection');
|
|
assert.strictEqual(typeof f1.uid, 'number', 'uid is a number');
|
|
assert.strictEqual(typeof f1.triggerId, 'number', 'triggerId is a number');
|
|
checkInvocations(f1, { init: 1 }, 'first connection, when first created');
|
|
|
|
// creating second server connection
|
|
const sc2 = createServerConnection(common.mustCall(onsecondHandShake));
|
|
|
|
as = hooks.activitiesOfTypes('SSLCONNECTION');
|
|
assert.strictEqual(as.length, 2,
|
|
'two SSLCONNECTIONs after second connection created');
|
|
const f2 = as[1];
|
|
assert.strictEqual(f2.type, 'SSLCONNECTION', 'connection');
|
|
assert.strictEqual(typeof f2.uid, 'number', 'uid is a number');
|
|
assert.strictEqual(typeof f2.triggerId, 'number', 'triggerId is a number');
|
|
checkInvocations(f1, { init: 1 }, 'first connection, when second created');
|
|
checkInvocations(f2, { init: 1 }, 'second connection, when second created');
|
|
|
|
// starting the connections which results in handshake starts
|
|
sc1.start();
|
|
sc2.start();
|
|
|
|
function onfirstHandShake() {
|
|
checkInvocations(f1, { init: 1, before: 1 },
|
|
'first connection, when first handshake');
|
|
checkInvocations(f2, { init: 1 }, 'second connection, when first handshake');
|
|
}
|
|
|
|
function onsecondHandShake() {
|
|
checkInvocations(f1, { init: 1, before: 1, after: 1 },
|
|
'first connection, when second handshake');
|
|
checkInvocations(f2, { init: 1, before: 1 },
|
|
'second connection, when second handshake');
|
|
tick(1E4);
|
|
}
|
|
|
|
process.on('exit', onexit);
|
|
|
|
function onexit() {
|
|
hooks.disable();
|
|
hooks.sanityCheck('SSLCONNECTION');
|
|
|
|
checkInvocations(f1, { init: 1, before: 1, after: 1 },
|
|
'first connection, when process exits');
|
|
checkInvocations(f2, { init: 1, before: 1, after: 1 },
|
|
'second connection, when process exits');
|
|
}
|
|
|