summaryrefslogtreecommitdiffstats
path: root/toolkit/components/passwordmgr/test/mochitest/test_case_differences.html
blob: fd0d5b39f83b0717d232ee447bceb86e95fc9292 (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
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Test autocomplete due to multiple matching logins</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
  <script type="text/javascript" src="../../../satchel/test/satchel_common.js"></script>
  <script type="text/javascript" src="pwmgr_common.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
Login Manager test: autocomplete due to multiple matching logins
<p id="display"></p>
<!-- we presumably can't hide the content for this test. -->
<div id="content"></div>
<pre id="test">
<script class="testbody" type="text/javascript">
/** Test for Login Manager: autocomplete due to multiple matching logins **/

add_setup(async () => {
  await addLoginsInParent(
    [location.origin, "https://autocomplete:8888", null, "name", "pass", "uname", "pword"],
    [location.origin, "https://autocomplete:8888", null, "Name", "Pass", "uname", "pword"],
    [location.origin, "https://autocomplete:8888", null, "USER", "PASS", "uname", "pword"]
  );
})

add_task(async function test_empty_first_entry() {
  const form = createLoginForm({
    action: "https://autocomplete:8888"
  });

  // Make sure initial form is empty.
  checkLoginForm(form.uname, "", form.pword, "");

  // Trigger autocomplete popup
  form.uname.focus();

  let popupState = await getPopupState();
  is(popupState.open, false, "Check popup is initially closed");
  const { items } = await openPopupOn(form.uname);
  popupState = await getPopupState();
  is(popupState.selectedIndex, -1, "Check no entries are selected");
  checkAutoCompleteResults(items, ["name", "Name", "USER"], "example.com", "initial");

  // Check first entry
  const index0Promise = notifySelectedIndex(0);
  synthesizeKey("KEY_ArrowDown");
  await index0Promise;
  checkLoginForm(form.uname, "", form.pword, ""); // value shouldn't update
  synthesizeKey("KEY_Enter");
  await promiseFormsProcessedInSameProcess();
  checkLoginForm(form.uname, "name", form.pword, "pass");
});

add_task(async function test_empty_second_entry() {
  const form = createLoginForm({
    action: "https://autocomplete:8888"
  });

  await openPopupOn(form.uname);
  synthesizeKey("KEY_ArrowDown"); // first
  synthesizeKey("KEY_ArrowDown"); // second
  synthesizeKey("KEY_Enter");
  await promiseFormsProcessedInSameProcess();
  checkLoginForm(form.uname, "Name", form.pword, "Pass");
});

add_task(async function test_empty_third_entry() {
  const form = createLoginForm({
    action: "https://autocomplete:8888"
  });

  await openPopupOn(form.uname);
  synthesizeKey("KEY_ArrowDown"); // first
  synthesizeKey("KEY_ArrowDown"); // second
  synthesizeKey("KEY_ArrowDown"); // third
  synthesizeKey("KEY_Enter");
  await promiseFormsProcessedInSameProcess();
  checkLoginForm(form.uname, "USER", form.pword, "PASS");
});

add_task(async function test_preserve_matching_username_case() {
  const form = createLoginForm({
    action: "https://autocomplete:8888"
  });
  await promiseFormsProcessedInSameProcess();

  await openPopupOn(form.uname, { inputValue: "user" });
  // Check that we don't clobber user-entered text when tabbing away
  // (even with no autocomplete entry selected)
  synthesizeKey("KEY_Tab");
  await promiseFormsProcessedInSameProcess();
  checkLoginForm(form.uname, "user", form.pword, "PASS");
});
</script>
</pre>
</body>
</html>