blob: d87d44ed4c94c6b12da656e6201db0546cc1cc0f [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>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500465 </li>
466 </ul>
467 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500468 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500469 <li
470 class="nav-item"
471 >
472 <button
Sandeepa Singhb4406162021-07-26 15:05:39 +0530473 aria-controls="security-and-access"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500474 aria-expanded="false"
475 class="btn btn-link collapsed"
Sandeepa Singhb4406162021-07-26 15:05:39 +0530476 data-test-id="nav-button-security-and-access"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500477 type="button"
478 >
479 <svg
480 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500481 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500482 focusable="false"
483 height="16"
484 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500485 viewBox="0 0 32 32"
486 width="16"
487 xmlns="http://www.w3.org/2000/svg"
488 >
489 <path
Sandeepa Singhb4406162021-07-26 15:05:39 +0530490 d="M14 16.59L11.41 14 10 15.41 14 19.41 22 11.41 20.59 10 14 16.59z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500491 />
Sandeepa Singhb4406162021-07-26 15:05:39 +0530492 <path
493 d="M16,30,9.8242,26.7071A10.9818,10.9818,0,0,1,4,17V4A2.0021,2.0021,0,0,1,6,2H26a2.0021,2.0021,0,0,1,2,2V17a10.9818,10.9818,0,0,1-5.8242,9.7071ZM6,4V17a8.9852,8.9852,0,0,0,4.7656,7.9423L16,27.7333l5.2344-2.791A8.9852,8.9852,0,0,0,26,17V4Z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500494 />
495 </svg>
496
Sandeepa Singhb4406162021-07-26 15:05:39 +0530497 appNavigation.securityAndAccess
Derick Montague58a7a032020-09-21 12:21:48 -0500498
Derick Montaguead2ceb62020-04-24 18:11:04 -0500499 <svg
500 aria-hidden="true"
501 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500502 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500503 focusable="false"
504 height="16"
505 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500506 viewBox="0 0 16 16"
507 width="16"
508 xmlns="http://www.w3.org/2000/svg"
509 >
510 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500511 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500512 />
513 </svg>
514 </button>
515
Derick Montaguef833c7e2020-10-27 08:21:20 -0500516 <transition-stub
517 class="nav-item__nav"
518 css="true"
519 enteractiveclass="collapsing"
520 enterclass=""
521 entertoclass="collapse show"
522 leaveactiveclass="collapsing"
523 leaveclass="collapse show"
524 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500525 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500526 <ul
527 class="collapse"
Sandeepa Singhb4406162021-07-26 15:05:39 +0530528 id="security-and-access"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500529 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500530 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500531 <li
532 class="nav-item"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +0530533 >
534 <a
535 class="nav-link"
Sandeepa Singhb4406162021-07-26 15:05:39 +0530536 data-test-id="nav-item-sessions"
537 href="#/security-and-access/sessions"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +0530538 >
539
Sandeepa Singhb4406162021-07-26 15:05:39 +0530540 appNavigation.sessions
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530541
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +0530542 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500543 <a
544 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530545 data-test-id="nav-item-ldap"
Sandeepa Singhb4406162021-07-26 15:05:39 +0530546 href="#/security-and-access/ldap"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500547 >
548
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530549 appNavigation.ldap
550
Derick Montaguef833c7e2020-10-27 08:21:20 -0500551 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500552 <a
553 class="nav-link"
Sandeepa Singhb4406162021-07-26 15:05:39 +0530554 data-test-id="nav-item-user-management"
555 href="#/security-and-access/user-management"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500556 >
557
Sandeepa Singhb4406162021-07-26 15:05:39 +0530558 appNavigation.userManagement
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530559
Derick Montaguef833c7e2020-10-27 08:21:20 -0500560 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500561 <a
562 class="nav-link"
Sandeepa Singhb4406162021-07-26 15:05:39 +0530563 data-test-id="nav-item-policies"
564 href="#/security-and-access/policies"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500565 >
566
Sandeepa Singhb4406162021-07-26 15:05:39 +0530567 appNavigation.policies
568
569 </a>
570 <a
571 class="nav-link"
572 data-test-id="nav-item-certificates"
573 href="#/security-and-access/certificates"
574 >
575
576 appNavigation.certificates
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530577
Derick Montaguef833c7e2020-10-27 08:21:20 -0500578 </a>
579 </li>
580 </ul>
581 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500582 </li>
583 </ul>
584 </nav>
585 </div>
586
Derick Montaguef833c7e2020-10-27 08:21:20 -0500587 <transition-stub
588 name="fade"
589 >
590 <!---->
591 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500592</div>
593`;
594
595exports[`AppNavigation.vue should render with nav-container open 1`] = `
596<div>
597 <div
598 class="nav-container"
599 >
600 <nav
601 aria-label="appNavigation.primaryNavigation"
602 >
603 <ul
Derick Montague58a7a032020-09-21 12:21:48 -0500604 class="nav mb-4 flex-column"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500605 >
606 <li
607 class="nav-item"
Derick Montague58a7a032020-09-21 12:21:48 -0500608 data-test-id="nav-item-overview"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500609 >
610 <a
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530611 aria-current="page"
612 class="nav-link router-link-exact-active router-link-active"
Dixsie1915d8c2021-03-25 15:44:02 -0500613 href="#/"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500614 target="_self"
615 >
616 <svg
617 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500618 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500619 focusable="false"
620 height="16"
621 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500622 viewBox="0 0 32 32"
623 width="16"
624 xmlns="http://www.w3.org/2000/svg"
625 >
626 <path
Derick Montague828dda92021-06-28 15:52:22 -0500627 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 -0500628 />
629 <path
Derick Montague828dda92021-06-28 15:52:22 -0500630 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 -0500631 />
632 </svg>
633
Derick Montague58a7a032020-09-21 12:21:48 -0500634 appNavigation.overview
635
Derick Montaguead2ceb62020-04-24 18:11:04 -0500636 </a>
637 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500638 <li
639 class="nav-item"
640 >
641 <button
Derick Montague828dda92021-06-28 15:52:22 -0500642 aria-controls="logs"
643 aria-expanded="false"
644 class="btn btn-link collapsed"
645 data-test-id="nav-button-logs"
646 type="button"
647 >
648 <svg
649 aria-hidden="true"
650 fill="currentColor"
651 focusable="false"
652 height="16"
653 preserveAspectRatio="xMidYMid meet"
654 viewBox="0 0 32 32"
655 width="16"
656 xmlns="http://www.w3.org/2000/svg"
657 >
658 <path
659 d="M8 10H16V12H8zM8 6H20V8H8zM8 2H20V4H8z"
660 />
661 <path
662 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"
663 />
664 </svg>
665
666 appNavigation.logs
667
668 <svg
669 aria-hidden="true"
670 class="icon-expand"
671 fill="currentColor"
672 focusable="false"
673 height="16"
674 preserveAspectRatio="xMidYMid meet"
675 viewBox="0 0 16 16"
676 width="16"
677 xmlns="http://www.w3.org/2000/svg"
678 >
679 <path
680 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
681 />
682 </svg>
683 </button>
684
685 <transition-stub
686 class="nav-item__nav"
687 css="true"
688 enteractiveclass="collapsing"
689 enterclass=""
690 entertoclass="collapse show"
691 leaveactiveclass="collapsing"
692 leaveclass="collapse show"
693 leavetoclass="collapse"
694 >
695 <ul
696 class="collapse"
697 id="logs"
698 style="display: none;"
699 >
700 <li
701 class="nav-item"
702 >
703 <a
704 class="nav-link"
705 data-test-id="nav-item-event-logs"
706 href="#/logs/event-logs"
707 >
708
709 appNavigation.eventLogs
710
711 </a>
Sandeepa Singh7affc522021-07-06 16:29:10 +0530712 <a
713 class="nav-link"
714 data-test-id="nav-item-post-code-logs"
715 href="#/logs/post-code-logs"
716 >
717
718 appNavigation.postCodeLogs
719
720 </a>
Derick Montague828dda92021-06-28 15:52:22 -0500721 </li>
722 </ul>
723 </transition-stub>
724 </li>
725 <li
726 class="nav-item"
727 >
728 <button
Sandeepa Singh7affc522021-07-06 16:29:10 +0530729 aria-controls="hardware-status"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500730 aria-expanded="false"
731 class="btn btn-link collapsed"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530732 data-test-id="nav-button-hardware-status"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500733 type="button"
734 >
735 <svg
736 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500737 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500738 focusable="false"
739 height="16"
740 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500741 viewBox="0 0 32 32"
742 width="16"
743 xmlns="http://www.w3.org/2000/svg"
744 >
745 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500746 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 -0500747 />
748 <circle
749 cx="11"
750 cy="8"
751 r="1"
752 />
753 <circle
754 cx="11"
755 cy="16"
756 r="1"
757 />
758 <circle
759 cx="11"
760 cy="24"
761 r="1"
762 />
763 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500764 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 -0500765 />
766 </svg>
767
Sandeepa Singh7affc522021-07-06 16:29:10 +0530768 appNavigation.hardwareStatus
Derick Montague58a7a032020-09-21 12:21:48 -0500769
Derick Montaguead2ceb62020-04-24 18:11:04 -0500770 <svg
771 aria-hidden="true"
772 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500773 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500774 focusable="false"
775 height="16"
776 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500777 viewBox="0 0 16 16"
778 width="16"
779 xmlns="http://www.w3.org/2000/svg"
780 >
781 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500782 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500783 />
784 </svg>
785 </button>
786
Derick Montaguef833c7e2020-10-27 08:21:20 -0500787 <transition-stub
788 class="nav-item__nav"
789 css="true"
790 enteractiveclass="collapsing"
791 enterclass=""
792 entertoclass="collapse show"
793 leaveactiveclass="collapsing"
794 leaveclass="collapse show"
795 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500796 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500797 <ul
798 class="collapse"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530799 id="hardware-status"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500800 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500801 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500802 <li
803 class="nav-item"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500804 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500805 <a
806 class="nav-link"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530807 data-test-id="nav-item-inventory"
808 href="#/hardware-status/inventory"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500809 >
810
Sandeepa Singh7affc522021-07-06 16:29:10 +0530811 appNavigation.inventory
Dixsie Wolmers30731f12021-07-22 14:17:07 -0500812
813 </a>
814 <a
815 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530816 data-test-id="nav-item-sensors"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530817 href="#/hardware-status/sensors"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500818 >
819
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530820 appNavigation.sensors
821
Derick Montaguef833c7e2020-10-27 08:21:20 -0500822 </a>
823 </li>
824 </ul>
825 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500826 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500827 <li
828 class="nav-item"
829 >
830 <button
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530831 aria-controls="operations"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500832 aria-expanded="false"
833 class="btn btn-link collapsed"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530834 data-test-id="nav-button-operations"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500835 type="button"
836 >
837 <svg
838 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500839 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500840 focusable="false"
841 height="16"
842 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500843 viewBox="0 0 32 32"
844 width="16"
845 xmlns="http://www.w3.org/2000/svg"
846 >
847 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500848 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 -0500849 />
850 </svg>
851
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530852 appNavigation.operations
Derick Montague58a7a032020-09-21 12:21:48 -0500853
Derick Montaguead2ceb62020-04-24 18:11:04 -0500854 <svg
855 aria-hidden="true"
856 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500857 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500858 focusable="false"
859 height="16"
860 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500861 viewBox="0 0 16 16"
862 width="16"
863 xmlns="http://www.w3.org/2000/svg"
864 >
865 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500866 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500867 />
868 </svg>
869 </button>
870
Derick Montaguef833c7e2020-10-27 08:21:20 -0500871 <transition-stub
872 class="nav-item__nav"
873 css="true"
874 enteractiveclass="collapsing"
875 enterclass=""
876 entertoclass="collapse show"
877 leaveactiveclass="collapsing"
878 leaveclass="collapse show"
879 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500880 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500881 <ul
882 class="collapse"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530883 id="operations"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500884 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500885 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500886 <li
887 class="nav-item"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500888 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500889 <a
890 class="nav-link"
Derick Montagueda9f0a62021-02-14 19:21:44 -0600891 data-test-id="nav-item-factory-reset"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530892 href="#/operations/factory-reset"
Derick Montagueda9f0a62021-02-14 19:21:44 -0600893 >
894
895 appNavigation.factoryReset
896
897 </a>
898 <a
899 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530900 data-test-id="nav-item-kvm"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530901 href="#/operations/kvm"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500902 >
903
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530904 appNavigation.kvm
905
Derick Montaguef833c7e2020-10-27 08:21:20 -0500906 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500907 <a
908 class="nav-link"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530909 data-test-id="nav-item-firmware"
910 href="#/operations/firmware"
911 >
912
913 appNavigation.firmware
914
915 </a>
916 <a
917 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530918 data-test-id="nav-item-manage-power-usage"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530919 href="#/operations/manage-power-usage"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500920 >
921
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530922 appNavigation.managePowerUsage
923
Derick Montaguef833c7e2020-10-27 08:21:20 -0500924 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500925 <a
926 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530927 data-test-id="nav-item-reboot-bmc"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530928 href="#/operations/reboot-bmc"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500929 >
930
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530931 appNavigation.rebootBmc
932
Derick Montaguef833c7e2020-10-27 08:21:20 -0500933 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500934 <a
935 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530936 data-test-id="nav-item-serial-over-lan"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530937 href="#/operations/serial-over-lan"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500938 >
939
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530940 appNavigation.serialOverLan
941
Derick Montaguef833c7e2020-10-27 08:21:20 -0500942 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500943 <a
944 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530945 data-test-id="nav-item-server-power-operations"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530946 href="#/operations/server-power-operations"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500947 >
948
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530949 appNavigation.serverPowerOperations
950
Derick Montaguef833c7e2020-10-27 08:21:20 -0500951 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500952 <a
953 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530954 data-test-id="nav-item-virtual-media"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530955 href="#/operations/virtual-media"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500956 >
957
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530958 appNavigation.virtualMedia
959
Derick Montaguef833c7e2020-10-27 08:21:20 -0500960 </a>
961 </li>
962 </ul>
963 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500964 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500965 <li
966 class="nav-item"
967 >
968 <button
Sandeepa Singhf67f7692021-07-19 18:04:18 +0530969 aria-controls="settings"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500970 aria-expanded="false"
971 class="btn btn-link collapsed"
Sandeepa Singhf67f7692021-07-19 18:04:18 +0530972 data-test-id="nav-button-settings"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500973 type="button"
974 >
975 <svg
976 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500977 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500978 focusable="false"
979 height="16"
980 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500981 viewBox="0 0 16 16"
982 width="16"
983 xmlns="http://www.w3.org/2000/svg"
984 >
985 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500986 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 -0500987 />
988 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500989 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 -0500990 />
991 </svg>
992
Sandeepa Singhf67f7692021-07-19 18:04:18 +0530993 appNavigation.settings
Derick Montague58a7a032020-09-21 12:21:48 -0500994
Derick Montaguead2ceb62020-04-24 18:11:04 -0500995 <svg
996 aria-hidden="true"
997 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500998 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500999 focusable="false"
1000 height="16"
1001 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001002 viewBox="0 0 16 16"
1003 width="16"
1004 xmlns="http://www.w3.org/2000/svg"
1005 >
1006 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -05001007 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001008 />
1009 </svg>
1010 </button>
1011
Derick Montaguef833c7e2020-10-27 08:21:20 -05001012 <transition-stub
1013 class="nav-item__nav"
1014 css="true"
1015 enteractiveclass="collapsing"
1016 enterclass=""
1017 entertoclass="collapse show"
1018 leaveactiveclass="collapsing"
1019 leaveclass="collapse show"
1020 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001021 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001022 <ul
1023 class="collapse"
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301024 id="settings"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001025 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001026 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001027 <li
1028 class="nav-item"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001029 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001030 <a
1031 class="nav-link"
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301032 data-test-id="nav-item-date-time"
1033 href="#/settings/date-time"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001034 >
1035
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301036 appNavigation.dateTime
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301037
Derick Montaguef833c7e2020-10-27 08:21:20 -05001038 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001039 <a
1040 class="nav-link"
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301041 data-test-id="nav-item-network"
1042 href="#/settings/network"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001043 >
1044
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301045 appNavigation.network
1046
1047 </a>
1048 <a
1049 class="nav-link"
1050 data-test-id="nav-item-power-restore-policy"
1051 href="#/settings/power-restore-policy"
1052 >
1053
1054 appNavigation.powerRestorePolicy
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301055
Derick Montaguef833c7e2020-10-27 08:21:20 -05001056 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001057 </li>
1058 </ul>
1059 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001060 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001061 <li
1062 class="nav-item"
1063 >
1064 <button
Sandeepa Singhb4406162021-07-26 15:05:39 +05301065 aria-controls="security-and-access"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001066 aria-expanded="false"
1067 class="btn btn-link collapsed"
Sandeepa Singhb4406162021-07-26 15:05:39 +05301068 data-test-id="nav-button-security-and-access"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001069 type="button"
1070 >
1071 <svg
1072 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001073 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001074 focusable="false"
1075 height="16"
1076 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001077 viewBox="0 0 32 32"
1078 width="16"
1079 xmlns="http://www.w3.org/2000/svg"
1080 >
1081 <path
Sandeepa Singhb4406162021-07-26 15:05:39 +05301082 d="M14 16.59L11.41 14 10 15.41 14 19.41 22 11.41 20.59 10 14 16.59z"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001083 />
Sandeepa Singhb4406162021-07-26 15:05:39 +05301084 <path
1085 d="M16,30,9.8242,26.7071A10.9818,10.9818,0,0,1,4,17V4A2.0021,2.0021,0,0,1,6,2H26a2.0021,2.0021,0,0,1,2,2V17a10.9818,10.9818,0,0,1-5.8242,9.7071ZM6,4V17a8.9852,8.9852,0,0,0,4.7656,7.9423L16,27.7333l5.2344-2.791A8.9852,8.9852,0,0,0,26,17V4Z"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001086 />
1087 </svg>
1088
Sandeepa Singhb4406162021-07-26 15:05:39 +05301089 appNavigation.securityAndAccess
Derick Montague58a7a032020-09-21 12:21:48 -05001090
Derick Montaguead2ceb62020-04-24 18:11:04 -05001091 <svg
1092 aria-hidden="true"
1093 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001094 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001095 focusable="false"
1096 height="16"
1097 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001098 viewBox="0 0 16 16"
1099 width="16"
1100 xmlns="http://www.w3.org/2000/svg"
1101 >
1102 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -05001103 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001104 />
1105 </svg>
1106 </button>
1107
Derick Montaguef833c7e2020-10-27 08:21:20 -05001108 <transition-stub
1109 class="nav-item__nav"
1110 css="true"
1111 enteractiveclass="collapsing"
1112 enterclass=""
1113 entertoclass="collapse show"
1114 leaveactiveclass="collapsing"
1115 leaveclass="collapse show"
1116 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001117 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001118 <ul
1119 class="collapse"
Sandeepa Singhb4406162021-07-26 15:05:39 +05301120 id="security-and-access"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001121 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001122 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001123 <li
1124 class="nav-item"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +05301125 >
1126 <a
1127 class="nav-link"
Sandeepa Singhb4406162021-07-26 15:05:39 +05301128 data-test-id="nav-item-sessions"
1129 href="#/security-and-access/sessions"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +05301130 >
1131
Sandeepa Singhb4406162021-07-26 15:05:39 +05301132 appNavigation.sessions
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301133
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +05301134 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001135 <a
1136 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301137 data-test-id="nav-item-ldap"
Sandeepa Singhb4406162021-07-26 15:05:39 +05301138 href="#/security-and-access/ldap"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001139 >
1140
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301141 appNavigation.ldap
1142
Derick Montaguef833c7e2020-10-27 08:21:20 -05001143 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001144 <a
1145 class="nav-link"
Sandeepa Singhb4406162021-07-26 15:05:39 +05301146 data-test-id="nav-item-user-management"
1147 href="#/security-and-access/user-management"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001148 >
1149
Sandeepa Singhb4406162021-07-26 15:05:39 +05301150 appNavigation.userManagement
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301151
Derick Montaguef833c7e2020-10-27 08:21:20 -05001152 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001153 <a
1154 class="nav-link"
Sandeepa Singhb4406162021-07-26 15:05:39 +05301155 data-test-id="nav-item-policies"
1156 href="#/security-and-access/policies"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001157 >
1158
Sandeepa Singhb4406162021-07-26 15:05:39 +05301159 appNavigation.policies
1160
1161 </a>
1162 <a
1163 class="nav-link"
1164 data-test-id="nav-item-certificates"
1165 href="#/security-and-access/certificates"
1166 >
1167
1168 appNavigation.certificates
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301169
Derick Montaguef833c7e2020-10-27 08:21:20 -05001170 </a>
1171 </li>
1172 </ul>
1173 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001174 </li>
1175 </ul>
1176 </nav>
1177 </div>
1178
Derick Montaguef833c7e2020-10-27 08:21:20 -05001179 <transition-stub
1180 name="fade"
1181 >
1182 <!---->
1183 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001184</div>
1185`;