summaryrefslogtreecommitdiffstats
path: root/devtools/client/framework/test/browser_toolbox_select_event.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /devtools/client/framework/test/browser_toolbox_select_event.js
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devtools/client/framework/test/browser_toolbox_select_event.js')
-rw-r--r--devtools/client/framework/test/browser_toolbox_select_event.js98
1 files changed, 98 insertions, 0 deletions
diff --git a/devtools/client/framework/test/browser_toolbox_select_event.js b/devtools/client/framework/test/browser_toolbox_select_event.js
new file mode 100644
index 0000000000..ebdae9af13
--- /dev/null
+++ b/devtools/client/framework/test/browser_toolbox_select_event.js
@@ -0,0 +1,98 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+const PAGE_URL = "data:text/html;charset=utf-8,test select events";
+
+requestLongerTimeout(2);
+
+add_task(async function () {
+ const tab = await addTab(PAGE_URL);
+
+ let toolbox = await openToolboxForTab(tab, "webconsole", "bottom");
+ await testSelectEvent("inspector");
+ await testSelectEvent("webconsole");
+ await testSelectEvent("styleeditor");
+ await testSelectEvent("inspector");
+ await testSelectEvent("webconsole");
+ await testSelectEvent("styleeditor");
+
+ await testToolSelectEvent("inspector");
+ await testToolSelectEvent("webconsole");
+ await testToolSelectEvent("styleeditor");
+ await toolbox.destroy();
+
+ toolbox = await openToolboxForTab(tab, "webconsole", "right");
+ await testSelectEvent("inspector");
+ await testSelectEvent("webconsole");
+ await testSelectEvent("styleeditor");
+ await testSelectEvent("inspector");
+ await testSelectEvent("webconsole");
+ await testSelectEvent("styleeditor");
+ await toolbox.destroy();
+
+ toolbox = await openToolboxForTab(tab, "webconsole", "window");
+ await testSelectEvent("inspector");
+ await testSelectEvent("webconsole");
+ await testSelectEvent("styleeditor");
+ await testSelectEvent("inspector");
+ await testSelectEvent("webconsole");
+ await testSelectEvent("styleeditor");
+ await toolbox.destroy();
+
+ await testSelectToolRace();
+
+ /**
+ * Assert that selecting the given toolId raises a select event
+ * @param {toolId} Id of the tool to test
+ */
+ async function testSelectEvent(toolId) {
+ const onSelect = toolbox.once("select");
+ toolbox.selectTool(toolId);
+ const id = await onSelect;
+ is(id, toolId, toolId + " selected");
+ }
+
+ /**
+ * Assert that selecting the given toolId raises its corresponding
+ * selected event
+ * @param {toolId} Id of the tool to test
+ */
+ async function testToolSelectEvent(toolId) {
+ const onSelected = toolbox.once(toolId + "-selected");
+ toolbox.selectTool(toolId);
+ await onSelected;
+ is(toolbox.currentToolId, toolId, toolId + " tool selected");
+ }
+
+ /**
+ * Assert that two calls to selectTool won't race
+ */
+ async function testSelectToolRace() {
+ const toolbox = await openToolboxForTab(tab, "webconsole");
+ let selected = false;
+ const onSelect = (event, id) => {
+ if (selected) {
+ ok(false, "Got more than one 'select' event");
+ } else {
+ selected = true;
+ }
+ };
+ toolbox.once("select", onSelect);
+ const p1 = toolbox.selectTool("inspector");
+ const p2 = toolbox.selectTool("inspector");
+ // Check that both promises don't resolve too early
+ const checkSelectToolResolution = panel => {
+ ok(selected, "selectTool resolves only after 'select' event is fired");
+ const inspector = toolbox.getPanel("inspector");
+ is(panel, inspector, "selecTool resolves to the panel instance");
+ };
+ p1.then(checkSelectToolResolution);
+ p2.then(checkSelectToolResolution);
+ await p1;
+ await p2;
+
+ await toolbox.destroy();
+ }
+});