summaryrefslogtreecommitdiffstats
path: root/browser/components/pocket/test/browser_pocket_panel.js
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/pocket/test/browser_pocket_panel.js')
-rw-r--r--browser/components/pocket/test/browser_pocket_panel.js78
1 files changed, 78 insertions, 0 deletions
diff --git a/browser/components/pocket/test/browser_pocket_panel.js b/browser/components/pocket/test/browser_pocket_panel.js
new file mode 100644
index 0000000000..6cebc423bd
--- /dev/null
+++ b/browser/components/pocket/test/browser_pocket_panel.js
@@ -0,0 +1,78 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+"use strict";
+
+add_task(async function () {
+ let tab = await BrowserTestUtils.openNewForegroundTab(
+ gBrowser,
+ "https://example.com/browser/browser/components/pocket/test/test.html"
+ );
+
+ info("clicking on pocket button in toolbar");
+ let pocketButton = document.getElementById("save-to-pocket-button");
+ // The panel is created on the fly, so we can't simply wait for focus
+ // inside it.
+ let pocketPanelShowing = BrowserTestUtils.waitForEvent(
+ document,
+ "popupshowing",
+ true
+ );
+ pocketButton.click();
+ await pocketPanelShowing;
+
+ checkElements(true, ["customizationui-widget-panel"]);
+ let pocketPanel = document.getElementById("customizationui-widget-panel");
+ is(pocketPanel.state, "showing", "pocket panel is showing");
+
+ info("Trigger context menu in a pocket panel element");
+ let contextMenu = document.getElementById("contentAreaContextMenu");
+ is(contextMenu.state, "closed", "context menu popup is closed");
+ let popupShown = BrowserTestUtils.waitForEvent(contextMenu, "popupshown");
+ let popupHidden = BrowserTestUtils.waitForEvent(contextMenu, "popuphidden");
+
+ let pocketFrame = pocketPanel.querySelector("browser");
+
+ const getReadyState = async frame =>
+ SpecialPowers.spawn(frame, [], () => content.document.readyState);
+
+ // Ensure Pocket panel is ready to avoid intermittency.
+ await TestUtils.waitForCondition(
+ async () => (await getReadyState(pocketFrame)) == "complete"
+ );
+
+ // Ensure that the document layout has been flushed before triggering the mouse event
+ // (See Bug 1519808 for a rationale).
+ await pocketFrame.ownerGlobal.promiseDocumentFlushed(() => {});
+ await BrowserTestUtils.synthesizeMouseAtCenter(
+ "body",
+ {
+ type: "contextmenu",
+ button: 2,
+ },
+ pocketFrame
+ );
+
+ await popupShown;
+ is(contextMenu.state, "open", "context menu popup is open");
+ const emeLearnMoreContextItem = contextMenu.querySelector(
+ "#context-media-eme-learnmore"
+ );
+ ok(
+ BrowserTestUtils.is_hidden(emeLearnMoreContextItem),
+ "Unrelated context menu items should be hidden"
+ );
+
+ contextMenu.hidePopup();
+ await popupHidden;
+
+ info("closing pocket panel");
+ let pocketPanelHidden = BrowserTestUtils.waitForEvent(
+ pocketPanel,
+ "popuphidden"
+ );
+ pocketPanel.hidePopup();
+ await pocketPanelHidden;
+ checkElements(false, ["customizationui-widget-panel"]);
+
+ BrowserTestUtils.removeTab(tab);
+});