summaryrefslogtreecommitdiffstats
path: root/toolkit/content/tests/browser/browser_about_networking.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
commit43a97878ce14b72f0981164f87f2e35e14151312 (patch)
tree620249daf56c0258faa40cbdcf9cfba06de2a846 /toolkit/content/tests/browser/browser_about_networking.js
parentInitial commit. (diff)
downloadfirefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz
firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/content/tests/browser/browser_about_networking.js')
-rw-r--r--toolkit/content/tests/browser/browser_about_networking.js49
1 files changed, 49 insertions, 0 deletions
diff --git a/toolkit/content/tests/browser/browser_about_networking.js b/toolkit/content/tests/browser/browser_about_networking.js
new file mode 100644
index 0000000000..1cf0708c22
--- /dev/null
+++ b/toolkit/content/tests/browser/browser_about_networking.js
@@ -0,0 +1,49 @@
+/* Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+const { ContentTaskUtils } = ChromeUtils.importESModule(
+ "resource://testing-common/ContentTaskUtils.sys.mjs"
+);
+
+add_task(async function test_first() {
+ registerCleanupFunction(() => {
+ // Must clear mode first, otherwise we'll have non-local connections to
+ // the cloudflare URL.
+ Services.prefs.clearUserPref("network.trr.mode");
+ Services.prefs.clearUserPref("network.trr.uri");
+ });
+
+ await BrowserTestUtils.withNewTab("about:networking#dns", async function(
+ browser
+ ) {
+ ok(!browser.isRemoteBrowser, "Browser should not be remote.");
+ await ContentTask.spawn(browser, null, async function() {
+ let url_tbody = content.document.getElementById("dns_trr_url");
+ info(url_tbody);
+ is(
+ url_tbody.children[0].children[0].textContent,
+ "https://mozilla.cloudflare-dns.com/dns-query"
+ );
+ is(url_tbody.children[0].children[1].textContent, "0");
+ });
+ });
+
+ Services.prefs.setCharPref("network.trr.uri", "https://localhost/testytest");
+ Services.prefs.setIntPref("network.trr.mode", 2);
+ await BrowserTestUtils.withNewTab("about:networking#dns", async function(
+ browser
+ ) {
+ ok(!browser.isRemoteBrowser, "Browser should not be remote.");
+ await ContentTask.spawn(browser, null, async function() {
+ let url_tbody = content.document.getElementById("dns_trr_url");
+ info(url_tbody);
+ is(
+ url_tbody.children[0].children[0].textContent,
+ "https://localhost/testytest"
+ );
+ is(url_tbody.children[0].children[1].textContent, "2");
+ });
+ });
+});