mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
564fcb8f78
PR-URL: https://github.com/nodejs/node/pull/35985 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
51 lines
1.2 KiB
JavaScript
51 lines
1.2 KiB
JavaScript
// Flags: --expose-internals
|
|
'use strict';
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
const http2 = require('http2');
|
|
const tls = require('tls');
|
|
const fixtures = require('../common/fixtures');
|
|
|
|
const serverOptions = {
|
|
key: fixtures.readKey('agent1-key.pem'),
|
|
cert: fixtures.readKey('agent1-cert.pem')
|
|
};
|
|
|
|
const server = http2.createSecureServer(serverOptions, (req, res) => {
|
|
res.end();
|
|
});
|
|
|
|
server.listen(0, '127.0.0.1', common.mustCall(() => {
|
|
const options = {
|
|
ALPNProtocols: ['h2'],
|
|
host: '127.0.0.1',
|
|
servername: 'localhost',
|
|
port: server.address().port,
|
|
rejectUnauthorized: false
|
|
};
|
|
|
|
const socket = tls.connect(options, async () => {
|
|
socket.once('readable', () => {
|
|
const client = http2.connect(
|
|
'https://localhost:' + server.address().port,
|
|
{ ...options, createConnection: () => socket }
|
|
);
|
|
|
|
client.once('remoteSettings', common.mustCall(() => {
|
|
const req = client.request({
|
|
':path': '/'
|
|
});
|
|
req.on('data', () => req.resume());
|
|
req.on('end', common.mustCall(() => {
|
|
client.close();
|
|
req.close();
|
|
server.close();
|
|
}));
|
|
req.end();
|
|
}));
|
|
});
|
|
});
|
|
}));
|