summaryrefslogtreecommitdiffstats
path: root/browser/components/newtab/test/browser/browser_discovery_card.js
blob: c1d9ec6b4cc63f78ef1259126751e003eef5e76c (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
// If this fails it could be because of schema changes.
// `ds_layout.json` defines the newtab page format
// `topstories.json` defines the stories shown
test_newtab({
  async before({ pushPrefs }) {
    await pushPrefs([
      "browser.newtabpage.activity-stream.discoverystream.config",
      JSON.stringify({
        api_key_pref: "extensions.pocket.oAuthConsumerKey",
        collapsible: true,
        enabled: true,
        show_spocs: false,
        hardcoded_layout: false,
        personalized: true,
        layout_endpoint:
          "https://example.com/browser/browser/components/newtab/test/browser/ds_layout.json",
      }),
    ]);
    await pushPrefs([
      "browser.newtabpage.activity-stream.discoverystream.endpoints",
      "https://example.com",
    ]);
  },
  test: async function test_card_render() {
    await ContentTaskUtils.waitForCondition(
      () =>
        content.document.querySelectorAll(
          "[data-section-id='topstories'] .ds-card-link"
        ).length
    );
    let found = content.document.querySelectorAll(
      "[data-section-id='topstories'] .ds-card-link"
    ).length;
    is(found, 1, "there should be 1 topstory card");
    let cardHostname = content.document.querySelector(
      "[data-section-id='topstories'] .source"
    ).innerText;
    is(
      cardHostname,
      "bbc.com",
      `Card hostname is ${cardHostname} instead of bbc.com`
    );
  },
});