summaryrefslogtreecommitdiffstats
path: root/browser/components/shopping/tests/browser/browser_unanalyzed_product.js
blob: a28611cdbf760d465150bfa6056cbff05e8d1b51 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

/**
 * Tests that the unanalyzed product card appears if a product has no analysis yet.
 * Settings should be the only other component that is visible.
 */
add_task(async function test_unanalyzed_product() {
  await BrowserTestUtils.withNewTab(
    {
      url: "about:shoppingsidebar",
      gBrowser,
    },
    async browser => {
      let shoppingContainer = await getAnalysisDetails(
        browser,
        MOCK_UNANALYZED_PRODUCT_RESPONSE
      );

      ok(
        shoppingContainer.unanalyzedProductEl,
        "Got the unanalyzed-product-card element"
      );

      verifyAnalysisDetailsHidden(shoppingContainer);
      verifyFooterVisible(shoppingContainer);
    }
  );
});

/**
 * Tests that the unanalyzed product card is hidden if a product already has an up-to-date analysis.
 * Other analysis details should be visible.
 */
add_task(async function test_analyzed_product() {
  await BrowserTestUtils.withNewTab(
    {
      url: "about:shoppingsidebar",
      gBrowser,
    },
    async browser => {
      let shoppingContainer = await getAnalysisDetails(
        browser,
        MOCK_ANALYZED_PRODUCT_RESPONSE
      );

      ok(
        !shoppingContainer.unanalyzedProductEl,
        "unanalyzed-product-card should not be visible"
      );

      verifyAnalysisDetailsVisible(shoppingContainer);
      verifyFooterVisible(shoppingContainer);
    }
  );
});

/**
 * Tests that the unanalyzed product card appears if a product has no grade,
 * even if a product id is available.
 * Settings should be the only other component that is visible.
 */
add_task(async function test_ungraded_product() {
  await BrowserTestUtils.withNewTab(
    {
      url: "about:shoppingsidebar",
      gBrowser,
    },
    async browser => {
      let shoppingContainer = await getAnalysisDetails(
        browser,
        MOCK_UNGRADED_PRODUCT_RESPONSE
      );

      ok(
        shoppingContainer.unanalyzedProductEl,
        "Got the unanalyzed-product-card element"
      );

      verifyAnalysisDetailsHidden(shoppingContainer);
      verifyFooterVisible(shoppingContainer);
    }
  );
});