Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: improve dns lookup coverage #30777

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
139 changes: 139 additions & 0 deletions test/parallel/test-dns-lookup-promises.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
// Flags: --expose-internals
'use strict';
const common = require('../common');
const assert = require('assert');
const { internalBinding } = require('internal/test/binding');
const cares = internalBinding('cares_wrap');

// Stub `getaddrinfo` to proxy its call dynamic stub. This has to be done before
// we load the `dns` module to guarantee that the `dns` module uses the stub.
let getaddrinfoStub = null;
cares.getaddrinfo = (req) => getaddrinfoStub(req);

const dnsPromises = require('dns').promises;

function getaddrinfoNegative() {
return function getaddrinfoNegativeHandler(req) {
const originalReject = req.reject;
req.resolve = common.mustNotCall();
req.reject = common.mustCall(originalReject);
req.oncomplete(internalBinding('uv').UV_ENOMEM);
};
}

function getaddrinfoPositive(addresses) {
return function getaddrinfo_positive(req) {
const originalResolve = req.resolve;
req.reject = common.mustNotCall();
req.resolve = common.mustCall(originalResolve);
req.oncomplete(null, addresses);
};
}

async function lookupPositive() {
[
{
stub: getaddrinfoPositive(['::1']),
factory: () => dnsPromises.lookup('example.com'),
expectation: { address: '::1', family: 6 }
},
{
stub: getaddrinfoPositive(['127.0.0.1']),
factory: () => dnsPromises.lookup('example.com'),
expectation: { address: '127.0.0.1', family: 4 }
},
{
stub: getaddrinfoPositive(['127.0.0.1'], { family: 4 }),
factory: () => dnsPromises.lookup('example.com'),
expectation: { address: '127.0.0.1', family: 4 }
},
{
stub: getaddrinfoPositive(['some-address']),
factory: () => dnsPromises.lookup('example.com'),
expectation: { address: 'some-address', family: 0 }
},
{
stub: getaddrinfoPositive(['some-address2']),
factory: () => dnsPromises.lookup('example.com', { family: 6 }),
expectation: { address: 'some-address2', family: 6 }
}
].forEach(async ({ stub, factory, expectation }) => {
getaddrinfoStub = stub;
assert.deepStrictEqual(await factory(), expectation);
});
}

async function lookupNegative() {
getaddrinfoStub = getaddrinfoNegative();
const expected = {
code: 'ENOMEM',
hostname: 'example.com',
syscall: 'getaddrinfo'
};
return assert.rejects(dnsPromises.lookup('example.com'), expected);
}

async function lookupallPositive() {
[
{
stub: getaddrinfoPositive(['::1', '::2']),
factory: () => dnsPromises.lookup('example', { all: true }),
expectation: [
{ address: '::1', family: 6 },
{ address: '::2', family: 6 }
]
},
{
stub: getaddrinfoPositive(['::1', '::2']),
factory: () => dnsPromises.lookup('example', { all: true, family: 4 }),
expectation: [
{ address: '::1', family: 4 },
{ address: '::2', family: 4 }
]
},
{
stub: getaddrinfoPositive(['127.0.0.1', 'some-address']),
factory: () => dnsPromises.lookup('example', { all: true }),
expectation: [
{ address: '127.0.0.1', family: 4 },
{ address: 'some-address', family: 0 }
]
},
{
stub: getaddrinfoPositive(['127.0.0.1', 'some-address']),
factory: () => dnsPromises.lookup('example', { all: true, family: 6 }),
expectation: [
{ address: '127.0.0.1', family: 6 },
{ address: 'some-address', family: 6 }
]
},
{
stub: getaddrinfoPositive([]),
factory: () => dnsPromises.lookup('example', { all: true }),
expectation: []
}
].forEach(async ({ stub, factory, expectation }) => {
getaddrinfoStub = stub;
assert.deepStrictEqual(await factory(), expectation);
});
}

async function lookupallNegative() {
getaddrinfoStub = getaddrinfoNegative();
const expected = {
code: 'ENOMEM',
hostname: 'example.com',
syscall: 'getaddrinfo'
};
return assert.rejects(dnsPromises.lookup('example.com', { all: true }),
expected);
}

(async () => {
await Promise.all([
lookupPositive(),
lookupNegative(),
lookupallPositive(),
lookupallNegative()
]).then(common.mustCall());
})();