Skip to content

Commit

Permalink
test: add test for https agent servername option
Browse files Browse the repository at this point in the history
PR-URL: nodejs/node-v0.x-archive#9368
Reviewed-By: jasnell - James M Snell <jasnell@gmail.com>
  • Loading branch information
skenqbx authored and jasnell committed Aug 29, 2015
1 parent 16ca077 commit 75c84b2
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions test/simple/test-https-agent-servername.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
var common = require('../common');
var assert = require('assert');

if (!common.hasCrypto) {
console.log('1..0 # Skipped: missing crypto');
process.exit();
}

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);
});
});

0 comments on commit 75c84b2

Please sign in to comment.