mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 01:43:00 +00:00

This patch uses `return` statement to skip the test instead of using `process.exit` call. PR-URL: https://github.com/nodejs/io.js/pull/2109 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
27 lines
800 B
JavaScript
27 lines
800 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
console.log('1..0 # Skipped: missing crypto');
|
|
return;
|
|
}
|
|
var tls = require('tls');
|
|
|
|
var fs = require('fs');
|
|
|
|
var key = fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem');
|
|
var cert = fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem');
|
|
|
|
tls.createServer({ key: key, cert: cert }, function(conn) {
|
|
conn.end();
|
|
this.close();
|
|
}).listen(common.PORT, function() {
|
|
var options = { port: this.address().port, rejectUnauthorized: true };
|
|
tls.connect(options).on('error', common.mustCall(function(err) {
|
|
assert.equal(err.code, 'UNABLE_TO_VERIFY_LEAF_SIGNATURE');
|
|
assert.equal(err.message, 'unable to verify the first certificate');
|
|
this.destroy();
|
|
}));
|
|
});
|