Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: asan
- Manifest: devtools/client/debugger/test/mochitest/browser_aj.toml
/* 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
"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");
await assertPausedAtSourceAndLine(
dbg,
findSource(dbg, "original.js").id,
8
);
info("Then stepping into a generated source");
await stepIn(dbg);
await assertPausedAtSourceAndLine(dbg, findSource(dbg, "script.js").id, 5);
info("Stepping another time within the same generated source");
await stepIn(dbg);
await assertPausedAtSourceAndLine(dbg, findSource(dbg, "script.js").id, 7);
info("And finally stepping into another original source");
await stepIn(dbg);
await assertPausedAtSourceAndLine(
dbg,
findSource(dbg, "removed-original.js").id,
4
);
info("Walk up the stack backward, until we resume execution");
await stepIn(dbg);
await assertPausedAtSourceAndLine(
dbg,
findSource(dbg, "removed-original.js").id,
5
);
await stepIn(dbg);
await assertPausedAtSourceAndLine(dbg, findSource(dbg, "script.js").id, 8);
await stepIn(dbg);
await assertPausedAtSourceAndLine(
dbg,
findSource(dbg, "original.js").id,
9
);
await stepIn(dbg);
await 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);
}
);
/**
* Tests that the source tree works with all the various types of sources
* coming from the integration test page.
*
* Also assert a few extra things on sources with query strings:
* - they can be pretty printed,
* - quick open matches them,
* - you can set breakpoint on them.
*/
add_task(async function testSourceTreeOnTheIntegrationTestPage() {
const dbg = await initDebuggerWithAbsoluteURL("about:blank");
await navigateToAbsoluteURL(
dbg,
TEST_URL,
"index.html",
"script.js",
"log-worker.js"
);
info("Select the source and add a breakpoint");
await selectSource(dbg, "script.js");
await addBreakpoint(dbg, "script.js", 7);
info("Trigger the breakpoint and wait for the debugger to pause");
invokeInTab("nonSourceMappedFunction");
await waitForPaused(dbg);
info("Resume and remove the breakpoint");
await resume(dbg);
await removeBreakpoint(dbg, findSource(dbg, "script.js").id, 7);
info("Trigger the function again and check the debugger does not pause");
invokeInTab("nonSourceMappedFunction");
await wait(500);
assertNotPaused(dbg);
info("[worker] Select the source and add a breakpoint");
await selectSource(dbg, "log-worker.js");
await addBreakpoint(dbg, "log-worker.js", 2);
info("[worker] Trigger the breakpoint and wait for the debugger to pause");
invokeInTab("invokeLogWorker");
await waitForPaused(dbg);
info("[worker] Resume and remove the breakpoint");
await resume(dbg);
await removeBreakpoint(dbg, findSource(dbg, "log-worker.js").id, 2);
info(
"[worker] Trigger the function again and check the debugger does not pause"
);
invokeInTab("invokeLogWorker");
await wait(500);
assertNotPaused(dbg);
dbg.toolbox.closeToolbox();
});