summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/unifiedcomplete/test_swap_protocol.js
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/components/places/tests/unifiedcomplete/test_swap_protocol.js')
-rw-r--r--toolkit/components/places/tests/unifiedcomplete/test_swap_protocol.js153
1 files changed, 153 insertions, 0 deletions
diff --git a/toolkit/components/places/tests/unifiedcomplete/test_swap_protocol.js b/toolkit/components/places/tests/unifiedcomplete/test_swap_protocol.js
new file mode 100644
index 000000000..89ccc3206
--- /dev/null
+++ b/toolkit/components/places/tests/unifiedcomplete/test_swap_protocol.js
@@ -0,0 +1,153 @@
+/* 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 bug 424717 to make sure searching with an existing location like
+ * http://site/ also matches https://site/ or ftp://site/. Same thing for
+ * ftp://site/ and https://site/.
+ *
+ * Test bug 461483 to make sure a search for "w" doesn't match the "www." from
+ * site subdomains.
+ */
+
+add_task(function* test_swap_protocol() {
+ let uri1 = NetUtil.newURI("http://www.site/");
+ let uri2 = NetUtil.newURI("http://site/");
+ let uri3 = NetUtil.newURI("ftp://ftp.site/");
+ let uri4 = NetUtil.newURI("ftp://site/");
+ let uri5 = NetUtil.newURI("https://www.site/");
+ let uri6 = NetUtil.newURI("https://site/");
+ let uri7 = NetUtil.newURI("http://woohoo/");
+ let uri8 = NetUtil.newURI("http://wwwwwwacko/");
+ yield PlacesTestUtils.addVisits([
+ { uri: uri1, title: "title" },
+ { uri: uri2, title: "title" },
+ { uri: uri3, title: "title" },
+ { uri: uri4, title: "title" },
+ { uri: uri5, title: "title" },
+ { uri: uri6, title: "title" },
+ { uri: uri7, title: "title" },
+ { uri: uri8, title: "title" }
+ ]);
+
+ let allMatches = [
+ { uri: uri1, title: "title" },
+ { uri: uri2, title: "title" },
+ { uri: uri3, title: "title" },
+ { uri: uri4, title: "title" },
+ { uri: uri5, title: "title" },
+ { uri: uri6, title: "title" }
+ ];
+
+ // Disable autoFill to avoid handling the first result.
+ Services.prefs.setBoolPref("browser.urlbar.autoFill", "false");
+ Services.prefs.setBoolPref("browser.urlbar.autoFill.searchEngines", false);
+
+ do_print("http://www.site matches all site");
+ yield check_autocomplete({
+ search: "http://www.site",
+ matches: allMatches
+ });
+
+ do_print("http://site matches all site");
+ yield check_autocomplete({
+ search: "http://site",
+ matches: allMatches
+ });
+
+ do_print("ftp://ftp.site matches itself");
+ yield check_autocomplete({
+ search: "ftp://ftp.site",
+ matches: [ { uri: uri3, title: "title" } ]
+ });
+
+ do_print("ftp://site matches all site");
+ yield check_autocomplete({
+ search: "ftp://site",
+ matches: allMatches
+ });
+
+ do_print("https://www.site matches all site");
+ yield check_autocomplete({
+ search: "https://www.site",
+ matches: allMatches
+ });
+
+ do_print("https://site matches all site");
+ yield check_autocomplete({
+ search: "https://site",
+ matches: allMatches
+ });
+
+ do_print("www.site matches all site");
+ yield check_autocomplete({
+ search: "www.site",
+ matches: allMatches
+ });
+
+ do_print("w matches none of www.");
+ yield check_autocomplete({
+ search: "w",
+ matches: [ { uri: uri7, title: "title" },
+ { uri: uri8, title: "title" } ]
+ });
+
+ do_print("http://w matches none of www.");
+ yield check_autocomplete({
+ search: "http://w",
+ matches: [ { uri: uri7, title: "title" },
+ { uri: uri8, title: "title" } ]
+ });
+
+ do_print("http://w matches none of www.");
+ yield check_autocomplete({
+ search: "http://www.w",
+ matches: [ { uri: uri7, title: "title" },
+ { uri: uri8, title: "title" } ]
+ });
+
+ do_print("ww matches none of www.");
+ yield check_autocomplete({
+ search: "ww",
+ matches: [ { uri: uri8, title: "title" } ]
+ });
+
+ do_print("ww matches none of www.");
+ yield check_autocomplete({
+ search: "ww",
+ matches: [ { uri: uri8, title: "title" } ]
+ });
+
+ do_print("http://ww matches none of www.");
+ yield check_autocomplete({
+ search: "http://ww",
+ matches: [ { uri: uri8, title: "title" } ]
+ });
+
+ do_print("http://www.ww matches none of www.");
+ yield check_autocomplete({
+ search: "http://www.ww",
+ matches: [ { uri: uri8, title: "title" } ]
+ });
+
+ do_print("www matches none of www.");
+ yield check_autocomplete({
+ search: "www",
+ matches: [ { uri: uri8, title: "title" } ]
+ });
+
+ do_print("http://www matches none of www.");
+ yield check_autocomplete({
+ search: "http://www",
+ matches: [ { uri: uri8, title: "title" } ]
+ });
+
+ do_print("http://www.www matches none of www.");
+ yield check_autocomplete({
+ search: "http://www.www",
+ matches: [ { uri: uri8, title: "title" } ]
+ });
+
+ yield cleanup();
+});