tenfourfox/toolkit/components/places/tests/autocomplete/test_keyword_search.js
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

74 lines
2.1 KiB
JavaScript

/* 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/. */
/**
* Test for bug 392143 that puts keyword results into the autocomplete. Makes
* sure that multiple parameter queries get spaces converted to +, + converted
* to %2B, non-ascii become escaped, and pages in history that match the
* keyword uses the page's title.
*
* Also test for bug 249468 by making sure multiple keyword bookmarks with the
* same keyword appear in the list.
*/
// Details for the keyword bookmark
var keyBase = "http://abc/?search=";
var keyKey = "key";
// A second keyword bookmark with the same keyword
var otherBase = "http://xyz/?foo=";
var unescaped = "ユニコード";
var pageInHistory = "ThisPageIsInHistory";
// Define some shared uris and titles (each page needs its own uri)
var kURIs = [
keyBase + "%s",
keyBase + "term",
keyBase + "multi+word",
keyBase + "blocking%2B",
keyBase + unescaped,
keyBase + pageInHistory,
keyBase,
otherBase + "%s",
keyBase + "twoKey",
otherBase + "twoKey"
];
var kTitles = [
"Generic page title",
"Keyword title",
"abc",
"xyz"
];
// Add the keyword bookmark
addPageBook(0, 0, 1, [], keyKey);
// Add in the "fake pages" for keyword searches
gPages[1] = [1,2];
gPages[2] = [2,2];
gPages[3] = [3,2];
gPages[4] = [4,2];
// Add a page into history
addPageBook(5, 2);
gPages[6] = [6,2];
// Provide for each test: description; search terms; array of gPages indices of
// pages that should match; optional function to be run before the test
var gTests = [
["0: Plain keyword query",
keyKey + " term", [1]],
["1: Multi-word keyword query",
keyKey + " multi word", [2]],
["2: Keyword query with +",
keyKey + " blocking+", [3]],
["3: Unescaped term in query",
keyKey + " " + unescaped, [4]],
["4: Keyword that happens to match a page",
keyKey + " " + pageInHistory, [5]],
["5: Keyword without query (without space)",
keyKey, [6]],
["6: Keyword without query (with space)",
keyKey + " ", [6]],
];