mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
2cb94240f9
PR-URL: https://github.com/nodejs/node/pull/51045 Fixes: https://github.com/nodejs/node/issues/48763 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const { createMockedLookup } = require('../common/dns');
|
|
|
|
const assert = require('assert');
|
|
const { createConnection, createServer } = require('net');
|
|
|
|
// Test that happy eyeballs algorithm is properly implemented when a A record is returned first.
|
|
if (common.hasIPv6) {
|
|
const ipv4Server = createServer((socket) => {
|
|
socket.on('data', common.mustCall(() => {
|
|
socket.write('response-ipv4');
|
|
socket.end();
|
|
}));
|
|
});
|
|
|
|
const ipv6Server = createServer((socket) => {
|
|
socket.on('data', common.mustNotCall(() => {
|
|
socket.write('response-ipv6');
|
|
socket.end();
|
|
}));
|
|
});
|
|
|
|
ipv4Server.listen(0, '127.0.0.1', common.mustCall(() => {
|
|
const port = ipv4Server.address().port;
|
|
|
|
ipv6Server.listen(port, '::1', common.mustCall(() => {
|
|
const connection = createConnection({
|
|
host: 'example.org',
|
|
port,
|
|
lookup: createMockedLookup('127.0.0.1', '::1'),
|
|
autoSelectFamily: true,
|
|
});
|
|
|
|
let response = '';
|
|
connection.setEncoding('utf-8');
|
|
|
|
connection.on('data', (chunk) => {
|
|
response += chunk;
|
|
});
|
|
|
|
connection.on('end', common.mustCall(() => {
|
|
assert.strictEqual(response, 'response-ipv4');
|
|
ipv4Server.close();
|
|
ipv6Server.close();
|
|
}));
|
|
|
|
connection.write('request');
|
|
}));
|
|
}));
|
|
}
|