summaryrefslogtreecommitdiffstats
path: root/browser/components/preferences/tests/browser_site_login_exceptions.js
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/preferences/tests/browser_site_login_exceptions.js')
-rw-r--r--browser/components/preferences/tests/browser_site_login_exceptions.js101
1 files changed, 101 insertions, 0 deletions
diff --git a/browser/components/preferences/tests/browser_site_login_exceptions.js b/browser/components/preferences/tests/browser_site_login_exceptions.js
new file mode 100644
index 0000000000..508232b234
--- /dev/null
+++ b/browser/components/preferences/tests/browser_site_login_exceptions.js
@@ -0,0 +1,101 @@
+"use strict";
+const PERMISSIONS_URL =
+ "chrome://browser/content/preferences/dialogs/permissions.xhtml";
+
+var exceptionsDialog;
+
+add_task(async function openLoginExceptionsSubDialog() {
+ // ensure rememberSignons is off for this test;
+ ok(
+ !Services.prefs.getBoolPref("signon.rememberSignons"),
+ "Check initial value of signon.rememberSignons pref"
+ );
+
+ // Undo the save password change.
+ registerCleanupFunction(async function () {
+ await SpecialPowers.spawn(gBrowser.selectedBrowser, [], function () {
+ let doc = content.document;
+ let savePasswordCheckBox = doc.getElementById("savePasswords");
+ if (savePasswordCheckBox.checked) {
+ savePasswordCheckBox.click();
+ }
+ });
+
+ gBrowser.removeCurrentTab();
+ });
+
+ await openPreferencesViaOpenPreferencesAPI("privacy", { leaveOpen: true });
+
+ let dialogOpened = promiseLoadSubDialog(PERMISSIONS_URL);
+
+ await SpecialPowers.spawn(gBrowser.selectedBrowser, [], function () {
+ let doc = content.document;
+ let savePasswordCheckBox = doc.getElementById("savePasswords");
+ Assert.ok(
+ !savePasswordCheckBox.checked,
+ "Save Password CheckBox should be unchecked by default"
+ );
+ savePasswordCheckBox.click();
+
+ let loginExceptionsButton = doc.getElementById("passwordExceptions");
+ loginExceptionsButton.click();
+ });
+
+ exceptionsDialog = await dialogOpened;
+});
+
+add_task(async function addALoginException() {
+ let doc = exceptionsDialog.document;
+
+ let richlistbox = doc.getElementById("permissionsBox");
+ Assert.equal(richlistbox.itemCount, 0, "Row count should initially be 0");
+
+ let inputBox = doc.getElementById("url");
+ inputBox.focus();
+
+ EventUtils.sendString("www.example.com", exceptionsDialog);
+
+ let btnBlock = doc.getElementById("btnBlock");
+ btnBlock.click();
+
+ await TestUtils.waitForCondition(() => richlistbox.itemCount == 2);
+
+ let expectedResult = ["http://www.example.com", "https://www.example.com"];
+ for (let website of expectedResult) {
+ let elements = richlistbox.getElementsByAttribute("origin", website);
+ is(elements.length, 1, "It should find only one coincidence");
+ }
+});
+
+add_task(async function deleteALoginException() {
+ let doc = exceptionsDialog.document;
+
+ let richlistbox = doc.getElementById("permissionsBox");
+ let currentItems = 2;
+ Assert.equal(
+ richlistbox.itemCount,
+ currentItems,
+ `Row count should initially be ${currentItems}`
+ );
+ richlistbox.focus();
+
+ while (richlistbox.itemCount) {
+ richlistbox.selectedIndex = 0;
+
+ if (AppConstants.platform == "macosx") {
+ EventUtils.synthesizeKey("KEY_Backspace");
+ } else {
+ EventUtils.synthesizeKey("KEY_Delete");
+ }
+
+ currentItems -= 1;
+
+ await TestUtils.waitForCondition(
+ () => richlistbox.itemCount == currentItems
+ );
+ is_element_visible(
+ content.gSubDialog._dialogs[0]._box,
+ "Subdialog is visible after deleting an element"
+ );
+ }
+});