123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- /* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
- /* Any copyright is dedicated to the Public Domain.
- * http://creativecommons.org/publicdomain/zero/1.0/ */
- /**
- * Make sure that switching the displayed source in the UI works as advertised.
- */
- const TAB_URL = EXAMPLE_URL + "doc_script-switching-01.html";
- function test() {
- let options = {
- source: EXAMPLE_URL + "code_script-switching-01.js",
- line: 1
- };
- initDebugger(TAB_URL, options).then(([aTab,, aPanel]) => {
- const gTab = aTab;
- const gPanel = aPanel;
- const gDebugger = gPanel.panelWin;
- const gEditor = gDebugger.DebuggerView.editor;
- const gSources = gDebugger.DebuggerView.Sources;
- const gLabel1 = "code_script-switching-01.js";
- const gLabel2 = "code_script-switching-02.js";
- function testSourcesDisplay() {
- let deferred = promise.defer();
- is(gSources.itemCount, 2,
- "Found the expected number of sources. (1)");
- is(gSources.items[0].target.querySelector(".dbg-source-item").getAttribute("tooltiptext"),
- EXAMPLE_URL + "code_script-switching-01.js",
- "The correct tooltip text is displayed for the first source. (1)");
- is(gSources.items[1].target.querySelector(".dbg-source-item").getAttribute("tooltiptext"),
- EXAMPLE_URL + "code_script-switching-02.js",
- "The correct tooltip text is displayed for the second source. (1)");
- ok(getSourceActor(gSources, EXAMPLE_URL + gLabel1),
- "First source url is incorrect. (1)");
- ok(getSourceActor(gSources, EXAMPLE_URL + gLabel2),
- "Second source url is incorrect. (1)");
- ok(gSources.getItemForAttachment(e => e.label == gLabel1),
- "First source label is incorrect. (1)");
- ok(gSources.getItemForAttachment(e => e.label == gLabel2),
- "Second source label is incorrect. (1)");
- ok(gSources.selectedItem,
- "There should be a selected item in the sources pane. (1)");
- is(getSelectedSourceURL(gSources), EXAMPLE_URL + gLabel2,
- "The selected value is the sources pane is incorrect. (1)");
- is(gEditor.getText().search(/firstCall/), -1,
- "The first source is not displayed. (1)");
- is(gEditor.getText().search(/debugger/), 166,
- "The second source is displayed. (1)");
- ok(isCaretPos(gPanel, 6),
- "Editor caret location is correct. (1)");
- // The editor's debug location takes a tick to update.
- is(gEditor.getDebugLocation(), 5,
- "Editor debugger location is correct. (1)");
- ok(gEditor.hasLineClass(5, "debug-line"),
- "The debugged line is highlighted appropriately (1).");
- waitForDebuggerEvents(gPanel, gDebugger.EVENTS.SOURCE_SHOWN).then(deferred.resolve);
- gSources.selectedIndex = 0;
- return deferred.promise;
- }
- function testSwitchPaused1() {
- let deferred = promise.defer();
- ok(gSources.selectedItem,
- "There should be a selected item in the sources pane. (2)");
- is(getSelectedSourceURL(gSources), EXAMPLE_URL + gLabel1,
- "The selected value is the sources pane is incorrect. (2)");
- is(gEditor.getText().search(/firstCall/), 118,
- "The first source is displayed. (2)");
- is(gEditor.getText().search(/debugger/), -1,
- "The second source is not displayed. (2)");
- // The editor's debug location takes a tick to update.
- ok(isCaretPos(gPanel, 1),
- "Editor caret location is correct. (2)");
- is(gEditor.getDebugLocation(), null,
- "Editor debugger location is correct. (2)");
- ok(!gEditor.hasLineClass(5, "debug-line"),
- "The debugged line highlight was removed. (2)");
- waitForDebuggerEvents(gPanel, gDebugger.EVENTS.SOURCE_SHOWN).then(deferred.resolve);
- gSources.selectedIndex = 1;
- return deferred.promise;
- }
- function testSwitchPaused2() {
- let deferred = promise.defer();
- ok(gSources.selectedItem,
- "There should be a selected item in the sources pane. (3)");
- is(getSelectedSourceURL(gSources), EXAMPLE_URL + gLabel2,
- "The selected value is the sources pane is incorrect. (3)");
- is(gEditor.getText().search(/firstCall/), -1,
- "The first source is not displayed. (3)");
- is(gEditor.getText().search(/debugger/), 166,
- "The second source is displayed. (3)");
- ok(isCaretPos(gPanel, 6),
- "Editor caret location is correct. (3)");
- is(gEditor.getDebugLocation(), 5,
- "Editor debugger location is correct. (3)");
- ok(gEditor.hasLineClass(5, "debug-line"),
- "The debugged line is highlighted appropriately (3).");
- // Step out twice.
- waitForThreadEvents(gPanel, "paused").then(() => {
- waitForDebuggerEvents(gPanel, gDebugger.EVENTS.SOURCE_SHOWN).then(deferred.resolve);
- gDebugger.gThreadClient.stepOut();
- });
- gDebugger.gThreadClient.stepOut();
- return deferred.promise;
- }
- function testSwitchRunning() {
- ok(gSources.selectedItem,
- "There should be a selected item in the sources pane. (4)");
- is(getSelectedSourceURL(gSources), EXAMPLE_URL + gLabel1,
- "The selected value is the sources pane is incorrect. (4)");
- is(gEditor.getText().search(/firstCall/), 118,
- "The first source is displayed. (4)");
- is(gEditor.getText().search(/debugger/), -1,
- "The second source is not displayed. (4)");
- ok(isCaretPos(gPanel, 6),
- "Editor caret location is correct. (4)");
- is(gEditor.getDebugLocation(), 5,
- "Editor debugger location is correct. (4)");
- ok(gEditor.hasLineClass(5, "debug-line"),
- "The debugged line is highlighted appropriately (3). (4)");
- }
- Task.spawn(function* () {
- const shown = waitForSourceAndCaretAndScopes(gPanel, "-02.js", 1);
- callInTab(gTab, "firstCall");
- yield shown;
- yield testSourcesDisplay();
- yield testSwitchPaused1();
- yield testSwitchPaused2();
- yield testSwitchRunning();
- resumeDebuggerThenCloseAndFinish(gPanel);
- });
- });
- }
|