summaryrefslogtreecommitdiffstats
path: root/browser/components/newtab/test/browser/browser_foxdoodle_set_default.js
blob: 7c53ba6b9a93ce3339391e646faef37525f68a9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* 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/. */
"use strict";

const { ASRouter } = ChromeUtils.importESModule(
  "resource:///modules/asrouter/ASRouter.sys.mjs"
);

const { ASRouterTargeting } = ChromeUtils.importESModule(
  "resource:///modules/asrouter/ASRouterTargeting.sys.mjs"
);

const { OnboardingMessageProvider } = ChromeUtils.importESModule(
  "resource:///modules/asrouter/OnboardingMessageProvider.sys.mjs"
);

async function waitForClick(selector, win) {
  await TestUtils.waitForCondition(() => win.document.querySelector(selector));
  win.document.querySelector(selector).click();
}
add_task(async function test_foxdoodle_spotlight() {
  const sandbox = sinon.createSandbox();

  let promise = TestUtils.topicObserved("subdialog-loaded");
  let message = (await OnboardingMessageProvider.getMessages()).find(
    m => m.id === "FOX_DOODLE_SET_DEFAULT"
  );

  Assert.ok(message, "Message exists.");

  let routedMessage = ASRouter.routeCFRMessage(
    message,
    gBrowser,
    undefined,
    false
  );

  Assert.ok(
    JSON.stringify(routedMessage) === JSON.stringify({ message: {} }),
    "Message is not routed when skipInTests is truthy and ID is not present in messagesEnabledInAutomation"
  );

  sandbox
    .stub(ASRouter, "messagesEnabledInAutomation")
    .value(["FOX_DOODLE_SET_DEFAULT"]);

  routedMessage = ASRouter.routeCFRMessage(message, gBrowser, undefined, false);
  Assert.ok(
    JSON.stringify(routedMessage.message) === JSON.stringify(message),
    "Message is routed when skipInTests is truthy and ID is present in messagesEnabledInAutomation"
  );

  delete message.skipInTests;
  let unskippedRoutedMessage = ASRouter.routeCFRMessage(
    message,
    gBrowser,
    undefined,
    false
  );
  Assert.ok(
    unskippedRoutedMessage,
    "Message is routed when skipInTests property is falsy"
  );
  let [win] = await promise;
  await waitForClick("button.dismiss-button", win);
  win.close();
  sandbox.restore();
});