summaryrefslogtreecommitdiffstats
path: root/browser/components/newtab/test/xpcshell/test_CFRMessageProvider.js
blob: acdd4a2e2bf7fc7986ec2667048c01c11ed001a1 (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

const { CFRMessageProvider } = ChromeUtils.importESModule(
  "resource://activity-stream/lib/CFRMessageProvider.sys.mjs"
);

add_task(async function test_cfrMessages() {
  const { experimentValidator, messageValidators } = await makeValidators();

  const messages = await CFRMessageProvider.getMessages();
  for (const message of messages) {
    const validator = messageValidators[message.template];
    Assert.ok(
      typeof validator !== "undefined",
      typeof validator !== "undefined"
        ? `Schema validator found for ${message.template}.`
        : `No schema validator found for template ${message.template}. Please update this test to add one.`
    );

    assertValidates(
      validator,
      message,
      `Message ${message.id} validates as template ${message.template}`
    );
    assertValidates(
      experimentValidator,
      message,
      `Message ${message.id} validates as MessagingExperiment`
    );
  }
});