blob: 0ab0c9ab048971a1b653e5415339dc0fc77f0cc5 [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 Pandeybe6858c2020-12-16 20:08:01 +0530335 data-test-id="nav-item-power-restore-policy"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530336 href="#/operations/power-restore-policy"
Sukanya Pandeybe6858c2020-12-16 20:08:01 +0530337 >
338
339 appNavigation.powerRestorePolicy
340
341 </a>
342 <a
343 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530344 data-test-id="nav-item-reboot-bmc"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530345 href="#/operations/reboot-bmc"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500346 >
347
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530348 appNavigation.rebootBmc
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-serial-over-lan"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530354 href="#/operations/serial-over-lan"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500355 >
356
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530357 appNavigation.serialOverLan
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-server-power-operations"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530363 href="#/operations/server-power-operations"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500364 >
365
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530366 appNavigation.serverPowerOperations
367
Derick Montaguef833c7e2020-10-27 08:21:20 -0500368 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500369 <a
370 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530371 data-test-id="nav-item-virtual-media"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530372 href="#/operations/virtual-media"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500373 >
374
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530375 appNavigation.virtualMedia
376
Derick Montaguef833c7e2020-10-27 08:21:20 -0500377 </a>
378 </li>
379 </ul>
380 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500381 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500382 <li
383 class="nav-item"
384 >
385 <button
Derick Montague58a7a032020-09-21 12:21:48 -0500386 aria-controls="configuration"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500387 aria-expanded="false"
388 class="btn btn-link collapsed"
Derick Montague58a7a032020-09-21 12:21:48 -0500389 data-test-id="nav-button-configuration"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500390 type="button"
391 >
392 <svg
393 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500394 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500395 focusable="false"
396 height="16"
397 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500398 viewBox="0 0 16 16"
399 width="16"
400 xmlns="http://www.w3.org/2000/svg"
401 >
402 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500403 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 -0500404 />
405 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500406 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 -0500407 />
408 </svg>
409
Derick Montague58a7a032020-09-21 12:21:48 -0500410 appNavigation.configuration
411
Derick Montaguead2ceb62020-04-24 18:11:04 -0500412 <svg
413 aria-hidden="true"
414 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500415 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500416 focusable="false"
417 height="16"
418 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500419 viewBox="0 0 16 16"
420 width="16"
421 xmlns="http://www.w3.org/2000/svg"
422 >
423 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500424 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500425 />
426 </svg>
427 </button>
428
Derick Montaguef833c7e2020-10-27 08:21:20 -0500429 <transition-stub
430 class="nav-item__nav"
431 css="true"
432 enteractiveclass="collapsing"
433 enterclass=""
434 entertoclass="collapse show"
435 leaveactiveclass="collapsing"
436 leaveclass="collapse show"
437 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500438 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500439 <ul
440 class="collapse"
441 id="configuration"
442 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500443 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500444 <li
445 class="nav-item"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500446 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500447 <a
448 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530449 data-test-id="nav-item-date-time-settings"
450 href="#/configuration/date-time-settings"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500451 >
452
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530453 appNavigation.dateTimeSettings
454
Derick Montaguef833c7e2020-10-27 08:21:20 -0500455 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500456 <a
457 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530458 data-test-id="nav-item-network-settings"
459 href="#/configuration/network-settings"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500460 >
461
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530462 appNavigation.networkSettings
463
Derick Montaguef833c7e2020-10-27 08:21:20 -0500464 </a>
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +0530465 <a
466 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530467 data-test-id="nav-item-security-settings"
468 href="#/configuration/security-settings"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +0530469 >
470
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530471 appNavigation.securitySettings
472
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +0530473 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500474 <a
475 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530476 data-test-id="nav-item-snmp-settings"
477 href="#/snmp-settings"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500478 >
479
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530480 appNavigation.snmpSettings
481
Derick Montaguef833c7e2020-10-27 08:21:20 -0500482 </a>
483 </li>
484 </ul>
485 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500486 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500487 <li
488 class="nav-item"
489 >
490 <button
Derick Montague58a7a032020-09-21 12:21:48 -0500491 aria-controls="access-control"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500492 aria-expanded="false"
493 class="btn btn-link collapsed"
Derick Montague58a7a032020-09-21 12:21:48 -0500494 data-test-id="nav-button-access-control"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500495 type="button"
496 >
497 <svg
498 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500499 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500500 focusable="false"
501 height="16"
502 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500503 viewBox="0 0 32 32"
504 width="16"
505 xmlns="http://www.w3.org/2000/svg"
506 >
507 <path
Dixsie1915d8c2021-03-25 15:44:02 -0500508 d="M21,2a8.9977,8.9977,0,0,0-8.6119,11.6118L2,24v6H8L18.3881,19.6118A9,9,0,1,0,21,2Zm0,16a7.0125,7.0125,0,0,1-2.0322-.3022L17.821,17.35l-.8472.8472-3.1811,3.1812L12.4141,20,11,21.4141l1.3787,1.3786-1.5859,1.586L9.4141,23,8,24.4141l1.3787,1.3786L7.1716,28H4V24.8284l9.8023-9.8023.8472-.8474-.3473-1.1467A7,7,0,1,1,21,18Z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500509 />
510 <circle
511 cx="22"
512 cy="10"
513 r="2"
514 />
515 </svg>
516
Derick Montaguef833c7e2020-10-27 08:21:20 -0500517 appNavigation.accessControl
Derick Montague58a7a032020-09-21 12:21:48 -0500518
Derick Montaguead2ceb62020-04-24 18:11:04 -0500519 <svg
520 aria-hidden="true"
521 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500522 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500523 focusable="false"
524 height="16"
525 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500526 viewBox="0 0 16 16"
527 width="16"
528 xmlns="http://www.w3.org/2000/svg"
529 >
530 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500531 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500532 />
533 </svg>
534 </button>
535
Derick Montaguef833c7e2020-10-27 08:21:20 -0500536 <transition-stub
537 class="nav-item__nav"
538 css="true"
539 enteractiveclass="collapsing"
540 enterclass=""
541 entertoclass="collapse show"
542 leaveactiveclass="collapsing"
543 leaveclass="collapse show"
544 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500545 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500546 <ul
547 class="collapse"
548 id="access-control"
549 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500550 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500551 <li
552 class="nav-item"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +0530553 >
554 <a
555 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530556 data-test-id="nav-item-client-sessions"
557 href="#/access-control/client-sessions"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +0530558 >
559
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530560 appNavigation.clientSessions
561
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +0530562 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500563 <a
564 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530565 data-test-id="nav-item-ldap"
566 href="#/access-control/ldap"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500567 >
568
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530569 appNavigation.ldap
570
Derick Montaguef833c7e2020-10-27 08:21:20 -0500571 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500572 <a
573 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530574 data-test-id="nav-item-local-user-management"
575 href="#/access-control/local-user-management"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500576 >
577
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530578 appNavigation.localUserManagement
579
Derick Montaguef833c7e2020-10-27 08:21:20 -0500580 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500581 <a
582 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530583 data-test-id="nav-item-ssl-certificates"
584 href="#/access-control/ssl-certificates"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500585 >
586
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530587 appNavigation.sslCertificates
588
Derick Montaguef833c7e2020-10-27 08:21:20 -0500589 </a>
590 </li>
591 </ul>
592 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500593 </li>
594 </ul>
595 </nav>
596 </div>
597
Derick Montaguef833c7e2020-10-27 08:21:20 -0500598 <transition-stub
599 name="fade"
600 >
601 <!---->
602 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500603</div>
604`;
605
606exports[`AppNavigation.vue should render with nav-container open 1`] = `
607<div>
608 <div
609 class="nav-container"
610 >
611 <nav
612 aria-label="appNavigation.primaryNavigation"
613 >
614 <ul
Derick Montague58a7a032020-09-21 12:21:48 -0500615 class="nav mb-4 flex-column"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500616 >
617 <li
618 class="nav-item"
Derick Montague58a7a032020-09-21 12:21:48 -0500619 data-test-id="nav-item-overview"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500620 >
621 <a
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530622 aria-current="page"
623 class="nav-link router-link-exact-active router-link-active"
Dixsie1915d8c2021-03-25 15:44:02 -0500624 href="#/"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500625 target="_self"
626 >
627 <svg
628 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500629 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500630 focusable="false"
631 height="16"
632 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500633 viewBox="0 0 32 32"
634 width="16"
635 xmlns="http://www.w3.org/2000/svg"
636 >
637 <path
Derick Montague828dda92021-06-28 15:52:22 -0500638 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 -0500639 />
640 <path
Derick Montague828dda92021-06-28 15:52:22 -0500641 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 -0500642 />
643 </svg>
644
Derick Montague58a7a032020-09-21 12:21:48 -0500645 appNavigation.overview
646
Derick Montaguead2ceb62020-04-24 18:11:04 -0500647 </a>
648 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500649 <li
650 class="nav-item"
651 >
652 <button
Derick Montague828dda92021-06-28 15:52:22 -0500653 aria-controls="logs"
654 aria-expanded="false"
655 class="btn btn-link collapsed"
656 data-test-id="nav-button-logs"
657 type="button"
658 >
659 <svg
660 aria-hidden="true"
661 fill="currentColor"
662 focusable="false"
663 height="16"
664 preserveAspectRatio="xMidYMid meet"
665 viewBox="0 0 32 32"
666 width="16"
667 xmlns="http://www.w3.org/2000/svg"
668 >
669 <path
670 d="M8 10H16V12H8zM8 6H20V8H8zM8 2H20V4H8z"
671 />
672 <path
673 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"
674 />
675 </svg>
676
677 appNavigation.logs
678
679 <svg
680 aria-hidden="true"
681 class="icon-expand"
682 fill="currentColor"
683 focusable="false"
684 height="16"
685 preserveAspectRatio="xMidYMid meet"
686 viewBox="0 0 16 16"
687 width="16"
688 xmlns="http://www.w3.org/2000/svg"
689 >
690 <path
691 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
692 />
693 </svg>
694 </button>
695
696 <transition-stub
697 class="nav-item__nav"
698 css="true"
699 enteractiveclass="collapsing"
700 enterclass=""
701 entertoclass="collapse show"
702 leaveactiveclass="collapsing"
703 leaveclass="collapse show"
704 leavetoclass="collapse"
705 >
706 <ul
707 class="collapse"
708 id="logs"
709 style="display: none;"
710 >
711 <li
712 class="nav-item"
713 >
714 <a
715 class="nav-link"
716 data-test-id="nav-item-event-logs"
717 href="#/logs/event-logs"
718 >
719
720 appNavigation.eventLogs
721
722 </a>
Sandeepa Singh7affc522021-07-06 16:29:10 +0530723 <a
724 class="nav-link"
725 data-test-id="nav-item-post-code-logs"
726 href="#/logs/post-code-logs"
727 >
728
729 appNavigation.postCodeLogs
730
731 </a>
Derick Montague828dda92021-06-28 15:52:22 -0500732 </li>
733 </ul>
734 </transition-stub>
735 </li>
736 <li
737 class="nav-item"
738 >
739 <button
Sandeepa Singh7affc522021-07-06 16:29:10 +0530740 aria-controls="hardware-status"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500741 aria-expanded="false"
742 class="btn btn-link collapsed"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530743 data-test-id="nav-button-hardware-status"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500744 type="button"
745 >
746 <svg
747 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500748 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500749 focusable="false"
750 height="16"
751 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500752 viewBox="0 0 32 32"
753 width="16"
754 xmlns="http://www.w3.org/2000/svg"
755 >
756 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500757 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 -0500758 />
759 <circle
760 cx="11"
761 cy="8"
762 r="1"
763 />
764 <circle
765 cx="11"
766 cy="16"
767 r="1"
768 />
769 <circle
770 cx="11"
771 cy="24"
772 r="1"
773 />
774 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500775 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 -0500776 />
777 </svg>
778
Sandeepa Singh7affc522021-07-06 16:29:10 +0530779 appNavigation.hardwareStatus
Derick Montague58a7a032020-09-21 12:21:48 -0500780
Derick Montaguead2ceb62020-04-24 18:11:04 -0500781 <svg
782 aria-hidden="true"
783 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500784 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500785 focusable="false"
786 height="16"
787 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500788 viewBox="0 0 16 16"
789 width="16"
790 xmlns="http://www.w3.org/2000/svg"
791 >
792 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500793 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500794 />
795 </svg>
796 </button>
797
Derick Montaguef833c7e2020-10-27 08:21:20 -0500798 <transition-stub
799 class="nav-item__nav"
800 css="true"
801 enteractiveclass="collapsing"
802 enterclass=""
803 entertoclass="collapse show"
804 leaveactiveclass="collapsing"
805 leaveclass="collapse show"
806 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500807 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500808 <ul
809 class="collapse"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530810 id="hardware-status"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500811 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500812 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500813 <li
814 class="nav-item"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500815 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500816 <a
817 class="nav-link"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530818 data-test-id="nav-item-inventory"
819 href="#/hardware-status/inventory"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500820 >
821
Sandeepa Singh7affc522021-07-06 16:29:10 +0530822 appNavigation.inventory
Dixsie Wolmers30731f12021-07-22 14:17:07 -0500823
824 </a>
825 <a
826 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530827 data-test-id="nav-item-sensors"
Sandeepa Singh7affc522021-07-06 16:29:10 +0530828 href="#/hardware-status/sensors"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500829 >
830
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530831 appNavigation.sensors
832
Derick Montaguef833c7e2020-10-27 08:21:20 -0500833 </a>
834 </li>
835 </ul>
836 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500837 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500838 <li
839 class="nav-item"
840 >
841 <button
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530842 aria-controls="operations"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500843 aria-expanded="false"
844 class="btn btn-link collapsed"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530845 data-test-id="nav-button-operations"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500846 type="button"
847 >
848 <svg
849 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500850 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500851 focusable="false"
852 height="16"
853 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500854 viewBox="0 0 32 32"
855 width="16"
856 xmlns="http://www.w3.org/2000/svg"
857 >
858 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500859 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 -0500860 />
861 </svg>
862
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530863 appNavigation.operations
Derick Montague58a7a032020-09-21 12:21:48 -0500864
Derick Montaguead2ceb62020-04-24 18:11:04 -0500865 <svg
866 aria-hidden="true"
867 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500868 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500869 focusable="false"
870 height="16"
871 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500872 viewBox="0 0 16 16"
873 width="16"
874 xmlns="http://www.w3.org/2000/svg"
875 >
876 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -0500877 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500878 />
879 </svg>
880 </button>
881
Derick Montaguef833c7e2020-10-27 08:21:20 -0500882 <transition-stub
883 class="nav-item__nav"
884 css="true"
885 enteractiveclass="collapsing"
886 enterclass=""
887 entertoclass="collapse show"
888 leaveactiveclass="collapsing"
889 leaveclass="collapse show"
890 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500891 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500892 <ul
893 class="collapse"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530894 id="operations"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500895 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500896 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500897 <li
898 class="nav-item"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500899 >
Derick Montaguef833c7e2020-10-27 08:21:20 -0500900 <a
901 class="nav-link"
Derick Montagueda9f0a62021-02-14 19:21:44 -0600902 data-test-id="nav-item-factory-reset"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530903 href="#/operations/factory-reset"
Derick Montagueda9f0a62021-02-14 19:21:44 -0600904 >
905
906 appNavigation.factoryReset
907
908 </a>
909 <a
910 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530911 data-test-id="nav-item-kvm"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530912 href="#/operations/kvm"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500913 >
914
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530915 appNavigation.kvm
916
Derick Montaguef833c7e2020-10-27 08:21:20 -0500917 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500918 <a
919 class="nav-link"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530920 data-test-id="nav-item-firmware"
921 href="#/operations/firmware"
922 >
923
924 appNavigation.firmware
925
926 </a>
927 <a
928 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530929 data-test-id="nav-item-manage-power-usage"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530930 href="#/operations/manage-power-usage"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500931 >
932
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530933 appNavigation.managePowerUsage
934
Derick Montaguef833c7e2020-10-27 08:21:20 -0500935 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500936 <a
937 class="nav-link"
Sukanya Pandeybe6858c2020-12-16 20:08:01 +0530938 data-test-id="nav-item-power-restore-policy"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530939 href="#/operations/power-restore-policy"
Sukanya Pandeybe6858c2020-12-16 20:08:01 +0530940 >
941
942 appNavigation.powerRestorePolicy
943
944 </a>
945 <a
946 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530947 data-test-id="nav-item-reboot-bmc"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530948 href="#/operations/reboot-bmc"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500949 >
950
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530951 appNavigation.rebootBmc
952
Derick Montaguef833c7e2020-10-27 08:21:20 -0500953 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500954 <a
955 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530956 data-test-id="nav-item-serial-over-lan"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530957 href="#/operations/serial-over-lan"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500958 >
959
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530960 appNavigation.serialOverLan
961
Derick Montaguef833c7e2020-10-27 08:21:20 -0500962 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500963 <a
964 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530965 data-test-id="nav-item-server-power-operations"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530966 href="#/operations/server-power-operations"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500967 >
968
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530969 appNavigation.serverPowerOperations
970
Derick Montaguef833c7e2020-10-27 08:21:20 -0500971 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -0500972 <a
973 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530974 data-test-id="nav-item-virtual-media"
Sandeepa Singh68cbbe92021-07-14 16:02:22 +0530975 href="#/operations/virtual-media"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500976 >
977
Sukanya Pandeyfba4d622020-12-29 13:31:19 +0530978 appNavigation.virtualMedia
979
Derick Montaguef833c7e2020-10-27 08:21:20 -0500980 </a>
981 </li>
982 </ul>
983 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500984 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -0500985 <li
986 class="nav-item"
987 >
988 <button
Derick Montague58a7a032020-09-21 12:21:48 -0500989 aria-controls="configuration"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500990 aria-expanded="false"
991 class="btn btn-link collapsed"
Derick Montague58a7a032020-09-21 12:21:48 -0500992 data-test-id="nav-button-configuration"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500993 type="button"
994 >
995 <svg
996 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -0500997 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -0500998 focusable="false"
999 height="16"
1000 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001001 viewBox="0 0 16 16"
1002 width="16"
1003 xmlns="http://www.w3.org/2000/svg"
1004 >
1005 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -05001006 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 -05001007 />
1008 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -05001009 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 -05001010 />
1011 </svg>
1012
Derick Montague58a7a032020-09-21 12:21:48 -05001013 appNavigation.configuration
1014
Derick Montaguead2ceb62020-04-24 18:11:04 -05001015 <svg
1016 aria-hidden="true"
1017 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001018 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001019 focusable="false"
1020 height="16"
1021 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001022 viewBox="0 0 16 16"
1023 width="16"
1024 xmlns="http://www.w3.org/2000/svg"
1025 >
1026 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -05001027 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001028 />
1029 </svg>
1030 </button>
1031
Derick Montaguef833c7e2020-10-27 08:21:20 -05001032 <transition-stub
1033 class="nav-item__nav"
1034 css="true"
1035 enteractiveclass="collapsing"
1036 enterclass=""
1037 entertoclass="collapse show"
1038 leaveactiveclass="collapsing"
1039 leaveclass="collapse show"
1040 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001041 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001042 <ul
1043 class="collapse"
1044 id="configuration"
1045 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001046 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001047 <li
1048 class="nav-item"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001049 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001050 <a
1051 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301052 data-test-id="nav-item-date-time-settings"
1053 href="#/configuration/date-time-settings"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001054 >
1055
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301056 appNavigation.dateTimeSettings
1057
Derick Montaguef833c7e2020-10-27 08:21:20 -05001058 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001059 <a
1060 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301061 data-test-id="nav-item-network-settings"
1062 href="#/configuration/network-settings"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001063 >
1064
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301065 appNavigation.networkSettings
1066
Derick Montaguef833c7e2020-10-27 08:21:20 -05001067 </a>
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +05301068 <a
1069 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301070 data-test-id="nav-item-security-settings"
1071 href="#/configuration/security-settings"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +05301072 >
1073
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301074 appNavigation.securitySettings
1075
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +05301076 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001077 <a
1078 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301079 data-test-id="nav-item-snmp-settings"
1080 href="#/snmp-settings"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001081 >
1082
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301083 appNavigation.snmpSettings
1084
Derick Montaguef833c7e2020-10-27 08:21:20 -05001085 </a>
1086 </li>
1087 </ul>
1088 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001089 </li>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001090 <li
1091 class="nav-item"
1092 >
1093 <button
Derick Montague58a7a032020-09-21 12:21:48 -05001094 aria-controls="access-control"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001095 aria-expanded="false"
1096 class="btn btn-link collapsed"
Derick Montague58a7a032020-09-21 12:21:48 -05001097 data-test-id="nav-button-access-control"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001098 type="button"
1099 >
1100 <svg
1101 aria-hidden="true"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001102 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001103 focusable="false"
1104 height="16"
1105 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001106 viewBox="0 0 32 32"
1107 width="16"
1108 xmlns="http://www.w3.org/2000/svg"
1109 >
1110 <path
Dixsie1915d8c2021-03-25 15:44:02 -05001111 d="M21,2a8.9977,8.9977,0,0,0-8.6119,11.6118L2,24v6H8L18.3881,19.6118A9,9,0,1,0,21,2Zm0,16a7.0125,7.0125,0,0,1-2.0322-.3022L17.821,17.35l-.8472.8472-3.1811,3.1812L12.4141,20,11,21.4141l1.3787,1.3786-1.5859,1.586L9.4141,23,8,24.4141l1.3787,1.3786L7.1716,28H4V24.8284l9.8023-9.8023.8472-.8474-.3473-1.1467A7,7,0,1,1,21,18Z"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001112 />
1113 <circle
1114 cx="22"
1115 cy="10"
1116 r="2"
1117 />
1118 </svg>
1119
Derick Montaguef833c7e2020-10-27 08:21:20 -05001120 appNavigation.accessControl
Derick Montague58a7a032020-09-21 12:21:48 -05001121
Derick Montaguead2ceb62020-04-24 18:11:04 -05001122 <svg
1123 aria-hidden="true"
1124 class="icon-expand"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001125 fill="currentColor"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001126 focusable="false"
1127 height="16"
1128 preserveAspectRatio="xMidYMid meet"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001129 viewBox="0 0 16 16"
1130 width="16"
1131 xmlns="http://www.w3.org/2000/svg"
1132 >
1133 <path
Derick Montaguef833c7e2020-10-27 08:21:20 -05001134 d="M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001135 />
1136 </svg>
1137 </button>
1138
Derick Montaguef833c7e2020-10-27 08:21:20 -05001139 <transition-stub
1140 class="nav-item__nav"
1141 css="true"
1142 enteractiveclass="collapsing"
1143 enterclass=""
1144 entertoclass="collapse show"
1145 leaveactiveclass="collapsing"
1146 leaveclass="collapse show"
1147 leavetoclass="collapse"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001148 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001149 <ul
1150 class="collapse"
1151 id="access-control"
1152 style="display: none;"
Derick Montaguead2ceb62020-04-24 18:11:04 -05001153 >
Derick Montaguef833c7e2020-10-27 08:21:20 -05001154 <li
1155 class="nav-item"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +05301156 >
1157 <a
1158 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301159 data-test-id="nav-item-client-sessions"
1160 href="#/access-control/client-sessions"
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +05301161 >
1162
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301163 appNavigation.clientSessions
1164
Sukanya Pandeyc0a1ddd2020-12-31 14:35:13 +05301165 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001166 <a
1167 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301168 data-test-id="nav-item-ldap"
1169 href="#/access-control/ldap"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001170 >
1171
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301172 appNavigation.ldap
1173
Derick Montaguef833c7e2020-10-27 08:21:20 -05001174 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001175 <a
1176 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301177 data-test-id="nav-item-local-user-management"
1178 href="#/access-control/local-user-management"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001179 >
1180
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301181 appNavigation.localUserManagement
1182
Derick Montaguef833c7e2020-10-27 08:21:20 -05001183 </a>
Derick Montaguef833c7e2020-10-27 08:21:20 -05001184 <a
1185 class="nav-link"
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301186 data-test-id="nav-item-ssl-certificates"
1187 href="#/access-control/ssl-certificates"
Derick Montaguef833c7e2020-10-27 08:21:20 -05001188 >
1189
Sukanya Pandeyfba4d622020-12-29 13:31:19 +05301190 appNavigation.sslCertificates
1191
Derick Montaguef833c7e2020-10-27 08:21:20 -05001192 </a>
1193 </li>
1194 </ul>
1195 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001196 </li>
1197 </ul>
1198 </nav>
1199 </div>
1200
Derick Montaguef833c7e2020-10-27 08:21:20 -05001201 <transition-stub
1202 name="fade"
1203 >
1204 <!---->
1205 </transition-stub>
Derick Montaguead2ceb62020-04-24 18:11:04 -05001206</div>
1207`;