summaryrefslogtreecommitdiffstats
path: root/browser/components/translations/tests/browser/browser_translations_full_page_telemetry_panel_auto_offer.js
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/translations/tests/browser/browser_translations_full_page_telemetry_panel_auto_offer.js')
-rw-r--r--browser/components/translations/tests/browser/browser_translations_full_page_telemetry_panel_auto_offer.js83
1 files changed, 83 insertions, 0 deletions
diff --git a/browser/components/translations/tests/browser/browser_translations_full_page_telemetry_panel_auto_offer.js b/browser/components/translations/tests/browser/browser_translations_full_page_telemetry_panel_auto_offer.js
new file mode 100644
index 0000000000..93ff473851
--- /dev/null
+++ b/browser/components/translations/tests/browser/browser_translations_full_page_telemetry_panel_auto_offer.js
@@ -0,0 +1,83 @@
+/* Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+/**
+ * Tests that the popup is automatically offered.
+ */
+add_task(async function test_translations_panel_auto_offer() {
+ const { cleanup } = await loadTestPage({
+ page: SPANISH_PAGE_URL,
+ languagePairs: LANGUAGE_PAIRS,
+ autoOffer: true,
+ });
+
+ await FullPageTranslationsTestUtils.clickCancelButton();
+
+ await TestTranslationsTelemetry.assertEvent(Glean.translationsPanel.open, {
+ expectedEventCount: 1,
+ expectNewFlowId: true,
+ allValuePredicates: [
+ value => value.extra.auto_show === "true",
+ value => value.extra.view_name === "defaultView",
+ value => value.extra.opened_from === "translationsButton",
+ value => value.extra.document_language === "es",
+ ],
+ });
+
+ await TestTranslationsTelemetry.assertEvent(
+ Glean.translationsPanel.cancelButton,
+ {
+ expectedEventCount: 1,
+ expectNewFlowId: false,
+ }
+ );
+
+ await TestTranslationsTelemetry.assertEvent(Glean.translationsPanel.close, {
+ expectedEventCount: 1,
+ expectNewFlowId: false,
+ });
+
+ await navigate("Navigate to another page on the same domain.", {
+ url: SPANISH_PAGE_URL_2,
+ });
+
+ await FullPageTranslationsTestUtils.assertTranslationsButton(
+ { button: true },
+ "The button is still shown."
+ );
+
+ await navigate("Navigate to a page on a different domain.", {
+ url: SPANISH_PAGE_URL_DOT_ORG,
+ onOpenPanel: FullPageTranslationsTestUtils.assertPanelViewDefault,
+ });
+
+ await FullPageTranslationsTestUtils.clickCancelButton();
+
+ await TestTranslationsTelemetry.assertEvent(Glean.translationsPanel.open, {
+ expectedEventCount: 2,
+ expectNewFlowId: true,
+ allValuePredicates: [
+ value => value.extra.auto_show === "true",
+ value => value.extra.view_name === "defaultView",
+ value => value.extra.opened_from === "translationsButton",
+ value => value.extra.document_language === "es",
+ ],
+ });
+
+ await TestTranslationsTelemetry.assertEvent(
+ Glean.translationsPanel.cancelButton,
+ {
+ expectedEventCount: 2,
+ expectNewFlowId: false,
+ }
+ );
+
+ await TestTranslationsTelemetry.assertEvent(Glean.translationsPanel.close, {
+ expectedEventCount: 2,
+ expectNewFlowId: false,
+ });
+
+ await cleanup();
+});