node/test/parallel/test-https-agent-servername.js
Jeremiah Senkpiel 4067cde7ee test: abstract skip functionality to common
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

Re-do of 52bae222a3 for v4.x

Ref: https://github.com/nodejs/node/pull/6697
PR-URL: https://github.com/nodejs/node/pull/7114
Reviewed-By: Myles Borins <myles.borins@gmail.com>
2016-06-23 17:25:10 -07:00

40 lines
864 B
JavaScript

'use strict';
var common = require('../common');
if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}
var https = require('https');
var fs = require('fs');
var options = {
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem'),
ca: fs.readFileSync(common.fixturesDir + '/keys/ca1-cert.pem')
};
var server = https.Server(options, function(req, res) {
res.writeHead(200);
res.end('hello world\n');
});
server.listen(common.PORT, function() {
https.get({
path: '/',
port: common.PORT,
rejectUnauthorized: true,
servername: 'agent1',
ca: options.ca
}, function(res) {
res.resume();
console.log(res.statusCode);
server.close();
}).on('error', function(e) {
console.log(e.message);
process.exit(1);
});
});