diff options
Diffstat (limited to 'devtools/client/debugger/test/mochitest/browser_dbg_search-basic-04.js')
-rw-r--r-- | devtools/client/debugger/test/mochitest/browser_dbg_search-basic-04.js | 132 |
1 files changed, 132 insertions, 0 deletions
diff --git a/devtools/client/debugger/test/mochitest/browser_dbg_search-basic-04.js b/devtools/client/debugger/test/mochitest/browser_dbg_search-basic-04.js new file mode 100644 index 000000000..4d708797d --- /dev/null +++ b/devtools/client/debugger/test/mochitest/browser_dbg_search-basic-04.js @@ -0,0 +1,132 @@ +/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */ +/* 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/ */ + +/** + * 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; +}); |