2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2010-08-17 08:10:36 +04:00
|
|
|
|
2016-12-23 19:00:46 +03:00
|
|
|
/* import-globals-from ../../../../testing/mochitest/tests/SimpleTest/SimpleTest.js */
|
|
|
|
|
2016-04-14 02:29:49 +03:00
|
|
|
var gPopupShownExpected = false;
|
2015-05-28 19:55:46 +03:00
|
|
|
var gPopupShownListener;
|
|
|
|
var gLastAutoCompleteResults;
|
2016-03-22 09:01:33 +03:00
|
|
|
var gChromeScript;
|
2010-08-17 08:10:36 +04:00
|
|
|
|
2009-03-30 02:29:22 +04:00
|
|
|
/*
|
|
|
|
* Returns the element with the specified |name| attribute.
|
|
|
|
*/
|
|
|
|
function $_(formNum, name) {
|
|
|
|
var form = document.getElementById("form" + formNum);
|
|
|
|
if (!form) {
|
|
|
|
ok(false, "$_ couldn't find requested form " + formNum);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
var element = form.elements.namedItem(name);
|
|
|
|
if (!element) {
|
|
|
|
ok(false, "$_ couldn't find requested element " + name);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note that namedItem is a bit stupid, and will prefer an
|
|
|
|
// |id| attribute over a |name| attribute when looking for
|
|
|
|
// the element.
|
|
|
|
|
|
|
|
if (element.hasAttribute("name") && element.getAttribute("name") != name) {
|
|
|
|
ok(false, "$_ got confused.");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return element;
|
|
|
|
}
|
|
|
|
|
2009-06-20 00:19:18 +04:00
|
|
|
// Mochitest gives us a sendKey(), but it's targeted to a specific element.
|
|
|
|
// This basically sends an untargeted key event, to whatever's focused.
|
|
|
|
function doKey(aKey, modifier) {
|
|
|
|
var keyName = "DOM_VK_" + aKey.toUpperCase();
|
2012-09-24 16:46:29 +04:00
|
|
|
var key = SpecialPowers.Ci.nsIDOMKeyEvent[keyName];
|
2009-06-20 00:19:18 +04:00
|
|
|
|
|
|
|
// undefined --> null
|
|
|
|
if (!modifier)
|
|
|
|
modifier = null;
|
|
|
|
|
2015-05-28 19:55:46 +03:00
|
|
|
// Window utils for sending fake key events.
|
2012-08-23 22:45:28 +04:00
|
|
|
var wutils = SpecialPowers.getDOMWindowUtils(window);
|
2009-06-20 00:19:18 +04:00
|
|
|
|
2013-07-25 10:09:29 +04:00
|
|
|
if (wutils.sendKeyEvent("keydown", key, 0, modifier)) {
|
|
|
|
wutils.sendKeyEvent("keypress", key, 0, modifier);
|
|
|
|
}
|
2009-06-20 00:19:18 +04:00
|
|
|
wutils.sendKeyEvent("keyup", key, 0, modifier);
|
|
|
|
}
|
|
|
|
|
2015-05-28 19:55:46 +03:00
|
|
|
function registerPopupShownListener(listener) {
|
|
|
|
if (gPopupShownListener) {
|
|
|
|
ok(false, "got too many popupshownlisteners");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
gPopupShownListener = listener;
|
2009-09-23 10:23:08 +04:00
|
|
|
}
|
|
|
|
|
2015-05-28 19:55:46 +03:00
|
|
|
function getMenuEntries() {
|
|
|
|
if (!gLastAutoCompleteResults) {
|
|
|
|
throw new Error("no autocomplete results");
|
|
|
|
}
|
2009-09-23 10:23:08 +04:00
|
|
|
|
2015-05-28 19:55:46 +03:00
|
|
|
var results = gLastAutoCompleteResults;
|
|
|
|
gLastAutoCompleteResults = null;
|
|
|
|
return results;
|
2009-01-24 10:53:35 +03:00
|
|
|
}
|
2010-08-17 08:10:36 +04:00
|
|
|
|
2016-03-22 09:01:33 +03:00
|
|
|
function checkArrayValues(actualValues, expectedValues, msg) {
|
|
|
|
is(actualValues.length, expectedValues.length, "Checking array values: " + msg);
|
|
|
|
for (var i = 0; i < expectedValues.length; i++)
|
|
|
|
is(actualValues[i], expectedValues[i], msg + " Checking array entry #" + i);
|
|
|
|
}
|
|
|
|
|
2010-08-17 08:10:36 +04:00
|
|
|
var checkObserver = {
|
|
|
|
verifyStack: [],
|
|
|
|
callback: null,
|
|
|
|
|
2015-05-28 19:55:46 +03:00
|
|
|
init() {
|
2016-03-22 09:01:33 +03:00
|
|
|
gChromeScript.sendAsyncMessage("addObserver");
|
|
|
|
gChromeScript.addMessageListener("satchel-storage-changed", this.observe.bind(this));
|
2015-05-28 19:55:46 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
uninit() {
|
2016-03-22 09:01:33 +03:00
|
|
|
gChromeScript.sendAsyncMessage("removeObserver");
|
2015-05-28 19:55:46 +03:00
|
|
|
},
|
|
|
|
|
2016-12-30 02:34:54 +03:00
|
|
|
waitForChecks(callback) {
|
2010-08-17 08:10:36 +04:00
|
|
|
if (this.verifyStack.length == 0)
|
|
|
|
callback();
|
|
|
|
else
|
|
|
|
this.callback = callback;
|
|
|
|
},
|
|
|
|
|
2016-12-30 02:34:54 +03:00
|
|
|
observe({ subject, topic, data }) {
|
2013-04-20 02:21:30 +04:00
|
|
|
if (data != "formhistory-add" && data != "formhistory-update")
|
2010-08-17 08:10:36 +04:00
|
|
|
return;
|
|
|
|
ok(this.verifyStack.length > 0, "checking if saved form data was expected");
|
|
|
|
|
|
|
|
// Make sure that every piece of data we expect to be saved is saved, and no
|
|
|
|
// more. Here it is assumed that for every entry satchel saves or modifies, a
|
|
|
|
// message is sent.
|
|
|
|
//
|
|
|
|
// We don't actually check the content of the message, but just that the right
|
|
|
|
// quantity of messages is received.
|
|
|
|
// - if there are too few messages, test will time out
|
|
|
|
// - if there are too many messages, test will error out here
|
|
|
|
//
|
|
|
|
var expected = this.verifyStack.shift();
|
|
|
|
|
2013-04-20 02:21:30 +04:00
|
|
|
countEntries(expected.name, expected.value,
|
|
|
|
function(num) {
|
|
|
|
ok(num > 0, expected.message);
|
|
|
|
if (checkObserver.verifyStack.length == 0) {
|
|
|
|
var callback = checkObserver.callback;
|
|
|
|
checkObserver.callback = null;
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
});
|
2010-08-17 08:10:36 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function checkForSave(name, value, message) {
|
2016-12-30 02:34:54 +03:00
|
|
|
checkObserver.verifyStack.push({ name, value, message });
|
2010-08-17 08:10:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
function getFormSubmitButton(formNum) {
|
|
|
|
var form = $("form" + formNum); // by id, not name
|
|
|
|
ok(form != null, "getting form " + formNum);
|
|
|
|
|
|
|
|
// we can't just call form.submit(), because that doesn't seem to
|
|
|
|
// invoke the form onsubmit handler.
|
|
|
|
var button = form.firstChild;
|
|
|
|
while (button && button.type != "submit") { button = button.nextSibling; }
|
|
|
|
ok(button != null, "getting form submit button");
|
|
|
|
|
|
|
|
return button;
|
|
|
|
}
|
2013-04-20 02:21:30 +04:00
|
|
|
|
|
|
|
// Count the number of entries with the given name and value, and call then(number)
|
|
|
|
// when done. If name or value is null, then the value of that field does not matter.
|
2016-03-22 09:01:33 +03:00
|
|
|
function countEntries(name, value, then = null) {
|
|
|
|
return new Promise(resolve => {
|
|
|
|
gChromeScript.sendAsyncMessage("countEntries", { name, value });
|
|
|
|
gChromeScript.addMessageListener("entriesCounted", function counted(data) {
|
|
|
|
gChromeScript.removeMessageListener("entriesCounted", counted);
|
|
|
|
if (!data.ok) {
|
|
|
|
ok(false, "Error occurred counting form history");
|
|
|
|
SimpleTest.finish();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (then) {
|
|
|
|
then(data.count);
|
|
|
|
}
|
|
|
|
resolve(data.count);
|
|
|
|
});
|
2015-05-28 19:55:46 +03:00
|
|
|
});
|
2013-04-20 02:21:30 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Wrapper around FormHistory.update which handles errors. Calls then() when done.
|
2016-03-22 09:01:33 +03:00
|
|
|
function updateFormHistory(changes, then = null) {
|
|
|
|
return new Promise(resolve => {
|
|
|
|
gChromeScript.sendAsyncMessage("updateFormHistory", { changes });
|
|
|
|
gChromeScript.addMessageListener("formHistoryUpdated", function updated({ ok }) {
|
|
|
|
gChromeScript.removeMessageListener("formHistoryUpdated", updated);
|
|
|
|
if (!ok) {
|
|
|
|
ok(false, "Error occurred updating form history");
|
|
|
|
SimpleTest.finish();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (then) {
|
|
|
|
then();
|
|
|
|
}
|
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2015-05-28 19:55:46 +03:00
|
|
|
|
2016-03-22 09:01:33 +03:00
|
|
|
function notifyMenuChanged(expectedCount, expectedFirstValue, then = null) {
|
|
|
|
return new Promise(resolve => {
|
|
|
|
gChromeScript.sendAsyncMessage("waitForMenuChange",
|
|
|
|
{ expectedCount,
|
|
|
|
expectedFirstValue });
|
|
|
|
gChromeScript.addMessageListener("gotMenuChange", function changed({ results }) {
|
|
|
|
gChromeScript.removeMessageListener("gotMenuChange", changed);
|
|
|
|
gLastAutoCompleteResults = results;
|
|
|
|
if (then) {
|
|
|
|
then(results);
|
|
|
|
}
|
|
|
|
resolve(results);
|
|
|
|
});
|
2015-05-28 19:55:46 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-03-22 09:01:33 +03:00
|
|
|
function notifySelectedIndex(expectedIndex, then = null) {
|
|
|
|
return new Promise(resolve => {
|
|
|
|
gChromeScript.sendAsyncMessage("waitForSelectedIndex", { expectedIndex });
|
|
|
|
gChromeScript.addMessageListener("gotSelectedIndex", function changed() {
|
|
|
|
gChromeScript.removeMessageListener("gotSelectedIndex", changed);
|
|
|
|
if (then) {
|
|
|
|
then();
|
|
|
|
}
|
|
|
|
resolve();
|
|
|
|
});
|
2015-05-28 19:55:46 +03:00
|
|
|
});
|
2013-04-20 02:21:30 +04:00
|
|
|
}
|
2015-05-28 19:55:46 +03:00
|
|
|
|
2016-03-22 09:01:33 +03:00
|
|
|
function getPopupState(then = null) {
|
|
|
|
return new Promise(resolve => {
|
|
|
|
gChromeScript.sendAsyncMessage("getPopupState");
|
|
|
|
gChromeScript.addMessageListener("gotPopupState", function listener(state) {
|
|
|
|
gChromeScript.removeMessageListener("gotPopupState", listener);
|
|
|
|
if (then) {
|
|
|
|
then(state);
|
|
|
|
}
|
|
|
|
resolve(state);
|
|
|
|
});
|
2016-03-15 18:34:34 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-04-14 02:29:49 +03:00
|
|
|
function listenForUnexpectedPopupShown() {
|
|
|
|
gChromeScript.addMessageListener("onpopupshown", function onPopupShown() {
|
|
|
|
if (!gPopupShownExpected) {
|
|
|
|
ok(false, "Unexpected autocomplete popupshown event");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-03-22 09:01:33 +03:00
|
|
|
/**
|
|
|
|
* Resolve at the next popupshown event for the autocomplete popup
|
|
|
|
* @return {Promise} with the results
|
|
|
|
*/
|
|
|
|
function promiseACShown() {
|
2016-04-14 02:29:49 +03:00
|
|
|
gPopupShownExpected = true;
|
2016-03-22 09:01:33 +03:00
|
|
|
return new Promise(resolve => {
|
|
|
|
gChromeScript.addMessageListener("onpopupshown", ({ results }) => {
|
2016-04-14 02:29:49 +03:00
|
|
|
gPopupShownExpected = false;
|
2016-03-22 09:01:33 +03:00
|
|
|
resolve(results);
|
|
|
|
});
|
2016-03-15 18:34:34 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-03-22 09:01:33 +03:00
|
|
|
function satchelCommonSetup() {
|
|
|
|
var chromeURL = SimpleTest.getTestFileURL("parent_utils.js");
|
|
|
|
gChromeScript = SpecialPowers.loadChromeScript(chromeURL);
|
|
|
|
gChromeScript.addMessageListener("onpopupshown", ({ results }) => {
|
|
|
|
gLastAutoCompleteResults = results;
|
|
|
|
if (gPopupShownListener)
|
|
|
|
gPopupShownListener();
|
|
|
|
});
|
|
|
|
|
|
|
|
SimpleTest.registerCleanupFunction(() => {
|
|
|
|
gChromeScript.sendAsyncMessage("cleanup");
|
|
|
|
gChromeScript.destroy();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
satchelCommonSetup();
|