Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Errors
- This test gets skipped with pattern: os == 'android' && os_version == '14' && arch == 'x86_64' OR os == 'win' && os_version == '10.2009' && arch == 'x86_64' OR os == 'win' && os_version == '11.26100' && arch == 'x86' OR os == 'win' && os_version == '11.26200' && arch == 'x86' OR os == 'win' && os_version == '11.26100' && arch == 'x86_64' && msix OR os == 'win' && os_version == '11.26200' && arch == 'x86_64' && msix
- This test failed 9 times in the preceding 30 days. quicksearch this test
- Manifest: netwerk/test/unit/xpcshell.toml
"use strict";
/* import-globals-from http3_common.js */
// Max concurent stream number in neqo is 100.
// Openning 120 streams will test queuing of streams.
let number_of_parallel_requests = 120;
let h3Route;
let httpsOrigin;
let h3AltSvc;
let h3Port;
let h3ServerDomain;
let prefs;
add_setup(async function () {
let h2Port = Services.env.get("MOZHTTP2_PORT");
Assert.notEqual(h2Port, null);
Assert.notEqual(h2Port, "");
h3Port = Services.env.get("MOZHTTP3_PORT");
Assert.notEqual(h3Port, null);
Assert.notEqual(h3Port, "");
h3AltSvc = ":" + h3Port;
h3ServerDomain = "foo.example.com";
h3Route = `${h3ServerDomain}:${h3Port}`;
do_get_profile();
prefs = Services.prefs;
prefs.setBoolPref("network.http.http3.enable", true);
prefs.setCharPref(
"network.dns.localDomains",
"foo.example.com, alt1.example.com"
);
// We always resolve elements of localDomains as it's hardcoded without the
// following pref:
prefs.setBoolPref("network.proxy.allow_hijacking_localhost", true);
prefs.setBoolPref("network.http.altsvc.oe", true);
if (mozinfo.os == "android") {
// Set necessary prefs to make Firefox connect to the http3Server on the
// host machine.
prefs.setCharPref("network.dns.localDomains", "");
const overrideService = Cc[
"@mozilla.org/network/native-dns-override;1"
].getService(Ci.nsINativeDNSResolverOverride);
overrideService.addIPOverride(h3ServerDomain, "10.0.2.2");
prefs.setCharPref(
"network.http.http3.alt-svc-mapping-for-testing",
`${h3ServerDomain};h3=:${h3Port}`
);
}
// The certificate for the http3server server is for foo.example.com and
// is signed by http2-ca.pem so add that cert to the trust list as a
// signing cert.
let certdb = Cc["@mozilla.org/security/x509certdb;1"].getService(
Ci.nsIX509CertDB
);
addCertFromFile(certdb, "http2-ca.pem", "CTu,u,u");
httpsOrigin = `https://${h3ServerDomain}:${h2Port}/`;
registerCleanupFunction(() => {
prefs.clearUserPref("network.http.http3.enable");
prefs.clearUserPref("network.dns.localDomains");
prefs.clearUserPref("network.proxy.allow_hijacking_localhost");
prefs.clearUserPref("network.http.altsvc.oe");
});
});
add_task(async function test_https_alt_svc() {
await waitForHttp3Route(httpsOrigin + "http3-test", h3Route, h3AltSvc, {
delayMs: 500,
});
});
add_task(async function test_multiple_requests() {
await do_test_multiple_requests(
number_of_parallel_requests,
h3Route,
httpsOrigin
);
});
add_task(async function test_request_cancelled_by_server() {
await do_test_request_cancelled_by_server(h3Route, httpsOrigin);
});
add_task(async function test_stream_cancelled_by_necko() {
await do_test_stream_cancelled_by_necko(h3Route, httpsOrigin);
});
add_task(async function test_multiple_request_one_is_cancelled() {
await do_test_multiple_request_one_is_cancelled(
number_of_parallel_requests,
h3Route,
httpsOrigin
);
});
add_task(async function test_multiple_request_one_is_cancelled_by_necko() {
await do_test_multiple_request_one_is_cancelled_by_necko(
number_of_parallel_requests,
h3Route,
httpsOrigin
);
});
add_task(async function test_post() {
await do_test_post(httpsOrigin, h3Route);
});
add_task(async function test_patch() {
await do_test_patch(httpsOrigin, h3Route);
});
add_task(
{
// Skip this test on Android because the httpOrigin (http://foo.example.com)
// is on 127.0.0.1, while the http3Server (https://foo.example.com) is
// on 10.0.2.2. Currently, we can't change the IP mapping dynamically.
skip_if: () => mozinfo.os == "android",
},
async function test_http_alt_svc() {
setup_h1_server(h3ServerDomain);
await waitForHttp3Route(httpOrigin + "http3-test", h3Route, h3AltSvc, {
delayMs: 500,
});
}
);
add_task(async function test_slow_receiver() {
await do_test_slow_receiver(httpsOrigin, h3Route);
});
// This test should be at the end, because it will close http3
// connection and the transaction will switch to already existing http2
// connection.
// TODO: Bug 1582667 should try to fix issue with connection being closed.
add_task(async function test_version_fallback() {
await do_test_version_fallback(httpsOrigin);
});
// This test must run after test_version_fallback: it triggers an H2/H1
// fallback which establishes an H2 connection, interfering with the h1.1
// assertion in test_version_fallback if placed before it.
add_task(async function test_unknown_reset() {
await do_test_unknown_reset(httpsOrigin);
});