blob: d8cf57fce75f4eeab1b105fb9d139dc0d841fb26 [file] [log] [blame]
Derick Montaguead2ceb62020-04-24 18:11:04 -05001// Jest Snapshot v1, https://goo.gl/fbAQLP
2
3exports[`AppNavigation.vue should render correctly 1`] = `
4<div>
5 <div
6 class="nav-container"
7 >
8 <nav
9 aria-label="appNavigation.primaryNavigation"
10 >
11 <ul
Derick Montague58a7a032020-09-21 12:21:48 -050012 class="nav mb-4 flex-column"
Derick Montaguead2ceb62020-04-24 18:11:04 -050013 >
14 <li
15 class="nav-item"
Derick Montague58a7a032020-09-21 12:21:48 -050016 data-test-id="nav-item-overview"
Derick Montaguead2ceb62020-04-24 18:11:04 -050017 >
18 <a
Sukanya Pandeyfba4d622020-12-29 13:31:19 +053019 aria-current="page"
20 class="nav-link router-link-exact-active router-link-active"
Dixsie1915d8c2021-03-25 15:44:02 -050021 href="#/"
Derick Montaguead2ceb62020-04-24 18:11:04 -050022 target="_self"
23 >
24 <svg
25 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -050026 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -050027 focusable="false"
28 height="16"
29 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -050030 viewBox="0 0 32 32"
31 width="16"
32 xmlns="http://www.w3.org/2000/svg"
33 >
34 <path
Derick Montague828dda92021-06-28 15:52:22 -050035 d="M24 21H26V26H24zM20 16H22V26H20zM11 26a5.0059 5.0059 0 01-5-5H8a3 3 0 103-3V16a5 5 0 010 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -050036 />
37 <path
Derick Montague828dda92021-06-28 15:52:22 -050038 d="M28,2H4A2.002,2.002,0,0,0,2,4V28a2.0023,2.0023,0,0,0,2,2H28a2.0027,2.0027,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2Zm0,9H14V4H28ZM12,4v7H4V4ZM4,28V13H28.0007l.0013,15Z"
Derick Montaguead2ceb62020-04-24 18:11:04 -050039 />
40 </svg>
41
Derick Montague58a7a032020-09-21 12:21:48 -050042 appNavigation.overview
43
Derick Montaguead2ceb62020-04-24 18:11:04 -050044 </a>
45 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -050046 <li
47 class="nav-item"
48 >
49 <button
Derick Montague828dda92021-06-28 15:52:22 -050050 aria-controls="logs"
51 aria-expanded="false"
52 class="btn btn-link collapsed"
53 data-test-id="nav-button-logs"
54 type="button"
55 >
56 <svg
57 aria-hidden="true"
58 fill="currentColor"
59 focusable="false"
60 height="16"
61 preserveAspectRatio="xMidYMid meet"
62 viewBox="0 0 32 32"
63 width="16"
64 xmlns="http://www.w3.org/2000/svg"
65 >
66 <path
67 d="M8 10H16V12H8zM8 6H20V8H8zM8 2H20V4H8z"
68 />
69 <path
70 d="M4.7111,28l5.6312-9.9961,7.4341,6.49A2,2,0,0,0,20.86,23.96l6.9707-10.4034-1.6622-1.1132-7,10.4472-.07.1035-7.4345-6.4907a2.0032,2.0032,0,0,0-3.0806.5308L4,25.1826V2H2V28a2.0023,2.0023,0,0,0,2,2H30V28Z"
71 />
72 </svg>
73
74 appNavigation.logs
75
76 <svg
77 aria-hidden="true"
78 class="icon-expand"
79 fill="currentColor"
80 focusable="false"
81 height="16"
82 preserveAspectRatio="xMidYMid meet"
83 viewBox="0 0 16 16"
84 width="16"
85 xmlns="http://www.w3.org/2000/svg"
86 >
87 <path
88 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
89 />
90 </svg>
91 </button>
92
93 <transition-stub
94 class="nav-item__nav"
95 css="true"
96 enteractiveclass="collapsing"
97 enterclass=""
98 entertoclass="collapse show"
99 leaveactiveclass="collapsing"
100 leaveclass="collapse show"
101 leavetoclass="collapse"
102 >
103 <ul
104 class="collapse"
105 id="logs"
106 style="display: none;"
107 >
108 <li
109 class="nav-item"
110 >
111 <a
112 class="nav-link"
113 data-test-id="nav-item-event-logs"
114 href="#/logs/event-logs"
115 >
116
117 appNavigation.eventLogs
118
119 </a>
Sandeepa Singh7affc522021-07-06 16:29:10 +0530120 <a
121 class="nav-link"
122 data-test-id="nav-item-post-code-logs"
123 href="#/logs/post-code-logs"
124 >
125
126 appNavigation.postCodeLogs
127
128 </a>
Derick Montague828dda92021-06-28 15:52:22 -0500129 </li>
130 </ul>
131 </transition-stub>
132 </li>
133 <li
134 class="nav-item"
135 >
136 <button
Sandeepa Singh7affc522021-07-06 16:29:10 +0530137 aria-controls="hardware-status"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500138 aria-expanded="false"
139 class="btn btn-link collapsed"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530140 data-test-id="nav-button-hardware-status"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500141 type="button"
142 >
143 <svg
144 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500145 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500146 focusable="false"
147 height="16"
148 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500149 viewBox="0 0 32 32"
150 width="16"
151 xmlns="http://www.w3.org/2000/svg"
152 >
153 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500154 d="M23 27.18L20.41 24.59 19 26 23 30 30 23 28.59 21.59 23 27.18z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500155 />
156 <circle
157 cx="11"
158 cy="8"
159 r="1"
160 />
161 <circle
162 cx="11"
163 cy="16"
164 r="1"
165 />
166 <circle
167 cx="11"
168 cy="24"
169 r="1"
170 />
171 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500172 d="M24,3H8A2,2,0,0,0,6,5V27a2,2,0,0,0,2,2h8V27H8V21H26V5A2,2,0,0,0,24,3Zm0,16H8V13H24Zm0-8H8V5H24Z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500173 />
174 </svg>
175
Sandeepa Singh7affc522021-07-06 16:29:10 +0530176 appNavigation.hardwareStatus
Derick Montague58a7a032020-09-21 12:21:48 -0500177
Derick Montaguead2ceb62020-04-24 18:11:04 -0500178 <svg
179 aria-hidden="true"
180 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500181 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500182 focusable="false"
183 height="16"
184 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500185 viewBox="0 0 16 16"
186 width="16"
187 xmlns="http://www.w3.org/2000/svg"
188 >
189 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500190 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500191 />
192 </svg>
193 </button>
194
Derick Montaguef833c7e2020-10-27 08:21:20 -0500195 <transition-stub
196 class="nav-item__nav"
197 css="true"
198 enteractiveclass="collapsing"
199 enterclass=""
200 entertoclass="collapse show"
201 leaveactiveclass="collapsing"
202 leaveclass="collapse show"
203 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500204 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500205 <ul
206 class="collapse"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530207 id="hardware-status"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500208 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500209 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500210 <li
211 class="nav-item"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500212 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500213 <a
214 class="nav-link"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530215 data-test-id="nav-item-inventory"
216 href="#/hardware-status/inventory"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500217 >
218
Sandeepa Singh7affc522021-07-06 16:29:10 +0530219 appNavigation.inventory
Dixsie Wolmers30731f12021-07-22 14:17:07 -0500220
221 </a>
222 <a
223 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530224 data-test-id="nav-item-sensors"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530225 href="#/hardware-status/sensors"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500226 >
227
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530228 appNavigation.sensors
229
Derick Montaguef833c7e2020-10-27 08:21:20 -0500230 </a>
231 </li>
232 </ul>
233 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500234 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500235 <li
236 class="nav-item"
237 >
238 <button
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530239 aria-controls="operations"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500240 aria-expanded="false"
241 class="btn btn-link collapsed"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530242 data-test-id="nav-button-operations"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500243 type="button"
244 >
245 <svg
246 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500247 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500248 focusable="false"
249 height="16"
250 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500251 viewBox="0 0 32 32"
252 width="16"
253 xmlns="http://www.w3.org/2000/svg"
254 >
255 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500256 d="M30 8h-4.1c-.5-2.3-2.5-4-4.9-4s-4.4 1.7-4.9 4H2v2h14.1c.5 2.3 2.5 4 4.9 4s4.4-1.7 4.9-4H30V8zM21 12c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3S22.7 12 21 12zM2 24h4.1c.5 2.3 2.5 4 4.9 4s4.4-1.7 4.9-4H30v-2H15.9c-.5-2.3-2.5-4-4.9-4s-4.4 1.7-4.9 4H2V24zM11 20c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3S9.3 20 11 20z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500257 />
258 </svg>
259
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530260 appNavigation.operations
Derick Montague58a7a032020-09-21 12:21:48 -0500261
Derick Montaguead2ceb62020-04-24 18:11:04 -0500262 <svg
263 aria-hidden="true"
264 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500265 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500266 focusable="false"
267 height="16"
268 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500269 viewBox="0 0 16 16"
270 width="16"
271 xmlns="http://www.w3.org/2000/svg"
272 >
273 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500274 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500275 />
276 </svg>
277 </button>
278
Derick Montaguef833c7e2020-10-27 08:21:20 -0500279 <transition-stub
280 class="nav-item__nav"
281 css="true"
282 enteractiveclass="collapsing"
283 enterclass=""
284 entertoclass="collapse show"
285 leaveactiveclass="collapsing"
286 leaveclass="collapse show"
287 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500288 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500289 <ul
290 class="collapse"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530291 id="operations"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500292 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500293 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500294 <li
295 class="nav-item"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500296 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500297 <a
298 class="nav-link"
Derick Montagueda9f0a62021-02-14 19:21:44 -0600299 data-test-id="nav-item-factory-reset"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530300 href="#/operations/factory-reset"
Derick Montagueda9f0a62021-02-14 19:21:44 -0600301 >
302
303 appNavigation.factoryReset
304
305 </a>
306 <a
307 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530308 data-test-id="nav-item-kvm"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530309 href="#/operations/kvm"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500310 >
311
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530312 appNavigation.kvm
313
Derick Montaguef833c7e2020-10-27 08:21:20 -0500314 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500315 <a
316 class="nav-link"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530317 data-test-id="nav-item-firmware"
318 href="#/operations/firmware"
319 >
320
321 appNavigation.firmware
322
323 </a>
324 <a
325 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530326 data-test-id="nav-item-manage-power-usage"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530327 href="#/operations/manage-power-usage"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500328 >
329
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530330 appNavigation.managePowerUsage
331
Derick Montaguef833c7e2020-10-27 08:21:20 -0500332 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500333 <a
334 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530335 data-test-id="nav-item-reboot-bmc"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530336 href="#/operations/reboot-bmc"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500337 >
338
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530339 appNavigation.rebootBmc
340
Derick Montaguef833c7e2020-10-27 08:21:20 -0500341 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500342 <a
343 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530344 data-test-id="nav-item-serial-over-lan"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530345 href="#/operations/serial-over-lan"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500346 >
347
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530348 appNavigation.serialOverLan
349
Derick Montaguef833c7e2020-10-27 08:21:20 -0500350 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500351 <a
352 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530353 data-test-id="nav-item-server-power-operations"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530354 href="#/operations/server-power-operations"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500355 >
356
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530357 appNavigation.serverPowerOperations
358
Derick Montaguef833c7e2020-10-27 08:21:20 -0500359 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500360 <a
361 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530362 data-test-id="nav-item-virtual-media"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530363 href="#/operations/virtual-media"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500364 >
365
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530366 appNavigation.virtualMedia
367
Derick Montaguef833c7e2020-10-27 08:21:20 -0500368 </a>
369 </li>
370 </ul>
371 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500372 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500373 <li
374 class="nav-item"
375 >
376 <button
Sandeepa Singhf67f7692021-07-19 18:04:18 +0530377 aria-controls="settings"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500378 aria-expanded="false"
379 class="btn btn-link collapsed"
Sandeepa Singhf67f7692021-07-19 18:04:18 +0530380 data-test-id="nav-button-settings"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500381 type="button"
382 >
383 <svg
384 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500385 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500386 focusable="false"
387 height="16"
388 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500389 viewBox="0 0 16 16"
390 width="16"
391 xmlns="http://www.w3.org/2000/svg"
392 >
393 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500394 d="M13.5,8.4c0-0.1,0-0.3,0-0.4c0-0.1,0-0.3,0-0.4l1-0.8c0.4-0.3,0.4-0.9,0.2-1.3l-1.2-2C13.3,3.2,13,3,12.6,3 c-0.1,0-0.2,0-0.3,0.1l-1.2,0.4c-0.2-0.1-0.4-0.3-0.7-0.4l-0.3-1.3C10.1,1.3,9.7,1,9.2,1H6.8c-0.5,0-0.9,0.3-1,0.8L5.6,3.1 C5.3,3.2,5.1,3.3,4.9,3.4L3.7,3C3.6,3,3.5,3,3.4,3C3,3,2.7,3.2,2.5,3.5l-1.2,2C1.1,5.9,1.2,6.4,1.6,6.8l0.9,0.9c0,0.1,0,0.3,0,0.4 c0,0.1,0,0.3,0,0.4L1.6,9.2c-0.4,0.3-0.5,0.9-0.2,1.3l1.2,2C2.7,12.8,3,13,3.4,13c0.1,0,0.2,0,0.3-0.1l1.2-0.4 c0.2,0.1,0.4,0.3,0.7,0.4l0.3,1.3c0.1,0.5,0.5,0.8,1,0.8h2.4c0.5,0,0.9-0.3,1-0.8l0.3-1.3c0.2-0.1,0.4-0.2,0.7-0.4l1.2,0.4 c0.1,0,0.2,0.1,0.3,0.1c0.4,0,0.7-0.2,0.9-0.5l1.1-2c0.2-0.4,0.2-0.9-0.2-1.3L13.5,8.4z M12.6,12l-1.7-0.6c-0.4,0.3-0.9,0.6-1.4,0.8 L9.2,14H6.8l-0.4-1.8c-0.5-0.2-0.9-0.5-1.4-0.8L3.4,12l-1.2-2l1.4-1.2c-0.1-0.5-0.1-1.1,0-1.6L2.2,6l1.2-2l1.7,0.6 C5.5,4.2,6,4,6.5,3.8L6.8,2h2.4l0.4,1.8c0.5,0.2,0.9,0.5,1.4,0.8L12.6,4l1.2,2l-1.4,1.2c0.1,0.5,0.1,1.1,0,1.6l1.4,1.2L12.6,12z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500395 />
396 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500397 d="M8,11c-1.7,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3C11,9.6,9.7,11,8,11C8,11,8,11,8,11z M8,6C6.9,6,6,6.8,6,7.9C6,7.9,6,8,6,8 c0,1.1,0.8,2,1.9,2c0,0,0.1,0,0.1,0c1.1,0,2-0.8,2-1.9c0,0,0-0.1,0-0.1C10,6.9,9.2,6,8,6C8.1,6,8,6,8,6z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500398 />
399 </svg>
400
Sandeepa Singhf67f7692021-07-19 18:04:18 +0530401 appNavigation.settings
Derick Montague58a7a032020-09-21 12:21:48 -0500402
Derick Montaguead2ceb62020-04-24 18:11:04 -0500403 <svg
404 aria-hidden="true"
405 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500406 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500407 focusable="false"
408 height="16"
409 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500410 viewBox="0 0 16 16"
411 width="16"
412 xmlns="http://www.w3.org/2000/svg"
413 >
414 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500415 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500416 />
417 </svg>
418 </button>
419
Derick Montaguef833c7e2020-10-27 08:21:20 -0500420 <transition-stub
421 class="nav-item__nav"
422 css="true"
423 enteractiveclass="collapsing"
424 enterclass=""
425 entertoclass="collapse show"
426 leaveactiveclass="collapsing"
427 leaveclass="collapse show"
428 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500429 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500430 <ul
431 class="collapse"
Sandeepa Singhf67f7692021-07-19 18:04:18 +0530432 id="settings"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500433 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500434 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500435 <li
436 class="nav-item"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500437 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500438 <a
439 class="nav-link"
Sandeepa Singhf67f7692021-07-19 18:04:18 +0530440 data-test-id="nav-item-date-time"
441 href="#/settings/date-time"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500442 >
443
Sandeepa Singhf67f7692021-07-19 18:04:18 +0530444 appNavigation.dateTime
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530445
Derick Montaguef833c7e2020-10-27 08:21:20 -0500446 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500447 <a
448 class="nav-link"
Sandeepa Singhf67f7692021-07-19 18:04:18 +0530449 data-test-id="nav-item-network"
450 href="#/settings/network"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500451 >
452
Sandeepa Singhf67f7692021-07-19 18:04:18 +0530453 appNavigation.network
454
455 </a>
456 <a
457 class="nav-link"
458 data-test-id="nav-item-power-restore-policy"
459 href="#/settings/power-restore-policy"
460 >
461
462 appNavigation.powerRestorePolicy
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530463
Derick Montaguef833c7e2020-10-27 08:21:20 -0500464 </a>
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +0530465 <a
466 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530467 data-test-id="nav-item-security-settings"
Sandeepa Singhf67f7692021-07-19 18:04:18 +0530468 href="#/settings/security-settings"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +0530469 >
470
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530471 appNavigation.securitySettings
472
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +0530473 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500474 </li>
475 </ul>
476 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500477 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500478 <li
479 class="nav-item"
480 >
481 <button
Derick Montague58a7a032020-09-21 12:21:48 -0500482 aria-controls="access-control"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500483 aria-expanded="false"
484 class="btn btn-link collapsed"
Derick Montague58a7a032020-09-21 12:21:48 -0500485 data-test-id="nav-button-access-control"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500486 type="button"
487 >
488 <svg
489 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500490 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500491 focusable="false"
492 height="16"
493 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500494 viewBox="0 0 32 32"
495 width="16"
496 xmlns="http://www.w3.org/2000/svg"
497 >
498 <path
Dixsie1915d8c2021-03-25 15:44:02 -0500499 d="M21,2a8.9977,8.9977,0,0,0-8.6119,11.6118L2,24v6H8L18.3881,19.6118A9,9,0,1,0,21,2Zm0,16a7.0125,7.0125,0,0,1-2.0322-.3022L17.821,17.35l-.8472.8472-3.1811,3.1812L12.4141,20,11,21.4141l1.3787,1.3786-1.5859,1.586L9.4141,23,8,24.4141l1.3787,1.3786L7.1716,28H4V24.8284l9.8023-9.8023.8472-.8474-.3473-1.1467A7,7,0,1,1,21,18Z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500500 />
501 <circle
502 cx="22"
503 cy="10"
504 r="2"
505 />
506 </svg>
507
Derick Montaguef833c7e2020-10-27 08:21:20 -0500508 appNavigation.accessControl
Derick Montague58a7a032020-09-21 12:21:48 -0500509
Derick Montaguead2ceb62020-04-24 18:11:04 -0500510 <svg
511 aria-hidden="true"
512 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500513 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500514 focusable="false"
515 height="16"
516 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500517 viewBox="0 0 16 16"
518 width="16"
519 xmlns="http://www.w3.org/2000/svg"
520 >
521 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500522 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500523 />
524 </svg>
525 </button>
526
Derick Montaguef833c7e2020-10-27 08:21:20 -0500527 <transition-stub
528 class="nav-item__nav"
529 css="true"
530 enteractiveclass="collapsing"
531 enterclass=""
532 entertoclass="collapse show"
533 leaveactiveclass="collapsing"
534 leaveclass="collapse show"
535 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500536 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500537 <ul
538 class="collapse"
539 id="access-control"
540 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500541 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500542 <li
543 class="nav-item"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +0530544 >
545 <a
546 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530547 data-test-id="nav-item-client-sessions"
548 href="#/access-control/client-sessions"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +0530549 >
550
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530551 appNavigation.clientSessions
552
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +0530553 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500554 <a
555 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530556 data-test-id="nav-item-ldap"
557 href="#/access-control/ldap"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500558 >
559
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530560 appNavigation.ldap
561
Derick Montaguef833c7e2020-10-27 08:21:20 -0500562 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500563 <a
564 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530565 data-test-id="nav-item-local-user-management"
566 href="#/access-control/local-user-management"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500567 >
568
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530569 appNavigation.localUserManagement
570
Derick Montaguef833c7e2020-10-27 08:21:20 -0500571 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500572 <a
573 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530574 data-test-id="nav-item-ssl-certificates"
575 href="#/access-control/ssl-certificates"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500576 >
577
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530578 appNavigation.sslCertificates
579
Derick Montaguef833c7e2020-10-27 08:21:20 -0500580 </a>
581 </li>
582 </ul>
583 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500584 </li>
585 </ul>
586 </nav>
587 </div>
588
Derick Montaguef833c7e2020-10-27 08:21:20 -0500589 <transition-stub
590 name="fade"
591 >
592 <!---->
593 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500594</div>
595`;
596
597exports[`AppNavigation.vue should render with nav-container open 1`] = `
598<div>
599 <div
600 class="nav-container"
601 >
602 <nav
603 aria-label="appNavigation.primaryNavigation"
604 >
605 <ul
Derick Montague58a7a032020-09-21 12:21:48 -0500606 class="nav mb-4 flex-column"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500607 >
608 <li
609 class="nav-item"
Derick Montague58a7a032020-09-21 12:21:48 -0500610 data-test-id="nav-item-overview"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500611 >
612 <a
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530613 aria-current="page"
614 class="nav-link router-link-exact-active router-link-active"
Dixsie1915d8c2021-03-25 15:44:02 -0500615 href="#/"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500616 target="_self"
617 >
618 <svg
619 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500620 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500621 focusable="false"
622 height="16"
623 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500624 viewBox="0 0 32 32"
625 width="16"
626 xmlns="http://www.w3.org/2000/svg"
627 >
628 <path
Derick Montague828dda92021-06-28 15:52:22 -0500629 d="M24 21H26V26H24zM20 16H22V26H20zM11 26a5.0059 5.0059 0 01-5-5H8a3 3 0 103-3V16a5 5 0 010 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500630 />
631 <path
Derick Montague828dda92021-06-28 15:52:22 -0500632 d="M28,2H4A2.002,2.002,0,0,0,2,4V28a2.0023,2.0023,0,0,0,2,2H28a2.0027,2.0027,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2Zm0,9H14V4H28ZM12,4v7H4V4ZM4,28V13H28.0007l.0013,15Z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500633 />
634 </svg>
635
Derick Montague58a7a032020-09-21 12:21:48 -0500636 appNavigation.overview
637
Derick Montaguead2ceb62020-04-24 18:11:04 -0500638 </a>
639 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500640 <li
641 class="nav-item"
642 >
643 <button
Derick Montague828dda92021-06-28 15:52:22 -0500644 aria-controls="logs"
645 aria-expanded="false"
646 class="btn btn-link collapsed"
647 data-test-id="nav-button-logs"
648 type="button"
649 >
650 <svg
651 aria-hidden="true"
652 fill="currentColor"
653 focusable="false"
654 height="16"
655 preserveAspectRatio="xMidYMid meet"
656 viewBox="0 0 32 32"
657 width="16"
658 xmlns="http://www.w3.org/2000/svg"
659 >
660 <path
661 d="M8 10H16V12H8zM8 6H20V8H8zM8 2H20V4H8z"
662 />
663 <path
664 d="M4.7111,28l5.6312-9.9961,7.4341,6.49A2,2,0,0,0,20.86,23.96l6.9707-10.4034-1.6622-1.1132-7,10.4472-.07.1035-7.4345-6.4907a2.0032,2.0032,0,0,0-3.0806.5308L4,25.1826V2H2V28a2.0023,2.0023,0,0,0,2,2H30V28Z"
665 />
666 </svg>
667
668 appNavigation.logs
669
670 <svg
671 aria-hidden="true"
672 class="icon-expand"
673 fill="currentColor"
674 focusable="false"
675 height="16"
676 preserveAspectRatio="xMidYMid meet"
677 viewBox="0 0 16 16"
678 width="16"
679 xmlns="http://www.w3.org/2000/svg"
680 >
681 <path
682 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
683 />
684 </svg>
685 </button>
686
687 <transition-stub
688 class="nav-item__nav"
689 css="true"
690 enteractiveclass="collapsing"
691 enterclass=""
692 entertoclass="collapse show"
693 leaveactiveclass="collapsing"
694 leaveclass="collapse show"
695 leavetoclass="collapse"
696 >
697 <ul
698 class="collapse"
699 id="logs"
700 style="display: none;"
701 >
702 <li
703 class="nav-item"
704 >
705 <a
706 class="nav-link"
707 data-test-id="nav-item-event-logs"
708 href="#/logs/event-logs"
709 >
710
711 appNavigation.eventLogs
712
713 </a>
Sandeepa Singh7affc522021-07-06 16:29:10 +0530714 <a
715 class="nav-link"
716 data-test-id="nav-item-post-code-logs"
717 href="#/logs/post-code-logs"
718 >
719
720 appNavigation.postCodeLogs
721
722 </a>
Derick Montague828dda92021-06-28 15:52:22 -0500723 </li>
724 </ul>
725 </transition-stub>
726 </li>
727 <li
728 class="nav-item"
729 >
730 <button
Sandeepa Singh7affc522021-07-06 16:29:10 +0530731 aria-controls="hardware-status"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500732 aria-expanded="false"
733 class="btn btn-link collapsed"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530734 data-test-id="nav-button-hardware-status"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500735 type="button"
736 >
737 <svg
738 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500739 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500740 focusable="false"
741 height="16"
742 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500743 viewBox="0 0 32 32"
744 width="16"
745 xmlns="http://www.w3.org/2000/svg"
746 >
747 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500748 d="M23 27.18L20.41 24.59 19 26 23 30 30 23 28.59 21.59 23 27.18z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500749 />
750 <circle
751 cx="11"
752 cy="8"
753 r="1"
754 />
755 <circle
756 cx="11"
757 cy="16"
758 r="1"
759 />
760 <circle
761 cx="11"
762 cy="24"
763 r="1"
764 />
765 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500766 d="M24,3H8A2,2,0,0,0,6,5V27a2,2,0,0,0,2,2h8V27H8V21H26V5A2,2,0,0,0,24,3Zm0,16H8V13H24Zm0-8H8V5H24Z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500767 />
768 </svg>
769
Sandeepa Singh7affc522021-07-06 16:29:10 +0530770 appNavigation.hardwareStatus
Derick Montague58a7a032020-09-21 12:21:48 -0500771
Derick Montaguead2ceb62020-04-24 18:11:04 -0500772 <svg
773 aria-hidden="true"
774 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500775 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500776 focusable="false"
777 height="16"
778 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500779 viewBox="0 0 16 16"
780 width="16"
781 xmlns="http://www.w3.org/2000/svg"
782 >
783 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500784 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500785 />
786 </svg>
787 </button>
788
Derick Montaguef833c7e2020-10-27 08:21:20 -0500789 <transition-stub
790 class="nav-item__nav"
791 css="true"
792 enteractiveclass="collapsing"
793 enterclass=""
794 entertoclass="collapse show"
795 leaveactiveclass="collapsing"
796 leaveclass="collapse show"
797 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500798 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500799 <ul
800 class="collapse"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530801 id="hardware-status"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500802 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500803 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500804 <li
805 class="nav-item"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500806 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500807 <a
808 class="nav-link"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530809 data-test-id="nav-item-inventory"
810 href="#/hardware-status/inventory"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500811 >
812
Sandeepa Singh7affc522021-07-06 16:29:10 +0530813 appNavigation.inventory
Dixsie Wolmers30731f12021-07-22 14:17:07 -0500814
815 </a>
816 <a
817 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530818 data-test-id="nav-item-sensors"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530819 href="#/hardware-status/sensors"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500820 >
821
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530822 appNavigation.sensors
823
Derick Montaguef833c7e2020-10-27 08:21:20 -0500824 </a>
825 </li>
826 </ul>
827 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500828 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500829 <li
830 class="nav-item"
831 >
832 <button
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530833 aria-controls="operations"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500834 aria-expanded="false"
835 class="btn btn-link collapsed"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530836 data-test-id="nav-button-operations"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500837 type="button"
838 >
839 <svg
840 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500841 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500842 focusable="false"
843 height="16"
844 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500845 viewBox="0 0 32 32"
846 width="16"
847 xmlns="http://www.w3.org/2000/svg"
848 >
849 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500850 d="M30 8h-4.1c-.5-2.3-2.5-4-4.9-4s-4.4 1.7-4.9 4H2v2h14.1c.5 2.3 2.5 4 4.9 4s4.4-1.7 4.9-4H30V8zM21 12c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3S22.7 12 21 12zM2 24h4.1c.5 2.3 2.5 4 4.9 4s4.4-1.7 4.9-4H30v-2H15.9c-.5-2.3-2.5-4-4.9-4s-4.4 1.7-4.9 4H2V24zM11 20c1.7 0 3 1.3 3 3s-1.3 3-3 3-3-1.3-3-3S9.3 20 11 20z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500851 />
852 </svg>
853
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530854 appNavigation.operations
Derick Montague58a7a032020-09-21 12:21:48 -0500855
Derick Montaguead2ceb62020-04-24 18:11:04 -0500856 <svg
857 aria-hidden="true"
858 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500859 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500860 focusable="false"
861 height="16"
862 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500863 viewBox="0 0 16 16"
864 width="16"
865 xmlns="http://www.w3.org/2000/svg"
866 >
867 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500868 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500869 />
870 </svg>
871 </button>
872
Derick Montaguef833c7e2020-10-27 08:21:20 -0500873 <transition-stub
874 class="nav-item__nav"
875 css="true"
876 enteractiveclass="collapsing"
877 enterclass=""
878 entertoclass="collapse show"
879 leaveactiveclass="collapsing"
880 leaveclass="collapse show"
881 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500882 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500883 <ul
884 class="collapse"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530885 id="operations"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500886 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500887 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500888 <li
889 class="nav-item"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500890 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500891 <a
892 class="nav-link"
Derick Montagueda9f0a62021-02-14 19:21:44 -0600893 data-test-id="nav-item-factory-reset"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530894 href="#/operations/factory-reset"
Derick Montagueda9f0a62021-02-14 19:21:44 -0600895 >
896
897 appNavigation.factoryReset
898
899 </a>
900 <a
901 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530902 data-test-id="nav-item-kvm"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530903 href="#/operations/kvm"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500904 >
905
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530906 appNavigation.kvm
907
Derick Montaguef833c7e2020-10-27 08:21:20 -0500908 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500909 <a
910 class="nav-link"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530911 data-test-id="nav-item-firmware"
912 href="#/operations/firmware"
913 >
914
915 appNavigation.firmware
916
917 </a>
918 <a
919 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530920 data-test-id="nav-item-manage-power-usage"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530921 href="#/operations/manage-power-usage"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500922 >
923
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530924 appNavigation.managePowerUsage
925
Derick Montaguef833c7e2020-10-27 08:21:20 -0500926 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500927 <a
928 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530929 data-test-id="nav-item-reboot-bmc"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530930 href="#/operations/reboot-bmc"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500931 >
932
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530933 appNavigation.rebootBmc
934
Derick Montaguef833c7e2020-10-27 08:21:20 -0500935 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500936 <a
937 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530938 data-test-id="nav-item-serial-over-lan"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530939 href="#/operations/serial-over-lan"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500940 >
941
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530942 appNavigation.serialOverLan
943
Derick Montaguef833c7e2020-10-27 08:21:20 -0500944 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500945 <a
946 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530947 data-test-id="nav-item-server-power-operations"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530948 href="#/operations/server-power-operations"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500949 >
950
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530951 appNavigation.serverPowerOperations
952
Derick Montaguef833c7e2020-10-27 08:21:20 -0500953 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500954 <a
955 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530956 data-test-id="nav-item-virtual-media"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530957 href="#/operations/virtual-media"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500958 >
959
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530960 appNavigation.virtualMedia
961
Derick Montaguef833c7e2020-10-27 08:21:20 -0500962 </a>
963 </li>
964 </ul>
965 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500966 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500967 <li
968 class="nav-item"
969 >
970 <button
Sandeepa Singhf67f7692021-07-19 18:04:18 +0530971 aria-controls="settings"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500972 aria-expanded="false"
973 class="btn btn-link collapsed"
Sandeepa Singhf67f7692021-07-19 18:04:18 +0530974 data-test-id="nav-button-settings"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500975 type="button"
976 >
977 <svg
978 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500979 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500980 focusable="false"
981 height="16"
982 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500983 viewBox="0 0 16 16"
984 width="16"
985 xmlns="http://www.w3.org/2000/svg"
986 >
987 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500988 d="M13.5,8.4c0-0.1,0-0.3,0-0.4c0-0.1,0-0.3,0-0.4l1-0.8c0.4-0.3,0.4-0.9,0.2-1.3l-1.2-2C13.3,3.2,13,3,12.6,3 c-0.1,0-0.2,0-0.3,0.1l-1.2,0.4c-0.2-0.1-0.4-0.3-0.7-0.4l-0.3-1.3C10.1,1.3,9.7,1,9.2,1H6.8c-0.5,0-0.9,0.3-1,0.8L5.6,3.1 C5.3,3.2,5.1,3.3,4.9,3.4L3.7,3C3.6,3,3.5,3,3.4,3C3,3,2.7,3.2,2.5,3.5l-1.2,2C1.1,5.9,1.2,6.4,1.6,6.8l0.9,0.9c0,0.1,0,0.3,0,0.4 c0,0.1,0,0.3,0,0.4L1.6,9.2c-0.4,0.3-0.5,0.9-0.2,1.3l1.2,2C2.7,12.8,3,13,3.4,13c0.1,0,0.2,0,0.3-0.1l1.2-0.4 c0.2,0.1,0.4,0.3,0.7,0.4l0.3,1.3c0.1,0.5,0.5,0.8,1,0.8h2.4c0.5,0,0.9-0.3,1-0.8l0.3-1.3c0.2-0.1,0.4-0.2,0.7-0.4l1.2,0.4 c0.1,0,0.2,0.1,0.3,0.1c0.4,0,0.7-0.2,0.9-0.5l1.1-2c0.2-0.4,0.2-0.9-0.2-1.3L13.5,8.4z M12.6,12l-1.7-0.6c-0.4,0.3-0.9,0.6-1.4,0.8 L9.2,14H6.8l-0.4-1.8c-0.5-0.2-0.9-0.5-1.4-0.8L3.4,12l-1.2-2l1.4-1.2c-0.1-0.5-0.1-1.1,0-1.6L2.2,6l1.2-2l1.7,0.6 C5.5,4.2,6,4,6.5,3.8L6.8,2h2.4l0.4,1.8c0.5,0.2,0.9,0.5,1.4,0.8L12.6,4l1.2,2l-1.4,1.2c0.1,0.5,0.1,1.1,0,1.6l1.4,1.2L12.6,12z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500989 />
990 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500991 d="M8,11c-1.7,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3C11,9.6,9.7,11,8,11C8,11,8,11,8,11z M8,6C6.9,6,6,6.8,6,7.9C6,7.9,6,8,6,8 c0,1.1,0.8,2,1.9,2c0,0,0.1,0,0.1,0c1.1,0,2-0.8,2-1.9c0,0,0-0.1,0-0.1C10,6.9,9.2,6,8,6C8.1,6,8,6,8,6z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500992 />
993 </svg>
994
Sandeepa Singhf67f7692021-07-19 18:04:18 +0530995 appNavigation.settings
Derick Montague58a7a032020-09-21 12:21:48 -0500996
Derick Montaguead2ceb62020-04-24 18:11:04 -0500997 <svg
998 aria-hidden="true"
999 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001000 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001001 focusable="false"
1002 height="16"
1003 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001004 viewBox="0 0 16 16"
1005 width="16"
1006 xmlns="http://www.w3.org/2000/svg"
1007 >
1008 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -05001009 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001010 />
1011 </svg>
1012 </button>
1013
Derick Montaguef833c7e2020-10-27 08:21:20 -05001014 <transition-stub
1015 class="nav-item__nav"
1016 css="true"
1017 enteractiveclass="collapsing"
1018 enterclass=""
1019 entertoclass="collapse show"
1020 leaveactiveclass="collapsing"
1021 leaveclass="collapse show"
1022 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001023 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001024 <ul
1025 class="collapse"
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301026 id="settings"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001027 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001028 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001029 <li
1030 class="nav-item"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001031 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001032 <a
1033 class="nav-link"
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301034 data-test-id="nav-item-date-time"
1035 href="#/settings/date-time"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001036 >
1037
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301038 appNavigation.dateTime
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301039
Derick Montaguef833c7e2020-10-27 08:21:20 -05001040 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001041 <a
1042 class="nav-link"
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301043 data-test-id="nav-item-network"
1044 href="#/settings/network"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001045 >
1046
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301047 appNavigation.network
1048
1049 </a>
1050 <a
1051 class="nav-link"
1052 data-test-id="nav-item-power-restore-policy"
1053 href="#/settings/power-restore-policy"
1054 >
1055
1056 appNavigation.powerRestorePolicy
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301057
Derick Montaguef833c7e2020-10-27 08:21:20 -05001058 </a>
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +05301059 <a
1060 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301061 data-test-id="nav-item-security-settings"
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301062 href="#/settings/security-settings"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +05301063 >
1064
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301065 appNavigation.securitySettings
1066
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +05301067 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001068 </li>
1069 </ul>
1070 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001071 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001072 <li
1073 class="nav-item"
1074 >
1075 <button
Derick Montague58a7a032020-09-21 12:21:48 -05001076 aria-controls="access-control"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001077 aria-expanded="false"
1078 class="btn btn-link collapsed"
Derick Montague58a7a032020-09-21 12:21:48 -05001079 data-test-id="nav-button-access-control"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001080 type="button"
1081 >
1082 <svg
1083 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001084 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001085 focusable="false"
1086 height="16"
1087 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001088 viewBox="0 0 32 32"
1089 width="16"
1090 xmlns="http://www.w3.org/2000/svg"
1091 >
1092 <path
Dixsie1915d8c2021-03-25 15:44:02 -05001093 d="M21,2a8.9977,8.9977,0,0,0-8.6119,11.6118L2,24v6H8L18.3881,19.6118A9,9,0,1,0,21,2Zm0,16a7.0125,7.0125,0,0,1-2.0322-.3022L17.821,17.35l-.8472.8472-3.1811,3.1812L12.4141,20,11,21.4141l1.3787,1.3786-1.5859,1.586L9.4141,23,8,24.4141l1.3787,1.3786L7.1716,28H4V24.8284l9.8023-9.8023.8472-.8474-.3473-1.1467A7,7,0,1,1,21,18Z"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001094 />
1095 <circle
1096 cx="22"
1097 cy="10"
1098 r="2"
1099 />
1100 </svg>
1101
Derick Montaguef833c7e2020-10-27 08:21:20 -05001102 appNavigation.accessControl
Derick Montague58a7a032020-09-21 12:21:48 -05001103
Derick Montaguead2ceb62020-04-24 18:11:04 -05001104 <svg
1105 aria-hidden="true"
1106 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001107 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001108 focusable="false"
1109 height="16"
1110 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001111 viewBox="0 0 16 16"
1112 width="16"
1113 xmlns="http://www.w3.org/2000/svg"
1114 >
1115 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -05001116 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001117 />
1118 </svg>
1119 </button>
1120
Derick Montaguef833c7e2020-10-27 08:21:20 -05001121 <transition-stub
1122 class="nav-item__nav"
1123 css="true"
1124 enteractiveclass="collapsing"
1125 enterclass=""
1126 entertoclass="collapse show"
1127 leaveactiveclass="collapsing"
1128 leaveclass="collapse show"
1129 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001130 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001131 <ul
1132 class="collapse"
1133 id="access-control"
1134 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001135 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001136 <li
1137 class="nav-item"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +05301138 >
1139 <a
1140 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301141 data-test-id="nav-item-client-sessions"
1142 href="#/access-control/client-sessions"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +05301143 >
1144
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301145 appNavigation.clientSessions
1146
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +05301147 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001148 <a
1149 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301150 data-test-id="nav-item-ldap"
1151 href="#/access-control/ldap"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001152 >
1153
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301154 appNavigation.ldap
1155
Derick Montaguef833c7e2020-10-27 08:21:20 -05001156 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001157 <a
1158 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301159 data-test-id="nav-item-local-user-management"
1160 href="#/access-control/local-user-management"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001161 >
1162
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301163 appNavigation.localUserManagement
1164
Derick Montaguef833c7e2020-10-27 08:21:20 -05001165 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001166 <a
1167 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301168 data-test-id="nav-item-ssl-certificates"
1169 href="#/access-control/ssl-certificates"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001170 >
1171
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301172 appNavigation.sslCertificates
1173
Derick Montaguef833c7e2020-10-27 08:21:20 -05001174 </a>
1175 </li>
1176 </ul>
1177 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001178 </li>
1179 </ul>
1180 </nav>
1181 </div>
1182
Derick Montaguef833c7e2020-10-27 08:21:20 -05001183 <transition-stub
1184 name="fade"
1185 >
1186 <!---->
1187 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001188</div>
1189`;