tenfourfox/toolkit/components/places/tests/autocomplete/test_416214.js

39 lines
1.1 KiB
JavaScript
Raw Normal View History

2017-04-19 07:56:45 +00: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/. */
/*
* Test autocomplete for non-English URLs that match the tag bug 416214. Also
* test bug 417441 by making sure escaped ascii characters like "+" remain
* escaped.
*
* - add a visit for a page with a non-English URL
* - add a tag for the page
* - search for the tag
* - test number of matches (should be exactly one)
* - make sure the url is decoded
*/
var theTag = "superTag";
// Define some shared uris and titles (each page needs its own uri)
var kURIs = [
"http://escaped/ユニコード",
"http://asciiescaped/blocking-firefox3%2B",
];
var kTitles = [
"title",
theTag,
];
// Add pages that match the tag
addPageBook(0, 0, 0, [1]);
addPageBook(1, 0, 0, [1]);
// 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: Make sure tag matches return the right url as well as '+' remain escaped",
theTag, [0,1]],
];