mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.0 KiB
42 lines
1.0 KiB
'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 util = require('util');
|
|
var join = require('path').join;
|
|
var spawn = require('child_process').spawn;
|
|
|
|
var options = {
|
|
key: fs.readFileSync(join(common.fixturesDir, 'agent.key')),
|
|
cert: fs.readFileSync(join(common.fixturesDir, 'multi-alice.crt'))
|
|
};
|
|
var verified = false;
|
|
|
|
var server = tls.createServer(options, function(cleartext) {
|
|
cleartext.end('World');
|
|
});
|
|
server.listen(common.PORT, function() {
|
|
var socket = tls.connect({
|
|
port: common.PORT,
|
|
rejectUnauthorized: false
|
|
}, function() {
|
|
var peerCert = socket.getPeerCertificate();
|
|
console.error(util.inspect(peerCert));
|
|
assert.deepEqual(peerCert.subject.OU,
|
|
['Information Technology', 'Engineering', 'Marketing']);
|
|
verified = true;
|
|
server.close();
|
|
});
|
|
socket.end('Hello');
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.ok(verified);
|
|
});
|
|
|