node/test/parallel/test-tls-connect-given-socket.js
Johan Bergström 671fbd5a9d test: refactor all tests that depends on crypto
we had a few ways versions of looking for support before executing a test. this
commit unifies them as well as add the check for all tests that previously
lacked them. found by running `./configure --without-ssl && make test`. also,
produce tap skip output if the test is skipped.

PR-URL: https://github.com/iojs/io.js/pull/1049
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Shigeki Ohtsu <ohtsu@iij.ad.jp>
2015-03-05 10:31:41 +09:00

61 lines
1.4 KiB
JavaScript

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 net = require('net');
var fs = require('fs');
var path = require('path');
var serverConnected = 0;
var clientConnected = 0;
var options = {
key: fs.readFileSync(path.join(common.fixturesDir, 'test_key.pem')),
cert: fs.readFileSync(path.join(common.fixturesDir, 'test_cert.pem'))
};
var server = tls.createServer(options, function(socket) {
serverConnected++;
socket.end('Hello');
}).listen(common.PORT, function() {
var waiting = 2;
function establish(socket) {
var client = tls.connect({
rejectUnauthorized: false,
socket: socket
}, function() {
clientConnected++;
var data = '';
client.on('data', function(chunk) {
data += chunk.toString();
});
client.on('end', function() {
assert.equal(data, 'Hello');
if (--waiting === 0)
server.close();
});
});
assert(client.readable);
assert(client.writable);
}
// Already connected socket
var connected = net.connect(common.PORT, function() {
establish(connected);
});
// Connecting socket
var connecting = net.connect(common.PORT);
establish(connecting);
});
process.on('exit', function() {
assert.equal(serverConnected, 2);
assert.equal(clientConnected, 2);
});