summaryrefslogtreecommitdiffstats
path: root/browser/extensions/formautofill/test/browser/creditCard/browser_creditCard_doorhanger_logo.js
blob: 9c4f4e482568ed1ce41cd200075d6d91e0e8694f (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
"use strict";

/*
  The next four tests look very similar because if we try to do multiple
  credit card operations in one test, there's a good chance the test will timeout
  and produce an invalid result.
  We mitigate this issue by having each test only deal with one credit card in storage
  and one credit card operation.
*/
add_task(async function test_submit_third_party_creditCard_logo() {
  const amexCard = {
    "cc-number": "374542158116607",
    "cc-type": "amex",
    "cc-name": "John Doe",
  };
  await BrowserTestUtils.withNewTab(
    { gBrowser, url: CREDITCARD_FORM_URL },
    async function (browser) {
      let onPopupShown = waitForPopupShown();
      await focusUpdateSubmitForm(browser, {
        focusSelector: "#cc-name",
        newValues: {
          "#cc-name": "User 1",
          "#cc-number": amexCard["cc-number"],
        },
      });

      await onPopupShown;
      let doorhanger = getNotification();
      let creditCardLogo = doorhanger.querySelector(".desc-message-box image");
      let creditCardLogoWithoutExtension = creditCardLogo.src.split(".", 1)[0];

      is(
        creditCardLogoWithoutExtension,
        "chrome://formautofill/content/third-party/cc-logo-amex",
        "CC logo should be amex"
      );

      await clickDoorhangerButton(SECONDARY_BUTTON);
    }
  );
  await removeAllRecords();
});

add_task(async function test_update_third_party_creditCard_logo() {
  const amexCard = {
    "cc-number": "374542158116607",
    "cc-name": "John Doe",
  };

  await setStorage(amexCard);
  let creditCards = await getCreditCards();
  is(creditCards.length, 1, "1 credit card in storage");

  let onChanged = waitForStorageChangedEvents("update");
  await BrowserTestUtils.withNewTab(
    { gBrowser, url: CREDITCARD_FORM_URL },
    async function (browser) {
      let onPopupShown = waitForPopupShown();
      await focusUpdateSubmitForm(browser, {
        focusSelector: "#cc-name",
        newValues: {
          "#cc-name": "Mark Smith",
          "#cc-number": amexCard["cc-number"],
          "#cc-exp-month": "4",
          "#cc-exp-year": new Date().getFullYear(),
        },
      });

      await onPopupShown;

      let doorhanger = getNotification();
      let creditCardLogo = doorhanger.querySelector(".desc-message-box image");
      let creditCardLogoWithoutExtension = creditCardLogo.src.split(".", 1)[0];
      is(
        creditCardLogoWithoutExtension,
        `chrome://formautofill/content/third-party/cc-logo-amex`,
        `CC Logo should be amex`
      );
      await clickDoorhangerButton(MAIN_BUTTON);
    }
  );
  await onChanged;
  await removeAllRecords();
});

add_task(async function test_submit_generic_creditCard_logo() {
  const genericCard = {
    "cc-number": "937899583135",
    "cc-name": "John Doe",
  };
  await BrowserTestUtils.withNewTab(
    { gBrowser, url: CREDITCARD_FORM_URL },
    async function (browser) {
      let onPopupShown = waitForPopupShown();
      await focusUpdateSubmitForm(browser, {
        focusSelector: "#cc-name",
        newValues: {
          "#cc-name": "User 1",
          "#cc-number": genericCard["cc-number"],
        },
      });

      await onPopupShown;
      let doorhanger = getNotification();
      let creditCardLogo = doorhanger.querySelector(".desc-message-box image");
      let creditCardLogoWithoutExtension = creditCardLogo.src.split(".", 1)[0];

      is(
        creditCardLogoWithoutExtension,
        "chrome://formautofill/content/icon-credit-card-generic",
        "CC logo should be generic"
      );

      await clickDoorhangerButton(SECONDARY_BUTTON);
    }
  );
  await removeAllRecords();
});

add_task(async function test_update_generic_creditCard_logo() {
  const genericCard = {
    "cc-number": "937899583135",
    "cc-name": "John Doe",
  };

  await setStorage(genericCard);
  let creditCards = await getCreditCards();
  is(creditCards.length, 1, "1 credit card in storage");

  let onChanged = waitForStorageChangedEvents("update");
  await BrowserTestUtils.withNewTab(
    { gBrowser, url: CREDITCARD_FORM_URL },
    async function (browser) {
      let onPopupShown = waitForPopupShown();
      await focusUpdateSubmitForm(browser, {
        focusSelector: "#cc-name",
        newValues: {
          "#cc-name": "Mark Smith",
          "#cc-number": genericCard["cc-number"],
          "#cc-exp-month": "4",
          "#cc-exp-year": new Date().getFullYear(),
        },
      });

      await onPopupShown;

      let doorhanger = getNotification();
      let creditCardLogo = doorhanger.querySelector(".desc-message-box image");
      let creditCardLogoWithoutExtension = creditCardLogo.src.split(".", 1)[0];
      is(
        creditCardLogoWithoutExtension,
        `chrome://formautofill/content/icon-credit-card-generic`,
        `CC Logo should be generic`
      );
      await clickDoorhangerButton(MAIN_BUTTON);
    }
  );
  await onChanged;
  await removeAllRecords();
});

add_task(async function test_save_panel_spaces_in_cc_number_logo() {
  const amexCard = {
    "cc-number": "37 4542 158116 607",
    "cc-type": "amex",
    "cc-name": "John Doe",
  };
  await BrowserTestUtils.withNewTab(
    { gBrowser, url: CREDITCARD_FORM_URL },
    async function (browser) {
      let onPopupShown = waitForPopupShown();
      await focusUpdateSubmitForm(browser, {
        focusSelector: "#cc-name",
        newValues: {
          "#cc-number": amexCard["cc-number"],
        },
      });

      await onPopupShown;
      let doorhanger = getNotification();
      let creditCardLogo = doorhanger.querySelector(".desc-message-box image");
      let creditCardLogoWithoutExtension = creditCardLogo.src.split(".", 1)[0];

      is(
        creditCardLogoWithoutExtension,
        "chrome://formautofill/content/third-party/cc-logo-amex",
        "CC logo should be amex"
      );

      await clickDoorhangerButton(SECONDARY_BUTTON);
    }
  );
});

add_task(async function test_update_panel_with_spaces_in_cc_number_logo() {
  const amexCard = {
    "cc-number": "374 54215 8116607",
    "cc-name": "John Doe",
  };

  await setStorage(amexCard);
  let creditCards = await getCreditCards();
  is(creditCards.length, 1, "1 credit card in storage");

  let onChanged = waitForStorageChangedEvents("update", "notifyUsed");
  await BrowserTestUtils.withNewTab(
    { gBrowser, url: CREDITCARD_FORM_URL },
    async function (browser) {
      let onPopupShown = waitForPopupShown();
      await focusUpdateSubmitForm(browser, {
        focusSelector: "#cc-name",
        newValues: {
          "#cc-name": "Mark Smith",
          "#cc-number": amexCard["cc-number"],
          "#cc-exp-month": "4",
          "#cc-exp-year": new Date().getFullYear(),
        },
      });

      await onPopupShown;

      let doorhanger = getNotification();
      let creditCardLogo = doorhanger.querySelector(".desc-message-box image");
      let creditCardLogoWithoutExtension = creditCardLogo.src.split(".", 1)[0];
      is(
        creditCardLogoWithoutExtension,
        `chrome://formautofill/content/third-party/cc-logo-amex`,
        `CC Logo should be amex`
      );
      // We are not testing whether the cc-number is saved correctly,
      // we only care that the logo in the update panel shows correctly.
      await clickDoorhangerButton(MAIN_BUTTON);
    }
  );
  await onChanged;
  await removeAllRecords();
});