blob: 7ef2cd67d42e5359d91a75713319d04d2092a76d [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 Singh05887b52022-01-10 19:19:36 +0530317 data-test-id="nav-item-key-clear"
318 href="#/operations/key-clear"
319 >
320
321 appNavigation.keyClear
322
323 </a>
324 <a
325 class="nav-link"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530326 data-test-id="nav-item-firmware"
327 href="#/operations/firmware"
328 >
329
330 appNavigation.firmware
331
332 </a>
333 <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>
Konstantin Aladyshev2f7f6572024-02-28 15:24:14 +0300465 <a
466 class="nav-link"
467 data-test-id="nav-item-snmp-alerts"
468 href="#/settings/snmp-alerts"
469 >
470
471 appNavigation.snmpAlerts
472
473 </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
Sandeepa Singhb4406162021-07-26 15:05:39 +0530482 aria-controls="security-and-access"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500483 aria-expanded="false"
484 class="btn btn-link collapsed"
Sandeepa Singhb4406162021-07-26 15:05:39 +0530485 data-test-id="nav-button-security-and-access"
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
Sandeepa Singhb4406162021-07-26 15:05:39 +0530499 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 -0500500 />
Sandeepa Singhb4406162021-07-26 15:05:39 +0530501 <path
502 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 -0500503 />
504 </svg>
505
Sandeepa Singhb4406162021-07-26 15:05:39 +0530506 appNavigation.securityAndAccess
Derick Montague58a7a032020-09-21 12:21:48 -0500507
Derick Montaguead2ceb62020-04-24 18:11:04 -0500508 <svg
509 aria-hidden="true"
510 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500511 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500512 focusable="false"
513 height="16"
514 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500515 viewBox="0 0 16 16"
516 width="16"
517 xmlns="http://www.w3.org/2000/svg"
518 >
519 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500520 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500521 />
522 </svg>
523 </button>
524
Derick Montaguef833c7e2020-10-27 08:21:20 -0500525 <transition-stub
526 class="nav-item__nav"
527 css="true"
528 enteractiveclass="collapsing"
529 enterclass=""
530 entertoclass="collapse show"
531 leaveactiveclass="collapsing"
532 leaveclass="collapse show"
533 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500534 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500535 <ul
536 class="collapse"
Sandeepa Singhb4406162021-07-26 15:05:39 +0530537 id="security-and-access"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500538 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500539 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500540 <li
541 class="nav-item"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +0530542 >
543 <a
544 class="nav-link"
Sandeepa Singhb4406162021-07-26 15:05:39 +0530545 data-test-id="nav-item-sessions"
546 href="#/security-and-access/sessions"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +0530547 >
548
Sandeepa Singhb4406162021-07-26 15:05:39 +0530549 appNavigation.sessions
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530550
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +0530551 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500552 <a
553 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530554 data-test-id="nav-item-ldap"
Sandeepa Singhb4406162021-07-26 15:05:39 +0530555 href="#/security-and-access/ldap"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500556 >
557
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530558 appNavigation.ldap
559
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-user-management"
564 href="#/security-and-access/user-management"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500565 >
566
Sandeepa Singhb4406162021-07-26 15:05:39 +0530567 appNavigation.userManagement
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530568
Derick Montaguef833c7e2020-10-27 08:21:20 -0500569 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500570 <a
571 class="nav-link"
Sandeepa Singhb4406162021-07-26 15:05:39 +0530572 data-test-id="nav-item-policies"
573 href="#/security-and-access/policies"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500574 >
575
Sandeepa Singhb4406162021-07-26 15:05:39 +0530576 appNavigation.policies
577
578 </a>
579 <a
580 class="nav-link"
581 data-test-id="nav-item-certificates"
582 href="#/security-and-access/certificates"
583 >
584
585 appNavigation.certificates
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530586
Derick Montaguef833c7e2020-10-27 08:21:20 -0500587 </a>
588 </li>
589 </ul>
590 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500591 </li>
Sandeepa Singh6dba4be2021-07-28 15:25:14 +0530592 <li
593 class="nav-item"
594 >
595 <button
596 aria-controls="resource-management"
597 aria-expanded="false"
598 class="btn btn-link collapsed"
599 data-test-id="nav-button-resource-management"
600 type="button"
601 >
602 <svg
603 aria-hidden="true"
604 fill="currentColor"
605 focusable="false"
606 height="16"
607 preserveAspectRatio="xMidYMid meet"
608 viewBox="0 0 32 32"
609 width="16"
610 xmlns="http://www.w3.org/2000/svg"
611 >
612 <path
613 d="M19 24H26V26H19zM19 20H26V22H19zM19 16H26V18H19zM6 24H13V26H6zM6 20H13V22H6z"
614 />
615 <path
616 d="M28,4H17a2.0023,2.0023,0,0,0-2,2v6H4a2.0023,2.0023,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,28,4ZM15,28H4V14H15Zm2,0V6H28V28Z"
617 />
618 </svg>
619
620 appNavigation.resourceManagement
621
622 <svg
623 aria-hidden="true"
624 class="icon-expand"
625 fill="currentColor"
626 focusable="false"
627 height="16"
628 preserveAspectRatio="xMidYMid meet"
629 viewBox="0 0 16 16"
630 width="16"
631 xmlns="http://www.w3.org/2000/svg"
632 >
633 <path
634 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
635 />
636 </svg>
637 </button>
638
639 <transition-stub
640 class="nav-item__nav"
641 css="true"
642 enteractiveclass="collapsing"
643 enterclass=""
644 entertoclass="collapse show"
645 leaveactiveclass="collapsing"
646 leaveclass="collapse show"
647 leavetoclass="collapse"
648 >
649 <ul
650 class="collapse"
651 id="resource-management"
652 style="display: none;"
653 >
654 <li
655 class="nav-item"
656 >
657 <a
658 class="nav-link"
659 data-test-id="nav-item-power"
660 href="#/resource-management/power"
661 >
662
663 appNavigation.power
664
665 </a>
666 </li>
667 </ul>
668 </transition-stub>
669 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500670 </ul>
671 </nav>
672 </div>
673
Derick Montaguef833c7e2020-10-27 08:21:20 -0500674 <transition-stub
675 name="fade"
676 >
677 <!---->
678 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500679</div>
680`;
681
682exports[`AppNavigation.vue should render with nav-container open 1`] = `
683<div>
684 <div
685 class="nav-container"
686 >
687 <nav
688 aria-label="appNavigation.primaryNavigation"
689 >
690 <ul
Derick Montague58a7a032020-09-21 12:21:48 -0500691 class="nav mb-4 flex-column"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500692 >
693 <li
694 class="nav-item"
Derick Montague58a7a032020-09-21 12:21:48 -0500695 data-test-id="nav-item-overview"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500696 >
697 <a
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530698 aria-current="page"
699 class="nav-link router-link-exact-active router-link-active"
Dixsie1915d8c2021-03-25 15:44:02 -0500700 href="#/"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500701 target="_self"
702 >
703 <svg
704 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500705 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500706 focusable="false"
707 height="16"
708 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500709 viewBox="0 0 32 32"
710 width="16"
711 xmlns="http://www.w3.org/2000/svg"
712 >
713 <path
Derick Montague828dda92021-06-28 15:52:22 -0500714 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 -0500715 />
716 <path
Derick Montague828dda92021-06-28 15:52:22 -0500717 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 -0500718 />
719 </svg>
720
Derick Montague58a7a032020-09-21 12:21:48 -0500721 appNavigation.overview
722
Derick Montaguead2ceb62020-04-24 18:11:04 -0500723 </a>
724 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500725 <li
726 class="nav-item"
727 >
728 <button
Derick Montague828dda92021-06-28 15:52:22 -0500729 aria-controls="logs"
730 aria-expanded="false"
731 class="btn btn-link collapsed"
732 data-test-id="nav-button-logs"
733 type="button"
734 >
735 <svg
736 aria-hidden="true"
737 fill="currentColor"
738 focusable="false"
739 height="16"
740 preserveAspectRatio="xMidYMid meet"
741 viewBox="0 0 32 32"
742 width="16"
743 xmlns="http://www.w3.org/2000/svg"
744 >
745 <path
746 d="M8 10H16V12H8zM8 6H20V8H8zM8 2H20V4H8z"
747 />
748 <path
749 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"
750 />
751 </svg>
752
753 appNavigation.logs
754
755 <svg
756 aria-hidden="true"
757 class="icon-expand"
758 fill="currentColor"
759 focusable="false"
760 height="16"
761 preserveAspectRatio="xMidYMid meet"
762 viewBox="0 0 16 16"
763 width="16"
764 xmlns="http://www.w3.org/2000/svg"
765 >
766 <path
767 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
768 />
769 </svg>
770 </button>
771
772 <transition-stub
773 class="nav-item__nav"
774 css="true"
775 enteractiveclass="collapsing"
776 enterclass=""
777 entertoclass="collapse show"
778 leaveactiveclass="collapsing"
779 leaveclass="collapse show"
780 leavetoclass="collapse"
781 >
782 <ul
783 class="collapse"
784 id="logs"
785 style="display: none;"
786 >
787 <li
788 class="nav-item"
789 >
790 <a
791 class="nav-link"
792 data-test-id="nav-item-event-logs"
793 href="#/logs/event-logs"
794 >
795
796 appNavigation.eventLogs
797
798 </a>
Sandeepa Singh7affc522021-07-06 16:29:10 +0530799 <a
800 class="nav-link"
801 data-test-id="nav-item-post-code-logs"
802 href="#/logs/post-code-logs"
803 >
804
805 appNavigation.postCodeLogs
806
807 </a>
Derick Montague828dda92021-06-28 15:52:22 -0500808 </li>
809 </ul>
810 </transition-stub>
811 </li>
812 <li
813 class="nav-item"
814 >
815 <button
Sandeepa Singh7affc522021-07-06 16:29:10 +0530816 aria-controls="hardware-status"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500817 aria-expanded="false"
818 class="btn btn-link collapsed"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530819 data-test-id="nav-button-hardware-status"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500820 type="button"
821 >
822 <svg
823 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500824 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500825 focusable="false"
826 height="16"
827 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500828 viewBox="0 0 32 32"
829 width="16"
830 xmlns="http://www.w3.org/2000/svg"
831 >
832 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500833 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 -0500834 />
835 <circle
836 cx="11"
837 cy="8"
838 r="1"
839 />
840 <circle
841 cx="11"
842 cy="16"
843 r="1"
844 />
845 <circle
846 cx="11"
847 cy="24"
848 r="1"
849 />
850 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500851 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 -0500852 />
853 </svg>
854
Sandeepa Singh7affc522021-07-06 16:29:10 +0530855 appNavigation.hardwareStatus
Derick Montague58a7a032020-09-21 12:21:48 -0500856
Derick Montaguead2ceb62020-04-24 18:11:04 -0500857 <svg
858 aria-hidden="true"
859 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500860 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500861 focusable="false"
862 height="16"
863 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500864 viewBox="0 0 16 16"
865 width="16"
866 xmlns="http://www.w3.org/2000/svg"
867 >
868 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500869 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500870 />
871 </svg>
872 </button>
873
Derick Montaguef833c7e2020-10-27 08:21:20 -0500874 <transition-stub
875 class="nav-item__nav"
876 css="true"
877 enteractiveclass="collapsing"
878 enterclass=""
879 entertoclass="collapse show"
880 leaveactiveclass="collapsing"
881 leaveclass="collapse show"
882 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500883 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500884 <ul
885 class="collapse"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530886 id="hardware-status"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500887 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500888 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500889 <li
890 class="nav-item"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500891 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500892 <a
893 class="nav-link"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530894 data-test-id="nav-item-inventory"
895 href="#/hardware-status/inventory"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500896 >
897
Sandeepa Singh7affc522021-07-06 16:29:10 +0530898 appNavigation.inventory
Dixsie Wolmers30731f12021-07-22 14:17:07 -0500899
900 </a>
901 <a
902 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530903 data-test-id="nav-item-sensors"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530904 href="#/hardware-status/sensors"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500905 >
906
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530907 appNavigation.sensors
908
Derick Montaguef833c7e2020-10-27 08:21:20 -0500909 </a>
910 </li>
911 </ul>
912 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500913 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500914 <li
915 class="nav-item"
916 >
917 <button
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530918 aria-controls="operations"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500919 aria-expanded="false"
920 class="btn btn-link collapsed"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530921 data-test-id="nav-button-operations"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500922 type="button"
923 >
924 <svg
925 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500926 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500927 focusable="false"
928 height="16"
929 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500930 viewBox="0 0 32 32"
931 width="16"
932 xmlns="http://www.w3.org/2000/svg"
933 >
934 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500935 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 -0500936 />
937 </svg>
938
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530939 appNavigation.operations
Derick Montague58a7a032020-09-21 12:21:48 -0500940
Derick Montaguead2ceb62020-04-24 18:11:04 -0500941 <svg
942 aria-hidden="true"
943 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500944 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500945 focusable="false"
946 height="16"
947 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500948 viewBox="0 0 16 16"
949 width="16"
950 xmlns="http://www.w3.org/2000/svg"
951 >
952 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500953 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500954 />
955 </svg>
956 </button>
957
Derick Montaguef833c7e2020-10-27 08:21:20 -0500958 <transition-stub
959 class="nav-item__nav"
960 css="true"
961 enteractiveclass="collapsing"
962 enterclass=""
963 entertoclass="collapse show"
964 leaveactiveclass="collapsing"
965 leaveclass="collapse show"
966 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500967 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500968 <ul
969 class="collapse"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530970 id="operations"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500971 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500972 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500973 <li
974 class="nav-item"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500975 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500976 <a
977 class="nav-link"
Derick Montagueda9f0a62021-02-14 19:21:44 -0600978 data-test-id="nav-item-factory-reset"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530979 href="#/operations/factory-reset"
Derick Montagueda9f0a62021-02-14 19:21:44 -0600980 >
981
982 appNavigation.factoryReset
983
984 </a>
985 <a
986 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530987 data-test-id="nav-item-kvm"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530988 href="#/operations/kvm"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500989 >
990
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530991 appNavigation.kvm
992
Derick Montaguef833c7e2020-10-27 08:21:20 -0500993 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500994 <a
995 class="nav-link"
Sandeepa Singh05887b52022-01-10 19:19:36 +0530996 data-test-id="nav-item-key-clear"
997 href="#/operations/key-clear"
998 >
999
1000 appNavigation.keyClear
1001
1002 </a>
1003 <a
1004 class="nav-link"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +05301005 data-test-id="nav-item-firmware"
1006 href="#/operations/firmware"
1007 >
1008
1009 appNavigation.firmware
1010
1011 </a>
1012 <a
1013 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301014 data-test-id="nav-item-reboot-bmc"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +05301015 href="#/operations/reboot-bmc"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001016 >
1017
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301018 appNavigation.rebootBmc
1019
Derick Montaguef833c7e2020-10-27 08:21:20 -05001020 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001021 <a
1022 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301023 data-test-id="nav-item-serial-over-lan"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +05301024 href="#/operations/serial-over-lan"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001025 >
1026
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301027 appNavigation.serialOverLan
1028
Derick Montaguef833c7e2020-10-27 08:21:20 -05001029 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001030 <a
1031 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301032 data-test-id="nav-item-server-power-operations"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +05301033 href="#/operations/server-power-operations"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001034 >
1035
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301036 appNavigation.serverPowerOperations
1037
Derick Montaguef833c7e2020-10-27 08:21:20 -05001038 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001039 <a
1040 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301041 data-test-id="nav-item-virtual-media"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +05301042 href="#/operations/virtual-media"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001043 >
1044
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301045 appNavigation.virtualMedia
1046
Derick Montaguef833c7e2020-10-27 08:21:20 -05001047 </a>
1048 </li>
1049 </ul>
1050 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001051 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001052 <li
1053 class="nav-item"
1054 >
1055 <button
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301056 aria-controls="settings"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001057 aria-expanded="false"
1058 class="btn btn-link collapsed"
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301059 data-test-id="nav-button-settings"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001060 type="button"
1061 >
1062 <svg
1063 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001064 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001065 focusable="false"
1066 height="16"
1067 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001068 viewBox="0 0 16 16"
1069 width="16"
1070 xmlns="http://www.w3.org/2000/svg"
1071 >
1072 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -05001073 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 -05001074 />
1075 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -05001076 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 -05001077 />
1078 </svg>
1079
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301080 appNavigation.settings
Derick Montague58a7a032020-09-21 12:21:48 -05001081
Derick Montaguead2ceb62020-04-24 18:11:04 -05001082 <svg
1083 aria-hidden="true"
1084 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001085 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001086 focusable="false"
1087 height="16"
1088 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001089 viewBox="0 0 16 16"
1090 width="16"
1091 xmlns="http://www.w3.org/2000/svg"
1092 >
1093 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -05001094 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001095 />
1096 </svg>
1097 </button>
1098
Derick Montaguef833c7e2020-10-27 08:21:20 -05001099 <transition-stub
1100 class="nav-item__nav"
1101 css="true"
1102 enteractiveclass="collapsing"
1103 enterclass=""
1104 entertoclass="collapse show"
1105 leaveactiveclass="collapsing"
1106 leaveclass="collapse show"
1107 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001108 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001109 <ul
1110 class="collapse"
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301111 id="settings"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001112 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001113 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001114 <li
1115 class="nav-item"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001116 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001117 <a
1118 class="nav-link"
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301119 data-test-id="nav-item-date-time"
1120 href="#/settings/date-time"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001121 >
1122
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301123 appNavigation.dateTime
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301124
Derick Montaguef833c7e2020-10-27 08:21:20 -05001125 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001126 <a
1127 class="nav-link"
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301128 data-test-id="nav-item-network"
1129 href="#/settings/network"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001130 >
1131
Sandeepa Singhf67f7692021-07-19 18:04:18 +05301132 appNavigation.network
1133
1134 </a>
1135 <a
1136 class="nav-link"
1137 data-test-id="nav-item-power-restore-policy"
1138 href="#/settings/power-restore-policy"
1139 >
1140
1141 appNavigation.powerRestorePolicy
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301142
Derick Montaguef833c7e2020-10-27 08:21:20 -05001143 </a>
Konstantin Aladyshev2f7f6572024-02-28 15:24:14 +03001144 <a
1145 class="nav-link"
1146 data-test-id="nav-item-snmp-alerts"
1147 href="#/settings/snmp-alerts"
1148 >
1149
1150 appNavigation.snmpAlerts
1151
1152 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001153 </li>
1154 </ul>
1155 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001156 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001157 <li
1158 class="nav-item"
1159 >
1160 <button
Sandeepa Singhb4406162021-07-26 15:05:39 +05301161 aria-controls="security-and-access"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001162 aria-expanded="false"
1163 class="btn btn-link collapsed"
Sandeepa Singhb4406162021-07-26 15:05:39 +05301164 data-test-id="nav-button-security-and-access"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001165 type="button"
1166 >
1167 <svg
1168 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001169 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001170 focusable="false"
1171 height="16"
1172 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001173 viewBox="0 0 32 32"
1174 width="16"
1175 xmlns="http://www.w3.org/2000/svg"
1176 >
1177 <path
Sandeepa Singhb4406162021-07-26 15:05:39 +05301178 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 -05001179 />
Sandeepa Singhb4406162021-07-26 15:05:39 +05301180 <path
1181 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 -05001182 />
1183 </svg>
1184
Sandeepa Singhb4406162021-07-26 15:05:39 +05301185 appNavigation.securityAndAccess
Derick Montague58a7a032020-09-21 12:21:48 -05001186
Derick Montaguead2ceb62020-04-24 18:11:04 -05001187 <svg
1188 aria-hidden="true"
1189 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001190 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001191 focusable="false"
1192 height="16"
1193 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001194 viewBox="0 0 16 16"
1195 width="16"
1196 xmlns="http://www.w3.org/2000/svg"
1197 >
1198 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -05001199 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001200 />
1201 </svg>
1202 </button>
1203
Derick Montaguef833c7e2020-10-27 08:21:20 -05001204 <transition-stub
1205 class="nav-item__nav"
1206 css="true"
1207 enteractiveclass="collapsing"
1208 enterclass=""
1209 entertoclass="collapse show"
1210 leaveactiveclass="collapsing"
1211 leaveclass="collapse show"
1212 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001213 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001214 <ul
1215 class="collapse"
Sandeepa Singhb4406162021-07-26 15:05:39 +05301216 id="security-and-access"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001217 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001218 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001219 <li
1220 class="nav-item"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +05301221 >
1222 <a
1223 class="nav-link"
Sandeepa Singhb4406162021-07-26 15:05:39 +05301224 data-test-id="nav-item-sessions"
1225 href="#/security-and-access/sessions"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +05301226 >
1227
Sandeepa Singhb4406162021-07-26 15:05:39 +05301228 appNavigation.sessions
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301229
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +05301230 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001231 <a
1232 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301233 data-test-id="nav-item-ldap"
Sandeepa Singhb4406162021-07-26 15:05:39 +05301234 href="#/security-and-access/ldap"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001235 >
1236
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301237 appNavigation.ldap
1238
Derick Montaguef833c7e2020-10-27 08:21:20 -05001239 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001240 <a
1241 class="nav-link"
Sandeepa Singhb4406162021-07-26 15:05:39 +05301242 data-test-id="nav-item-user-management"
1243 href="#/security-and-access/user-management"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001244 >
1245
Sandeepa Singhb4406162021-07-26 15:05:39 +05301246 appNavigation.userManagement
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301247
Derick Montaguef833c7e2020-10-27 08:21:20 -05001248 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001249 <a
1250 class="nav-link"
Sandeepa Singhb4406162021-07-26 15:05:39 +05301251 data-test-id="nav-item-policies"
1252 href="#/security-and-access/policies"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001253 >
1254
Sandeepa Singhb4406162021-07-26 15:05:39 +05301255 appNavigation.policies
1256
1257 </a>
1258 <a
1259 class="nav-link"
1260 data-test-id="nav-item-certificates"
1261 href="#/security-and-access/certificates"
1262 >
1263
1264 appNavigation.certificates
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301265
Derick Montaguef833c7e2020-10-27 08:21:20 -05001266 </a>
1267 </li>
1268 </ul>
1269 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001270 </li>
Sandeepa Singh6dba4be2021-07-28 15:25:14 +05301271 <li
1272 class="nav-item"
1273 >
1274 <button
1275 aria-controls="resource-management"
1276 aria-expanded="false"
1277 class="btn btn-link collapsed"
1278 data-test-id="nav-button-resource-management"
1279 type="button"
1280 >
1281 <svg
1282 aria-hidden="true"
1283 fill="currentColor"
1284 focusable="false"
1285 height="16"
1286 preserveAspectRatio="xMidYMid meet"
1287 viewBox="0 0 32 32"
1288 width="16"
1289 xmlns="http://www.w3.org/2000/svg"
1290 >
1291 <path
1292 d="M19 24H26V26H19zM19 20H26V22H19zM19 16H26V18H19zM6 24H13V26H6zM6 20H13V22H6z"
1293 />
1294 <path
1295 d="M28,4H17a2.0023,2.0023,0,0,0-2,2v6H4a2.0023,2.0023,0,0,0-2,2V28a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V6A2.0023,2.0023,0,0,0,28,4ZM15,28H4V14H15Zm2,0V6H28V28Z"
1296 />
1297 </svg>
1298
1299 appNavigation.resourceManagement
1300
1301 <svg
1302 aria-hidden="true"
1303 class="icon-expand"
1304 fill="currentColor"
1305 focusable="false"
1306 height="16"
1307 preserveAspectRatio="xMidYMid meet"
1308 viewBox="0 0 16 16"
1309 width="16"
1310 xmlns="http://www.w3.org/2000/svg"
1311 >
1312 <path
1313 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
1314 />
1315 </svg>
1316 </button>
1317
1318 <transition-stub
1319 class="nav-item__nav"
1320 css="true"
1321 enteractiveclass="collapsing"
1322 enterclass=""
1323 entertoclass="collapse show"
1324 leaveactiveclass="collapsing"
1325 leaveclass="collapse show"
1326 leavetoclass="collapse"
1327 >
1328 <ul
1329 class="collapse"
1330 id="resource-management"
1331 style="display: none;"
1332 >
1333 <li
1334 class="nav-item"
1335 >
1336 <a
1337 class="nav-link"
1338 data-test-id="nav-item-power"
1339 href="#/resource-management/power"
1340 >
1341
1342 appNavigation.power
1343
1344 </a>
1345 </li>
1346 </ul>
1347 </transition-stub>
1348 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001349 </ul>
1350 </nav>
1351 </div>
1352
Derick Montaguef833c7e2020-10-27 08:21:20 -05001353 <transition-stub
1354 name="fade"
1355 >
1356 <!---->
1357 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001358</div>
1359`;