123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- /* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
- /* Any copyright is dedicated to the Public Domain.
- * http://creativecommons.org/publicdomain/zero/1.0/ */
- /**
- * Tests that the selection is dropped for line and token searches, after
- * pressing backspace enough times.
- */
- const TAB_URL = EXAMPLE_URL + "doc_script-switching-01.html";
- var gTab, gPanel, gDebugger;
- var gEditor, gSources, gSearchBox;
- function test() {
- let options = {
- source: EXAMPLE_URL + "code_script-switching-01.js",
- line: 1,
- };
- initDebugger(TAB_URL, options).then(([aTab,, aPanel]) => {
- gTab = aTab;
- gPanel = aPanel;
- gDebugger = gPanel.panelWin;
- gEditor = gDebugger.DebuggerView.editor;
- gSources = gDebugger.DebuggerView.Sources;
- gSearchBox = gDebugger.DebuggerView.Filtering._searchbox;
- testLineSearch();
- testTokenSearch();
- closeDebuggerAndFinish(gPanel);
- });
- }
- function testLineSearch() {
- setText(gSearchBox, ":42");
- ok(isCaretPos(gPanel, 7),
- "The editor caret position appears to be correct (1.1).");
- ok(isEditorSel(gPanel, [151, 151]),
- "The editor selection appears to be correct (1.1).");
- is(gEditor.getSelection(), "",
- "The editor selected text appears to be correct (1.1).");
- backspaceText(gSearchBox, 1);
- ok(isCaretPos(gPanel, 4),
- "The editor caret position appears to be correct (1.2).");
- ok(isEditorSel(gPanel, [110, 110]),
- "The editor selection appears to be correct (1.2).");
- is(gEditor.getSelection(), "",
- "The editor selected text appears to be correct (1.2).");
- backspaceText(gSearchBox, 1);
- ok(isCaretPos(gPanel, 4),
- "The editor caret position appears to be correct (1.3).");
- ok(isEditorSel(gPanel, [110, 110]),
- "The editor selection appears to be correct (1.3).");
- is(gEditor.getSelection(), "",
- "The editor selected text appears to be correct (1.3).");
- setText(gSearchBox, ":4");
- ok(isCaretPos(gPanel, 4),
- "The editor caret position appears to be correct (1.4).");
- ok(isEditorSel(gPanel, [110, 110]),
- "The editor selection appears to be correct (1.4).");
- is(gEditor.getSelection(), "",
- "The editor selected text appears to be correct (1.4).");
- gSearchBox.select();
- backspaceText(gSearchBox, 1);
- ok(isCaretPos(gPanel, 4),
- "The editor caret position appears to be correct (1.5).");
- ok(isEditorSel(gPanel, [110, 110]),
- "The editor selection appears to be correct (1.5).");
- is(gEditor.getSelection(), "",
- "The editor selected text appears to be correct (1.5).");
- is(gSearchBox.value, "",
- "The searchbox should have been cleared.");
- }
- function testTokenSearch() {
- setText(gSearchBox, "#();");
- ok(isCaretPos(gPanel, 5, 16),
- "The editor caret position appears to be correct (2.1).");
- ok(isEditorSel(gPanel, [145, 148]),
- "The editor selection appears to be correct (2.1).");
- is(gEditor.getSelection(), "();",
- "The editor selected text appears to be correct (2.1).");
- backspaceText(gSearchBox, 1);
- ok(isCaretPos(gPanel, 4, 21),
- "The editor caret position appears to be correct (2.2).");
- ok(isEditorSel(gPanel, [128, 130]),
- "The editor selection appears to be correct (2.2).");
- is(gEditor.getSelection(), "()",
- "The editor selected text appears to be correct (2.2).");
- backspaceText(gSearchBox, 2);
- ok(isCaretPos(gPanel, 4, 20),
- "The editor caret position appears to be correct (2.3).");
- ok(isEditorSel(gPanel, [129, 129]),
- "The editor selection appears to be correct (2.3).");
- is(gEditor.getSelection(), "",
- "The editor selected text appears to be correct (2.3).");
- setText(gSearchBox, "#;");
- ok(isCaretPos(gPanel, 5, 16),
- "The editor caret position appears to be correct (2.4).");
- ok(isEditorSel(gPanel, [147, 148]),
- "The editor selection appears to be correct (2.4).");
- is(gEditor.getSelection(), ";",
- "The editor selected text appears to be correct (2.4).");
- gSearchBox.select();
- backspaceText(gSearchBox, 1);
- ok(isCaretPos(gPanel, 5, 16),
- "The editor caret position appears to be correct (2.5).");
- ok(isEditorSel(gPanel, [148, 148]),
- "The editor selection appears to be correct (2.5).");
- is(gEditor.getSelection(), "",
- "The editor selected text appears to be correct (2.5).");
- is(gSearchBox.value, "",
- "The searchbox should have been cleared.");
- }
- registerCleanupFunction(function () {
- gTab = null;
- gPanel = null;
- gDebugger = null;
- gEditor = null;
- gSources = null;
- gSearchBox = null;
- });
|