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.
53 lines
1.2 KiB
53 lines
1.2 KiB
'use strict';
|
|
|
|
// Test asynchronous SNI+OCSP on TLSSocket created with `server` set to
|
|
// `net.Server` instead of `tls.Server`
|
|
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const net = require('net');
|
|
const tls = require('tls');
|
|
|
|
const key = fs.readFileSync(`${common.fixturesDir}/keys/agent1-key.pem`);
|
|
const cert = fs.readFileSync(`${common.fixturesDir}/keys/agent1-cert.pem`);
|
|
|
|
const server = net.createServer(common.mustCall((s) => {
|
|
const tlsSocket = new tls.TLSSocket(s, {
|
|
isServer: true,
|
|
server: server,
|
|
|
|
secureContext: tls.createSecureContext({
|
|
key: key,
|
|
cert: cert
|
|
}),
|
|
|
|
SNICallback: common.mustCall((hostname, callback) => {
|
|
assert.strictEqual(hostname, 'test.test');
|
|
|
|
callback(null, null);
|
|
})
|
|
});
|
|
|
|
tlsSocket.on('secure', common.mustCall(() => {
|
|
tlsSocket.end();
|
|
server.close();
|
|
}));
|
|
})).listen(0, () => {
|
|
const opts = {
|
|
servername: 'test.test',
|
|
port: server.address().port,
|
|
rejectUnauthorized: false,
|
|
requestOCSP: true
|
|
};
|
|
|
|
tls.connect(opts, function() {
|
|
this.end();
|
|
});
|
|
});
|
|
|