node/test/parallel/test-quic-ipv6only.js
James M Snell 6e30fe7a7f quic: convert openStream to Promise
Although most of the time openStream will be able to create the stream
immediately, when a stream is opened before the handshake is complete
we have to wait for the handshake to be complete before continuing.

PR-URL: https://github.com/nodejs/node/pull/34351
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
2020-07-23 06:52:40 -07:00

116 lines
2.6 KiB
JavaScript

// Flags: --no-warnings
'use strict';
const common = require('../common');
if (!common.hasIPv6)
common.skip('missing ipv6');
if (!common.hasQuic)
common.skip('missing quic');
common.skip(
'temporarily skip ipv6only check. dual stack support ' +
'is current broken on some platforms');
const assert = require('assert');
const { createQuicSocket } = require('net');
const { key, cert, ca } = require('../common/quic');
const { once } = require('events');
const options = { key, cert, ca, alpn: 'zzz' };
// Connecting to ipv6 server using "127.0.0.1" should work when
// `ipv6Only` is set to `false`.
async function ipv6() {
const server = createQuicSocket({
endpoint: { type: 'udp6' },
server: options
});
const client = createQuicSocket({ client: options });
server.on('session', common.mustCall((serverSession) => {
serverSession.on('stream', common.mustCall());
}));
await server.listen();
const session = await client.connect({
address: common.localhostIPv4,
port: server.endpoints[0].address.port
});
const stream = await session.openStream({ halfOpen: true });
stream.end('hello');
await once(stream, 'close');
client.close();
server.close();
await Promise.allSettled([
once(client, 'close'),
once(server, 'close')
]);
}
// When the `ipv6Only` set to `true`, a client cann't connect to it
// through "127.0.0.1".
async function ipv6Only() {
const server = createQuicSocket({
endpoint: { type: 'udp6-only' },
server: options
});
const client = createQuicSocket({ client: options });
server.on('session', common.mustNotCall());
await server.listen();
// This will attempt to connect to the ipv4 localhost address
// but should fail as the connection idle timeout expires.
const session = await client.connect({
address: common.localhostIPv4,
port: server.endpoints[0].address.port,
idleTimeout: common.platformTimeout(1),
});
session.on('secure', common.mustNotCall());
await once(session, 'close');
client.close();
server.close();
await Promise.allSettled([
once(client, 'close'),
once(server, 'close')
]);
}
// Creating the QuicSession fails when connect type does not match the
// the connect IP address...
async function mismatch() {
const client = createQuicSocket({ client: options });
await assert.rejects(client.connect({
address: common.localhostIPv4,
port: 1234,
type: 'udp6',
idleTimeout: common.platformTimeout(1),
}), {
code: 'ERR_QUIC_FAILED_TO_CREATE_SESSION'
});
client.close();
await Promise.allSettled([
once(client, 'close'),
]);
}
ipv6()
.then(ipv6Only)
.then(mismatch)
.then(common.mustCall());