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

The tap skipping output is so prevalent yet obscure in nature that we ought to move it into it's own function in test/common.js PR-URL: https://github.com/nodejs/node/pull/6697 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
78 lines
1.6 KiB
JavaScript
78 lines
1.6 KiB
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
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) {
|
|
console.error(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) {
|
|
console.error(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);
|
|
});
|