summaryrefslogtreecommitdiffstats
path: root/browser/components/newtab/test/browser/browser_discovery_card.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /browser/components/newtab/test/browser/browser_discovery_card.js
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/components/newtab/test/browser/browser_discovery_card.js')
-rw-r--r--browser/components/newtab/test/browser/browser_discovery_card.js49
1 files changed, 49 insertions, 0 deletions
diff --git a/browser/components/newtab/test/browser/browser_discovery_card.js b/browser/components/newtab/test/browser/browser_discovery_card.js
new file mode 100644
index 0000000000..fa90682089
--- /dev/null
+++ b/browser/components/newtab/test/browser/browser_discovery_card.js
@@ -0,0 +1,49 @@
+// If this fails it could be because of schema changes.
+// `topstories.json` defines the stories shown
+test_newtab({
+ async before({ pushPrefs }) {
+ sinon
+ .stub(DiscoveryStreamFeed.prototype, "generateFeedUrl")
+ .returns(
+ "https://example.com/browser/browser/components/newtab/test/browser/topstories.json"
+ );
+ await pushPrefs(
+ [
+ "browser.newtabpage.activity-stream.discoverystream.config",
+ JSON.stringify({
+ api_key_pref: "extensions.pocket.oAuthConsumerKey",
+ collapsible: true,
+ enabled: true,
+ personalized: true,
+ }),
+ ],
+ [
+ "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 cardPublisher = content.document.querySelector(
+ "[data-section-id='topstories'] .source"
+ ).innerText;
+ is(
+ cardPublisher,
+ "bbc",
+ `Card publisher is ${cardPublisher} instead of bbc`
+ );
+ },
+ async after() {
+ sinon.restore();
+ },
+});