Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: verify
- Manifest: toolkit/components/passwordmgr/test/browser/browser.toml
/* eslint-disable mozilla/no-arbitrary-setTimeout */
/*
* Test the password manager context menu interaction with autocomplete.
*/
"use strict";
const BASIC_FORM_PAGE_PATH = DIRECTORY_PATH + "form_basic.html";
/**
* Initialize logins needed for the tests and disable autofill
* for login forms for easier testing of manual fill.
*/
add_task(async function test_initialize() {
let autocompletePopup = document.getElementById("PopupAutoComplete");
Services.prefs.setBoolPref("signon.autofillForms", false);
registerCleanupFunction(() => {
Services.prefs.clearUserPref("signon.autofillForms");
autocompletePopup.removeEventListener(
"popupshowing",
autocompleteUnexpectedPopupShowing
);
});
await Services.logins.addLogins(loginList());
autocompletePopup.addEventListener(
"popupshowing",
autocompleteUnexpectedPopupShowing
);
});
add_task(async function test_context_menu_username() {
let formFilled = listenForTestNotification("FormProcessed");
await BrowserTestUtils.withNewTab(
{
gBrowser,
url: TEST_ORIGIN + BASIC_FORM_PAGE_PATH,
},
async function (browser) {
await formFilled;
await openContextMenu(browser, "#form-basic-username");
let contextMenu = document.getElementById("contentAreaContextMenu");
Assert.equal(contextMenu.state, "open", "Context menu opened");
contextMenu.hidePopup();
}
);
});
add_task(async function test_context_menu_password() {
let formFilled = listenForTestNotification("FormProcessed");
await BrowserTestUtils.withNewTab(
{
gBrowser,
url: TEST_ORIGIN + BASIC_FORM_PAGE_PATH,
},
async function (browser) {
await formFilled;
await openContextMenu(browser, "#form-basic-password");
let contextMenu = document.getElementById("contentAreaContextMenu");
Assert.equal(contextMenu.state, "open", "Context menu opened");
contextMenu.hidePopup();
}
);
});
function autocompleteUnexpectedPopupShowing(event) {
Assert.ok(false, "Autocomplete shouldn't appear");
event.target.hidePopup();
}
/**
* Synthesize mouse clicks to open the context menu popup
* for a target login input element.
*/
async function openContextMenu(browser, loginInput) {
// First synthesize a mousedown. We need this to get the focus event with the "contextmenu" event.
let eventDetails1 = { type: "mousedown", button: 2 };
await BrowserTestUtils.synthesizeMouseAtCenter(
loginInput,
eventDetails1,
browser
);
// Then synthesize the contextmenu click over the input element.
let contextMenuShownPromise = BrowserTestUtils.waitForEvent(
window,
"popupshown"
);
let eventDetails = { type: "contextmenu", button: 2 };
await BrowserTestUtils.synthesizeMouseAtCenter(
loginInput,
eventDetails,
browser
);
await contextMenuShownPromise;
// Wait to see which popups are shown.
await new Promise(resolve => setTimeout(resolve, 1000));
}
function loginList() {
return [
LoginTestUtils.testData.formLogin({
username: "username",
password: "password",
}),
LoginTestUtils.testData.formLogin({
username: "username2",
password: "password2",
}),
];
}