/* Any copyright is dedicated to the Public Domain. * http://creativecommons.org/publicdomain/zero/1.0/ */ "use strict"; let listService; let url = "https://example.com/browser/browser/base/content/test/browser-general/dummy_page.html"; add_setup(async function () { await SpecialPowers.pushPrefEnv({ set: [["privacy.query_stripping.strip_list", "stripParam"]], }); // Get the list service so we can wait for it to be fully initialized before running tests. listService = Cc["@mozilla.org/query-stripping-list-service;1"].getService( Ci.nsIURLQueryStrippingListService ); await listService.testWaitForInit(); }); /* Tests the strip-on-share feature for in-content links */ // Tests that the menu item does not show if the pref is disabled add_task(async function testPrefDisabled() { let validUrl = "https://www.example.com/"; let shortenedUrl = "https://www.example.com/"; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: false, useTestList: false, expectedDisabled: true, }); }); // Menu item should be visible, url should be stripped. add_task(async function testQueryParamIsStrippedSelectURL() { let validUrl = "https://www.example.com/?stripParam=1234"; let shortenedUrl = "https://www.example.com/"; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: true, useTestList: false, expectedDisabled: false, }); }); // Menu item should be visible, ensuring only parameters on the list are stripped add_task(async function testQueryParamIsStripped() { let validUrl = "https://www.example.com/?stripParam=1234&otherParam=1234"; let shortenedUrl = "https://www.example.com/?otherParam=1234"; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: true, useTestList: false, expectedDisabled: false, }); }); // Menu item should be disabled if the url remains the same. add_task(async function testURLIsCopiedWithNoParams() { let validUrl = "https://www.example.com/"; let shortenedUrl = "https://www.example.com/"; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: true, useTestList: false, expectedDisabled: true, }); }); // Testing site specific parameter stripping add_task(async function testQueryParamIsStrippedForSiteSpecific() { let validUrl = "https://www.example.com/?test_2=1234"; let shortenedUrl = "https://www.example.com/"; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: true, useTestList: true, expectedDisabled: false, }); }); // Ensuring site specific parameters are not stripped for other sites add_task(async function testQueryParamIsNotStrippedForWrongSiteSpecific() { let validUrl = "https://www.example.com/?test_3=1234"; let shortenedUrl = "https://www.example.com/?test_3=1234"; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: true, useTestList: true, expectedDisabled: true, }); }); // Ensuring clean copy option is disabled on magnet links add_task(async function testMagneticLinks() { let validUrl = "magnet:?xt=urn:btih:somesha1hash"; let shortenedUrl = "magnet:?xt=urn:btih:somesha1hash"; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: true, useTestList: true, expectedDisabled: true, }); }); // Ensuring clean copy is disabled on about links add_task(async function testAboutLinks() { let validUrl = "about:blank"; let shortenedUrl = "about:blank"; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: true, useTestList: true, expectedDisabled: true, }); }); // Ensure clean copy is disabled when nothing can be stripped. add_task(async function testStripNothingDisabled() { let validUrl = "https://example.com"; let shortenedUrl = "https://example.com/"; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: true, useTestList: true, expectedDisabled: true, }); }); // Bug 1960853 - Tests // Ensuring a valueless param does not gain a wrong '=' add_task(async function testEqualsSignNotAddedToValuelessParam() { let validUrl = "https://www.example.com/?utm_ad=test&x"; let shortenedUrl = "https://www.example.com/?x"; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: true, useTestList: true, expectedDisabled: false, }); }); // Same bug, but with the valueless param appearing before the // stripped param instead of after. add_task(async function testValuelessParamBeforeStrippedParam() { let validUrl = "https://www.example.com/?x&utm_ad=test"; let shortenedUrl = "https://www.example.com/?x"; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: true, useTestList: true, expectedDisabled: false, }); }); // A genuinely empty value (trailing '=') must be preserved add_task(async function testGenuineEmptyValuePreserved() { let validUrl = "https://www.example.com/?utm_ad=test&x="; let shortenedUrl = "https://www.example.com/?x="; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: true, useTestList: true, expectedDisabled: false, }); }); // A mix of a valueless param and a valued param surviving stripping. add_task(async function testMixedValuelessAndValuedParams() { let validUrl = "https://www.example.com/?utm_ad=test&x&y=1"; let shortenedUrl = "https://www.example.com/?x&y=1"; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: true, useTestList: true, expectedDisabled: false, }); }); // Multiple valueless params surviving stripping in a row. add_task(async function testMultipleValuelessParams() { let validUrl = "https://www.example.com/?utm_ad=test&x&y"; let shortenedUrl = "https://www.example.com/?x&y"; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: true, useTestList: true, expectedDisabled: false, }); }); // Stripping the only query param removes the '?' too. add_task(async function testStrippingOnlyParamRemovesQuestionMark() { let validUrl = "https://www.example.com/?utm_ad"; let shortenedUrl = "https://www.example.com/"; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: true, useTestList: true, expectedDisabled: false, }); }); // An '=' inside a value must not be mistaken for the name/value // separator when re-splitting the surviving query string. add_task(async function testEqualsSignInsideValueNotSplitIncorrectly() { let validUrl = "https://www.example.com/?utm_ad=test&a=b=c"; let shortenedUrl = "https://www.example.com/?a=b=c"; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: true, useTestList: true, expectedDisabled: false, }); }); // An empty name with a value survives stripping unchanged. add_task(async function testEmptyNameWithValue() { let validUrl = "https://www.example.com/?utm_ad=test&=v"; let shortenedUrl = "https://www.example.com/?=v"; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: true, useTestList: true, expectedDisabled: false, }); }); // Nothing on the strip list matches: early return, URI left untouched, // menu item disabled. add_task(async function testQueryParamNotOnListUnchanged() { let validUrl = "https://www.example.com/?x"; let shortenedUrl = "https://www.example.com/?x"; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: true, useTestList: true, expectedDisabled: true, }); }); // Ensuring clean copy does works correctly when encountering a nested link that throws causes an error to // occur. In this case, a nested magnetic link was used as it causes an error to be thrown. add_task(async function testErrorHandlingForNestedLinks() { let validUrl = "https://www.example.com/?test_3=magnet%3A%3Fxt%3Durn%3Abtih%3Asomesha1hash&test_4=1234&test_2=4321"; let shortenedUrl = "https://www.example.com/?test_3=magnet%3A%3Fxt%3Durn%3Abtih%3Asomesha1hash&test_4=1234"; await testStripOnShare({ originalURI: validUrl, strippedURI: shortenedUrl, prefEnabled: true, useTestList: true, expectedDisabled: false, }); }); /** * Opens a new tab, opens the context menu and checks the menu item. * Checks that the stripped version of the url is copied to the clipboard. * * @param {object} options * @param {string} options.originalURI - The orginal url before stripping. * @param {string} options.strippedURI - The expected url after stripping. * @param {boolean} options.prefEnabled - If true, enable strip_on_share pref. * @param {boolean} options.useTestList - If true, use test mode pref and list. * @param {boolean} options.expectedDisabled - The expected item disabled state. */ async function testStripOnShare({ originalURI, strippedURI, prefEnabled, useTestList, expectedDisabled, }) { await SpecialPowers.pushPrefEnv({ set: [ ["privacy.query_stripping.strip_on_share.enabled", prefEnabled], ["privacy.query_stripping.strip_on_share.enableTestMode", useTestList], ], }); if (useTestList) { let testJson = { global: { queryParams: ["utm_ad"], isGlobal: true, }, example: { queryParams: ["test_2", "test_1"], hosts: ["www.example.com"], }, exampleNet: { queryParams: ["test_3", "test_4"], hosts: ["www.example.net"], }, }; await listService.testSetList(testJson); } await BrowserTestUtils.withNewTab(url, async function (browser) { // Prepare a link await SpecialPowers.spawn( browser, [originalURI], async function (startingURI) { let link = content.document.createElement("a"); link.href = startingURI; link.textContent = "link with query param"; link.id = "link"; content.document.body.appendChild(link); } ); let contextMenu = document.getElementById("contentAreaContextMenu"); // Open the context menu let awaitPopupShown = BrowserTestUtils.waitForEvent( contextMenu, "popupshown" ); await BrowserTestUtils.synthesizeMouseAtCenter( "#link", { type: "contextmenu", button: 2 }, browser ); await awaitPopupShown; let menuItem = contextMenu.querySelector("#context-stripOnShareLink"); Assert.equal( BrowserTestUtils.isVisible(menuItem), prefEnabled, "Menu item is visible" ); Assert.equal(menuItem.disabled, expectedDisabled, "Menu item is disabled"); let awaitPopupHidden = BrowserTestUtils.waitForEvent( contextMenu, "popuphidden" ); if (prefEnabled) { // Make sure the stripped link will be copied to the clipboard await SimpleTest.promiseClipboardChange(strippedURI, () => { contextMenu.activateItem(menuItem); }); } else { contextMenu.hidePopup(); } await awaitPopupHidden; }); }