node/test/parallel/test-tls-handshake-error.js
Brian White 2bc7841d0f
test: use random ports where possible
This helps to prevent issues where a failed test can keep a bound
socket open long enough to cause other tests to fail with EADDRINUSE
because the same port number is used.

PR-URL: https://github.com/nodejs/node/pull/7045
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2016-06-10 22:30:55 -04:00

46 lines
926 B
JavaScript

'use strict';
var assert = require('assert');
var common = require('../common');
if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}
var tls = require('tls');
var fs = require('fs');
var errorCount = 0;
var closeCount = 0;
var server = tls.createServer({
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem'),
rejectUnauthorized: true
}, function(c) {
}).listen(0, function() {
var c = tls.connect({
port: this.address().port,
ciphers: 'RC4'
}, function() {
assert(false, 'should not be called');
});
c.on('error', function(err) {
errorCount++;
assert.notEqual(err.code, 'ECONNRESET');
});
c.on('close', function(err) {
if (err)
closeCount++;
server.close();
});
});
process.on('exit', function() {
assert.equal(errorCount, 1);
assert.equal(closeCount, 1);
});