Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// These tests check the behavior of the Urlbar when a user enables
// the search bar and showSearchTerms is true.
const { CustomizableUITestUtils } = ChromeUtils.importESModule(
);
const gCUITestUtils = new CustomizableUITestUtils(window);
const SEARCH_STRING = "example_string";
add_setup(async function () {
await SpecialPowers.pushPrefEnv({
set: [["browser.urlbar.showSearchTerms.featureGate", true]],
});
await gCUITestUtils.addSearchBar();
let cleanup = await installPersistTestEngines();
registerCleanupFunction(async function () {
await PlacesUtils.history.clear();
gCUITestUtils.removeSearchBar();
cleanup();
});
});
function assertSearchStringIsNotInUrlbar(searchString) {
Assert.notEqual(
gURLBar.value,
searchString,
`Search string ${searchString} should not be in the url bar.`
);
Assert.equal(
gURLBar.getAttribute("pageproxystate"),
"valid",
"Pageproxystate should be valid."
);
let state = window.gURLBar.getBrowserState(window.gBrowser.selectedBrowser);
Assert.equal(
state.persist?.searchTerms,
undefined,
"searchTerms should be undefined."
);
}
// When a user enables the search bar, and does a search in the search bar,
// the search term should not show in the URL bar.
add_task(async function search_bar_on() {
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser);
let searchBar = await gCUITestUtils.addSearchBar();
let browserLoadedPromise = BrowserTestUtils.browserLoaded(
tab.linkedBrowser,
false,
`https://www.example.com/?q=${SEARCH_STRING}`
);
searchBar.value = SEARCH_STRING;
searchBar.focus();
EventUtils.synthesizeKey("KEY_Enter");
await browserLoadedPromise;
assertSearchStringIsNotInUrlbar(SEARCH_STRING);
BrowserTestUtils.removeTab(tab);
});
// When a user enables the search bar, and does a search in the URL bar,
// the search term should still not show in the URL bar.
add_task(async function search_bar_on_with_url_bar_search() {
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser);
await gCUITestUtils.addSearchBar();
let browserLoadedPromise = BrowserTestUtils.browserLoaded(
tab.linkedBrowser,
false,
`https://www.example.com/?q=${SEARCH_STRING}`
);
gURLBar.focus();
await UrlbarTestUtils.promiseAutocompleteResultPopup({
window,
waitForFocus,
value: SEARCH_STRING,
fireInputEvent: true,
});
EventUtils.synthesizeKey("KEY_Enter");
await browserLoadedPromise;
assertSearchStringIsNotInUrlbar(SEARCH_STRING);
BrowserTestUtils.removeTab(tab);
});