node/test/parallel/test-tls-timeout-server.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

37 lines
768 B
JavaScript

'use strict';
var common = require('../common');
var assert = require('assert');
if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}
var tls = require('tls');
var net = require('net');
var fs = require('fs');
var clientErrors = 0;
process.on('exit', function() {
assert.equal(clientErrors, 1);
});
var options = {
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem'),
handshakeTimeout: 50
};
var server = tls.createServer(options, common.fail);
server.on('tlsClientError', function(err, conn) {
conn.destroy();
server.close();
clientErrors++;
});
server.listen(0, function() {
net.connect({ host: '127.0.0.1', port: this.address().port });
});