blob: 66fe4dd268352106a48aa7c025cc385dd8454dd7 [file] [log] [blame]
Rahul Maheshwari2568f872020-09-23 01:03:39 -05001*** Settings ***
2
3Documentation Test BMC dump functionality of OpenBMC.
4
George Keishing88ec2802021-08-04 03:04:22 -05005Resource ../../lib/bmc_redfish_resource.robot
6Resource ../../lib/boot_utils.robot
Rahul Maheshwari2568f872020-09-23 01:03:39 -05007Resource ../../lib/dump_utils.robot
George Keishing88ec2802021-08-04 03:04:22 -05008Resource ../../lib/openbmc_ffdc.robot
manashsarma7e1f2c52023-02-03 03:18:40 -06009Variables ../../data/pel_variables.py
Rahul Maheshwari2568f872020-09-23 01:03:39 -050010
George Keishingf514ccb2021-02-02 23:55:56 -060011Suite Setup Redfish.Login
Rahul Maheshwari2568f872020-09-23 01:03:39 -050012Test Setup Redfish Delete All BMC Dumps
13Test Teardown Test Teardown Execution
14
Tim Leede2d1302021-06-18 01:24:11 +080015*** Variables ***
16
17# Total size of the dump in kilo bytes
18${BMC_DUMP_TOTAL_SIZE} ${1024}
19
20# Minimum space required for one bmc dump in kilo bytes
21${BMC_DUMP_MIN_SPACE_REQD} ${20}
manashsarmabd346b32022-07-20 06:22:58 -050022${MAX_DUMP_COUNT} ${20}
manashsarma395f8802022-11-17 03:09:02 -060023${BMC_DUMP_COLLECTOR_PATH} /var/lib/phosphor-debug-collector/dumps
Rahul Maheshwari2568f872020-09-23 01:03:39 -050024
25*** Test Cases ***
26
manashsarma4b5b1fa2022-11-16 02:36:58 -060027Verify Error Response For Already Deleted Dump Id
28 [Documentation] Delete non existing BMC dump and expect an error.
29 [Tags] Verify_Error_Response_For_Already_Deleted_Dump_Id
30
manashsarma9dcabad2023-02-02 03:55:17 -060031 Redfish Power Off stack_mode=skip
manashsarma4b5b1fa2022-11-16 02:36:58 -060032 ${dump_id}= Create User Initiated BMC Dump Via Redfish
33 Redfish Delete BMC Dump ${dump_id}
34 Run Keyword And Expect Error ValueError: * Redfish Delete BMC Dump ${dump_id}
35
36
Rahul Maheshwari2568f872020-09-23 01:03:39 -050037Verify User Initiated BMC Dump When Host Powered Off
38 [Documentation] Create user initiated BMC dump at host off state and
39 ... verify dump entry for it.
40 [Tags] Verify_User_Initiated_BMC_Dump_When_Host_Powered_Off
41
42 Redfish Power Off stack_mode=skip
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -050043 ${dump_id}= Create User Initiated BMC Dump Via Redfish
Rahul Maheshwaribcefdf22020-10-16 07:51:34 -050044 ${dump_entries}= Get BMC Dump Entries
Rahul Maheshwari2568f872020-09-23 01:03:39 -050045 Length Should Be ${dump_entries} 1
46 List Should Contain Value ${dump_entries} ${dump_id}
47
Rahul Maheshwari2568f872020-09-23 01:03:39 -050048
Rahul Maheshwarie8e9d0c2020-10-30 02:39:01 -050049Verify User Initiated BMC Dump Size
manashsarma7831dc22022-03-08 01:49:36 -060050 [Documentation] Verify user initiated BMC dump size is under 20 MB.
Rahul Maheshwarie8e9d0c2020-10-30 02:39:01 -050051 [Tags] Verify_User_Initiated_BMC_Dump_Size
52
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -050053 ${dump_id}= Create User Initiated BMC Dump Via Redfish
Rahul Maheshwarie8e9d0c2020-10-30 02:39:01 -050054 ${resp}= Redfish.Get Properties /redfish/v1/Managers/bmc/LogServices/Dump/Entries/${dump_id}
55
56 # Example of response from above Redfish GET request.
57 # "@odata.type": "#LogEntry.v1_7_0.LogEntry",
58 # "AdditionalDataSizeBytes": 31644,
59 # "AdditionalDataURI": "/redfish/v1/Managers/bmc/LogServices/Dump/attachment/9",
60 # "Created": "2020-10-23T06:32:53+00:00",
61 # "DiagnosticDataType": "Manager",
62 # "EntryType": "Event",
63 # "Id": "9",
64 # "Name": "BMC Dump Entry"
65
manashsarma7831dc22022-03-08 01:49:36 -060066 # Max size for dump is 20 MB = 20x1024x1024 Byte.
67 Should Be True 0 < ${resp["AdditionalDataSizeBytes"]} < 20971520
Rahul Maheshwarie8e9d0c2020-10-30 02:39:01 -050068
69
manashsarma7e1f2c52023-02-03 03:18:40 -060070Verify Internal Failure Initiated BMC Dump Size
71 [Documentation] Verify that the internal failure initiated BMC dump size is under 20 MB.
72 [Tags] Verify_Internal_Failure_Initiated_BMC_Dump_Size
73
74 Redfish Delete All BMC Dumps
75
76 # Create an internal failure error log.
77 BMC Execute Command ${CMD_INTERNAL_FAILURE}
78
79 # Wait for BMC dump to get generated after injecting internal failure.
80 Wait Until Keyword Succeeds 2 min 10 sec Is BMC Dump Available
81
82 # Verify that only one BMC dump is generated after injecting error.
83 ${dump_entries}= Get BMC Dump Entries
84 ${length}= Get length ${dump_entries}
85 Should Be Equal As Integers ${length} ${1}
86
87 # Max size for dump is 20 MB = 20x1024x1024 Byte.
88 ${resp}= Redfish.Get Properties
89 ... /redfish/v1/Managers/bmc/LogServices/Dump/Entries/${dump_entries[0]}
90 Should Be True 0 < ${resp["AdditionalDataSizeBytes"]} < 20971520
91
92
manashsarmabbc68bc2022-12-05 09:55:17 -060093Verify Multiple BMC Dump Creation
94 [Documentation] Verify that multiple BMC dumps can be created one after
95 ... another successfully.
96 [Tags] Verify_Multiple_BMC_Dump_Creation
97
98 ${dump_count}= Evaluate random.randint(5, 10) modules=random
99 FOR ${INDEX} IN 1 ${dump_count}
100 Create User Initiated BMC Dump Via Redfish
101 END
102
103
manashsarma395f8802022-11-17 03:09:02 -0600104Verify BMC Dump Default Location In BMC
105 [Documentation] Verify that BMC dump is created in its default location of BMC.
George Keishing224e4c72022-12-14 05:07:58 -0600106 [Tags] Verify_BMC_Dump_Default_Location_In_BMC
manashsarma395f8802022-11-17 03:09:02 -0600107
108 Redfish Delete All BMC Dumps
109 ${dump_id}= Create User Initiated BMC Dump Via Redfish
110 ${dump_file} ${stderr} ${rc}= BMC Execute Command
111 ... ls ${BMC_DUMP_COLLECTOR_PATH}/${dump_id}
112 Should Be True ${rc} == 0
manashsarmac30e02a2023-02-20 06:46:15 -0600113 Should Contain Any ${dump_file} BMCDUMP obmcdump
manashsarma395f8802022-11-17 03:09:02 -0600114
115
George Keishing3d850982022-07-19 11:03:03 -0500116Verify User Initiated BMC Dump When Host Booted
117 [Documentation] Create user initiated BMC dump at host booted state and
118 ... verify dump entry for it.
119 [Tags] Verify_User_Initiated_BMC_Dump_When_Host_Booted
120
121 Redfish Power On stack_mode=skip
122 ${dump_id}= Create User Initiated BMC Dump Via Redfish
123 ${dump_entries}= Get BMC Dump Entries
124 Length Should Be ${dump_entries} 1
125 List Should Contain Value ${dump_entries} ${dump_id}
126
127
manashsarma4b5d6ac2023-02-08 00:04:03 -0600128Verify User Initiated BMC Dump At Host Booting
129 [Documentation] Create and verify user initiated BMC dump during Host is powwering on
130 ... or when host booting is in progress.
131 [Tags] Verify_User_Initiated_BMC_Dump_At_Host_Booting
132
manashsarma9712ac52023-03-09 04:54:41 -0600133 Redfish Power Off stack_mode=skip
manashsarma4b5d6ac2023-02-08 00:04:03 -0600134 Redfish Delete All BMC Dumps
135
136 # Initiate power on.
137 Redfish Power Operation On
138 Wait Until Keyword Succeeds 2 min 5 sec Is Boot Progress Changed
139
140 # Create user initiated BMC dump and verify only one dump is available.
141 Create User Initiated BMC Dump Via Redfish
142 ${dump_entries}= Get BMC Dump Entries
143 Length Should Be ${dump_entries} 1
144
145
Rahul Maheshwari2568f872020-09-23 01:03:39 -0500146Verify Dump Persistency On Dump Service Restart
147 [Documentation] Create user dump, restart dump manager service and verify dump
148 ... persistency.
149 [Tags] Verify_Dump_Persistency_On_Dump_Service_Restart
150
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -0500151 Create User Initiated BMC Dump Via Redfish
Rahul Maheshwari2568f872020-09-23 01:03:39 -0500152 ${dump_entries_before}= redfish_utils.get_member_list /redfish/v1/Managers/bmc/LogServices/Dump/Entries
153
154 # Restart dump service.
155 BMC Execute Command systemctl restart xyz.openbmc_project.Dump.Manager.service
156 Sleep 10s reason=Wait for BMC dump service to restart properly
157
158 ${dump_entries_after}= redfish_utils.get_member_list /redfish/v1/Managers/bmc/LogServices/Dump/Entries
159 Lists Should Be Equal ${dump_entries_before} ${dump_entries_after}
160
161
162Verify Dump Persistency On BMC Reset
163 [Documentation] Create user dump, reset BMC and verify dump persistency.
164 [Tags] Verify_Dump_Persistency_On_BMC_Reset
165
manashsarma8fa9c892022-10-03 06:20:58 -0500166 # Power off host so that dump is not offloaded to host OS.
167 Redfish Power Off stack_mode=skip
168
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -0500169 Create User Initiated BMC Dump Via Redfish
Rahul Maheshwari2568f872020-09-23 01:03:39 -0500170 ${dump_entries_before}= redfish_utils.get_member_list /redfish/v1/Managers/bmc/LogServices/Dump/Entries
171
172 # Reset BMC.
George Keishing88ec2802021-08-04 03:04:22 -0500173 OBMC Reboot (off) stack_mode=skip
Rahul Maheshwari2568f872020-09-23 01:03:39 -0500174
175 ${dump_entries_after}= redfish_utils.get_member_list /redfish/v1/Managers/bmc/LogServices/Dump/Entries
176 Lists Should Be Equal ${dump_entries_before} ${dump_entries_after}
177
178
Rahul Maheshwari95cbceb2020-10-21 23:25:08 -0500179Delete User Initiated BMC Dump And Verify
180 [Documentation] Delete user initiated BMC dump and verify.
181 [Tags] Delete_User_Initiated_BMC_Dump_And_Verify
182
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -0500183 ${dump_id}= Create User Initiated BMC Dump Via Redfish
Rahul Maheshwari95cbceb2020-10-21 23:25:08 -0500184 Redfish Delete BMC Dump ${dump_id}
185
186 ${dump_entries}= Get BMC Dump Entries
187 Should Be Empty ${dump_entries}
188
189
190Delete All User Initiated BMC Dumps And Verify
191 [Documentation] Delete all user initiated BMC dumps and verify.
192 [Tags] Delete_All_User_Initiated_BMC_Dumps_And_Verify
193
manashsarma70d840e2022-10-18 02:34:45 -0500194 # Power off host so that dump is not offloaded to host OS.
195 Redfish Power Off stack_mode=skip
196
Rahul Maheshwari95cbceb2020-10-21 23:25:08 -0500197 # Create some BMC dump.
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -0500198 Create User Initiated BMC Dump Via Redfish
199 Create User Initiated BMC Dump Via Redfish
Rahul Maheshwari95cbceb2020-10-21 23:25:08 -0500200
201 Redfish Delete All BMC Dumps
202 ${dump_entries}= Get BMC Dump Entries
203 Should Be Empty ${dump_entries}
204
205
Rahul Maheshwari4f338ab2020-10-21 23:28:40 -0500206Create Two User Initiated BMC Dumps
207 [Documentation] Create two user initiated BMC dumps.
208 [Tags] Create_Two_User_Initiated_BMC_Dumps
209
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -0500210 ${dump_id1}= Create User Initiated BMC Dump Via Redfish
211 ${dump_id2}= Create User Initiated BMC Dump Via Redfish
Rahul Maheshwari4f338ab2020-10-21 23:28:40 -0500212
213 ${dump_entries}= Get BMC Dump Entries
214 Length Should Be ${dump_entries} 2
215 Should Contain ${dump_entries} ${dump_id1}
216 Should Contain ${dump_entries} ${dump_id2}
217
218
219Create Two User Initiated BMC Dumps And Delete One
220 [Documentation] Create two dumps and delete the first.
221 [Tags] Create_Two_User_Initiated_BMC_Dumps_And_Delete_One
222
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -0500223 ${dump_id1}= Create User Initiated BMC Dump Via Redfish
224 ${dump_id2}= Create User Initiated BMC Dump Via Redfish
Rahul Maheshwari4f338ab2020-10-21 23:28:40 -0500225
226 Redfish Delete BMC Dump ${dump_id1}
227
228 ${dump_entries}= Get BMC Dump Entries
229 Length Should Be ${dump_entries} 1
230 List Should Contain Value ${dump_entries} ${dump_id2}
231
232
233Create And Delete User Initiated BMC Dump Multiple Times
234 [Documentation] Create and delete user initiated BMC dump multiple times.
235 [Tags] Create_And_Delete_User_Initiated_BMC_Dump_Multiple_Times
236
237 FOR ${INDEX} IN 1 10
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -0500238 ${dump_id}= Create User Initiated BMC Dump Via Redfish
Rahul Maheshwari4f338ab2020-10-21 23:28:40 -0500239 Redfish Delete BMC Dump ${dump_id}
240 END
241
242
Rahul Maheshwarid709c8d2020-11-01 23:03:51 -0600243Verify Maximum BMC Dump Creation
244 [Documentation] Create maximum BMC dump and verify error when dump runs out of space.
245 [Tags] Verify_Maximum_BMC_Dump_Creation
246 [Teardown] Redfish Delete All BMC Dumps
247
248 # Maximum allowed space for dump is 1024 KB. BMC typically hold 8-14 dumps
249 # before running out of this dump space. So trying to create dumps in 20
250 # iterations to run out of space.
manashsarmabd346b32022-07-20 06:22:58 -0500251 # User can key in the Maximum allowed space for bmc dump and how many iteration.
252 FOR ${n} IN RANGE 0 ${MAX_DUMP_COUNT}
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -0500253 Create User Initiated BMC Dump Via Redfish
Rahul Maheshwarid709c8d2020-11-01 23:03:51 -0600254 ${dump_space}= Get Disk Usage For Dumps
Tim Leede2d1302021-06-18 01:24:11 +0800255 Exit For Loop If ${dump_space} >= (${BMC_DUMP_TOTAL_SIZE} - ${BMC_DUMP_MIN_SPACE_REQD})
Rahul Maheshwarid709c8d2020-11-01 23:03:51 -0600256 END
257
258 # Check error while creating dump when dump size is full.
259 ${payload}= Create Dictionary DiagnosticDataType=Manager
260 Redfish.Post /redfish/v1/Managers/bmc/LogServices/Dump/Actions/LogService.CollectDiagnosticData
261 ... body=${payload} valid_status_codes=[${HTTP_INTERNAL_SERVER_ERROR}]
262
263
manashsarma633cac92022-11-25 03:27:03 -0600264Verify BMC Core Dump When Host Powered Off
265 [Documentation] Verify BMC core dump after application crash at host powered off state.
266 [Tags] Verify_BMC_Core_Dump_When_Host_Powered_Off
267
268 Redfish Power Off stack_mode=skip
269
270 # Ensure all dumps are cleaned out.
271 Redfish Delete All BMC Dumps
272 Trigger Core Dump
273
274 # Verify that BMC dump is available.
275 Wait Until Keyword Succeeds 2 min 10 sec Is BMC Dump Available
276
277
manashsarma849189c2022-11-28 04:16:51 -0600278Verify Core Dump Size
279 [Documentation] Verify BMC core dump size is under 20 MB.
280 [Tags] Verify_Core_Dump_Size
281
282 Redfish Power Off stack_mode=skip
283
284 # Ensure all dumps are cleaned out.
285 Redfish Delete All BMC Dumps
286 Trigger Core Dump
287
288 # Verify that BMC dump is available.
289 Wait Until Keyword Succeeds 2 min 10 sec Is BMC Dump Available
290 ${dump_entries}= Get BMC Dump Entries
291 ${resp}= Redfish.Get Properties
292 ... /redfish/v1/Managers/bmc/LogServices/Dump/Entries/${dump_entries[0]}
293
294 # Max size for dump is 20 MB = 20x1024x1024 Byte.
295 Should Be True 0 < ${resp["AdditionalDataSizeBytes"]} < 20971520
296
297
manashsarmafcbfdf62022-12-07 06:36:28 -0600298Verify Error While Initiating BMC Dump During Dumping State
299 [Documentation] Verify error while initiating BMC dump during dumping state.
300 [Tags] Verify_Error_While_Initiating_BMC_Dump_During_Dumping_State
301
Nandish-Mattiaf5bc152023-01-30 00:49:59 -0600302 ${task_id}= Create User Initiated BMC Dump Via Redfish ${1}
manashsarmafcbfdf62022-12-07 06:36:28 -0600303
304 # Check error while initiating BMC dump while dump in progress.
305 ${payload}= Create Dictionary DiagnosticDataType=Manager
306 Redfish.Post
307 ... /redfish/v1/Managers/bmc/LogServices/Dump/Actions/LogService.CollectDiagnosticData
308 ... body=${payload} valid_status_codes=[${HTTP_SERVICE_UNAVAILABLE}]
309
Nandish-Mattiaf5bc152023-01-30 00:49:59 -0600310 # Wait for above initiated dump to complete. Otherwise, on going dump would impact next test.
311 Wait Until Keyword Succeeds 5 min 15 sec Check Task Completion ${task_id}
312
manashsarmafcbfdf62022-12-07 06:36:28 -0600313
manashsarmaaa845b72022-12-12 05:41:32 -0600314Verify BMC Dump Create Errors While Another BMC Dump In Progress
315 [Documentation] Verify BMC dump creation error until older BMC dump completion.
316 [Tags] Verify_BMC_Dump_Create_Errors_While_Another_BMC_Dump_In_Progress
317
318 # Initiate a BMC dump that returns without completion.
319 ${task_id}= Create User Initiated BMC Dump Via Redfish ${1}
320
321 # Now continue to initiate multiple dump request which is not expected to be accepted
322 # till earlier BMC dump task is completed. A limit is set to avoid risk of infinite loop.
323 ${payload}= Create Dictionary DiagnosticDataType=Manager
324 WHILE True limit=1000
325 ${task_dict}= Redfish.Get Properties /redfish/v1/TaskService/Tasks/${task_id}
326 IF '${task_dict['TaskState']}' == 'Completed' BREAK
327 Redfish.Post
328 ... /redfish/v1/Managers/bmc/LogServices/Dump/Actions/LogService.CollectDiagnosticData
329 ... body=${payload} valid_status_codes=[${HTTP_SERVICE_UNAVAILABLE}]
330 END
331
332 # The next BMC dump initiation request should be accepted as earlier dump is completed.
333 ${resp}= Redfish.Post
334 ... /redfish/v1/Managers/bmc/LogServices/Dump/Actions/LogService.CollectDiagnosticData
335 ... body=${payload} valid_status_codes=[${HTTP_ACCEPTED}]
336
337 # Wait for above initiated dump to complete. Otherwise, on going dump would impact next test.
338 Wait Until Keyword Succeeds 5 min 15 sec Check Task Completion ${resp.dict['Id']}
339
340
manashsarmaadabd3b2023-02-08 04:51:32 -0600341Verify Core Dump After Terminating Dump Manager Service
342 [Documentation] Verify initiate core dumps and kill Phosphor-dump-manager.
343 [Tags] Verify_Core_Dump_After_Terminating_Dump_Manager_Service
344
345 Redfish Power Off stack_mode=skip
346
347 # Remove all available dumps in BMC.
348 Redfish Delete All BMC Dumps
349
350 # Find the pid of the phosphor-dump-manage process and kill it.
351 ${cmd_buf}= Catenate kill -s SEGV $(pgrep phosphor-dump-manager)
352 ${cmd_output} ${stderr} ${rc}= BMC Execute Command ${cmd_buf}
353 Should Be Equal As Integers ${rc} ${0}
354
355 # Verify that BMC dump is available.
356 Wait Until Keyword Succeeds 2 min 10 sec Is BMC Dump Available
357
George Keishing4611b812023-02-16 09:44:33 -0600358 # Verifying that there is only one dump.
manashsarmaadabd3b2023-02-08 04:51:32 -0600359 ${dump_entries}= Get BMC Dump Entries
360 ${length}= Get length ${dump_entries}
361 Should Be Equal As Integers ${length} ${1}
362
363
manashsarma7bf47d22023-02-08 01:10:18 -0600364Verify Error Log And Dump For Internal Failure
365 [Documentation] Verify error log and dump for internal failure.
366 [Tags] Verify_Error_Log_And_Dump_For_Internal_Failure
367
368 Redfish Purge Event Log
369 Redfish Delete All BMC Dumps
370
371 # Create an internal failure error log.
372 BMC Execute Command ${CMD_INTERNAL_FAILURE}
373
374 # With internal failure, an error log file is generated. Check if
375 # BMC has only one error log for this internal failure.
376 ${resp}= Redfish.Get /redfish/v1/Systems/system/LogServices/CELog/Entries
377 Should Be True ${resp.dict["Members@odata.count"]} == ${1}
378
379 # Wait for the BMC dump to become available and verify its presence.
380 Wait Until Keyword Succeeds 2 min 10 sec Is BMC Dump Available
381 ${dump_entries}= Get BMC Dump Entries
382 ${length}= Get length ${dump_entries}
383 Should Be Equal As Integers ${length} ${1}
384
385
manashsarma35247412023-02-06 02:14:04 -0600386Verify Core Watchdog Initiated BMC Dump
387 [Documentation] Verify core watchdog timeout initiated BMC dump.
388 [Tags] Verify_Core_Watchdog_Initiated_BMC_Dump
389
390 Redfish Delete All BMC Dumps
391 Redfish Power Off stack_mode=skip
392
393 # Trigger watchdog timeout.
394 Redfish Initiate Auto Reboot 2000
395
396 # Wait for BMC dump to get generated after injecting watchdog timeout.
397 Wait Until Keyword Succeeds 4 min 20 sec Is BMC Dump Available
398
399 # Verify that only one BMC dump is available.
400 ${dump_entry_list}= Get BMC Dump Entries
401 ${length}= Get length ${dump_entry_list}
402 Should Be Equal As Integers ${length} ${1}
403
404
Rahul Maheshwari2568f872020-09-23 01:03:39 -0500405*** Keywords ***
406
Rahul Maheshwaribcefdf22020-10-16 07:51:34 -0500407Get BMC Dump Entries
408 [Documentation] Return BMC dump ids list.
409
410 ${dump_uris}= redfish_utils.get_member_list /redfish/v1/Managers/bmc/LogServices/Dump/Entries
411 ${dump_ids}= Create List
412
413 FOR ${dump_uri} IN @{dump_uris}
414 ${dump_id}= Fetch From Right ${dump_uri} /
415 Append To List ${dump_ids} ${dump_id}
416 END
417
418 [Return] ${dump_ids}
419
420
manashsarma633cac92022-11-25 03:27:03 -0600421Is BMC Dump Available
422 [Documentation] Verify if BMC dump is available.
423
424 ${dump_entries}= Get BMC Dump Entries
425
426 # Verifying that BMC dump is available.
427 ${length}= Get length ${dump_entries}
428 Should Be True 0 < ${length}
429
430
Rahul Maheshwarid709c8d2020-11-01 23:03:51 -0600431Get Disk Usage For Dumps
432 [Documentation] Return disk usage in kilobyte for BMC dumps.
433
George Keishing952bb0f2022-12-12 03:13:35 -0600434 ${usage_output} ${stderr} ${rc}= BMC Execute Command du -s ${BMC_DUMP_COLLECTOR_PATH}
Rahul Maheshwarid709c8d2020-11-01 23:03:51 -0600435
436 # Example of output from above BMC cli command.
437 # $ du -s /var/lib/phosphor-debug-collector/dumps
438 # 516 /var/lib/phosphor-debug-collector/dumps
439
440 ${usage_output}= Fetch From Left ${usage_output} /
441 ${usage_output}= Convert To Integer ${usage_output}
442
443 [return] ${usage_output}
444
445
Rahul Maheshwari2568f872020-09-23 01:03:39 -0500446Test Teardown Execution
447 [Documentation] Do test teardown operation.
448
449 FFDC On Test Case Fail
450 Close All Connections