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.
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto) {
|
|
|
|
common.skip('missing crypto');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const assert = require('assert');
|
|
|
|
const http = require('http');
|
|
|
|
const https = require('https');
|
|
|
|
const error = 'Unable to determine the domain name';
|
|
|
|
|
|
|
|
function test(host) {
|
|
|
|
['get', 'request'].forEach((method) => {
|
|
|
|
[http, https].forEach((module) => {
|
|
|
|
assert.throws(() => module[method](host, () => {
|
|
|
|
throw new Error(`${module}.${method} should not connect to ${host}`);
|
|
|
|
}), error);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
['www.nodejs.org', 'localhost', '127.0.0.1', 'http://:80/'].forEach(test);
|