blob: 7571f7c259fe67a402dce577aa889bb0b160229d [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
Rahul Maheshwari2568f872020-09-23 01:03:39 -05009
George Keishingf514ccb2021-02-02 23:55:56 -060010Suite Setup Redfish.Login
Rahul Maheshwari2568f872020-09-23 01:03:39 -050011Test Setup Redfish Delete All BMC Dumps
12Test Teardown Test Teardown Execution
13
Tim Leede2d1302021-06-18 01:24:11 +080014*** Variables ***
15
16# Total size of the dump in kilo bytes
17${BMC_DUMP_TOTAL_SIZE} ${1024}
18
19# Minimum space required for one bmc dump in kilo bytes
20${BMC_DUMP_MIN_SPACE_REQD} ${20}
manashsarmabd346b32022-07-20 06:22:58 -050021${MAX_DUMP_COUNT} ${20}
Rahul Maheshwari2568f872020-09-23 01:03:39 -050022
23*** Test Cases ***
24
manashsarma4b5b1fa2022-11-16 02:36:58 -060025Verify Error Response For Already Deleted Dump Id
26 [Documentation] Delete non existing BMC dump and expect an error.
27 [Tags] Verify_Error_Response_For_Already_Deleted_Dump_Id
28
29 ${dump_id}= Create User Initiated BMC Dump Via Redfish
30 Redfish Delete BMC Dump ${dump_id}
31 Run Keyword And Expect Error ValueError: * Redfish Delete BMC Dump ${dump_id}
32
33
Rahul Maheshwari2568f872020-09-23 01:03:39 -050034Verify User Initiated BMC Dump When Host Powered Off
35 [Documentation] Create user initiated BMC dump at host off state and
36 ... verify dump entry for it.
37 [Tags] Verify_User_Initiated_BMC_Dump_When_Host_Powered_Off
38
39 Redfish Power Off stack_mode=skip
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -050040 ${dump_id}= Create User Initiated BMC Dump Via Redfish
Rahul Maheshwaribcefdf22020-10-16 07:51:34 -050041 ${dump_entries}= Get BMC Dump Entries
Rahul Maheshwari2568f872020-09-23 01:03:39 -050042 Length Should Be ${dump_entries} 1
43 List Should Contain Value ${dump_entries} ${dump_id}
44
Rahul Maheshwari2568f872020-09-23 01:03:39 -050045
Rahul Maheshwarie8e9d0c2020-10-30 02:39:01 -050046Verify User Initiated BMC Dump Size
manashsarma7831dc22022-03-08 01:49:36 -060047 [Documentation] Verify user initiated BMC dump size is under 20 MB.
Rahul Maheshwarie8e9d0c2020-10-30 02:39:01 -050048 [Tags] Verify_User_Initiated_BMC_Dump_Size
49
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -050050 ${dump_id}= Create User Initiated BMC Dump Via Redfish
Rahul Maheshwarie8e9d0c2020-10-30 02:39:01 -050051 ${resp}= Redfish.Get Properties /redfish/v1/Managers/bmc/LogServices/Dump/Entries/${dump_id}
52
53 # Example of response from above Redfish GET request.
54 # "@odata.type": "#LogEntry.v1_7_0.LogEntry",
55 # "AdditionalDataSizeBytes": 31644,
56 # "AdditionalDataURI": "/redfish/v1/Managers/bmc/LogServices/Dump/attachment/9",
57 # "Created": "2020-10-23T06:32:53+00:00",
58 # "DiagnosticDataType": "Manager",
59 # "EntryType": "Event",
60 # "Id": "9",
61 # "Name": "BMC Dump Entry"
62
manashsarma7831dc22022-03-08 01:49:36 -060063 # Max size for dump is 20 MB = 20x1024x1024 Byte.
64 Should Be True 0 < ${resp["AdditionalDataSizeBytes"]} < 20971520
Rahul Maheshwarie8e9d0c2020-10-30 02:39:01 -050065
66
manashsarmabbc68bc2022-12-05 09:55:17 -060067Verify Multiple BMC Dump Creation
68 [Documentation] Verify that multiple BMC dumps can be created one after
69 ... another successfully.
70 [Tags] Verify_Multiple_BMC_Dump_Creation
71
72 ${dump_count}= Evaluate random.randint(5, 10) modules=random
73 FOR ${INDEX} IN 1 ${dump_count}
74 Create User Initiated BMC Dump Via Redfish
75 END
76
77
George Keishing3d850982022-07-19 11:03:03 -050078Verify User Initiated BMC Dump When Host Booted
79 [Documentation] Create user initiated BMC dump at host booted state and
80 ... verify dump entry for it.
81 [Tags] Verify_User_Initiated_BMC_Dump_When_Host_Booted
82
83 Redfish Power On stack_mode=skip
84 ${dump_id}= Create User Initiated BMC Dump Via Redfish
85 ${dump_entries}= Get BMC Dump Entries
86 Length Should Be ${dump_entries} 1
87 List Should Contain Value ${dump_entries} ${dump_id}
88
89
Rahul Maheshwari2568f872020-09-23 01:03:39 -050090Verify Dump Persistency On Dump Service Restart
91 [Documentation] Create user dump, restart dump manager service and verify dump
92 ... persistency.
93 [Tags] Verify_Dump_Persistency_On_Dump_Service_Restart
94
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -050095 Create User Initiated BMC Dump Via Redfish
Rahul Maheshwari2568f872020-09-23 01:03:39 -050096 ${dump_entries_before}= redfish_utils.get_member_list /redfish/v1/Managers/bmc/LogServices/Dump/Entries
97
98 # Restart dump service.
99 BMC Execute Command systemctl restart xyz.openbmc_project.Dump.Manager.service
100 Sleep 10s reason=Wait for BMC dump service to restart properly
101
102 ${dump_entries_after}= redfish_utils.get_member_list /redfish/v1/Managers/bmc/LogServices/Dump/Entries
103 Lists Should Be Equal ${dump_entries_before} ${dump_entries_after}
104
105
106Verify Dump Persistency On BMC Reset
107 [Documentation] Create user dump, reset BMC and verify dump persistency.
108 [Tags] Verify_Dump_Persistency_On_BMC_Reset
109
manashsarma8fa9c892022-10-03 06:20:58 -0500110 # Power off host so that dump is not offloaded to host OS.
111 Redfish Power Off stack_mode=skip
112
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -0500113 Create User Initiated BMC Dump Via Redfish
Rahul Maheshwari2568f872020-09-23 01:03:39 -0500114 ${dump_entries_before}= redfish_utils.get_member_list /redfish/v1/Managers/bmc/LogServices/Dump/Entries
115
116 # Reset BMC.
George Keishing88ec2802021-08-04 03:04:22 -0500117 OBMC Reboot (off) stack_mode=skip
Rahul Maheshwari2568f872020-09-23 01:03:39 -0500118
119 ${dump_entries_after}= redfish_utils.get_member_list /redfish/v1/Managers/bmc/LogServices/Dump/Entries
120 Lists Should Be Equal ${dump_entries_before} ${dump_entries_after}
121
122
Rahul Maheshwari95cbceb2020-10-21 23:25:08 -0500123Delete User Initiated BMC Dump And Verify
124 [Documentation] Delete user initiated BMC dump and verify.
125 [Tags] Delete_User_Initiated_BMC_Dump_And_Verify
126
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -0500127 ${dump_id}= Create User Initiated BMC Dump Via Redfish
Rahul Maheshwari95cbceb2020-10-21 23:25:08 -0500128 Redfish Delete BMC Dump ${dump_id}
129
130 ${dump_entries}= Get BMC Dump Entries
131 Should Be Empty ${dump_entries}
132
133
134Delete All User Initiated BMC Dumps And Verify
135 [Documentation] Delete all user initiated BMC dumps and verify.
136 [Tags] Delete_All_User_Initiated_BMC_Dumps_And_Verify
137
manashsarma70d840e2022-10-18 02:34:45 -0500138 # Power off host so that dump is not offloaded to host OS.
139 Redfish Power Off stack_mode=skip
140
Rahul Maheshwari95cbceb2020-10-21 23:25:08 -0500141 # Create some BMC dump.
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -0500142 Create User Initiated BMC Dump Via Redfish
143 Create User Initiated BMC Dump Via Redfish
Rahul Maheshwari95cbceb2020-10-21 23:25:08 -0500144
145 Redfish Delete All BMC Dumps
146 ${dump_entries}= Get BMC Dump Entries
147 Should Be Empty ${dump_entries}
148
149
Rahul Maheshwari4f338ab2020-10-21 23:28:40 -0500150Create Two User Initiated BMC Dumps
151 [Documentation] Create two user initiated BMC dumps.
152 [Tags] Create_Two_User_Initiated_BMC_Dumps
153
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -0500154 ${dump_id1}= Create User Initiated BMC Dump Via Redfish
155 ${dump_id2}= Create User Initiated BMC Dump Via Redfish
Rahul Maheshwari4f338ab2020-10-21 23:28:40 -0500156
157 ${dump_entries}= Get BMC Dump Entries
158 Length Should Be ${dump_entries} 2
159 Should Contain ${dump_entries} ${dump_id1}
160 Should Contain ${dump_entries} ${dump_id2}
161
162
163Create Two User Initiated BMC Dumps And Delete One
164 [Documentation] Create two dumps and delete the first.
165 [Tags] Create_Two_User_Initiated_BMC_Dumps_And_Delete_One
166
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -0500167 ${dump_id1}= Create User Initiated BMC Dump Via Redfish
168 ${dump_id2}= Create User Initiated BMC Dump Via Redfish
Rahul Maheshwari4f338ab2020-10-21 23:28:40 -0500169
170 Redfish Delete BMC Dump ${dump_id1}
171
172 ${dump_entries}= Get BMC Dump Entries
173 Length Should Be ${dump_entries} 1
174 List Should Contain Value ${dump_entries} ${dump_id2}
175
176
177Create And Delete User Initiated BMC Dump Multiple Times
178 [Documentation] Create and delete user initiated BMC dump multiple times.
179 [Tags] Create_And_Delete_User_Initiated_BMC_Dump_Multiple_Times
180
181 FOR ${INDEX} IN 1 10
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -0500182 ${dump_id}= Create User Initiated BMC Dump Via Redfish
Rahul Maheshwari4f338ab2020-10-21 23:28:40 -0500183 Redfish Delete BMC Dump ${dump_id}
184 END
185
186
Rahul Maheshwarid709c8d2020-11-01 23:03:51 -0600187Verify Maximum BMC Dump Creation
188 [Documentation] Create maximum BMC dump and verify error when dump runs out of space.
189 [Tags] Verify_Maximum_BMC_Dump_Creation
190 [Teardown] Redfish Delete All BMC Dumps
191
192 # Maximum allowed space for dump is 1024 KB. BMC typically hold 8-14 dumps
193 # before running out of this dump space. So trying to create dumps in 20
194 # iterations to run out of space.
manashsarmabd346b32022-07-20 06:22:58 -0500195 # User can key in the Maximum allowed space for bmc dump and how many iteration.
196 FOR ${n} IN RANGE 0 ${MAX_DUMP_COUNT}
Rahul Maheshwaribd38aa42021-08-04 01:24:39 -0500197 Create User Initiated BMC Dump Via Redfish
Rahul Maheshwarid709c8d2020-11-01 23:03:51 -0600198 ${dump_space}= Get Disk Usage For Dumps
Tim Leede2d1302021-06-18 01:24:11 +0800199 Exit For Loop If ${dump_space} >= (${BMC_DUMP_TOTAL_SIZE} - ${BMC_DUMP_MIN_SPACE_REQD})
Rahul Maheshwarid709c8d2020-11-01 23:03:51 -0600200 END
201
202 # Check error while creating dump when dump size is full.
203 ${payload}= Create Dictionary DiagnosticDataType=Manager
204 Redfish.Post /redfish/v1/Managers/bmc/LogServices/Dump/Actions/LogService.CollectDiagnosticData
205 ... body=${payload} valid_status_codes=[${HTTP_INTERNAL_SERVER_ERROR}]
206
207
manashsarma633cac92022-11-25 03:27:03 -0600208Verify BMC Core Dump When Host Powered Off
209 [Documentation] Verify BMC core dump after application crash at host powered off state.
210 [Tags] Verify_BMC_Core_Dump_When_Host_Powered_Off
211
212 Redfish Power Off stack_mode=skip
213
214 # Ensure all dumps are cleaned out.
215 Redfish Delete All BMC Dumps
216 Trigger Core Dump
217
218 # Verify that BMC dump is available.
219 Wait Until Keyword Succeeds 2 min 10 sec Is BMC Dump Available
220
221
manashsarma849189c2022-11-28 04:16:51 -0600222Verify Core Dump Size
223 [Documentation] Verify BMC core dump size is under 20 MB.
224 [Tags] Verify_Core_Dump_Size
225
226 Redfish Power Off stack_mode=skip
227
228 # Ensure all dumps are cleaned out.
229 Redfish Delete All BMC Dumps
230 Trigger Core Dump
231
232 # Verify that BMC dump is available.
233 Wait Until Keyword Succeeds 2 min 10 sec Is BMC Dump Available
234 ${dump_entries}= Get BMC Dump Entries
235 ${resp}= Redfish.Get Properties
236 ... /redfish/v1/Managers/bmc/LogServices/Dump/Entries/${dump_entries[0]}
237
238 # Max size for dump is 20 MB = 20x1024x1024 Byte.
239 Should Be True 0 < ${resp["AdditionalDataSizeBytes"]} < 20971520
240
241
manashsarmafcbfdf62022-12-07 06:36:28 -0600242Verify Error While Initiating BMC Dump During Dumping State
243 [Documentation] Verify error while initiating BMC dump during dumping state.
244 [Tags] Verify_Error_While_Initiating_BMC_Dump_During_Dumping_State
245
246 Create User Initiated BMC Dump Via Redfish skip_dump_creation=1
247
248 # Check error while initiating BMC dump while dump in progress.
249 ${payload}= Create Dictionary DiagnosticDataType=Manager
250 Redfish.Post
251 ... /redfish/v1/Managers/bmc/LogServices/Dump/Actions/LogService.CollectDiagnosticData
252 ... body=${payload} valid_status_codes=[${HTTP_SERVICE_UNAVAILABLE}]
253
254
Rahul Maheshwari2568f872020-09-23 01:03:39 -0500255*** Keywords ***
256
Rahul Maheshwaribcefdf22020-10-16 07:51:34 -0500257Get BMC Dump Entries
258 [Documentation] Return BMC dump ids list.
259
260 ${dump_uris}= redfish_utils.get_member_list /redfish/v1/Managers/bmc/LogServices/Dump/Entries
261 ${dump_ids}= Create List
262
263 FOR ${dump_uri} IN @{dump_uris}
264 ${dump_id}= Fetch From Right ${dump_uri} /
265 Append To List ${dump_ids} ${dump_id}
266 END
267
268 [Return] ${dump_ids}
269
270
manashsarma633cac92022-11-25 03:27:03 -0600271Is BMC Dump Available
272 [Documentation] Verify if BMC dump is available.
273
274 ${dump_entries}= Get BMC Dump Entries
275
276 # Verifying that BMC dump is available.
277 ${length}= Get length ${dump_entries}
278 Should Be True 0 < ${length}
279
280
Rahul Maheshwarid709c8d2020-11-01 23:03:51 -0600281Get Disk Usage For Dumps
282 [Documentation] Return disk usage in kilobyte for BMC dumps.
283
284 ${usage_output} ${stderr} ${rc}= BMC Execute Command du -s /var/lib/phosphor-debug-collector/dumps
285
286 # Example of output from above BMC cli command.
287 # $ du -s /var/lib/phosphor-debug-collector/dumps
288 # 516 /var/lib/phosphor-debug-collector/dumps
289
290 ${usage_output}= Fetch From Left ${usage_output} /
291 ${usage_output}= Convert To Integer ${usage_output}
292
293 [return] ${usage_output}
294
295
Rahul Maheshwari2568f872020-09-23 01:03:39 -0500296Test Teardown Execution
297 [Documentation] Do test teardown operation.
298
299 FFDC On Test Case Fail
300 Close All Connections