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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
/* 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 loading sourcemapped sources, setting breakpoints, and
// stepping in them.
"use strict";
requestLongerTimeout(2);
add_task(async function () {
// NOTE: the CORS call makes the test run times inconsistent
const dbg = await initDebugger(
"doc-sourcemaps.html",
"entry.js",
"output.js",
"times2.js",
"opts.js"
);
const {
selectors: { getBreakpointCount },
} = dbg;
// Check that the original sources appear in the source tree
info("Before opening the page directory, no source are displayed");
await waitForSourcesInSourceTree(dbg, [], { noExpand: true });
await clickElement(dbg, "sourceDirectoryLabel", 4);
info(
"After opening the page directory, only all original sources (entry, output, time2, opts). (bundle is still hidden)"
);
await waitForSourcesInSourceTree(
dbg,
["entry.js", "output.js", "times2.js", "opts.js"],
{ noExpand: true }
);
info("Expand the page folder and assert that the bundle appears");
await clickElement(dbg, "sourceDirectoryLabel", 3);
await clickElement(dbg, "sourceDirectoryLabel", 4);
await waitForSourcesInSourceTree(
dbg,
["entry.js", "output.js", "times2.js", "opts.js", "bundle.js"],
{ noExpand: true }
);
const bundleSrc = findSource(dbg, "bundle.js");
await selectSource(dbg, bundleSrc);
await clickGutter(dbg, 70);
await waitForBreakpointCount(dbg, 1);
await assertBreakpoint(dbg, 70);
await clickGutter(dbg, 70);
await waitForBreakpointCount(dbg, 0);
const entrySrc = findSource(dbg, "entry.js");
await selectSource(dbg, entrySrc);
ok(
getCM(dbg).getValue().includes("window.keepMeAlive"),
"Original source text loaded correctly"
);
// Bug 1824375 - pending location shouldn't be location and include only url, line and column attributes
let pendingSelectedLocation = Services.prefs.getStringPref(
"devtools.debugger.pending-selected-location"
);
is(
pendingSelectedLocation,
JSON.stringify({ url: entrySrc.url, line: 0, column: undefined }),
"Pending selected location is the expected one"
);
// Test breaking on a breakpoint
await addBreakpoint(dbg, "entry.js", 15);
is(getBreakpointCount(), 1, "One breakpoint exists");
assertBreakpointExists(dbg, entrySrc, 15);
invokeInTab("keepMeAlive");
await waitForPaused(dbg);
assertPausedAtSourceAndLine(dbg, entrySrc.id, 15);
await stepIn(dbg);
assertPausedAtSourceAndLine(dbg, findSource(dbg, "times2.js").id, 2);
await stepOver(dbg);
assertPausedAtSourceAndLine(dbg, findSource(dbg, "times2.js").id, 3);
await stepOut(dbg);
assertPausedAtSourceAndLine(dbg, entrySrc.id, 16);
pendingSelectedLocation = Services.prefs.getStringPref(
"devtools.debugger.pending-selected-location"
);
is(
pendingSelectedLocation,
JSON.stringify({ url: entrySrc.url, line: 16, column: 0 }),
"Pending selected location is the expected one"
);
info("Click on jump to generated source link from editor's footer");
findElement(dbg, "sourceMapLink").click();
await waitForSelectedSource(dbg, bundleSrc);
assertPausedAtSourceAndLine(dbg, bundleSrc.id, 62);
});
function assertBreakpointExists(dbg, source, line) {
const {
selectors: { getBreakpoint },
} = dbg;
ok(
getBreakpoint(createLocation({ source, line })),
"Breakpoint has correct line"
);
}
async function waitForBreakpointCount(dbg, count) {
const {
selectors: { getBreakpointCount },
} = dbg;
await waitForState(dbg, state => getBreakpointCount() == count);
}
|