summaryrefslogtreecommitdiffstats
path: root/toolkit/modules/tests/xpcshell/test_E10SUtils_getRemoteTypeForURIObject.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /toolkit/modules/tests/xpcshell/test_E10SUtils_getRemoteTypeForURIObject.js
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/modules/tests/xpcshell/test_E10SUtils_getRemoteTypeForURIObject.js')
-rw-r--r--toolkit/modules/tests/xpcshell/test_E10SUtils_getRemoteTypeForURIObject.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/toolkit/modules/tests/xpcshell/test_E10SUtils_getRemoteTypeForURIObject.js b/toolkit/modules/tests/xpcshell/test_E10SUtils_getRemoteTypeForURIObject.js
new file mode 100644
index 0000000000..c16786d50b
--- /dev/null
+++ b/toolkit/modules/tests/xpcshell/test_E10SUtils_getRemoteTypeForURIObject.js
@@ -0,0 +1,37 @@
+/* Any copyright is dedicated to the Public Domain.
+http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+const { E10SUtils } = ChromeUtils.importESModule(
+ "resource://gre/modules/E10SUtils.sys.mjs"
+);
+
+/**
+ * Tests for E10SUtils.getRemoteTypeForURIObject method, which is
+ * used to compute preferred remote process types for content given
+ * certain conditions.
+ */
+
+/**
+ * Test that getRemoteTypeForURIObject returns the preferred remote type
+ * when given a URI with an invalid site origin.
+ *
+ * This is a regression test for bug 1760417.
+ */
+add_task(async function test_invalid_site_origin() {
+ const INVALID_SITE_ORIGIN_URI = Services.io.newURI(
+ "https://.mozilla.org/this/is/a/test.html"
+ );
+ const EXPECTED_REMOTE_TYPE = `${E10SUtils.FISSION_WEB_REMOTE_TYPE}=https://.mozilla.org`;
+ let result = E10SUtils.getRemoteTypeForURIObject(INVALID_SITE_ORIGIN_URI, {
+ remoteSubFrames: true,
+ multiProcess: true,
+ preferredRemoteType: E10SUtils.DEFAULT_REMOTE_TYPE,
+ });
+ Assert.equal(
+ result,
+ EXPECTED_REMOTE_TYPE,
+ "Got the expected default remote type."
+ );
+});