1
0
Fork 0
firefox/netwerk/test/unit/test_http2_with_proxy.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

295 lines
9.8 KiB
JavaScript

// test HTTP/2 with a HTTP/2 prooxy
"use strict";
/* import-globals-from http2_test_common.js */
/* import-globals-from head_servers.js */
// We don't normally allow localhost channels to be proxied, but this
// is easier than updating all the certs and/or domains.
Services.prefs.setBoolPref("network.proxy.allow_hijacking_localhost", true);
registerCleanupFunction(() => {
Services.prefs.clearUserPref("network.proxy.allow_hijacking_localhost");
});
var concurrent_channels = [];
var loadGroup;
var serverPort;
var proxy;
add_setup(async function setup() {
serverPort = Services.env.get("MOZHTTP2_PORT");
Assert.notEqual(serverPort, null);
dump("using port " + serverPort + "\n");
// Set to allow the cert presented by our H2 server
do_get_profile();
Services.prefs.setIntPref("network.http.speculative-parallel-limit", 0);
// The moz-http2 cert is for foo.example.com and is signed by http2-ca.pem
// so add that cert to the trust list as a signing cert. Some older tests in
// this suite use localhost with a TOFU exception, but new ones should use
// foo.example.com
let certdb = Cc["@mozilla.org/security/x509certdb;1"].getService(
Ci.nsIX509CertDB
);
addCertFromFile(certdb, "http2-ca.pem", "CTu,u,u");
addCertFromFile(certdb, "proxy-ca.pem", "CTu,u,u");
Services.prefs.setBoolPref("network.http.http2.enabled", true);
Services.prefs.setBoolPref("network.http.altsvc.enabled", true);
Services.prefs.setBoolPref("network.http.altsvc.oe", true);
Services.prefs.setCharPref(
"network.dns.localDomains",
"foo.example.com, bar.example.com"
);
Services.prefs.setBoolPref(
"network.cookieJarSettings.unblocked_for_testing",
true
);
loadGroup = Cc["@mozilla.org/network/load-group;1"].createInstance(
Ci.nsILoadGroup
);
Services.prefs.setStringPref(
"services.settings.server",
`data:,#remote-settings-dummy/v1`
);
proxy = new NodeHTTP2ProxyServer();
await proxy.start();
});
registerCleanupFunction(async () => {
Services.prefs.clearUserPref("network.http.speculative-parallel-limit");
Services.prefs.clearUserPref("network.http.http2.enabled");
Services.prefs.clearUserPref("network.http.altsvc.enabled");
Services.prefs.clearUserPref("network.http.altsvc.oe");
Services.prefs.clearUserPref("network.dns.localDomains");
Services.prefs.clearUserPref(
"network.cookieJarSettings.unblocked_for_testing"
);
await proxy.stop();
});
// hack - the header test resets the multiplex object on the server,
// so make sure header is always run before the multiplex test.
//
// make sure post_big runs first to test race condition in restarting
// a stalled stream when a SETTINGS frame arrives
add_task(async function do_test_http2_post_big() {
const { httpProxyConnectResponseCode } =
await test_http2_post_big(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_basic() {
const { httpProxyConnectResponseCode } = await test_http2_basic(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_concurrent() {
const { httpProxyConnectResponseCode } = await test_http2_concurrent(
concurrent_channels,
serverPort
);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_concurrent_post() {
const { httpProxyConnectResponseCode } = await test_http2_concurrent_post(
concurrent_channels,
serverPort
);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_basic_unblocked_dep() {
const { httpProxyConnectResponseCode } =
await test_http2_basic_unblocked_dep(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_nospdy() {
const { httpProxyConnectResponseCode } = await test_http2_nospdy(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_doubleheader() {
const { httpProxyConnectResponseCode } =
await test_http2_doubleheader(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_xhr() {
await test_http2_xhr(serverPort);
});
add_task(async function do_test_http2_header() {
const { httpProxyConnectResponseCode } = await test_http2_header(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_invalid_response_header_name_spaces() {
const { httpProxyConnectResponseCode } =
await test_http2_invalid_response_header(serverPort, "name_spaces");
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(
async function do_test_http2_invalid_response_header_value_line_feed() {
const { httpProxyConnectResponseCode } =
await test_http2_invalid_response_header(serverPort, "value_line_feed");
Assert.equal(httpProxyConnectResponseCode, 200);
}
);
add_task(
async function do_test_http2_invalid_response_header_value_carriage_return() {
const { httpProxyConnectResponseCode } =
await test_http2_invalid_response_header(
serverPort,
"value_carriage_return"
);
Assert.equal(httpProxyConnectResponseCode, 200);
}
);
add_task(async function do_test_http2_invalid_response_header_value_null() {
const { httpProxyConnectResponseCode } =
await test_http2_invalid_response_header(serverPort, "value_null");
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_cookie_crumbling() {
const { httpProxyConnectResponseCode } =
await test_http2_cookie_crumbling(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_multiplex() {
var values = await test_http2_multiplex(serverPort);
Assert.equal(values[0].httpProxyConnectResponseCode, 200);
Assert.equal(values[1].httpProxyConnectResponseCode, 200);
Assert.notEqual(values[0].streamID, values[1].streamID);
});
add_task(async function do_test_http2_big() {
const { httpProxyConnectResponseCode } = await test_http2_big(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_huge_suspended() {
const { httpProxyConnectResponseCode } =
await test_http2_huge_suspended(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_post() {
const { httpProxyConnectResponseCode } = await test_http2_post(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_empty_post() {
const { httpProxyConnectResponseCode } =
await test_http2_empty_post(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_patch() {
const { httpProxyConnectResponseCode } = await test_http2_patch(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_blocking_download() {
const { httpProxyConnectResponseCode } =
await test_http2_blocking_download(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_illegalhpacksoft() {
const { httpProxyConnectResponseCode } =
await test_http2_illegalhpacksoft(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_illegalhpackhard() {
const { httpProxyConnectResponseCode } =
await test_http2_illegalhpackhard(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_folded_header() {
const { httpProxyConnectResponseCode } = await test_http2_folded_header(
loadGroup,
serverPort
);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_empty_data() {
const { httpProxyConnectResponseCode } =
await test_http2_empty_data(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_status_phrase() {
const { httpProxyConnectResponseCode } =
await test_http2_status_phrase(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_h11required_stream() {
// Add new tests above here - best to add new tests before h1
// streams get too involved
// These next two must always come in this order
const { httpProxyConnectResponseCode } =
await test_http2_h11required_stream(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_h11required_session() {
const { httpProxyConnectResponseCode } =
await test_http2_h11required_session(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_retry_rst() {
const { httpProxyConnectResponseCode } =
await test_http2_retry_rst(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_wrongsuite_tls12() {
// For this test we need to start HTTPS 1.1 proxy because HTTP/2 proxy cannot be used.
proxy.unregisterFilter();
let proxyHttp1 = new NodeHTTPSProxyServer();
await proxyHttp1.start();
proxyHttp1.registerFilter();
registerCleanupFunction(() => {
proxyHttp1.stop();
});
const { httpProxyConnectResponseCode } =
await test_http2_wrongsuite_tls12(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
proxyHttp1.unregisterFilter();
proxy.registerFilter();
});
add_task(async function do_test_http2_wrongsuite_tls13() {
const { httpProxyConnectResponseCode } =
await test_http2_wrongsuite_tls13(serverPort);
Assert.equal(httpProxyConnectResponseCode, 200);
});
add_task(async function do_test_http2_continuations_over_max_response_limit() {
const { httpProxyConnectResponseCode } =
await test_http2_continuations_over_max_response_limit(
loadGroup,
serverPort
);
Assert.equal(httpProxyConnectResponseCode, 200);
});