mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 14:20:14 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D17635 --HG-- extra : moz-landing-system : lando
73 lines
2.5 KiB
JavaScript
73 lines
2.5 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
// This is a simple test to check the UnifiedComplete provider works, it is not
|
|
// intended to check all the edge cases, because that component is already
|
|
// covered by a good amount of tests.
|
|
|
|
const SUGGEST_PREF = "browser.urlbar.suggest.searches";
|
|
const SUGGEST_ENABLED_PREF = "browser.search.suggest.enabled";
|
|
|
|
add_task(async function test_unifiedComplete() {
|
|
Services.prefs.setBoolPref(SUGGEST_PREF, true);
|
|
Services.prefs.setBoolPref(SUGGEST_ENABLED_PREF, true);
|
|
let engine = await addTestSuggestionsEngine();
|
|
Services.search.defaultEngine = engine;
|
|
let oldCurrentEngine = Services.search.defaultEngine;
|
|
registerCleanupFunction(() => {
|
|
Services.prefs.clearUserPref(SUGGEST_PREF);
|
|
Services.prefs.clearUserPref(SUGGEST_ENABLED_PREF);
|
|
Services.search.defaultEngine = oldCurrentEngine;
|
|
});
|
|
|
|
let controller = new UrlbarController({
|
|
browserWindow: {
|
|
location: {
|
|
href: AppConstants.BROWSER_CHROME_URL,
|
|
},
|
|
},
|
|
});
|
|
let context = createContext("moz org", {isPrivate: false});
|
|
|
|
// Add entries from multiple sources.
|
|
await PlacesUtils.bookmarks.insert({
|
|
url: "https://bookmark.mozilla.org/",
|
|
title: "Test bookmark",
|
|
parentGuid: PlacesUtils.bookmarks.unfiledGuid,
|
|
});
|
|
PlacesUtils.tagging.tagURI(Services.io.newURI("https://bookmark.mozilla.org/"),
|
|
["mozilla", "org", "ham", "moz", "bacon"]);
|
|
await PlacesTestUtils.addVisits([
|
|
{uri: "https://history.mozilla.org/", title: "Test history"},
|
|
{uri: "https://tab.mozilla.org/", title: "Test tab"},
|
|
]);
|
|
UrlbarProviderOpenTabs.registerOpenTab("https://tab.mozilla.org/", 0);
|
|
|
|
await controller.startQuery(context);
|
|
|
|
info("Results:\n" + context.results.map(m => `${m.title} - ${m.payload.url}`).join("\n"));
|
|
Assert.equal(context.results.length, 6, "Found the expected number of matches");
|
|
|
|
Assert.deepEqual([
|
|
UrlbarUtils.RESULT_TYPE.SEARCH,
|
|
UrlbarUtils.RESULT_TYPE.SEARCH,
|
|
UrlbarUtils.RESULT_TYPE.SEARCH,
|
|
UrlbarUtils.RESULT_TYPE.URL,
|
|
UrlbarUtils.RESULT_TYPE.TAB_SWITCH,
|
|
UrlbarUtils.RESULT_TYPE.URL,
|
|
], context.results.map(m => m.type), "Check result types");
|
|
|
|
Assert.deepEqual([
|
|
"moz org",
|
|
"moz org foo",
|
|
"moz org bar",
|
|
"Test bookmark",
|
|
"Test tab",
|
|
"Test history",
|
|
], context.results.map(m => m.title), "Check match titles");
|
|
|
|
Assert.deepEqual(context.results[3].payload.tags, ["moz", "mozilla", "org"],
|
|
"Check tags");
|
|
});
|