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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
// Tests pending breakpoints when reloading
requestLongerTimeout(3);
add_task(async function() {
const dbg = await initDebugger("doc-scripts.html", "simple1.js");
const source = findSource(dbg, "simple1.js");
await selectSource(dbg, source.url);
await addBreakpointViaGutter(dbg, 5);
await addBreakpointViaGutter(dbg, 4);
const syncedBps = waitForDispatch(dbg, "SET_BREAKPOINT", 2);
await reload(dbg, "simple1");
await waitForSelectedSource(dbg, "simple1");
await syncedBps;
await assertEditorBreakpoint(dbg, 4);
await assertEditorBreakpoint(dbg, 5);
});
// Test that pending breakpoints are installed in inline scripts as they are
// sent to the client.
add_task(async function() {
const dbg = await initDebugger("doc-scripts.html", "doc-scripts.html");
let source = findSource(dbg, "doc-scripts.html");
await selectSource(dbg, source.url);
await addBreakpoint(dbg, "doc-scripts.html", 22);
await addBreakpoint(dbg, "doc-scripts.html", 27);
await reload(dbg, "doc-scripts.html");
source = findSource(dbg, "doc-scripts.html");
await waitForPaused(dbg);
assertPausedAtSourceAndLine(dbg, source.id, 22);
await assertEditorBreakpoint(dbg, 22);
// The second breakpoint we added is in a later inline script, and won't
// appear until after we have resumed from the first breakpoint and the
// second inline script has been created.
await resume(dbg);
await waitForPaused(dbg);
assertPausedAtSourceAndLine(dbg, source.id, 27);
await assertEditorBreakpoint(dbg, 27);
});
// Utilities for interacting with the editor
function clickGutter(dbg, line) {
clickElement(dbg, "gutter", line);
}
function getLineEl(dbg, line) {
const lines = dbg.win.document.querySelectorAll(".CodeMirror-code > div");
return lines[line - 1];
}
function addBreakpointViaGutter(dbg, line) {
clickGutter(dbg, line);
return waitForDispatch(dbg, "SET_BREAKPOINT");
}
async function assertEditorBreakpoint(dbg, line) {
await waitUntil(() => {
const lineEl = getLineEl(dbg, line);
return lineEl.classList.contains("new-breakpoint");
});
ok(true, `Breakpoint exists on line ${line}`);
}
|