mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 13:48:23 +02:00
390 lines
14 KiB
JavaScript
390 lines
14 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
// See browser/components/search/test/browser_*_behavior.js for tests of actual
|
|
// searches.
|
|
|
|
Cu.import("resource://gre/modules/Task.jsm");
|
|
|
|
const ENGINE_NO_LOGO = {
|
|
name: "searchEngineNoLogo.xml",
|
|
numLogos: 0,
|
|
};
|
|
|
|
const ENGINE_FAVICON = {
|
|
name: "searchEngineFavicon.xml",
|
|
logoPrefix1x: "data:image/png;base64,AAABAAIAICAAAAEAIACoEAAAJgAAABAQAAABACAAaAQAAM4QAAAoAAAAIAAAAEAAAAABACAAAAAAAAAQAAATCwAAEwsA",
|
|
numLogos: 1,
|
|
};
|
|
ENGINE_FAVICON.logoPrefix2x = ENGINE_FAVICON.logoPrefix1x;
|
|
|
|
const ENGINE_1X_LOGO = {
|
|
name: "searchEngine1xLogo.xml",
|
|
logoPrefix1x: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEEAAAAaCAIAAABn3KYmAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gkTADEw",
|
|
numLogos: 1,
|
|
};
|
|
ENGINE_1X_LOGO.logoPrefix2x = ENGINE_1X_LOGO.logoPrefix1x;
|
|
|
|
const ENGINE_2X_LOGO = {
|
|
name: "searchEngine2xLogo.xml",
|
|
logoPrefix2x: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIIAAAA0CAIAAADJ8nfCAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gkTADMU",
|
|
numLogos: 1,
|
|
};
|
|
ENGINE_2X_LOGO.logoPrefix1x = ENGINE_2X_LOGO.logoPrefix2x;
|
|
|
|
const ENGINE_1X_2X_LOGO = {
|
|
name: "searchEngine1x2xLogo.xml",
|
|
logoPrefix1x: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEEAAAAaCAIAAABn3KYmAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gkTADIG",
|
|
logoPrefix2x: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIIAAAA0CAIAAADJ8nfCAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gkTADMo",
|
|
numLogos: 2,
|
|
};
|
|
|
|
const ENGINE_SUGGESTIONS = {
|
|
name: "searchSuggestionEngine.xml",
|
|
numLogos: 0,
|
|
};
|
|
|
|
const SERVICE_EVENT_NAME = "ContentSearchService";
|
|
|
|
const LOGO_1X_DPI_SIZE = [65, 26];
|
|
const LOGO_2X_DPI_SIZE = [130, 52];
|
|
|
|
// The test has an expected search event queue and a search event listener.
|
|
// Search events that are expected to happen are added to the queue, and the
|
|
// listener consumes the queue and ensures that each event it receives is at
|
|
// the head of the queue.
|
|
//
|
|
// Each item in the queue is an object { type, deferred }. type is the
|
|
// expected search event type. deferred is a Promise.defer() value that is
|
|
// resolved when the event is consumed.
|
|
var gExpectedSearchEventQueue = [];
|
|
|
|
var gNewEngines = [];
|
|
|
|
function runTests() {
|
|
runTaskifiedTests().then(TestRunner.next, TestRunner.next);
|
|
yield;
|
|
}
|
|
|
|
let runTaskifiedTests = Task.async(function* () {
|
|
let oldCurrentEngine = Services.search.currentEngine;
|
|
|
|
yield addNewTabPageTabPromise();
|
|
|
|
// The tab is removed at the end of the test, so there's no need to remove
|
|
// this listener at the end of the test.
|
|
info("Adding search event listener");
|
|
getContentWindow().addEventListener(SERVICE_EVENT_NAME, searchEventListener);
|
|
|
|
let panel = searchPanel();
|
|
is(panel.state, "closed", "Search panel should be closed initially");
|
|
|
|
// The panel's animation often is not finished when the test clicks on panel
|
|
// children, which makes the test click the wrong children, so disable it.
|
|
panel.setAttribute("animate", "false");
|
|
|
|
// Add the engine without any logos and switch to it.
|
|
let noLogoEngine = yield promiseNewSearchEngine(ENGINE_NO_LOGO);
|
|
Services.search.currentEngine = noLogoEngine;
|
|
yield promiseSearchEvents(["CurrentEngine"]);
|
|
yield checkCurrentEngine(ENGINE_NO_LOGO);
|
|
|
|
// Add the engine with favicon and switch to it.
|
|
let faviconEngine = yield promiseNewSearchEngine(ENGINE_FAVICON);
|
|
Services.search.currentEngine = faviconEngine;
|
|
yield promiseSearchEvents(["CurrentEngine"]);
|
|
yield checkCurrentEngine(ENGINE_FAVICON);
|
|
|
|
// Add the engine with a 1x-DPI logo and switch to it.
|
|
let logo1xEngine = yield promiseNewSearchEngine(ENGINE_1X_LOGO);
|
|
Services.search.currentEngine = logo1xEngine;
|
|
yield promiseSearchEvents(["CurrentEngine"]);
|
|
yield checkCurrentEngine(ENGINE_1X_LOGO);
|
|
|
|
// Add the engine with a 2x-DPI logo and switch to it.
|
|
let logo2xEngine = yield promiseNewSearchEngine(ENGINE_2X_LOGO);
|
|
Services.search.currentEngine = logo2xEngine;
|
|
yield promiseSearchEvents(["CurrentEngine"]);
|
|
yield checkCurrentEngine(ENGINE_2X_LOGO);
|
|
|
|
// Add the engine with 1x- and 2x-DPI logos and switch to it.
|
|
let logo1x2xEngine = yield promiseNewSearchEngine(ENGINE_1X_2X_LOGO);
|
|
Services.search.currentEngine = logo1x2xEngine;
|
|
yield promiseSearchEvents(["CurrentEngine"]);
|
|
yield checkCurrentEngine(ENGINE_1X_2X_LOGO);
|
|
|
|
// Click the logo to open the search panel.
|
|
yield Promise.all([
|
|
promisePanelShown(panel),
|
|
promiseClick(logoImg()),
|
|
]);
|
|
|
|
let manageBox = $("manage");
|
|
ok(!!manageBox, "The Manage Engines box should be present in the document");
|
|
is(panel.childNodes.length, 1, "Search panel should only contain the Manage Engines entry");
|
|
is(panel.childNodes[0], manageBox, "Search panel should contain the Manage Engines entry");
|
|
|
|
panel.hidePopup();
|
|
|
|
// Add the engine that provides search suggestions and switch to it.
|
|
let suggestionEngine = yield promiseNewSearchEngine(ENGINE_SUGGESTIONS);
|
|
Services.search.currentEngine = suggestionEngine;
|
|
yield promiseSearchEvents(["CurrentEngine"]);
|
|
yield checkCurrentEngine(ENGINE_SUGGESTIONS);
|
|
|
|
// Avoid intermittent failures.
|
|
gSearch()._suggestionController.remoteTimeout = 5000;
|
|
|
|
// Type an X in the search input. This is only a smoke test. See
|
|
// browser_searchSuggestionUI.js for comprehensive content search suggestion
|
|
// UI tests.
|
|
let input = $("text");
|
|
input.focus();
|
|
EventUtils.synthesizeKey("x", {});
|
|
let suggestionsPromise = promiseSearchEvents(["Suggestions"]);
|
|
|
|
// Wait for the search suggestions to become visible and for the Suggestions
|
|
// message.
|
|
let suggestionsUnhiddenDefer = Promise.defer();
|
|
let table = getContentDocument().getElementById("searchSuggestionTable");
|
|
info("Waiting for suggestions table to open");
|
|
let observer = new MutationObserver(() => {
|
|
if (input.getAttribute("aria-expanded") == "true") {
|
|
observer.disconnect();
|
|
ok(!table.hidden, "Search suggestion table unhidden");
|
|
suggestionsUnhiddenDefer.resolve();
|
|
}
|
|
});
|
|
observer.observe(input, {
|
|
attributes: true,
|
|
attributeFilter: ["aria-expanded"],
|
|
});
|
|
yield suggestionsUnhiddenDefer.promise;
|
|
yield suggestionsPromise;
|
|
|
|
// Empty the search input, causing the suggestions to be hidden.
|
|
EventUtils.synthesizeKey("a", { accelKey: true });
|
|
EventUtils.synthesizeKey("VK_DELETE", {});
|
|
ok(table.hidden, "Search suggestion table hidden");
|
|
|
|
// Remove the search bar from toolbar
|
|
CustomizableUI.removeWidgetFromArea("search-container");
|
|
// Focus a different element than the search input from the page.
|
|
let btn = getContentDocument().getElementById("newtab-customize-button");
|
|
yield promiseClick(btn);
|
|
|
|
isnot(input, getContentDocument().activeElement, "Search input should not be focused");
|
|
// Test that Ctrl/Cmd + K will focus the input field from the page.
|
|
EventUtils.synthesizeKey("k", { accelKey: true });
|
|
yield promiseSearchEvents(["FocusInput"]);
|
|
is(input, getContentDocument().activeElement, "Search input should be focused");
|
|
// Reset changes made to toolbar
|
|
CustomizableUI.reset();
|
|
|
|
// Test that Ctrl/Cmd + K will focus the search bar from toolbar.
|
|
let searchBar = gWindow.document.getElementById("searchbar");
|
|
EventUtils.synthesizeKey("k", { accelKey: true });
|
|
is(searchBar.textbox.inputField, gWindow.document.activeElement, "Toolbar's search bar should be focused");
|
|
|
|
// Test that Ctrl/Cmd + K will focus the search bar from a new about:home page if
|
|
// the newtab is disabled from `NewTabUtils.allPages.enabled`.
|
|
yield addNewTabPageTabPromise();
|
|
// Remove the search bar from toolbar
|
|
CustomizableUI.removeWidgetFromArea("search-container");
|
|
NewTabUtils.allPages.enabled = false;
|
|
EventUtils.synthesizeKey("k", { accelKey: true });
|
|
let waitEvent = "AboutHomeLoadSnippetsCompleted";
|
|
yield promiseTabLoadEvent(gWindow.gBrowser.selectedTab, "about:home", waitEvent);
|
|
|
|
is(getContentDocument().documentURI.toLowerCase(), "about:home", "New tab's uri should be about:home");
|
|
let searchInput = getContentDocument().getElementById("searchText");
|
|
is(searchInput, getContentDocument().activeElement, "Search input must be the selected element");
|
|
|
|
NewTabUtils.allPages.enabled = true;
|
|
CustomizableUI.reset();
|
|
gBrowser.removeCurrentTab();
|
|
|
|
// Done. Revert the current engine and remove the new engines.
|
|
Services.search.currentEngine = oldCurrentEngine;
|
|
yield promiseSearchEvents(["CurrentEngine"]);
|
|
|
|
let events = [];
|
|
for (let engine of gNewEngines) {
|
|
Services.search.removeEngine(engine);
|
|
events.push("CurrentState");
|
|
}
|
|
yield promiseSearchEvents(events);
|
|
});
|
|
|
|
function searchEventListener(event) {
|
|
info("Got search event " + event.detail.type);
|
|
let nonempty = gExpectedSearchEventQueue.length > 0;
|
|
ok(nonempty, "Expected search event queue should be nonempty");
|
|
if (nonempty) {
|
|
let { type, deferred } = gExpectedSearchEventQueue.shift();
|
|
is(event.detail.type, type, "Got expected search event " + type);
|
|
if (event.detail.type == type) {
|
|
deferred.resolve();
|
|
} else {
|
|
deferred.reject();
|
|
}
|
|
}
|
|
}
|
|
|
|
function $(idSuffix) {
|
|
return getContentDocument().getElementById("newtab-search-" + idSuffix);
|
|
}
|
|
|
|
function promiseSearchEvents(events) {
|
|
info("Expecting search events: " + events);
|
|
events = events.map(e => ({ type: e, deferred: Promise.defer() }));
|
|
gExpectedSearchEventQueue.push(...events);
|
|
return Promise.all(events.map(e => e.deferred.promise));
|
|
}
|
|
|
|
function promiseNewSearchEngine({name: basename, numLogos}) {
|
|
info("Waiting for engine to be added: " + basename);
|
|
|
|
// Wait for the search events triggered by adding the new engine.
|
|
// engine-added engine-loaded
|
|
let expectedSearchEvents = ["CurrentState", "CurrentState"];
|
|
// engine-changed for each of the logos
|
|
for (let i = 0; i < numLogos; i++) {
|
|
expectedSearchEvents.push("CurrentState");
|
|
}
|
|
let eventPromise = promiseSearchEvents(expectedSearchEvents);
|
|
|
|
// Wait for addEngine().
|
|
let addDeferred = Promise.defer();
|
|
let url = getRootDirectory(gTestPath) + basename;
|
|
Services.search.addEngine(url, Ci.nsISearchEngine.TYPE_MOZSEARCH, "", false, {
|
|
onSuccess: function (engine) {
|
|
info("Search engine added: " + basename);
|
|
gNewEngines.push(engine);
|
|
addDeferred.resolve(engine);
|
|
},
|
|
onError: function (errCode) {
|
|
ok(false, "addEngine failed with error code " + errCode);
|
|
addDeferred.reject();
|
|
},
|
|
});
|
|
|
|
return Promise.all([addDeferred.promise, eventPromise]).then(([newEngine, _]) => {
|
|
return newEngine;
|
|
});
|
|
}
|
|
|
|
function objectURLToBlob(url) {
|
|
return new Promise(function (resolve, reject) {
|
|
let xhr = new XMLHttpRequest();
|
|
xhr.open("get", url, true);
|
|
xhr.responseType = "blob";
|
|
xhr.overrideMimeType("image/png");
|
|
xhr.onload = function(e) {
|
|
if (this.status == 200) {
|
|
return resolve(this.response);
|
|
}
|
|
reject("Failed to get logo, xhr returned status: " + this.status);
|
|
};
|
|
xhr.onerror = reject;
|
|
xhr.send();
|
|
});
|
|
}
|
|
|
|
function blobToBase64(blob) {
|
|
return new Promise(function (resolve, reject) {
|
|
var reader = new FileReader();
|
|
reader.onload = function() {
|
|
resolve(reader.result);
|
|
}
|
|
reader.onerror = reject;
|
|
reader.readAsDataURL(blob);
|
|
});
|
|
}
|
|
|
|
let checkCurrentEngine = Task.async(function* ({name: basename, logoPrefix1x, logoPrefix2x}) {
|
|
let engine = Services.search.currentEngine;
|
|
ok(engine.name.contains(basename),
|
|
"Sanity check: current engine: engine.name=" + engine.name +
|
|
" basename=" + basename);
|
|
|
|
// gSearch.currentEngineName
|
|
is(gSearch().currentEngineName, engine.name,
|
|
"currentEngineName: " + engine.name);
|
|
});
|
|
|
|
function promisePanelShown(panel) {
|
|
let deferred = Promise.defer();
|
|
info("Waiting for popupshown");
|
|
panel.addEventListener("popupshown", function onEvent() {
|
|
panel.removeEventListener("popupshown", onEvent);
|
|
is(panel.state, "open", "Panel state");
|
|
deferred.resolve();
|
|
});
|
|
return deferred.promise;
|
|
}
|
|
|
|
function promiseClick(node) {
|
|
let deferred = Promise.defer();
|
|
let win = getContentWindow();
|
|
SimpleTest.waitForFocus(() => {
|
|
EventUtils.synthesizeMouseAtCenter(node, {}, win);
|
|
deferred.resolve();
|
|
}, win);
|
|
return deferred.promise;
|
|
}
|
|
|
|
function searchPanel() {
|
|
return $("panel");
|
|
}
|
|
|
|
function logoImg() {
|
|
return $("logo");
|
|
}
|
|
|
|
function gSearch() {
|
|
return getContentWindow().gSearch;
|
|
}
|
|
|
|
/**
|
|
* Waits for a load (or custom) event to finish in a given tab. If provided
|
|
* load an uri into the tab.
|
|
*
|
|
* @param tab
|
|
* The tab to load into.
|
|
* @param [optional] url
|
|
* The url to load, or the current url.
|
|
* @param [optional] event
|
|
* The load event type to wait for. Defaults to "load".
|
|
* @return {Promise} resolved when the event is handled.
|
|
* @resolves to the received event
|
|
* @rejects if a valid load event is not received within a meaningful interval
|
|
*/
|
|
function promiseTabLoadEvent(tab, url, eventType="load") {
|
|
let deferred = Promise.defer();
|
|
info("Wait tab event: " + eventType);
|
|
|
|
function handle(event) {
|
|
if (event.originalTarget != tab.linkedBrowser.contentDocument ||
|
|
event.target.location.href == "about:blank" ||
|
|
(url && event.target.location.href != url)) {
|
|
info("Skipping spurious '" + eventType + "'' event" +
|
|
" for " + event.target.location.href);
|
|
return;
|
|
}
|
|
clearTimeout(timeout);
|
|
tab.linkedBrowser.removeEventListener(eventType, handle, true);
|
|
info("Tab event received: " + eventType);
|
|
deferred.resolve(event);
|
|
}
|
|
|
|
let timeout = setTimeout(() => {
|
|
tab.linkedBrowser.removeEventListener(eventType, handle, true);
|
|
deferred.reject(new Error("Timed out while waiting for a '" + eventType + "'' event"));
|
|
}, 20000);
|
|
|
|
tab.linkedBrowser.addEventListener(eventType, handle, true, true);
|
|
if (url)
|
|
tab.linkedBrowser.loadURI(url);
|
|
return deferred.promise;
|
|
}
|