2014-01-18 01:15:36 +08:00
|
|
|
var common = require('../common');
|
|
|
|
var assert = require('assert');
|
2015-03-04 09:11:21 +08:00
|
|
|
|
|
|
|
if (!common.hasCrypto) {
|
|
|
|
console.log('1..0 # Skipped: missing crypto');
|
|
|
|
process.exit();
|
|
|
|
}
|
2014-01-18 01:15:36 +08:00
|
|
|
var tls = require('tls');
|
|
|
|
|
2015-03-04 09:11:21 +08:00
|
|
|
var fs = require('fs');
|
|
|
|
|
2014-01-18 01:15:36 +08:00
|
|
|
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();
|
2014-12-17 21:30:04 +08:00
|
|
|
}).listen(common.PORT, function() {
|
2014-01-18 01:15:36 +08:00
|
|
|
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();
|
|
|
|
}));
|
|
|
|
});
|