summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/unifiedcomplete/test_tab_matches.js
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /toolkit/components/places/tests/unifiedcomplete/test_tab_matches.js
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'toolkit/components/places/tests/unifiedcomplete/test_tab_matches.js')
-rw-r--r--toolkit/components/places/tests/unifiedcomplete/test_tab_matches.js164
1 files changed, 164 insertions, 0 deletions
diff --git a/toolkit/components/places/tests/unifiedcomplete/test_tab_matches.js b/toolkit/components/places/tests/unifiedcomplete/test_tab_matches.js
new file mode 100644
index 000000000..740b8d8ed
--- /dev/null
+++ b/toolkit/components/places/tests/unifiedcomplete/test_tab_matches.js
@@ -0,0 +1,164 @@
+/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*-
+ * vim:set ts=2 sw=2 sts=2 et:
+ * 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/. */
+
+var gTabRestrictChar = "%";
+
+add_task(function* test_tab_matches() {
+ let uri1 = NetUtil.newURI("http://abc.com/");
+ let uri2 = NetUtil.newURI("http://xyz.net/");
+ let uri3 = NetUtil.newURI("about:mozilla");
+ let uri4 = NetUtil.newURI("data:text/html,test");
+ let uri5 = NetUtil.newURI("http://foobar.org");
+ yield PlacesTestUtils.addVisits([
+ { uri: uri1, title: "ABC rocks" },
+ { uri: uri2, title: "xyz.net - we're better than ABC" },
+ { uri: uri5, title: "foobar.org - much better than ABC, definitely better than XYZ" }
+ ]);
+ addOpenPages(uri1, 1);
+ // Pages that cannot be registered in history.
+ addOpenPages(uri3, 1);
+ addOpenPages(uri4, 1);
+
+ do_print("two results, normal result is a tab match");
+ yield check_autocomplete({
+ search: "abc.com",
+ searchParam: "enable-actions",
+ matches: [ makeVisitMatch("abc.com", "http://abc.com/", { heuristic: true }),
+ makeSwitchToTabMatch("http://abc.com/", { title: "ABC rocks" }),
+ makeSearchMatch("abc.com", { heuristic: false }) ]
+ });
+
+ do_print("three results, one tab match");
+ yield check_autocomplete({
+ search: "abc",
+ searchParam: "enable-actions",
+ matches: [ makeSearchMatch("abc", { heuristic: true }),
+ makeSwitchToTabMatch("http://abc.com/", { title: "ABC rocks" }),
+ { uri: uri2, title: "xyz.net - we're better than ABC", style: [ "favicon" ] },
+ { uri: uri5, title: "foobar.org - much better than ABC, definitely better than XYZ", style: [ "favicon" ] } ]
+ });
+
+ do_print("three results, both normal results are tab matches");
+ addOpenPages(uri2, 1);
+ yield check_autocomplete({
+ search: "abc",
+ searchParam: "enable-actions",
+ matches: [ makeSearchMatch("abc", { heuristic: true }),
+ makeSwitchToTabMatch("http://abc.com/", { title: "ABC rocks" }),
+ makeSwitchToTabMatch("http://xyz.net/", { title: "xyz.net - we're better than ABC" }),
+ { uri: uri5, title: "foobar.org - much better than ABC, definitely better than XYZ", style: [ "favicon" ] } ]
+ });
+
+ do_print("a container tab is not visible in 'switch to tab'");
+ addOpenPages(uri5, 1, /* userContextId: */ 3);
+ yield check_autocomplete({
+ search: "abc",
+ searchParam: "enable-actions",
+ matches: [ makeSearchMatch("abc", { heuristic: true }),
+ makeSwitchToTabMatch("http://abc.com/", { title: "ABC rocks" }),
+ makeSwitchToTabMatch("http://xyz.net/", { title: "xyz.net - we're better than ABC" }),
+ { uri: uri5, title: "foobar.org - much better than ABC, definitely better than XYZ", style: [ "favicon" ] } ]
+ });
+
+ do_print("a container tab should not see 'switch to tab' for other container tabs");
+ yield check_autocomplete({
+ search: "abc",
+ searchParam: "enable-actions user-context-id:3",
+ matches: [ makeSearchMatch("abc", { heuristic: true }),
+ makeSwitchToTabMatch("http://foobar.org/", { title: "foobar.org - much better than ABC, definitely better than XYZ" }),
+ { uri: uri1, title: "ABC rocks", style: [ "favicon" ] },
+ { uri: uri2, title: "xyz.net - we're better than ABC", style: [ "favicon" ] } ]
+ });
+
+ do_print("a different container tab should not see any 'switch to tab'");
+ yield check_autocomplete({
+ search: "abc",
+ searchParam: "enable-actions user-context-id:2",
+ matches: [ makeSearchMatch("abc", { heuristic: true }),
+ { uri: uri1, title: "ABC rocks", style: [ "favicon" ] },
+ { uri: uri2, title: "xyz.net - we're better than ABC", style: [ "favicon" ] },
+ { uri: uri5, title: "foobar.org - much better than ABC, definitely better than XYZ", style: [ "favicon" ] } ]
+ });
+
+ do_print("three results, both normal results are tab matches, one has multiple tabs");
+ addOpenPages(uri2, 5);
+ yield check_autocomplete({
+ search: "abc",
+ searchParam: "enable-actions",
+ matches: [ makeSearchMatch("abc", { heuristic: true }),
+ makeSwitchToTabMatch("http://abc.com/", { title: "ABC rocks" }),
+ makeSwitchToTabMatch("http://xyz.net/", { title: "xyz.net - we're better than ABC" }),
+ { uri: uri5, title: "foobar.org - much better than ABC, definitely better than XYZ", style: [ "favicon" ] } ]
+ });
+
+ do_print("three results, no tab matches (disable-private-actions)");
+ yield check_autocomplete({
+ search: "abc",
+ searchParam: "enable-actions disable-private-actions",
+ matches: [ makeSearchMatch("abc", { heuristic: true }),
+ { uri: uri1, title: "ABC rocks", style: [ "favicon" ] },
+ { uri: uri2, title: "xyz.net - we're better than ABC", style: [ "favicon" ] },
+ { uri: uri5, title: "foobar.org - much better than ABC, definitely better than XYZ", style: [ "favicon" ] } ]
+ });
+
+ do_print("two results (actions disabled)");
+ yield check_autocomplete({
+ search: "abc",
+ searchParam: "",
+ matches: [ { uri: uri1, title: "ABC rocks", style: [ "favicon" ] },
+ { uri: uri2, title: "xyz.net - we're better than ABC", style: [ "favicon" ] },
+ { uri: uri5, title: "foobar.org - much better than ABC, definitely better than XYZ", style: [ "favicon" ] } ]
+ });
+
+ do_print("three results, no tab matches");
+ removeOpenPages(uri1, 1);
+ removeOpenPages(uri2, 6);
+ yield check_autocomplete({
+ search: "abc",
+ searchParam: "enable-actions",
+ matches: [ makeSearchMatch("abc", { heuristic: true }),
+ { uri: uri1, title: "ABC rocks", style: [ "favicon" ] },
+ { uri: uri2, title: "xyz.net - we're better than ABC", style: [ "favicon" ] },
+ { uri: uri5, title: "foobar.org - much better than ABC, definitely better than XYZ", style: [ "favicon" ] } ]
+ });
+
+ do_print("tab match search with restriction character");
+ addOpenPages(uri1, 1);
+ yield check_autocomplete({
+ search: gTabRestrictChar + " abc",
+ searchParam: "enable-actions",
+ matches: [ makeSearchMatch(gTabRestrictChar + " abc", { heuristic: true }),
+ makeSwitchToTabMatch("http://abc.com/", { title: "ABC rocks" }) ]
+ });
+
+ do_print("tab match with not-addable pages");
+ yield check_autocomplete({
+ search: "mozilla",
+ searchParam: "enable-actions",
+ matches: [ makeSearchMatch("mozilla", { heuristic: true }),
+ makeSwitchToTabMatch("about:mozilla") ]
+ });
+
+ do_print("tab match with not-addable pages and restriction character");
+ yield check_autocomplete({
+ search: gTabRestrictChar + " mozilla",
+ searchParam: "enable-actions",
+ matches: [ makeSearchMatch(gTabRestrictChar + " mozilla", { heuristic: true }),
+ makeSwitchToTabMatch("about:mozilla") ]
+ });
+
+ do_print("tab match with not-addable pages and only restriction character");
+ yield check_autocomplete({
+ search: gTabRestrictChar,
+ searchParam: "enable-actions",
+ matches: [ makeSearchMatch(gTabRestrictChar, { heuristic: true }),
+ makeSwitchToTabMatch("http://abc.com/", { title: "ABC rocks" }),
+ makeSwitchToTabMatch("about:mozilla"),
+ makeSwitchToTabMatch("data:text/html,test") ]
+ });
+
+ yield cleanup();
+});