diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /devtools/client/performance/test/browser_perf-details-01-toggle.js | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devtools/client/performance/test/browser_perf-details-01-toggle.js')
-rw-r--r-- | devtools/client/performance/test/browser_perf-details-01-toggle.js | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/devtools/client/performance/test/browser_perf-details-01-toggle.js b/devtools/client/performance/test/browser_perf-details-01-toggle.js new file mode 100644 index 0000000000..2d8e95b0f2 --- /dev/null +++ b/devtools/client/performance/test/browser_perf-details-01-toggle.js @@ -0,0 +1,89 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ +"use strict"; + +/** + * Tests that the details view toggles subviews. + */ + +const { SIMPLE_URL } = require("devtools/client/performance/test/helpers/urls"); +const { + initPerformanceInNewTab, + teardownToolboxAndRemoveTab, +} = require("devtools/client/performance/test/helpers/panel-utils"); +const { + startRecording, + stopRecording, +} = require("devtools/client/performance/test/helpers/actions"); +const { + once, +} = require("devtools/client/performance/test/helpers/event-utils"); +const { + command, +} = require("devtools/client/performance/test/helpers/input-utils"); + +add_task(async function() { + const { panel } = await initPerformanceInNewTab({ + url: SIMPLE_URL, + win: window, + }); + + const { EVENTS, $, DetailsView } = panel.panelWin; + + await startRecording(panel); + await stopRecording(panel); + + info("Checking views on startup."); + checkViews(DetailsView, $, "waterfall"); + + // Select calltree view. + let viewChanged = once(DetailsView, EVENTS.UI_DETAILS_VIEW_SELECTED, { + spreadArgs: true, + }); + command($("toolbarbutton[data-view='js-calltree']")); + let [viewName] = await viewChanged; + is(viewName, "js-calltree", "UI_DETAILS_VIEW_SELECTED fired with view name"); + checkViews(DetailsView, $, "js-calltree"); + + // Select js flamegraph view. + viewChanged = once(DetailsView, EVENTS.UI_DETAILS_VIEW_SELECTED, { + spreadArgs: true, + }); + command($("toolbarbutton[data-view='js-flamegraph']")); + [viewName] = await viewChanged; + is( + viewName, + "js-flamegraph", + "UI_DETAILS_VIEW_SELECTED fired with view name" + ); + checkViews(DetailsView, $, "js-flamegraph"); + + // Select waterfall view. + viewChanged = once(DetailsView, EVENTS.UI_DETAILS_VIEW_SELECTED, { + spreadArgs: true, + }); + command($("toolbarbutton[data-view='waterfall']")); + [viewName] = await viewChanged; + is(viewName, "waterfall", "UI_DETAILS_VIEW_SELECTED fired with view name"); + checkViews(DetailsView, $, "waterfall"); + + await teardownToolboxAndRemoveTab(panel); +}); + +function checkViews(DetailsView, $, currentView) { + for (const viewName in DetailsView.components) { + const button = $(`toolbarbutton[data-view="${viewName}"]`); + + is( + DetailsView.el.selectedPanel.id, + DetailsView.components[currentView].id, + `DetailsView correctly has ${currentView} selected.` + ); + + if (viewName == currentView) { + ok(button.getAttribute("checked"), `${viewName} button checked.`); + } else { + ok(!button.getAttribute("checked"), `${viewName} button not checked.`); + } + } +} |