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.
24 lines
484 B
24 lines
484 B
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
console.log('1..0 # Skipped: missing crypto');
|
|
process.exit();
|
|
}
|
|
var tls = require('tls');
|
|
|
|
var errors = 0;
|
|
|
|
var conn = tls.connect(common.PORT, function() {
|
|
assert(false); // callback should never be executed
|
|
});
|
|
conn.on('error', function() {
|
|
++errors;
|
|
assert.doesNotThrow(function() {
|
|
conn.destroy();
|
|
});
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(errors, 1);
|
|
});
|
|
|