summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/test/browser_inspector_search-04.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/inspector/test/browser_inspector_search-04.js')
-rw-r--r--devtools/client/inspector/test/browser_inspector_search-04.js112
1 files changed, 112 insertions, 0 deletions
diff --git a/devtools/client/inspector/test/browser_inspector_search-04.js b/devtools/client/inspector/test/browser_inspector_search-04.js
new file mode 100644
index 000000000..a5aee8156
--- /dev/null
+++ b/devtools/client/inspector/test/browser_inspector_search-04.js
@@ -0,0 +1,112 @@
+/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
+/* Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ */
+"use strict";
+
+// Testing that searching for elements inside iframes does work.
+
+const IFRAME_SRC = "doc_inspector_search.html";
+const TEST_URL = "data:text/html;charset=utf-8," +
+ "<div class=\"c1 c2\">" +
+ "<iframe src=\"" + URL_ROOT + IFRAME_SRC + "\"></iframe>" +
+ "<iframe src=\"" + URL_ROOT + IFRAME_SRC + "\"></iframe>";
+
+// An array of (key, suggestions) pairs where key is a key to press and
+// suggestions is an array of suggestions that should be shown in the popup.
+// Suggestion is an object with label of the entry and optional count
+// (defaults to 1)
+var TEST_DATA = [
+ {
+ key: "d",
+ suggestions: [
+ {label: "div"},
+ {label: "#d1"},
+ {label: "#d2"}
+ ]
+ },
+ {
+ key: "i",
+ suggestions: [{label: "div"}]
+ },
+ {
+ key: "v",
+ suggestions: []
+ },
+ {
+ key: "VK_BACK_SPACE",
+ suggestions: [{label: "div"}]
+ },
+ {
+ key: "VK_BACK_SPACE",
+ suggestions: [
+ {label: "div"},
+ {label: "#d1"},
+ {label: "#d2"}
+ ]
+ },
+ {
+ key: "VK_BACK_SPACE",
+ suggestions: []
+ },
+ {
+ key: ".",
+ suggestions: [
+ {label: ".c1"},
+ {label: ".c2"}
+ ]
+ },
+ {
+ key: "VK_BACK_SPACE",
+ suggestions: []
+ },
+ {
+ key: "#",
+ suggestions: [
+ {label: "#b1"},
+ {label: "#d1"},
+ {label: "#d2"},
+ {label: "#p1"},
+ {label: "#p2"},
+ {label: "#p3"},
+ {label: "#s1"},
+ {label: "#s2"}
+ ]
+ },
+];
+
+add_task(function* () {
+ let {inspector} = yield openInspectorForURL(TEST_URL);
+ let searchBox = inspector.searchBox;
+ let popup = inspector.searchSuggestions.searchPopup;
+
+ yield focusSearchBoxUsingShortcut(inspector.panelWin);
+
+ for (let {key, suggestions} of TEST_DATA) {
+ info("Pressing " + key + " to get " + formatSuggestions(suggestions));
+
+ let command = once(searchBox, "input");
+ EventUtils.synthesizeKey(key, {}, inspector.panelWin);
+ yield command;
+
+ info("Waiting for search query to complete");
+ yield inspector.searchSuggestions._lastQuery;
+
+ info("Query completed. Performing checks for input '" +
+ searchBox.value + "'");
+ let actualSuggestions = popup.getItems().reverse();
+
+ is(popup.isOpen ? actualSuggestions.length : 0, suggestions.length,
+ "There are expected number of suggestions.");
+
+ for (let i = 0; i < suggestions.length; i++) {
+ is(actualSuggestions[i].label, suggestions[i].label,
+ "The suggestion at " + i + "th index is correct.");
+ }
+ }
+});
+
+function formatSuggestions(suggestions) {
+ return "[" + suggestions
+ .map(s => "'" + s.label + "'")
+ .join(", ") + "]";
+}