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
|
/* 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/>. */
"use strict";
/**
* Assert that breakpoints and stepping works in various conditions
*/
const testServer = createVersionizedHttpTestServer(
"examples/sourcemaps-reload-uncompressed"
);
const TEST_URL = testServer.urlFor("index.html");
add_task(
async function testSteppingFromOriginalToGeneratedAndAnotherOriginal() {
const dbg = await initDebuggerWithAbsoluteURL(
TEST_URL,
"index.html",
"script.js",
"original.js"
);
await selectSource(dbg, "original.js");
await addBreakpoint(dbg, "original.js", 8);
assertBreakpointSnippet(dbg, 1, "await nonSourceMappedFunction();");
info("Test pausing on an original source");
invokeInTab("foo");
await waitForPausedInOriginalFileAndToggleMapScopes(dbg, "original.js");
assertPausedAtSourceAndLine(dbg, findSource(dbg, "original.js").id, 8);
info("Then stepping into a generated source");
await stepIn(dbg);
assertPausedAtSourceAndLine(dbg, findSource(dbg, "script.js").id, 5);
info("Stepping another time within the same generated source");
await stepIn(dbg);
assertPausedAtSourceAndLine(dbg, findSource(dbg, "script.js").id, 7);
info("And finally stepping into another original source");
await stepIn(dbg);
assertPausedAtSourceAndLine(
dbg,
findSource(dbg, "removed-original.js").id,
4
);
info("Walk up the stack backward, until we resume execution");
await stepIn(dbg);
assertPausedAtSourceAndLine(
dbg,
findSource(dbg, "removed-original.js").id,
5
);
await stepIn(dbg);
assertPausedAtSourceAndLine(dbg, findSource(dbg, "script.js").id, 8);
await stepIn(dbg);
assertPausedAtSourceAndLine(dbg, findSource(dbg, "original.js").id, 9);
await stepIn(dbg);
assertPausedAtSourceAndLine(dbg, findSource(dbg, "original.js").id, 10);
// We can't use the `stepIn` helper as this last step will resume
// and the helper is expecting to pause again
await dbg.actions.stepIn();
await assertNotPaused(dbg);
}
);
|