nodejs/test/parallel/test-http-agent-getname.js

39 lines
712 B
JavaScript
Raw Normal View History

'use strict';
require('../common');
var assert = require('assert');
var http = require('http');
var agent = new http.Agent();
// default to localhost
assert.equal(
agent.getName({
port: 80,
localAddress: '192.168.1.1'
}),
'localhost:80:192.168.1.1'
);
// empty
assert.equal(
agent.getName({}),
'localhost::'
);
// pass all arguments
assert.equal(
agent.getName({
host: '0.0.0.0',
port: 80,
localAddress: '192.168.1.1'
}),
'0.0.0.0:80:192.168.1.1'
);
for (const family of [0, null, undefined, 'bogus'])
assert.strictEqual(agent.getName({ family }), 'localhost::');
for (const family of [4, 6])
assert.strictEqual(agent.getName({ family }), 'localhost:::' + family);