summaryrefslogtreecommitdiffstats
path: root/browser/extensions/formautofill/test/mochitest/creditCard/test_preview_highlight_with_site_prefill.html
blob: 090eb9290e9025ed5f4a36133d2978f8b4523527 (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
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Test form autofill - preview and highlight with site prefill</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: preview and highlight field that has been filled by site

<script>
"use strict";

const MOCK_STORAGE = [{
  "cc-name": "Test Name",
  "cc-number": "4929001587121045",
  "cc-exp-month": 4,
  "cc-exp-year": 2017,
}, {
  "cc-name": "Timothy Berners-Lee",
  "cc-number": "5103059495477870",
  "cc-exp-month": 12,
  "cc-exp-year": 2022,
}];

const MOCK_STORAGE_PREVIEW = [{
  "cc-name": "Test Name",
  "cc-number": "************1045",
  "cc-exp-month": "04",
  "cc-exp-year": "2017",
}, {
  "cc-name": "Timothy Berners-Lee",
  "cc-number": "************7870",
  "cc-exp-month": "12",
  "cc-exp-year": "2022",
}];

const MOCK_STORAGE_EXPECTED_FILL = [{
  "cc-name": "Test Name",
  "cc-number": "4929001587121045",
  "cc-exp-month": "04",
  "cc-exp-year": 2017,
}, {
  "cc-name": "Timothy Berners-Lee",
  "cc-number": "5103059495477870",
  "cc-exp-month": "12",
  "cc-exp-year": 2022,
}];

initPopupListener();

add_task(async function setup_storage() {
  await addCreditCard(MOCK_STORAGE[0]);
  await addCreditCard(MOCK_STORAGE[1]);
});

add_task(async function check_preview() {
  let canTest = await canTestOSKeyStoreLogin();
  if (!canTest) {
    todo(canTest, "Cannot test OS key store login on official builds.");
    return;
  }

  let cardholderName = document.querySelector("#cc-name");
  let sitePrefillValue = cardholderName.value;
  let popup = expectPopup();
  const focusedInput = await setInput("#cc-number", "");
  await popup;
  for (let i = 0; i < MOCK_STORAGE_PREVIEW.length; i++) {
    synthesizeKey("KEY_ArrowDown");
    await notifySelectedIndex(i);
    await checkFormFieldsStyle(MOCK_STORAGE_PREVIEW[i]);
  }

  focusedInput.blur();
  is(cardholderName.value, sitePrefillValue, "value should not have changed because previous value was a site prefill");
});

add_task(async function check_filled_highlight() {
  let canTest = await canTestOSKeyStoreLogin();
  if (!canTest) {
    todo(canTest, "Cannot test OS key store login on official builds.");
    return;
  }
  await triggerPopupAndHoverItem("#cc-number", 0);
  let osKeyStoreLoginShown = waitForOSKeyStoreLogin(true);
  // filled 1st credit card option
  await triggerAutofillAndCheckProfile(MOCK_STORAGE_EXPECTED_FILL[0]);
  await osKeyStoreLoginShown;
  await checkFormFieldsStyle(MOCK_STORAGE_EXPECTED_FILL[0], false);
});
</script>
<p id="display"></p>
<div id="content">

  <form id="form1">
    <p>This is a basic credit card form.</p>
    <p>card number: <input id="cc-number" autocomplete="cc-number"></p>
    <p>cardholder name: <input id="cc-name" autocomplete="cc-name" value="JOHN DOE"></p>
    <p>expiration month: <input id="cc-exp-month" autocomplete="cc-exp-month"></p>
    <p>expiration year: <input id="cc-exp-year" autocomplete="cc-exp-year"></p>
  </form>
</div>
<pre id="test"></pre>
</body>
</html>