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.
28 lines
494 B
28 lines
494 B
'use strict';
|
|
const common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
var tls = require('tls');
|
|
|
|
function Done() {}
|
|
|
|
function test1() {
|
|
var ciphers = '';
|
|
|
|
tls.createSecureContext = function(options) {
|
|
ciphers = options.ciphers;
|
|
throw new Done();
|
|
};
|
|
|
|
try {
|
|
tls.connect(common.PORT);
|
|
} catch (e) {
|
|
assert(e instanceof Done);
|
|
}
|
|
assert.equal(ciphers, tls.DEFAULT_CIPHERS);
|
|
}
|
|
test1();
|
|
|