Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions lib/internal/http2/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -3374,6 +3374,9 @@ class Http2SecureServer extends TLSServer {
this.headersTimeout = 60_000; // Minimum between 60 seconds or requestTimeout
this.requestTimeout = 300_000; // 5 minutes
this.connectionsCheckingInterval = 30_000; // 30 seconds
this.shouldUpgradeCallback = function() {
return this.listenerCount('upgrade') > 0;
};
this.on('listening', setupConnectionsTracking);
}
if (typeof requestListener === 'function')
Expand Down
5 changes: 4 additions & 1 deletion test/common/websocket-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ const crypto = require('crypto');
class WebSocketServer {
constructor({
port = 0,
server,
}) {
this.port = port;
this.server = http.createServer();
this.server = server || http.createServer();
this.clients = new Set();

this.server.on('upgrade', this.handleUpgrade.bind(this));
Expand Down Expand Up @@ -44,6 +45,8 @@ class WebSocketServer {
const opcode = buffer[0] & 0x0f;

if (opcode === 0x8) {
// Send a minimal close frame in response:
socket.write(Buffer.from([0x88, 0x00]));
socket.end();
this.clients.delete(socket);
return;
Expand Down
39 changes: 39 additions & 0 deletions test/parallel/test-http2-allow-http1-upgrade-ws.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
// Flags: --expose-internals
'use strict';

const common = require('../common');
const fixtures = require('../common/fixtures');
if (!common.hasCrypto) common.skip('missing crypto');

const http2 = require('http2');

const undici = require('internal/deps/undici/undici');
const WebSocketServer = require('../common/websocket-server');

(async function main() {
const server = http2.createSecureServer({
key: fixtures.readKey('agent1-key.pem'),
cert: fixtures.readKey('agent1-cert.pem'),
allowHTTP1: true,
});

server.on('request', common.mustNotCall());
new WebSocketServer({ server }); // Handles websocket 'upgrade' events

await new Promise((resolve) => server.listen(0, resolve));

await new Promise((resolve, reject) => {
const ws = new WebSocket(`wss://localhost:${server.address().port}`, {
dispatcher: new undici.EnvHttpProxyAgent({
connect: { rejectUnauthorized: false }
})
});
ws.addEventListener('open', common.mustCall(() => {
ws.close();
resolve();
}));
ws.addEventListener('error', reject);
});

server.close();
})().then(common.mustCall());
Loading