1
0
Fork 0
firefox/devtools/client/debugger/test/mochitest/browser_dbg-inspector-integration.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

217 lines
8 KiB
JavaScript

/* 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 clicking the DOM node button in any ObjectInspect
// opens the Inspector panel
"use strict";
add_task(async function () {
// Ensures the end panel is wide enough to show the inspector icon
await pushPref("devtools.debugger.end-panel-size", 600);
// Disable 3-pane inspector as it might trigger unwanted server communication.
await pushPref("devtools.inspector.three-pane-enabled", false);
const dbg = await initDebugger("doc-script-switching.html");
const { toolbox } = dbg;
const highlighterTestFront = await getHighlighterTestFront(toolbox);
const highlighter = toolbox.getHighlighter();
// Bug 1562165: the WhyPaused element is displayed for a few hundred ms when adding an
// expression, which can break synthesizeMouseAtCenter. So here we wait for the
// whyPaused element to be displayed then hidden before testing the highlight feature.
const onWhyPausedDisplayed = waitUntil(() =>
dbg.win.document.querySelector(".why-paused:not(.hidden)")
);
await addExpression(dbg, "window.document.querySelector('button')");
// TODO: Remove when Bug 1562165 lands.
await onWhyPausedDisplayed;
// TODO: Remove when Bug 1562165 lands.
await waitUntil(() => dbg.win.document.querySelector(".why-paused.hidden"));
info(
"Check that hovering over DOM element highlights the node in content panel"
);
let onNodeHighlight = highlighter.waitForHighlighterShown();
info("Mouseover the open in inspector button");
const inspectorNode = await waitFor(() => findElement(dbg, "openInspector"));
const view = inspectorNode.ownerDocument.defaultView;
EventUtils.synthesizeMouseAtCenter(
inspectorNode,
{ type: "mouseover" },
view
);
info("Wait for highligther to be shown");
const { nodeFront } = await onNodeHighlight;
is(nodeFront.displayName, "button", "The correct node was highlighted");
info("Check that moving the mouse away from the node hides the highlighter");
let onNodeUnhighlight = highlighter.waitForHighlighterHidden();
const nonHighlightEl = inspectorNode.closest(".object-node");
EventUtils.synthesizeMouseAtCenter(
nonHighlightEl,
{ type: "mouseover" },
view
);
await onNodeUnhighlight;
isVisible = await highlighterTestFront.isHighlighting();
is(isVisible, false, "The highlighter is not displayed anymore");
info("Check we don't have zombie highlighters when briefly hovering a node");
onNodeHighlight = highlighter.waitForHighlighterShown();
onNodeUnhighlight = highlighter.waitForHighlighterHidden();
// Move hover the node and then, right after, move out.
EventUtils.synthesizeMouseAtCenter(
inspectorNode,
{ type: "mousemove" },
view
);
EventUtils.synthesizeMouseAtCenter(
nonHighlightEl,
{ type: "mousemove" },
view
);
await Promise.all([onNodeHighlight, onNodeUnhighlight]);
isVisible = await highlighterTestFront.isHighlighting();
is(isVisible, false, "The highlighter is not displayed anymore - no zombie");
info("Ensure panel changes when button is clicked");
// Loading the inspector panel at first, to make it possible to listen for
// new node selections
const inspector = await toolbox.loadTool("inspector");
const onInspectorSelected = toolbox.once("inspector-selected");
const onInspectorUpdated = inspector.once("inspector-updated");
const onNewNode = toolbox.selection.once("new-node-front");
inspectorNode.click();
await onInspectorSelected;
await onInspectorUpdated;
const inspectorNodeFront = await onNewNode;
ok(true, "Inspector selected and new node got selected");
is(
inspectorNodeFront.displayName,
"button",
"The expected node was selected"
);
});
add_task(async function () {
// Disable 3-pane inspector as it might trigger unwanted server communication.
await pushPref("devtools.inspector.three-pane-enabled", false);
// It's important to pause in the iframe thread so we can assert the fix for Bug 1837480.
const iframeUrl = EXAMPLE_URL + "doc-event-handler.html";
const dbg = await initDebuggerWithAbsoluteURL(
`https://example.org/document-builder.sjs?html=top<iframe src="${iframeUrl}"><iframe>`
);
const { toolbox } = dbg;
// Pause in the iframe document (`synthesizeClick` has a debugger statement)
const iframeBc = await SpecialPowers.spawn(
gBrowser.selectedBrowser,
[],
() => content.document.querySelector("iframe").browsingContext
);
SpecialPowers.spawn(iframeBc, [], () =>
content.wrappedJSObject.synthesizeClick()
);
await waitForPaused(dbg);
findElement(dbg, "frame", 2).focus();
clickElement(dbg, "frame", 2);
await waitForPaused(dbg);
await waitForSelectedSource(dbg, "doc-event-handler.html");
// Wait for all the updates to the document to complete to make all
// token elements have been rendered
await waitForDocumentLoadComplete(dbg);
// Wait for the iframe thread to be paused
const iframeThread = dbg.selectors
.getThreads()
.find(({ url }) => url === iframeUrl);
await waitForPausedThread(dbg, iframeThread.actor);
// Hover over the token to launch preview popup
await tryHovering(dbg, 5, 8, "popup");
info("Wait for top level node to expand and child nodes to load");
await waitUntil(
() => dbg.win.document.querySelectorAll(".preview-popup .node").length > 1
);
info("Mouseover the open in inspector button");
const openInspectorEl = await waitForElement(dbg, "openInspector");
openInspectorEl.scrollIntoView();
const view = openInspectorEl.ownerDocument.defaultView;
EventUtils.synthesizeMouseAtCenter(
openInspectorEl,
{ type: "mouseover" },
view
);
info("Wait for highligther to be shown");
// We don't want to involve directly the highlighters object as they trigger the inspector
// initialization and might interfere with what we're trying to assert here.
// So instead of event, we'll watch for the actual highlighter dom element to be
// visible on the page.
await SpecialPowers.spawn(iframeBc, [], () => {
const doc = content.document;
return ContentTaskUtils.waitForCondition(() => {
// Highlighters are rendered in the shadow DOM, let's get the shadow roots first
const roots = doc.getConnectedShadowRoots();
const getBoxModelHighlighterInfoBarEl = root =>
root.querySelector(
".highlighter-container.box-model #box-model-infobar-container"
);
const boxModelRoot = roots.find(root =>
getBoxModelHighlighterInfoBarEl(root)
);
if (!boxModelRoot) {
return false;
}
const boxModelInfoBarEl = getBoxModelHighlighterInfoBarEl(boxModelRoot);
return (
// wait for the infobar to be displayed
boxModelInfoBarEl.getAttribute("hidden") === null &&
// and make sure it's shown for the hovered element
boxModelInfoBarEl.querySelector(".box-model-infobar-id")
?.textContent === "#clicky"
);
}, "wait for hihglighter to be visible");
});
// Wait for a bit and check that the same thread is still selected
await wait(1000);
ok(dbg.selectors.getIsCurrentThreadPaused(), "current thread is paused");
ok(
findElement(dbg, "threadsPaneItemPause", 2).classList.contains("selected"),
`iframe thread is still selected`
);
// The highlighter should have loaded the inspector, we can directly use getPanel without
// calling loadTool first (and we shouldn't as the check on the highlighter covers
// a fix for Bug 1837480)
const inspector = await toolbox.getPanel("inspector");
const onInspectorSelected = toolbox.once("inspector-selected");
const onInspectorUpdated = inspector.once("inspector-updated");
const onNewNode = toolbox.selection.once("new-node-front");
// Click the first inspector button to view node in inspector
openInspectorEl.click();
await onInspectorSelected;
await onInspectorUpdated;
await onNewNode;
ok(true, "Inspector selected and new node got selected");
});