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

* Make common.skip() exit. Also add common.printSkipMessage() for partial skips. * Don't make needless things before skip PR-URL: https://github.com/nodejs/node/pull/14021 Fixes: https://github.com/nodejs/node/issues/14016 Reviewed-By: Refael Ackermann <refack@gmail.com>
35 lines
984 B
JavaScript
35 lines
984 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
const tls = require('tls');
|
|
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const cert = fs.readFileSync(path.join(common.fixturesDir, 'test_cert.pem'));
|
|
const key = fs.readFileSync(path.join(common.fixturesDir, 'test_key.pem'));
|
|
|
|
// https://github.com/nodejs/node/issues/1489
|
|
// tls.connect(options) with no options.host should accept a cert with
|
|
// CN:'localhost'
|
|
tls.createServer({
|
|
key: key,
|
|
cert: cert
|
|
}).listen(0, function() {
|
|
const socket = tls.connect({
|
|
port: this.address().port,
|
|
ca: cert,
|
|
// No host set here. 'localhost' is the default,
|
|
// but tls.checkServerIdentity() breaks before the fix with:
|
|
// Error: Hostname/IP doesn't match certificate's altnames:
|
|
// "Host: undefined. is not cert's CN: localhost"
|
|
}, function() {
|
|
assert(socket.authorized);
|
|
process.exit();
|
|
});
|
|
});
|