diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
commit | 9e3c08db40b8916968b9f30096c7be3f00ce9647 (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /devtools/client/debugger/test/mochitest/browser_dbg-pretty-print-flow.js | |
parent | Initial commit. (diff) | |
download | thunderbird-9e3c08db40b8916968b9f30096c7be3f00ce9647.tar.xz thunderbird-9e3c08db40b8916968b9f30096c7be3f00ce9647.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devtools/client/debugger/test/mochitest/browser_dbg-pretty-print-flow.js')
-rw-r--r-- | devtools/client/debugger/test/mochitest/browser_dbg-pretty-print-flow.js | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/devtools/client/debugger/test/mochitest/browser_dbg-pretty-print-flow.js b/devtools/client/debugger/test/mochitest/browser_dbg-pretty-print-flow.js new file mode 100644 index 0000000000..eb8db0b25e --- /dev/null +++ b/devtools/client/debugger/test/mochitest/browser_dbg-pretty-print-flow.js @@ -0,0 +1,78 @@ +/* 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 that loader and new tab appear when pretty printing, +// and the selected location is mapped afterwards + +"use strict"; + +add_task(async function () { + const dbg = await initDebugger("doc-pretty.html", "pretty.js"); + + SpecialPowers.spawn(gBrowser.selectedBrowser, [], () => { + const scriptEl = content.document.createElement("script"); + scriptEl.innerText = `(function callInPretty() { debugger; funcWithMultipleBreakableColumns() })()`; + content.document.body.append(scriptEl); + }); + + await waitForPaused(dbg); + const scriptSource = dbg.selectors.getSelectedSource(); + + info( + "Step-in to navigate to pretty.js `funcWithMultipleBreakableColumns` function" + ); + await stepOver(dbg); + await stepIn(dbg); + await waitForSelectedSource(dbg, "pretty.js"); + await waitForSelectedLocation(dbg, 9); + + is( + countTabs(dbg), + 2, + "Two tabs are opened, one for the dynamically inserted script and one for minified pretty.js" + ); + is( + dbg.selectors.getSourceCount(), + 2, + "There are 2 sources before pretty printing" + ); + await prettyPrint(dbg); + + info("Wait for the pretty printed source to be selected on a different line"); + await waitForSelectedLocation(dbg, 11); + + is(countTabs(dbg), 3, "A new tab was opened for the prettified source"); + is( + dbg.selectors.getSourceCount(), + 3, + "There are three sources after pretty printing" + ); + + info("Navigate to previous frame in call stack"); + clickElement(dbg, "frame", 2); + await waitForSelectedSource(dbg, scriptSource); + + info("Navigate back to `funcWithMultipleBreakableColumns` frame"); + clickElement(dbg, "frame", 1); + await waitForSelectedLocation(dbg, 11); + await waitForSelectedSource(dbg, "pretty.js:formatted"); + ok(true, "pretty-printed source was selected"); + + await resume(dbg); + + info("Re select the minified version"); + await selectSource(dbg, "pretty.js", 4, 8); + info("Re toggle pretty print from the minified source"); + await prettyPrint(dbg); + is(countTabs(dbg), 3, "There are stil three tabs"); + info( + "Wait for re-selecting the mapped location in the pretty printed source" + ); + await waitForSelectedLocation(dbg, 5); + is( + dbg.selectors.getSourceCount(), + 3, + "There are still 3 sources after retrying to pretty print the same source" + ); +}); |