PR-URL: https://github.com/nodejs/node/pull/15933 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
29 lines
821 B
JavaScript
29 lines
821 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const fixtures = require('../common/fixtures');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
// disable strict server certificate validation by the client
|
|
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
|
|
|
|
const assert = require('assert');
|
|
const https = require('https');
|
|
|
|
const options = {
|
|
key: fixtures.readKey('agent1-key.pem'),
|
|
cert: fixtures.readKey('agent1-cert.pem')
|
|
};
|
|
|
|
const server = https.createServer(options, common.mustCall(function(req, res) {
|
|
assert.strictEqual('GET', req.method);
|
|
assert.strictEqual('/foo?bar', req.url);
|
|
res.writeHead(200, {'Content-Type': 'text/plain'});
|
|
res.write('hello\n');
|
|
res.end();
|
|
server.close();
|
|
}));
|
|
|
|
server.listen(0, function() {
|
|
https.get(`https://127.0.0.1:${this.address().port}/foo?bar`);
|
|
});
|