mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 07:27:32 +00:00

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>
40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
console.log('1..0 # Skipped: missing crypto');
|
|
process.exit();
|
|
}
|
|
var https = require('https');
|
|
|
|
var net = require('net');
|
|
var tls = require('tls');
|
|
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 = https.createServer(options, assert.fail);
|
|
|
|
server.on('clientError', function(err, conn) {
|
|
// Don't hesitate to update the asserts if the internal structure of
|
|
// the cleartext object ever changes. We're checking that the https.Server
|
|
// has closed the client connection.
|
|
assert.equal(conn._secureEstablished, false);
|
|
server.close();
|
|
clientErrors++;
|
|
});
|
|
|
|
server.listen(common.PORT, function() {
|
|
net.connect({ host: '127.0.0.1', port: common.PORT });
|
|
});
|