You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
605 B

'use strict';
// This tests the situation where you try to connect a https client
// to an http server. You should get an error and exit.
const common = require('../common');
const http = require('http');
if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}
const https = require('https');
const server = http.createServer(common.fail);
server.listen(0, common.mustCall(function() {
const req = https.get({ port: this.address().port }, common.fail);
req.on('error', common.mustCall(function(e) {
console.log('Got expected error: ', e.message);
server.close();
}));
}));