mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
22da2f731d
A error message should always be non-enumerable. This makes sure that is true for dns errors as well. It also adds another check in `common.expectsError` to make sure no other regressions are introduced going forward. Fixes #19716 PR-URL: https://github.com/nodejs/node/pull/19719 Fixes: https://github.com/nodejs/node/issues/19716 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const dnstools = require('../common/dns');
|
|
const dns = require('dns');
|
|
const assert = require('assert');
|
|
const dgram = require('dgram');
|
|
|
|
const server = dgram.createSocket('udp4');
|
|
|
|
server.on('message', common.mustCall((msg, { address, port }) => {
|
|
const parsed = dnstools.parseDNSPacket(msg);
|
|
const domain = parsed.questions[0].domain;
|
|
assert.strictEqual(domain, 'example.org');
|
|
|
|
const buf = dnstools.writeDNSPacket({
|
|
id: parsed.id,
|
|
questions: parsed.questions,
|
|
answers: { type: 'A', address: '1.2.3.4', ttl: 123, domain },
|
|
});
|
|
// Overwrite the # of answers with 2, which is incorrect.
|
|
buf.writeUInt16LE(2, 6);
|
|
server.send(buf, port, address);
|
|
}));
|
|
|
|
server.bind(0, common.mustCall(() => {
|
|
const address = server.address();
|
|
dns.setServers([`127.0.0.1:${address.port}`]);
|
|
|
|
dns.resolveAny('example.org', common.mustCall((err) => {
|
|
assert.strictEqual(err.code, 'EBADRESP');
|
|
assert.strictEqual(err.syscall, 'queryAny');
|
|
assert.strictEqual(err.hostname, 'example.org');
|
|
const descriptor = Object.getOwnPropertyDescriptor(err, 'message');
|
|
assert.strictEqual(descriptor.enumerable,
|
|
false, 'The error message should be non-enumerable');
|
|
server.close();
|
|
}));
|
|
}));
|