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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// There are shutdown issues for which multiple rejections are left uncaught.
// See bug 1018184 for resolving these issues.
const { PromiseTestUtils } = ChromeUtils.importESModule(
"resource://testing-common/PromiseTestUtils.sys.mjs"
);
PromiseTestUtils.allowMatchingRejectionsGlobally(/Component not initialized/);
PromiseTestUtils.allowMatchingRejectionsGlobally(/Connection closed/);
Services.scriptloader.loadSubScript(
"chrome://mochitests/content/browser/devtools/client/debugger/test/mochitest/shared-head.js",
this
);
/**
* Tests if on clicking the stack frame, UI switches to the Debugger panel.
*/
add_task(async function () {
// Set a higher panel height in order to get full CodeMirror content
await pushPref("devtools.toolbox.footer.height", 400);
const { tab, monitor, toolbox } = await initNetMonitor(POST_DATA_URL, {
requestCount: 1,
});
info("Starting test... ");
const { document, store, windowRequire } = monitor.panelWin;
const Actions = windowRequire("devtools/client/netmonitor/src/actions/index");
store.dispatch(Actions.batchEnable(false));
// Execute requests.
await performRequests(monitor, tab, 2);
info("Clicking stack-trace tab and waiting for stack-trace panel to open");
const waitForTab = waitForDOM(document, "#stack-trace-tab");
// Click on the first request
EventUtils.sendMouseEvent(
{ type: "mousedown" },
document.querySelector(".request-list-item")
);
await waitForTab;
const waitForPanel = waitForDOM(
document,
"#stack-trace-panel .frame-link",
6
);
// Open the stack-trace tab for that request
document.getElementById("stack-trace-tab").click();
await waitForPanel;
const frameLinkNode = document.querySelector(".frame-link");
await checkClickOnNode(toolbox, frameLinkNode);
await teardown(monitor);
});
/**
* Helper function for testOpenInDebugger.
*/
async function checkClickOnNode(toolbox, frameLinkNode) {
info("checking click on node location");
const url = frameLinkNode.getAttribute("data-url");
ok(url, `source url found ("${url}")`);
const line = frameLinkNode.getAttribute("data-line");
ok(line, `source line found ("${line}")`);
// Fire the click event
frameLinkNode.querySelector(".frame-link-source").click();
// Wait for the debugger to have fully processed the opened source
await toolbox.getPanelWhenReady("jsdebugger");
const dbg = createDebuggerContext(toolbox);
await waitForSelectedSource(dbg, url);
}
|