mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 22:16:31 +00:00

Adds a new `../common/fixtures' module to begin normalizing `test/fixtures` use. Our test code is a bit inconsistent with regards to use of the fixtures directory. Some code uses `path.join()`, some code uses string concats, some other code uses template strings, etc. In mnay cases, significant duplication of code is seen when accessing fixture files, etc. This updates many (but by no means all) of the tests in the test suite to use the new consistent API. There are still many more to update, which would make an excelent Code-n-Learn exercise. PR-URL: https://github.com/nodejs/node/pull/14332 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michaël Zasso <targos@protonmail.com>
52 lines
1.1 KiB
JavaScript
52 lines
1.1 KiB
JavaScript
'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');
|
|
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
const tls = require('tls');
|
|
const fixtures = require('../common/fixtures');
|
|
|
|
const key = fixtures.readKey('agent1-key.pem');
|
|
const cert = fixtures.readKey('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();
|
|
});
|
|
});
|