summaryrefslogtreecommitdiffstats
path: root/toolkit/components/aboutwebauthn/tests/browser/browser_aboutwebauthn_aria_keycontrols.js
blob: 44e7f3dcd39e0475f6a2fac009a12a92432995e2 (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

var doc, tab;

add_setup(async function () {
  info("Starting about:webauthn");
  tab = await BrowserTestUtils.openNewForegroundTab({
    gBrowser,
    opening: "about:webauthn",
    waitForLoad: true,
  });

  doc = tab.linkedBrowser.contentDocument;
  let ops = {
    credMgmt: true,
    clientPin: true,
    bioEnroll: true,
  };
  send_auth_info_and_check_categories(doc, ops);
});

registerCleanupFunction(async function () {
  // Close tab.
  await BrowserTestUtils.removeTab(tab);
});

add_task(async function moving_up_and_down() {
  doc.getElementById("info-tab-button").focus();
  [
    ["UP", "DOWN"],
    ["LEFT", "RIGHT"],
  ].forEach(dirs => {
    let up = dirs[0];
    let down = dirs[1];
    EventUtils.sendKey(down);
    is(
      doc.activeElement,
      doc.getElementById("pin-tab-button"),
      "Wrong element active"
    );
    EventUtils.sendKey(down);
    is(
      doc.activeElement,
      doc.getElementById("credentials-tab-button"),
      "Wrong element active"
    );
    EventUtils.sendKey(down);
    is(
      doc.activeElement,
      doc.getElementById("bio-enrollments-tab-button"),
      "Wrong element active"
    );
    // Trying to go down further should do nothing
    EventUtils.sendKey(down);
    is(
      doc.activeElement,
      doc.getElementById("bio-enrollments-tab-button"),
      "Wrong element active"
    );
    EventUtils.sendKey(down);
    is(
      doc.activeElement,
      doc.getElementById("bio-enrollments-tab-button"),
      "Wrong element active"
    );

    // Going back up again
    EventUtils.sendKey(up);
    is(
      doc.activeElement,
      doc.getElementById("credentials-tab-button"),
      "Wrong element active"
    );
    EventUtils.sendKey(up);
    is(
      doc.activeElement,
      doc.getElementById("pin-tab-button"),
      "Wrong element active"
    );
    EventUtils.sendKey(up);
    is(
      doc.activeElement,
      doc.getElementById("info-tab-button"),
      "Wrong element active"
    );
    // Trying to go up further should do nothing
    EventUtils.sendKey(up);
    is(
      doc.activeElement,
      doc.getElementById("info-tab-button"),
      "Wrong element active"
    );
    EventUtils.sendKey(up);
    is(
      doc.activeElement,
      doc.getElementById("info-tab-button"),
      "Wrong element active"
    );
  });
});

add_task(async function switching_sections() {
  doc.getElementById("info-tab-button").focus();
  EventUtils.sendKey("DOWN"); // Pin section
  EventUtils.sendKey("DOWN"); // Credentials section
  EventUtils.sendKey("RETURN");

  let credentials_section = doc.getElementById("credential-management-section");
  isnot(
    credentials_section.style.display,
    "none",
    "credentials section not visible"
  );

  EventUtils.sendKey("UP"); // PIN section
  EventUtils.sendKey("RETURN");

  let pin_section = doc.getElementById("set-change-pin-section");
  isnot(pin_section.style.display, "none", "pin section not visible");

  EventUtils.sendKey("DOWN"); // Credentials section
  EventUtils.sendChar(" "); // Try using Space instead of Return

  isnot(
    credentials_section.style.display,
    "none",
    "credentials section not visible"
  );
});

add_task(async function jumping_sections() {
  doc.getElementById("info-tab-button").focus();
  EventUtils.sendKey("DOWN"); // Pin section
  EventUtils.sendKey("DOWN"); // Credentials section
  is(
    doc.activeElement,
    doc.getElementById("credentials-tab-button"),
    "Wrong element active"
  );

  EventUtils.sendKey("HOME");
  is(
    doc.activeElement,
    doc.getElementById("info-tab-button"),
    "Wrong element active"
  );

  // Another hit of the Home-key should change nothing
  EventUtils.sendKey("HOME");
  is(
    doc.activeElement,
    doc.getElementById("info-tab-button"),
    "Wrong element active"
  );

  EventUtils.sendKey("END");
  is(
    doc.activeElement,
    doc.getElementById("bio-enrollments-tab-button"),
    "Wrong element active"
  );

  EventUtils.sendKey("HOME");
  is(
    doc.activeElement,
    doc.getElementById("info-tab-button"),
    "Wrong element active"
  );

  EventUtils.sendKey("DOWN"); // Pin section
  EventUtils.sendKey("DOWN"); // Credentials section
  is(
    doc.activeElement,
    doc.getElementById("credentials-tab-button"),
    "Wrong element active"
  );

  EventUtils.sendKey("END");
  is(
    doc.activeElement,
    doc.getElementById("bio-enrollments-tab-button"),
    "Wrong element active"
  );

  // Another hit of the "End"-key should change nothing
  EventUtils.sendKey("END");
  is(
    doc.activeElement,
    doc.getElementById("bio-enrollments-tab-button"),
    "Wrong element active"
  );
});