0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 23:43:09 +01:00
nodejs/test/parallel/test-tls-client-reject.js
Roman Reiss f29762f4dd test: enable linting for tests
Enable linting for the test directory. A number of changes was made so
all tests conform the current rules used by lib and src directories. The
only exception for tests is that unreachable (dead) code is allowed.

test-fs-non-number-arguments-throw had to be excluded from the changes
because of a weird issue on Windows CI.

PR-URL: https://github.com/nodejs/io.js/pull/1721
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-05-19 21:21:27 +02:00

78 lines
1.6 KiB
JavaScript

'use strict';
var common = require('../common');
var assert = require('assert');
if (!common.hasCrypto) {
console.log('1..0 # Skipped: missing crypto');
process.exit();
}
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);
});