mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 08:19:38 +01:00
3e1b1dd4a9
The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
76 lines
1.7 KiB
JavaScript
76 lines
1.7 KiB
JavaScript
if (!process.versions.openssl) {
|
|
console.error('Skipping because node compiled without OpenSSL.');
|
|
process.exit(0);
|
|
}
|
|
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var tls = require('tls');
|
|
var fs = require('fs');
|
|
var path = require('path');
|
|
|
|
var options = {
|
|
key: fs.readFileSync(path.join(common.fixturesDir, 'test_key.pem')),
|
|
cert: fs.readFileSync(path.join(common.fixturesDir, 'test_cert.pem'))
|
|
};
|
|
|
|
var connectCount = 0;
|
|
|
|
var server = tls.createServer(options, function(socket) {
|
|
++connectCount;
|
|
socket.on('data', function(data) {
|
|
common.debug(data.toString());
|
|
assert.equal(data, 'ok');
|
|
});
|
|
}).listen(common.PORT, function() {
|
|
unauthorized();
|
|
});
|
|
|
|
function unauthorized() {
|
|
var socket = tls.connect({
|
|
port: common.PORT,
|
|
servername: 'localhost',
|
|
rejectUnauthorized: false
|
|
}, function() {
|
|
assert(!socket.authorized);
|
|
socket.end();
|
|
rejectUnauthorized();
|
|
});
|
|
socket.on('error', function(err) {
|
|
assert(false);
|
|
});
|
|
socket.write('ok');
|
|
}
|
|
|
|
function rejectUnauthorized() {
|
|
var socket = tls.connect(common.PORT, {
|
|
servername: 'localhost'
|
|
}, function() {
|
|
assert(false);
|
|
});
|
|
socket.on('error', function(err) {
|
|
common.debug(err);
|
|
authorized();
|
|
});
|
|
socket.write('ng');
|
|
}
|
|
|
|
function authorized() {
|
|
var socket = tls.connect(common.PORT, {
|
|
ca: [fs.readFileSync(path.join(common.fixturesDir, 'test_cert.pem'))],
|
|
servername: 'localhost'
|
|
}, function() {
|
|
assert(socket.authorized);
|
|
socket.end();
|
|
server.close();
|
|
});
|
|
socket.on('error', function(err) {
|
|
assert(false);
|
|
});
|
|
socket.write('ok');
|
|
}
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(connectCount, 3);
|
|
});
|