From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- .../test_E10SUtils_getRemoteTypeForURIObject.js | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 toolkit/modules/tests/xpcshell/test_E10SUtils_getRemoteTypeForURIObject.js (limited to 'toolkit/modules/tests/xpcshell/test_E10SUtils_getRemoteTypeForURIObject.js') 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." + ); +}); -- cgit v1.2.3