summaryrefslogtreecommitdiffstats
path: root/browser/extensions/formautofill/test/mochitest/creditCard/test_creditcard_autocomplete_off.html
blob: 04ff6ff85c2ce3a8af3fa25bd3ef10b26da074eb (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
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Test basic autofill</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
  <script type="text/javascript" src="../formautofill_common.js"></script>
  <script type="text/javascript" src="../../../../../../toolkit/components/satchel/test/satchel_common.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
Form autofill test: simple form credit card autofill

<script>
"use strict";

const MOCK_STORAGE = [{
  cc: {
    "cc-name": "John Doe",
    "cc-number": "4929001587121045",
    "cc-exp-month": 4,
    "cc-exp-year": 2017,
  },
  expected: {
    image: "chrome://formautofill/content/third-party/cc-logo-visa.svg"
  },
}, {
  cc: {
    "cc-name": "Timothy Berners-Lee",
    "cc-number": "5103059495477870",
    "cc-exp-month": 12,
    "cc-exp-year": 2022,
  },
  expected: {
    image: "chrome://formautofill/content/third-party/cc-logo-mastercard.svg"
  },
}];

async function setupCreditCardStorage() {
  await addCreditCard(MOCK_STORAGE[0].cc);
  await addCreditCard(MOCK_STORAGE[1].cc);
}

async function setupFormHistory() {
  await updateFormHistory([
    {op: "add", fieldname: "cc-name", value: "John Smith"},
    {op: "add", fieldname: "cc-number", value: "6011029476355493"},
  ]);
}

initPopupListener();

// Show Form History popup for non-autocomplete="off" field only
add_task(async function history_only_menu_checking() {
  await setupFormHistory();

  await setInput("#cc-number", "");
  synthesizeKey("KEY_ArrowDown");
  await expectPopup();
  checkMenuEntries(["6011029476355493"], false);

  await setInput("#cc-name", "");
  synthesizeKey("KEY_ArrowDown");
  await notExpectPopup();
});

// Show Form Autofill popup for the credit card fields.
add_task(async function check_menu_when_both_with_autocomplete_off() {
  await setupCreditCardStorage();

  await setInput("#cc-number", "");
  synthesizeKey("KEY_ArrowDown");
  await expectPopup();
  checkMenuEntries(MOCK_STORAGE.map(patchRecordCCNumber).map(({ cc, expected }) => JSON.stringify({
    primary: cc.ccNumberFmt,
    secondary: cc["cc-name"],
    ariaLabel: `${getCCTypeName(cc)} ${cc.ccNumberFmt.replaceAll("*", "")} ${cc["cc-name"]}`,
    image: expected.image,
  })));

  await setInput("#cc-name", "");
  synthesizeKey("KEY_ArrowDown");
  await expectPopup();
  checkMenuEntries(MOCK_STORAGE.map(patchRecordCCNumber).map(({ cc, expected }) => JSON.stringify({
    primary: cc["cc-name"],
    secondary: cc.ccNumberFmt,
    ariaLabel: `${getCCTypeName(cc)} ${cc["cc-name"]} ${cc.ccNumberFmt}`,
    image: expected.image,
  })));
});

</script>

<p id="display"></p>

<div id="content">
  <form id="form1">
    <p>This is a Credit Card form with autocomplete="off" cc-name field.</p>
    <p><label>Name: <input id="cc-name" autocomplete="off"></label></p>
    <p><label>Card Number: <input id="cc-number" autocomplete="cc-number"></label></p>
  </form>
</div>

<pre id="test"></pre>
</body>
</html>