mirror of https://github.com/nodejs/node.git
28 lines
509 B
JavaScript
28 lines
509 B
JavaScript
var assert = require('assert');
|
|
var common = require('../common');
|
|
|
|
if (!common.hasCrypto) {
|
|
console.log('1..0 # Skipped: missing crypto');
|
|
process.exit();
|
|
}
|
|
var tls = require('tls');
|
|
|
|
function Done() {}
|
|
|
|
function test1() {
|
|
var ciphers = '';
|
|
|
|
tls.createSecureContext = function(options) {
|
|
ciphers = options.ciphers;
|
|
throw new Done();
|
|
}
|
|
|
|
try {
|
|
var s = tls.connect(common.PORT);
|
|
} catch (e) {
|
|
assert(e instanceof Done);
|
|
}
|
|
assert.equal(ciphers, tls.DEFAULT_CIPHERS);
|
|
}
|
|
test1();
|