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.
43 lines
1.0 KiB
43 lines
1.0 KiB
9 years ago
|
'use strict';
|
||
|
|
||
|
if (!process.features.tls_sni) {
|
||
|
console.log('1..0 # Skipped: node compiled without OpenSSL or ' +
|
||
|
'with old OpenSSL version.');
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
const common = require('../common');
|
||
|
const assert = require('assert');
|
||
|
|
||
|
if (!common.hasCrypto) {
|
||
|
console.log('1..0 # Skipped: missing crypto');
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
const tls = require('tls');
|
||
|
|
||
|
const options = {
|
||
|
SNICallback: (name, callback) => {
|
||
|
callback(null, tls.createSecureContext());
|
||
|
}
|
||
|
};
|
||
|
|
||
|
const server = tls.createServer(options, (c) => {
|
||
|
common.fail('Should not be called');
|
||
|
}).on('tlsClientError', common.mustCall((err, c) => {
|
||
|
assert(/SSL_use_certificate:passed a null parameter/i.test(err.message));
|
||
|
server.close();
|
||
|
})).listen(common.PORT, common.mustCall(() => {
|
||
|
const c = tls.connect({
|
||
|
port: common.PORT,
|
||
|
rejectUnauthorized: false,
|
||
|
servername: 'any.name'
|
||
|
}, () => {
|
||
|
common.fail('Should not be called');
|
||
|
});
|
||
|
|
||
|
c.on('error', common.mustCall((err) => {
|
||
|
assert(/socket hang up/.test(err.message));
|
||
|
}));
|
||
|
}));
|