1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/**
* Tests basic functionality of global search (lowercase + upper case, expected
* UI behavior, number of results found etc.)
*/
const TAB_URL = EXAMPLE_URL + "doc_script-switching-01.html";
let gTab, gDebuggee, gPanel, gDebugger;
let gEditor, gSources, gSearchView, gSearchBox;
function test() {
initDebugger(TAB_URL).then(([aTab, aDebuggee, aPanel]) => {
gTab = aTab;
gDebuggee = aDebuggee;
gPanel = aPanel;
gDebugger = gPanel.panelWin;
gEditor = gDebugger.DebuggerView.editor;
gSources = gDebugger.DebuggerView.Sources;
gSearchView = gDebugger.DebuggerView.GlobalSearch;
gSearchBox = gDebugger.DebuggerView.Filtering._searchbox;
waitForSourceAndCaretAndScopes(gPanel, "-02.js", 1)
.then(firstSearch)
.then(secondSearch)
.then(clearSearch)
.then(() => resumeDebuggerThenCloseAndFinish(gPanel))
.then(null, aError => {
ok(false, "Got an error: " + aError.message + "\n" + aError.stack);
});
gDebuggee.firstCall();
});
}
function firstSearch() {
let deferred = promise.defer();
is(gSearchView.itemCount, 0,
"The global search pane shouldn't have any entries yet.");
is(gSearchView.widget._parent.hidden, true,
"The global search pane shouldn't be visible yet.");
is(gSearchView._splitter.hidden, true,
"The global search pane splitter shouldn't be visible yet.");
gDebugger.once(gDebugger.EVENTS.GLOBAL_SEARCH_MATCH_FOUND, () => {
// Some operations are synchronously dispatched on the main thread,
// to avoid blocking UI, thus giving the impression of faster searching.
executeSoon(() => {
info("Current source url:\n" + gSources.selectedValue);
info("Debugger editor text:\n" + gEditor.getText());
ok(isCaretPos(gPanel, 1),
"The editor shouldn't have jumped to a matching line yet.");
ok(gSources.selectedValue.contains("-02.js"),
"The current source shouldn't have changed after a global search.");
is(gSources.visibleItems.length, 2,
"Not all the sources are shown after the global search.");
let sourceResults = gDebugger.document.querySelectorAll(".dbg-source-results");
is(sourceResults.length, 2,
"There should be matches found in two sources.");
let item0 = gDebugger.SourceResults.getItemForElement(sourceResults[0]);
let item1 = gDebugger.SourceResults.getItemForElement(sourceResults[1]);
is(item0.instance.expanded, true,
"The first source results should automatically be expanded.")
is(item1.instance.expanded, true,
"The second source results should automatically be expanded.")
let searchResult0 = sourceResults[0].querySelectorAll(".dbg-search-result");
let searchResult1 = sourceResults[1].querySelectorAll(".dbg-search-result");
is(searchResult0.length, 1,
"There should be one line result for the first url.");
is(searchResult1.length, 2,
"There should be two line results for the second url.");
let firstLine0 = searchResult0[0];
is(firstLine0.querySelector(".dbg-results-line-number").getAttribute("value"), "1",
"The first result for the first source doesn't have the correct line attached.");
is(firstLine0.querySelectorAll(".dbg-results-line-contents").length, 1,
"The first result for the first source doesn't have the correct number of nodes for a line.");
is(firstLine0.querySelectorAll(".dbg-results-line-contents-string").length, 3,
"The first result for the first source doesn't have the correct number of strings in a line.");
is(firstLine0.querySelectorAll(".dbg-results-line-contents-string[match=true]").length, 1,
"The first result for the first source doesn't have the correct number of matches in a line.");
is(firstLine0.querySelectorAll(".dbg-results-line-contents-string[match=true]")[0].getAttribute("value"), "de",
"The first result for the first source doesn't have the correct match in a line.");
is(firstLine0.querySelectorAll(".dbg-results-line-contents-string[match=false]").length, 2,
"The first result for the first source doesn't have the correct number of non-matches in a line.");
is(firstLine0.querySelectorAll(".dbg-results-line-contents-string[match=false]")[0].getAttribute("value"), "/* Any copyright is ",
"The first result for the first source doesn't have the correct non-matches in a line.");
is(firstLine0.querySelectorAll(".dbg-results-line-contents-string[match=false]")[1].getAttribute("value"), "dicated to the Public Domain.",
"The first result for the first source doesn't have the correct non-matches in a line.");
let firstLine1 = searchResult1[0];
is(firstLine1.querySelector(".dbg-results-line-number").getAttribute("value"), "1",
"The first result for the second source doesn't have the correct line attached.");
is(firstLine1.querySelectorAll(".dbg-results-line-contents").length, 1,
"The first result for the second source doesn't have the correct number of nodes for a line.");
is(firstLine1.querySelectorAll(".dbg-results-line-contents-string").length, 3,
"The first result for the second source doesn't have the correct number of strings in a line.");
is(firstLine1.querySelectorAll(".dbg-results-line-contents-string[match=true]").length, 1,
"The first result for the second source doesn't have the correct number of matches in a line.");
is(firstLine1.querySelectorAll(".dbg-results-line-contents-string[match=true]")[0].getAttribute("value"), "de",
"The first result for the second source doesn't have the correct match in a line.");
is(firstLine1.querySelectorAll(".dbg-results-line-contents-string[match=false]").length, 2,
"The first result for the second source doesn't have the correct number of non-matches in a line.");
is(firstLine1.querySelectorAll(".dbg-results-line-contents-string[match=false]")[0].getAttribute("value"), "/* Any copyright is ",
"The first result for the second source doesn't have the correct non-matches in a line.");
is(firstLine1.querySelectorAll(".dbg-results-line-contents-string[match=false]")[1].getAttribute("value"), "dicated to the Public Domain.",
"The first result for the second source doesn't have the correct non-matches in a line.");
let secondLine1 = searchResult1[1];
is(secondLine1.querySelector(".dbg-results-line-number").getAttribute("value"), "6",
"The second result for the second source doesn't have the correct line attached.");
is(secondLine1.querySelectorAll(".dbg-results-line-contents").length, 1,
"The second result for the second source doesn't have the correct number of nodes for a line.");
is(secondLine1.querySelectorAll(".dbg-results-line-contents-string").length, 3,
"The second result for the second source doesn't have the correct number of strings in a line.");
is(secondLine1.querySelectorAll(".dbg-results-line-contents-string[match=true]").length, 1,
"The second result for the second source doesn't have the correct number of matches in a line.");
is(secondLine1.querySelectorAll(".dbg-results-line-contents-string[match=true]")[0].getAttribute("value"), "de",
"The second result for the second source doesn't have the correct match in a line.");
is(secondLine1.querySelectorAll(".dbg-results-line-contents-string[match=false]").length, 2,
"The second result for the second source doesn't have the correct number of non-matches in a line.");
is(secondLine1.querySelectorAll(".dbg-results-line-contents-string[match=false]")[0].getAttribute("value"), ' eval("',
"The second result for the second source doesn't have the correct non-matches in a line.");
is(secondLine1.querySelectorAll(".dbg-results-line-contents-string[match=false]")[1].getAttribute("value"), 'bugger;");',
"The second result for the second source doesn't have the correct non-matches in a line.");
deferred.resolve();
});
});
setText(gSearchBox, "!de");
return deferred.promise;
}
function secondSearch() {
let deferred = promise.defer();
is(gSearchView.itemCount, 2,
"The global search pane should have some child nodes from the previous search.");
is(gSearchView.widget._parent.hidden, false,
"The global search pane should be visible from the previous search.");
is(gSearchView._splitter.hidden, false,
"The global search pane splitter should be visible from the previous search.");
gDebugger.once(gDebugger.EVENTS.GLOBAL_SEARCH_MATCH_FOUND, () => {
// Some operations are synchronously dispatched on the main thread,
// to avoid blocking UI, thus giving the impression of faster searching.
executeSoon(() => {
info("Current source url:\n" + gSources.selectedValue);
info("Debugger editor text:\n" + gEditor.getText());
ok(isCaretPos(gPanel, 1),
"The editor shouldn't have jumped to a matching line yet.");
ok(gSources.selectedValue.contains("-02.js"),
"The current source shouldn't have changed after a global search.");
is(gSources.visibleItems.length, 2,
"Not all the sources are shown after the global search.");
let sourceResults = gDebugger.document.querySelectorAll(".dbg-source-results");
is(sourceResults.length, 2,
"There should be matches found in two sources.");
let item0 = gDebugger.SourceResults.getItemForElement(sourceResults[0]);
let item1 = gDebugger.SourceResults.getItemForElement(sourceResults[1]);
is(item0.instance.expanded, true,
"The first source results should automatically be expanded.")
is(item1.instance.expanded, true,
"The second source results should automatically be expanded.")
let searchResult0 = sourceResults[0].querySelectorAll(".dbg-search-result");
let searchResult1 = sourceResults[1].querySelectorAll(".dbg-search-result");
is(searchResult0.length, 1,
"There should be one line result for the first url.");
is(searchResult1.length, 1,
"There should be one line result for the second url.");
let firstLine0 = searchResult0[0];
is(firstLine0.querySelector(".dbg-results-line-number").getAttribute("value"), "1",
"The first result for the first source doesn't have the correct line attached.");
is(firstLine0.querySelectorAll(".dbg-results-line-contents").length, 1,
"The first result for the first source doesn't have the correct number of nodes for a line.");
is(firstLine0.querySelectorAll(".dbg-results-line-contents-string").length, 5,
"The first result for the first source doesn't have the correct number of strings in a line.");
is(firstLine0.querySelectorAll(".dbg-results-line-contents-string[match=true]").length, 2,
"The first result for the first source doesn't have the correct number of matches in a line.");
is(firstLine0.querySelectorAll(".dbg-results-line-contents-string[match=true]")[0].getAttribute("value"), "ed",
"The first result for the first source doesn't have the correct matches in a line.");
is(firstLine0.querySelectorAll(".dbg-results-line-contents-string[match=true]")[1].getAttribute("value"), "ed",
"The first result for the first source doesn't have the correct matches in a line.");
is(firstLine0.querySelectorAll(".dbg-results-line-contents-string[match=false]").length, 3,
"The first result for the first source doesn't have the correct number of non-matches in a line.");
is(firstLine0.querySelectorAll(".dbg-results-line-contents-string[match=false]")[0].getAttribute("value"), "/* Any copyright is d",
"The first result for the first source doesn't have the correct non-matches in a line.");
is(firstLine0.querySelectorAll(".dbg-results-line-contents-string[match=false]")[1].getAttribute("value"), "icat",
"The first result for the first source doesn't have the correct non-matches in a line.");
is(firstLine0.querySelectorAll(".dbg-results-line-contents-string[match=false]")[2].getAttribute("value"), " to the Public Domain.",
"The first result for the first source doesn't have the correct non-matches in a line.");
let firstLine1 = searchResult1[0];
is(firstLine1.querySelector(".dbg-results-line-number").getAttribute("value"), "1",
"The first result for the second source doesn't have the correct line attached.");
is(firstLine1.querySelectorAll(".dbg-results-line-contents").length, 1,
"The first result for the second source doesn't have the correct number of nodes for a line.");
is(firstLine1.querySelectorAll(".dbg-results-line-contents-string").length, 5,
"The first result for the second source doesn't have the correct number of strings in a line.");
is(firstLine1.querySelectorAll(".dbg-results-line-contents-string[match=true]").length, 2,
"The first result for the second source doesn't have the correct number of matches in a line.");
is(firstLine1.querySelectorAll(".dbg-results-line-contents-string[match=true]")[0].getAttribute("value"), "ed",
"The first result for the second source doesn't have the correct matches in a line.");
is(firstLine1.querySelectorAll(".dbg-results-line-contents-string[match=true]")[1].getAttribute("value"), "ed",
"The first result for the second source doesn't have the correct matches in a line.");
is(firstLine1.querySelectorAll(".dbg-results-line-contents-string[match=false]").length, 3,
"The first result for the second source doesn't have the correct number of non-matches in a line.");
is(firstLine1.querySelectorAll(".dbg-results-line-contents-string[match=false]")[0].getAttribute("value"), "/* Any copyright is d",
"The first result for the second source doesn't have the correct non-matches in a line.");
is(firstLine1.querySelectorAll(".dbg-results-line-contents-string[match=false]")[1].getAttribute("value"), "icat",
"The first result for the second source doesn't have the correct non-matches in a line.");
is(firstLine1.querySelectorAll(".dbg-results-line-contents-string[match=false]")[2].getAttribute("value"), " to the Public Domain.",
"The first result for the second source doesn't have the correct non-matches in a line.");
deferred.resolve();
});
});
backspaceText(gSearchBox, 2);
typeText(gSearchBox, "ED");
return deferred.promise;
}
function clearSearch() {
gSearchView.clearView();
is(gSearchView.itemCount, 0,
"The global search pane shouldn't have any child nodes after clearing.");
is(gSearchView.widget._parent.hidden, true,
"The global search pane shouldn't be visible after clearing.");
is(gSearchView._splitter.hidden, true,
"The global search pane splitter shouldn't be visible after clearing.");
}
registerCleanupFunction(function() {
gTab = null;
gDebuggee = null;
gPanel = null;
gDebugger = null;
gEditor = null;
gSources = null;
gSearchView = null;
gSearchBox = null;
});
|