mirror of
https://github.com/nodejs/node.git
synced 2025-05-08 12:49:23 +00:00

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>
43 lines
861 B
JavaScript
43 lines
861 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 fs = require('fs');
|
|
var net = require('net');
|
|
|
|
var out = '';
|
|
|
|
var server = tls.createServer({
|
|
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
|
|
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
|
|
}, function(c) {
|
|
c.end('hello');
|
|
}).listen(0, function() {
|
|
var socket = new net.Socket();
|
|
|
|
var s = tls.connect({
|
|
socket: socket,
|
|
rejectUnauthorized: false
|
|
}, function() {
|
|
s.on('data', function(chunk) {
|
|
out += chunk;
|
|
});
|
|
s.on('end', function() {
|
|
s.destroy();
|
|
server.close();
|
|
});
|
|
});
|
|
|
|
socket.connect(this.address().port);
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(out, 'hello');
|
|
});
|