Rahul Maheshwari | faa5d20 | 2020-02-24 23:32:57 -0600 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation This suite tests Platform Event Log (PEL) functionality of OpenBMC. |
| 3 | |
| 4 | Library ../../lib/pel_utils.py |
Rahul Maheshwari | a17a339 | 2020-03-02 04:51:52 -0600 | [diff] [blame] | 5 | Variables ../../data/pel_variables.py |
Rahul Maheshwari | 8f5256f | 2020-02-26 23:53:55 -0600 | [diff] [blame] | 6 | Resource ../../lib/list_utils.robot |
Rahul Maheshwari | f4a01aa | 2020-08-24 23:22:59 -0500 | [diff] [blame] | 7 | Resource ../../lib/logging_utils.robot |
manashsarma | 1810a5b | 2020-12-09 20:09:20 -0600 | [diff] [blame] | 8 | Resource ../../lib/connection_client.robot |
Rahul Maheshwari | faa5d20 | 2020-02-24 23:32:57 -0600 | [diff] [blame] | 9 | Resource ../../lib/openbmc_ffdc.robot |
| 10 | |
Rahul Maheshwari | f575c90 | 2020-02-26 04:38:40 -0600 | [diff] [blame] | 11 | Test Setup Redfish.Login |
| 12 | Test Teardown Run Keywords Redfish.Logout AND FFDC On Test Case Fail |
Rahul Maheshwari | faa5d20 | 2020-02-24 23:32:57 -0600 | [diff] [blame] | 13 | |
| 14 | |
| 15 | *** Variables *** |
| 16 | |
dnirmala | 789c802 | 2022-11-18 05:49:08 -0600 | [diff] [blame] | 17 | @{mandatory_pel_fields} Private Header User Header Primary SRC |
| 18 | ... Extended User Header Failing MTMS |
| 19 | @{mandatory_Predictive_pel_fields} Private Header User Header Primary SRC |
| 20 | ... Extended User Header Failing MTMS User Data |
dnirmala | 819be78 | 2022-11-07 04:34:40 -0600 | [diff] [blame] | 21 | @{Mandatory_Informational_Pel_Fields} Private Header User Header Primary SRC |
dnirmala | 789c802 | 2022-11-18 05:49:08 -0600 | [diff] [blame] | 22 | ... Extended User Header User Data |
Rahul Maheshwari | b8580dd | 2021-05-10 00:57:33 -0500 | [diff] [blame] | 23 | |
Rahul Maheshwari | faa5d20 | 2020-02-24 23:32:57 -0600 | [diff] [blame] | 24 | *** Test Cases *** |
| 25 | |
| 26 | Create Test PEL Log And Verify |
| 27 | [Documentation] Create PEL log using busctl command and verify via peltool. |
| 28 | [Tags] Create_Test_PEL_Log_And_Verify |
| 29 | |
Rahul Maheshwari | f575c90 | 2020-02-26 04:38:40 -0600 | [diff] [blame] | 30 | Redfish Purge Event Log |
Rahul Maheshwari | faa5d20 | 2020-02-24 23:32:57 -0600 | [diff] [blame] | 31 | Create Test PEL Log |
Rahul Maheshwari | f575c90 | 2020-02-26 04:38:40 -0600 | [diff] [blame] | 32 | ${pel_id}= Get PEL Log Via BMC CLI |
| 33 | Should Not Be Empty ${pel_id} msg=System PEL log entry is empty. |
| 34 | |
| 35 | |
Rahul Maheshwari | a17a339 | 2020-03-02 04:51:52 -0600 | [diff] [blame] | 36 | Verify PEL Log Details |
| 37 | [Documentation] Verify PEL log details via peltool. |
| 38 | [Tags] Verify_PEL_Log_Details |
| 39 | |
| 40 | Redfish Purge Event Log |
| 41 | |
| 42 | ${bmc_time1}= CLI Get BMC DateTime |
| 43 | Create Test PEL Log |
| 44 | ${bmc_time2}= CLI Get BMC DateTime |
| 45 | |
| 46 | ${pel_records}= Peltool -l |
| 47 | |
| 48 | # Example output from 'Peltool -l': |
| 49 | # pel_records: |
| 50 | # [0x50000012]: |
| 51 | # [CreatorID]: BMC |
| 52 | # [CompID]: 0x1000 |
| 53 | # [PLID]: 0x50000012 |
| 54 | # [Subsystem]: BMC Firmware |
| 55 | # [Message]: An application had an internal failure |
| 56 | # [SRC]: BD8D1002 |
| 57 | # [Commit Time]: 03/02/2020 09:35:15 |
| 58 | # [Sev]: Unrecoverable Error |
| 59 | |
| 60 | ${ids}= Get Dictionary Keys ${pel_records} |
| 61 | ${id}= Get From List ${ids} 0 |
| 62 | |
| 63 | @{pel_fields}= Create List CreatorID Subsystem Message Sev |
| 64 | FOR ${field} IN @{pel_fields} |
| 65 | Valid Value pel_records['${id}']['${field}'] ['${PEL_DETAILS['${field}']}'] |
| 66 | END |
| 67 | |
| 68 | Valid Value pel_records['${id}']['PLID'] ['${id}'] |
| 69 | |
| 70 | # Verify if "CompID" and "SRC" fields of PEL has alphanumeric value. |
| 71 | Should Match Regexp ${pel_records['${id}']['CompID']} [a-zA-Z0-9] |
| 72 | Should Match Regexp ${pel_records['${id}']['SRC']} [a-zA-Z0-9] |
| 73 | |
| 74 | ${pel_date_time}= Convert Date ${pel_records['${id}']['Commit Time']} |
| 75 | ... date_format=%m/%d/%Y %H:%M:%S exclude_millis=yes |
| 76 | |
| 77 | # Convert BMC and PEL time to epoch time before comparing. |
| 78 | ${bmc_time1_epoch}= Convert Date ${bmc_time1} epoch |
| 79 | ${pel_time_epoch}= Convert Date ${pel_date_time} epoch |
| 80 | ${bmc_time2_epoch}= Convert Date ${bmc_time2} epoch |
| 81 | |
| 82 | Should Be True ${bmc_time1_epoch} <= ${pel_time_epoch} <= ${bmc_time2_epoch} |
| 83 | |
| 84 | |
Rahul Maheshwari | 3991868 | 2020-07-07 06:42:20 -0500 | [diff] [blame] | 85 | Verify Mandatory Sections Of Error Log PEL |
| 86 | [Documentation] Verify mandatory sections of error log PEL. |
| 87 | [Tags] Verify_Mandatory_Sections_Of_Error_Log_PEL |
| 88 | |
| 89 | Create Test PEL Log |
| 90 | |
| 91 | ${pel_ids}= Get PEL Log Via BMC CLI |
| 92 | ${pel_id}= Get From List ${pel_ids} -1 |
| 93 | ${pel_output}= Peltool -i ${pel_id} |
| 94 | ${pel_sections}= Get Dictionary Keys ${pel_output} |
| 95 | |
dnirmala | 789c802 | 2022-11-18 05:49:08 -0600 | [diff] [blame] | 96 | List Should Contain Sub List ${pel_sections} ${mandatory_pel_fields} |
Rahul Maheshwari | 3991868 | 2020-07-07 06:42:20 -0500 | [diff] [blame] | 97 | |
| 98 | |
Rahul Maheshwari | f575c90 | 2020-02-26 04:38:40 -0600 | [diff] [blame] | 99 | Verify PEL Log Persistence After BMC Reboot |
| 100 | [Documentation] Verify PEL log persistence after BMC reboot. |
| 101 | [Tags] Verify_PEL_Log_Persistence_After_BMC_Reboot |
| 102 | |
| 103 | Create Test PEL Log |
| 104 | ${pel_before_reboot}= Get PEL Log Via BMC CLI |
| 105 | |
| 106 | Redfish OBMC Reboot (off) |
| 107 | ${pel_after_reboot}= Get PEL Log Via BMC CLI |
| 108 | |
| 109 | List Should Contain Sub List ${pel_after_reboot} ${pel_before_reboot} |
Rahul Maheshwari | faa5d20 | 2020-02-24 23:32:57 -0600 | [diff] [blame] | 110 | |
| 111 | |
Rahul Maheshwari | 58b99fc | 2020-03-03 00:05:55 -0600 | [diff] [blame] | 112 | Verify PEL ID Numbering |
| 113 | [Documentation] Verify PEL ID numbering. |
| 114 | [Tags] Verify_PEL_ID_Numbering |
| 115 | |
| 116 | Redfish Purge Event Log |
| 117 | Create Test PEL Log |
| 118 | Create Test PEL Log |
| 119 | |
| 120 | ${pel_ids}= Get PEL Log Via BMC CLI |
| 121 | |
| 122 | # Example of PEL IDs from PEL logs. |
| 123 | # [0x50000012]: <--- First PEL ID |
| 124 | # [CreatorID]: BMC |
| 125 | # [CompID]: 0x1000 |
| 126 | # [PLID]: 0x50000012 |
| 127 | # [Subsystem]: BMC Firmware |
| 128 | # [Message]: An application had an internal failure |
| 129 | # [SRC]: BD8D1002 |
| 130 | # [Commit Time]: 03/02/2020 09:35:15 |
| 131 | # [Sev]: Unrecoverable Error |
| 132 | # |
| 133 | # [0x50000013]: <--- Second PEL ID |
| 134 | # [CreatorID]: BMC |
| 135 | # [CompID]: 0x1000 |
| 136 | # [PLID]: 0x50000013 |
| 137 | # [Subsystem]: BMC Firmware |
| 138 | # [Message]: An application had an internal failure |
| 139 | # [SRC]: BD8D1002 |
| 140 | # [Commit Time]: 03/02/2020 09:35:15 |
| 141 | # [Sev]: Unrecoverable Error |
| 142 | |
| 143 | Should Be True ${pel_ids[1]} == ${pel_ids[0]}+1 |
| 144 | |
Rahul Maheshwari | 371e4f8 | 2020-04-06 22:53:52 -0500 | [diff] [blame] | 145 | Verify Machine Type Model And Serial Number |
| 146 | [Documentation] Verify machine type model and serial number from PEL. |
| 147 | [Tags] Verify_Machine_Type_Model_And_Serial_Number |
| 148 | |
| 149 | Create Test PEL Log |
| 150 | |
| 151 | ${pel_ids}= Get PEL Log Via BMC CLI |
| 152 | ${id}= Get From List ${pel_ids} -1 |
Rahul Maheshwari | 56dba36 | 2020-05-12 00:59:48 -0500 | [diff] [blame] | 153 | |
Rahul Maheshwari | 371e4f8 | 2020-04-06 22:53:52 -0500 | [diff] [blame] | 154 | ${pel_serial_number}= Get PEL Field Value ${id} Failing MTMS Serial Number |
Rahul Maheshwari | 56dba36 | 2020-05-12 00:59:48 -0500 | [diff] [blame] | 155 | ${pel_serial_number}= Replace String Using Regexp ${pel_serial_number} ^0+ ${EMPTY} |
Rahul Maheshwari | 371e4f8 | 2020-04-06 22:53:52 -0500 | [diff] [blame] | 156 | ${pel_machine_type_model}= Get PEL Field Value ${id} Failing MTMS Machine Type Model |
Rahul Maheshwari | 56dba36 | 2020-05-12 00:59:48 -0500 | [diff] [blame] | 157 | ${pel_machine_type_model}= Replace String Using Regexp ${pel_machine_type_model} ^0+ ${EMPTY} |
Rahul Maheshwari | 371e4f8 | 2020-04-06 22:53:52 -0500 | [diff] [blame] | 158 | |
| 159 | # Example of "Machine Type Model" and "Serial Number" fields value from "Failing MTMS" section of PEL. |
| 160 | # [Failing MTMS]: |
| 161 | # [Created by]: 0x2000 |
| 162 | # [Machine Type Model]: 1234-ABC <---- Machine type |
| 163 | # [Section Version]: 1 |
| 164 | # [Serial Number]: ABCDEFG <---- Serial number |
| 165 | # [Sub-section type]: 0 |
| 166 | |
| 167 | ${redfish_machine_model}= Redfish.Get Attribute /redfish/v1/Systems/system/ Model |
Rahul Maheshwari | 56dba36 | 2020-05-12 00:59:48 -0500 | [diff] [blame] | 168 | ${redfish_machine_model}= Replace String Using Regexp ${redfish_machine_model} ^0+ ${EMPTY} |
Rahul Maheshwari | 371e4f8 | 2020-04-06 22:53:52 -0500 | [diff] [blame] | 169 | ${redfish_serial_number}= Redfish.Get Attribute /redfish/v1/Systems/system/ SerialNumber |
Rahul Maheshwari | 56dba36 | 2020-05-12 00:59:48 -0500 | [diff] [blame] | 170 | ${redfish_serial_number}= Replace String Using Regexp ${redfish_serial_number} ^0+ ${EMPTY} |
Rahul Maheshwari | 371e4f8 | 2020-04-06 22:53:52 -0500 | [diff] [blame] | 171 | |
| 172 | Valid Value pel_machine_type_model ['${redfish_machine_model}'] |
| 173 | Valid Value pel_serial_number ['${redfish_serial_number}'] |
| 174 | |
| 175 | # Check "Machine Type Model" and "Serial Number" fields value from "Extended User Header" section of PEL. |
| 176 | ${pel_machine_type_model}= Get PEL Field Value ${id} Extended User Header Reporting Machine Type |
Rahul Maheshwari | 56dba36 | 2020-05-12 00:59:48 -0500 | [diff] [blame] | 177 | ${pel_machine_type_model}= Replace String Using Regexp ${pel_machine_type_model} ^0+ ${EMPTY} |
Rahul Maheshwari | 371e4f8 | 2020-04-06 22:53:52 -0500 | [diff] [blame] | 178 | ${pel_serial_number}= Get PEL Field Value ${id} Extended User Header Reporting Serial Number |
Rahul Maheshwari | 56dba36 | 2020-05-12 00:59:48 -0500 | [diff] [blame] | 179 | ${pel_serial_number}= Replace String Using Regexp ${pel_serial_number} ^0+ ${EMPTY} |
Rahul Maheshwari | 371e4f8 | 2020-04-06 22:53:52 -0500 | [diff] [blame] | 180 | |
| 181 | Valid Value pel_machine_type_model ['${redfish_machine_model}'] |
| 182 | Valid Value pel_serial_number ['${redfish_serial_number}'] |
| 183 | |
Rahul Maheshwari | 58b99fc | 2020-03-03 00:05:55 -0600 | [diff] [blame] | 184 | |
Rahul Maheshwari | 1bea6cc | 2020-03-31 00:53:14 -0500 | [diff] [blame] | 185 | Verify Host Off State From PEL |
| 186 | [Documentation] Verify Host off state from PEL. |
| 187 | [Tags] Verify_Host_Off_State_From_PEL |
| 188 | |
| 189 | Redfish Power Off stack_mode=skip |
| 190 | Create Test PEL Log |
| 191 | |
| 192 | ${pel_ids}= Get PEL Log Via BMC CLI |
| 193 | ${id}= Get From List ${pel_ids} -1 |
| 194 | ${pel_host_state}= Get PEL Field Value ${id} User Data HostState |
| 195 | |
| 196 | Valid Value pel_host_state ['Off'] |
| 197 | |
| 198 | |
dnirmala | b50aa77 | 2022-12-15 01:36:52 -0600 | [diff] [blame] | 199 | Verify Host On State From PEL |
| 200 | [Documentation] Verify Host on state from PEL. |
| 201 | [Tags] Verify_Host_On_State_From_PEL |
| 202 | |
| 203 | Redfish Power On stack_mode=skip |
| 204 | Create Test PEL Log |
| 205 | |
| 206 | ${pel_ids}= Get PEL Log Via BMC CLI |
| 207 | ${id}= Get From List ${pel_ids} -1 |
| 208 | ${pel_host_state}= Get PEL Field Value ${id} User Data HostState |
| 209 | |
| 210 | Valid Value pel_host_state ['Running'] |
| 211 | |
| 212 | |
Rahul Maheshwari | 1bea6cc | 2020-03-31 00:53:14 -0500 | [diff] [blame] | 213 | Verify BMC Version From PEL |
| 214 | [Documentation] Verify BMC Version from PEL. |
| 215 | [Tags] Verify_BMC_Version_From_PEL |
| 216 | |
| 217 | Create Test PEL Log |
| 218 | |
| 219 | ${pel_ids}= Get PEL Log Via BMC CLI |
| 220 | ${id}= Get From List ${pel_ids} -1 |
Rahul Maheshwari | f6600f8 | 2021-05-28 01:25:20 -0500 | [diff] [blame] | 221 | ${pel_bmc_version}= Get PEL Field Value ${id} User Data FW Version ID |
Rahul Maheshwari | 1bea6cc | 2020-03-31 00:53:14 -0500 | [diff] [blame] | 222 | |
| 223 | ${bmc_version}= Get BMC Version |
| 224 | Valid Value bmc_version ['${bmc_version}'] |
| 225 | |
| 226 | |
Rahul Maheshwari | 8f5256f | 2020-02-26 23:53:55 -0600 | [diff] [blame] | 227 | Verify PEL Log After Host Poweron |
| 228 | [Documentation] Verify PEL log generation while booting host. |
| 229 | [Tags] Verify_PEL_Log_After_Host_Poweron |
| 230 | |
| 231 | Redfish Power Off stack_mode=skip |
| 232 | Redfish Purge Event Log |
| 233 | Redfish Power On stack_mode=skip |
| 234 | |
| 235 | ${pel_informational_error}= Get PEL Log IDs User Header Event Severity Informational Event |
| 236 | ${pel_bmc_created_error}= Get PEL Log IDs Private Header Creator Subsystem BMC |
| 237 | |
| 238 | # Get BMC created non-infomational error. |
| 239 | ${pel_bmc_error}= Subtract Lists ${pel_bmc_created_error} ${pel_informational_error} |
| 240 | |
| 241 | Should Be Empty ${pel_bmc_error} msg=Unexpected error log generated during Host poweron. |
| 242 | |
| 243 | |
Rahul Maheshwari | 089615b | 2020-04-02 01:01:38 -0500 | [diff] [blame] | 244 | Verify BMC Event Log ID |
| 245 | [Documentation] Verify BMC Event Log ID from PEL. |
| 246 | [Tags] Verify_BMC_Event_Log_ID |
| 247 | |
| 248 | Redfish Purge Event Log |
| 249 | Create Test PEL Log |
| 250 | |
| 251 | ${pel_ids}= Get PEL Log Via BMC CLI |
| 252 | ${pel_bmc_event_log_id}= Get PEL Field Value ${pel_ids[0]} Private Header BMC Event Log Id |
| 253 | |
| 254 | # Example "BMC Event Log Id" field value from "Private Header" section of PEL. |
| 255 | # [Private Header]: |
| 256 | # [Created at]: 08/24/1928 12:04:06 |
| 257 | # [Created by]: 0x584D |
| 258 | # [Sub-section type]: 0 |
| 259 | # [Entry Id]: 0x50000BB7 |
| 260 | # [Platform Log Id]: 0x8200061D |
| 261 | # [CSSVER]: |
| 262 | # [Section Version]: 1 |
| 263 | # [Creator Subsystem]: PHYP |
| 264 | # [BMC Event Log Id]: 341 <---- BMC event log id value |
| 265 | # [Committed at]: 03/25/1920 12:06:22 |
| 266 | |
| 267 | ${redfish_event_logs}= Redfish.Get Properties /redfish/v1/Systems/system/LogServices/EventLog/Entries |
| 268 | |
| 269 | # Example of redfish_event_logs output: |
| 270 | # redfish_event_logs: |
| 271 | # [@odata.id]: /redfish/v1/Systems/system/LogServices/EventLog/Entries |
| 272 | # [Name]: System Event Log Entries |
| 273 | # [Members@odata.count]: 1 |
| 274 | # [@odata.type]: #LogEntryCollection.LogEntryCollection |
| 275 | # [Description]: Collection of System Event Log Entries |
| 276 | # [Members]: |
| 277 | # [0]: |
| 278 | # [@odata.id]: /redfish/v1/Systems/system/LogServices/EventLog/Entries/235 |
| 279 | # [Name]: System Event Log Entry |
| 280 | # [Severity]: Critical |
| 281 | # [EntryType]: Event |
| 282 | # [Created]: 2020-04-02T07:25:13+00:00 |
| 283 | # [@odata.type]: #LogEntry.v1_5_1.LogEntry |
| 284 | # [Id]: 235 <----- Event log ID |
| 285 | # [Message]: xyz.openbmc_project.Common.Error.InternalFailure |
| 286 | |
| 287 | Valid Value pel_bmc_event_log_id ['${redfish_event_logs['Members'][0]['Id']}'] |
| 288 | |
| 289 | |
Rahul Maheshwari | 97d7ab8 | 2020-08-04 00:01:42 -0500 | [diff] [blame] | 290 | Verify FRU Callout |
| 291 | [Documentation] Verify FRU callout entries from PEL log. |
| 292 | [Tags] Verify_FRU_Callout |
dnirmala | d395d46 | 2022-11-11 02:45:49 -0600 | [diff] [blame] | 293 | |
| 294 | # Power off the system to avoid unnecessary error logs during test. |
| 295 | Redfish Power Off stack_mode=skip |
Rahul Maheshwari | 97d7ab8 | 2020-08-04 00:01:42 -0500 | [diff] [blame] | 296 | Create Test PEL Log FRU Callout |
| 297 | |
| 298 | ${pel_ids}= Get PEL Log Via BMC CLI |
| 299 | ${id}= Get From List ${pel_ids} -1 |
| 300 | ${pel_callout_section}= Get PEL Field Value ${id} Primary SRC Callout Section |
| 301 | |
| 302 | # Example of PEL Callout Section from "peltool -i <id>" command. |
| 303 | # [Callouts]: |
| 304 | # [0]: |
| 305 | # [FRU Type]: Normal Hardware FRU |
| 306 | # [Priority]: Mandatory, replace all with this type as a unit |
| 307 | # [Location Code]: U78DA.ND1.1234567-P0 |
| 308 | # [Part Number]: F191014 |
| 309 | # [CCIN]: 2E2D |
| 310 | # [Serial Number]: YL2E2D010000 |
| 311 | # [Callout Count]: 1 |
| 312 | |
| 313 | Valid Value pel_callout_section['Callout Count'] ['1'] |
| 314 | Valid Value pel_callout_section['Callouts'][0]['FRU Type'] ['Normal Hardware FRU'] |
| 315 | Should Contain ${pel_callout_section['Callouts'][0]['Priority']} Mandatory |
| 316 | |
| 317 | # Verify Location Code field of PEL callout with motherboard's Location Code. |
| 318 | ${busctl_output}= BMC Execute Command ${CMD_INVENTORY_PREFIX} com.ibm.ipzvpd.Location LocationCode |
| 319 | Should Be Equal ${pel_callout_section['Callouts'][0]['Location Code']} |
| 320 | ... ${busctl_output[0].split('"')[1].strip('"')} |
| 321 | |
| 322 | # TODO: Compare CCIN and part number fields of PEL callout with Redfish or busctl output. |
| 323 | Should Match Regexp ${pel_callout_section['Callouts'][0]['CCIN']} [a-zA-Z0-9] |
| 324 | Should Match Regexp ${pel_callout_section['Callouts'][0]['Part Number']} [a-zA-Z0-9] |
| 325 | |
| 326 | # Verify Serial Number field of PEL callout with motherboard's Serial Number. |
| 327 | ${busctl_output}= BMC Execute Command |
| 328 | ... ${CMD_INVENTORY_PREFIX} xyz.openbmc_project.Inventory.Decorator.Asset SerialNumber |
| 329 | Should Be Equal ${pel_callout_section['Callouts'][0]['Serial Number']} |
| 330 | ... ${busctl_output[0].split('"')[1].strip('"')} |
| 331 | |
| 332 | |
| 333 | Verify Procedure And Symbolic FRU Callout |
| 334 | [Documentation] Verify procedure and symbolic FRU callout from PEL log. |
| 335 | [Tags] Verify_Procedure_And_Symbolic_FRU_Callout |
| 336 | |
| 337 | Create Test PEL Log Procedure And Symbolic FRU Callout |
| 338 | |
| 339 | ${pel_ids}= Get PEL Log Via BMC CLI |
| 340 | ${id}= Get From List ${pel_ids} -1 |
| 341 | ${pel_callout_section}= Get PEL Field Value ${id} Primary SRC Callout Section |
| 342 | |
| 343 | # Example of PEL Callout Section from "peltool -i <id>" command. |
| 344 | # [Callouts]: |
| 345 | # [0]: |
| 346 | # [Priority]: Mandatory, replace all with this type as a unit |
| 347 | # [Procedure Number]: BMCSP02 |
| 348 | # [FRU Type]: Maintenance Procedure Required |
| 349 | # [1]: |
| 350 | # [Priority]: Medium Priority |
| 351 | # [Part Number]: SVCDOCS |
| 352 | # [FRU Type]: Symbolic FRU |
| 353 | # [Callout Count]: 2 |
| 354 | |
| 355 | Valid Value pel_callout_section['Callout Count'] ['2'] |
| 356 | |
| 357 | # Verify procedural callout info. |
| 358 | |
| 359 | Valid Value pel_callout_section['Callouts'][0]['FRU Type'] ['Maintenance Procedure Required'] |
| 360 | Should Contain ${pel_callout_section['Callouts'][0]['Priority']} Mandatory |
| 361 | # Verify if "Procedure Number" field of PEL has an alphanumeric value. |
Rahul Maheshwari | 6acf0ee | 2020-10-28 05:37:01 -0500 | [diff] [blame] | 362 | Should Match Regexp ${pel_callout_section['Callouts'][0]['Procedure']} [a-zA-Z0-9] |
Rahul Maheshwari | 97d7ab8 | 2020-08-04 00:01:42 -0500 | [diff] [blame] | 363 | |
| 364 | # Verify procedural callout info. |
| 365 | |
| 366 | Valid Value pel_callout_section['Callouts'][1]['FRU Type'] ['Symbolic FRU'] |
| 367 | Should Contain ${pel_callout_section['Callouts'][1]['Priority']} Medium Priority |
| 368 | # Verify if "Part Number" field of Symbolic FRU has an alphanumeric value. |
| 369 | Should Match Regexp ${pel_callout_section['Callouts'][1]['Part Number']} [a-zA-Z0-9] |
| 370 | |
| 371 | |
Rahul Maheshwari | f4a01aa | 2020-08-24 23:22:59 -0500 | [diff] [blame] | 372 | Verify PEL Log Entry For Event Log |
| 373 | [Documentation] Create an event log and verify PEL log entry in BMC for the same. |
| 374 | [Tags] Verify_PEL_Log_Entry_For_Event_Log |
| 375 | |
| 376 | Redfish Purge Event Log |
Rahul Maheshwari | 71d589c | 2022-04-22 01:29:44 -0500 | [diff] [blame] | 377 | |
| 378 | # Create an unrecoverable error log. |
| 379 | Create Test PEL Log Unrecoverable Error |
Rahul Maheshwari | f4a01aa | 2020-08-24 23:22:59 -0500 | [diff] [blame] | 380 | |
| 381 | ${elog_entry}= Get Event Logs |
| 382 | # Example of Redfish event logs: |
| 383 | # elog_entry: |
| 384 | # [0]: |
Rahul Maheshwari | 71d589c | 2022-04-22 01:29:44 -0500 | [diff] [blame] | 385 | # [Message]: BD802003 event in subsystem: Platform Firmware |
George Keishing | b78bca2 | 2021-06-29 11:11:19 -0500 | [diff] [blame] | 386 | # [Created]: 2020-04-20T01:55:22+00:00 |
| 387 | # [Id]: 1 |
| 388 | # [@odata.id]: /redfish/v1/Systems/system/LogServices/EventLog/Entries/1 |
| 389 | # [@odata.type]: #LogEntry.v1_4_0.LogEntry |
| 390 | # [EntryType]: Event |
| 391 | # [Severity]: Critical |
| 392 | # [Name]: System Event Log Entry |
Rahul Maheshwari | f4a01aa | 2020-08-24 23:22:59 -0500 | [diff] [blame] | 393 | |
| 394 | ${redfish_log_time}= Convert Date ${elog_entry[0]["Created"]} epoch |
| 395 | |
| 396 | ${pel_records}= Peltool -l |
| 397 | # Example output from 'Peltool -l': |
| 398 | # pel_records: |
| 399 | # [0x50000023]: |
Rahul Maheshwari | 71d589c | 2022-04-22 01:29:44 -0500 | [diff] [blame] | 400 | # [SRC]: BD802003 |
George Keishing | b78bca2 | 2021-06-29 11:11:19 -0500 | [diff] [blame] | 401 | # [CreatorID]: BMC |
Rahul Maheshwari | 71d589c | 2022-04-22 01:29:44 -0500 | [diff] [blame] | 402 | # [Message]: This is a test error |
| 403 | # [CompID]: 0x2000 |
| 404 | # [PLID]: 0x500053D9 |
George Keishing | b78bca2 | 2021-06-29 11:11:19 -0500 | [diff] [blame] | 405 | # [Commit Time]: 04/20/2020 01:55:22 |
Rahul Maheshwari | 71d589c | 2022-04-22 01:29:44 -0500 | [diff] [blame] | 406 | # [Subsystem]: Platform Firmware |
George Keishing | b78bca2 | 2021-06-29 11:11:19 -0500 | [diff] [blame] | 407 | # [Sev]: Unrecoverable Error |
Rahul Maheshwari | f4a01aa | 2020-08-24 23:22:59 -0500 | [diff] [blame] | 408 | |
| 409 | ${ids}= Get Dictionary Keys ${pel_records} |
| 410 | ${id}= Get From List ${ids} 0 |
| 411 | ${pel_log_time}= Convert Date ${pel_records['${id}']['Commit Time']} epoch |
| 412 | ... date_format=%m/%d/%Y %H:%M:%S |
| 413 | |
| 414 | # Verify that both Redfish event and PEL has log entry for internal error with same time stamp. |
Rahul Maheshwari | 71d589c | 2022-04-22 01:29:44 -0500 | [diff] [blame] | 415 | Should Contain Any ${pel_records['${id}']['Message']} test error ignore_case=True |
Rahul Maheshwari | 40ade89 | 2021-12-20 22:38:21 -0600 | [diff] [blame] | 416 | Should Contain ${elog_entry[0]['Message']} |
Rahul Maheshwari | 71d589c | 2022-04-22 01:29:44 -0500 | [diff] [blame] | 417 | ... ${pel_records['${id}']['SRC']} ignore_case=True |
Rahul Maheshwari | f4a01aa | 2020-08-24 23:22:59 -0500 | [diff] [blame] | 418 | |
| 419 | Should Be Equal ${redfish_log_time} ${pel_log_time} |
| 420 | |
| 421 | |
Rahul Maheshwari | 326d064 | 2020-04-07 06:13:38 -0500 | [diff] [blame] | 422 | Verify Delete All PEL |
| 423 | [Documentation] Verify deleting all PEL logs. |
| 424 | [Tags] Verify_Delete_All_PEL |
| 425 | |
| 426 | Create Test PEL Log |
| 427 | Create Test PEL Log |
| 428 | Peltool --delete-all False |
| 429 | |
| 430 | ${pel_ids}= Get PEL Log Via BMC CLI |
| 431 | Should Be Empty ${pel_ids} |
| 432 | |
| 433 | |
manashsarma | 4e93538 | 2020-10-16 12:00:53 -0500 | [diff] [blame] | 434 | Verify Informational Error Log |
| 435 | [Documentation] Create an informational error log and verify. |
| 436 | [Tags] Verify_Informational_Error_Log |
| 437 | |
| 438 | Redfish Purge Event Log |
| 439 | # Create an informational error log. |
| 440 | BMC Execute Command ${CMD_INFORMATIONAL_ERROR} |
| 441 | ${pel_records}= Peltool -lfh |
| 442 | |
| 443 | # An example of information error log data: |
| 444 | # { |
| 445 | # "0x500006A0": { |
| 446 | # "SRC": "BD8D1002", |
| 447 | # "Message": "An application had an internal failure", |
| 448 | # "PLID": "0x500006A0", |
| 449 | # "CreatorID": "BMC", |
| 450 | # "Subsystem": "BMC Firmware", |
| 451 | # "Commit Time": "10/14/2020 11:41:38", |
| 452 | # "Sev": "Informational Event", |
| 453 | # "CompID": "0x1000" |
| 454 | # } |
| 455 | # } |
| 456 | |
| 457 | ${ids}= Get Dictionary Keys ${pel_records} |
| 458 | ${id}= Get From List ${ids} 0 |
| 459 | Should Contain ${pel_records['${id}']['Sev']} Informational |
| 460 | |
| 461 | |
manashsarma | 15fe563 | 2020-10-18 03:42:58 -0500 | [diff] [blame] | 462 | Verify Predictable Error Log |
| 463 | [Documentation] Create a predictive error and verify. |
| 464 | [Tags] Verify_Predictable_Error_Log |
| 465 | |
| 466 | # Create a predictable error log. |
| 467 | BMC Execute Command ${CMD_PREDICTIVE_ERROR} |
| 468 | ${pel_records}= Peltool -l |
| 469 | |
| 470 | # An example of predictive error log data: |
| 471 | # { |
| 472 | # "0x5000069E": { |
| 473 | # "SRC": "BD8D1002", |
| 474 | # "Message": "An application had an internal failure", |
| 475 | # "PLID": "0x5000069E", |
| 476 | # "CreatorID": "BMC", |
| 477 | # "Subsystem": "BMC Firmware", |
| 478 | # "Commit Time": "10/14/2020 11:40:07", |
| 479 | # "Sev": "Predictive Error", |
| 480 | # "CompID": "0x1000" |
| 481 | # } |
| 482 | # } |
| 483 | |
| 484 | ${pel_ids}= Get PEL Log Via BMC CLI |
| 485 | ${id}= Get From List ${pel_ids} -1 |
| 486 | Should Contain ${pel_records['${id}']['Sev']} Predictive |
| 487 | |
| 488 | |
| 489 | Verify Unrecoverable Error Log |
| 490 | [Documentation] Create an unrecoverable error and verify. |
| 491 | [Tags] Verify_Unrecoverable_Error_Log |
| 492 | |
| 493 | # Create an internal failure error log. |
| 494 | BMC Execute Command ${CMD_UNRECOVERABLE_ERROR} |
| 495 | ${pel_records}= Peltool -l |
| 496 | |
| 497 | # An example of unrecoverable error log data: |
| 498 | # { |
| 499 | # "0x50000CC5": { |
| 500 | # "SRC": "BD8D1002", |
| 501 | # "Message": "An application had an internal failure", |
| 502 | # "PLID": "0x50000CC5", |
| 503 | # "CreatorID": "BMC", |
| 504 | # "Subsystem": "BMC Firmware", |
| 505 | # "Commit Time": "04/01/2020 16:44:55", |
| 506 | # "Sev": "Unrecoverable Error", |
| 507 | # "CompID": "0x1000" |
| 508 | # } |
| 509 | # } |
| 510 | |
| 511 | ${pel_ids}= Get PEL Log Via BMC CLI |
| 512 | ${id}= Get From List ${pel_ids} -1 |
| 513 | Should Contain ${pel_records['${id}']['Sev']} Unrecoverable |
| 514 | |
| 515 | |
manashsarma | 595282d | 2020-10-20 13:22:31 -0500 | [diff] [blame] | 516 | Verify Error Logging Rotation Policy |
| 517 | [Documentation] Verify error logging rotation policy. |
| 518 | [Tags] Verify_Error_Logging_Rotation_Policy |
| 519 | [Template] Error Logging Rotation Policy |
manashsarma | d073a0a | 2020-10-20 12:54:59 -0500 | [diff] [blame] | 520 | |
manashsarma | 557b632 | 2020-11-29 12:08:32 -0600 | [diff] [blame] | 521 | # Error logs to be created % of total logging space when error |
| 522 | # log exceeds max limit. |
| 523 | Informational BMC 3000 15 |
| 524 | Predictive BMC 3000 30 |
| 525 | Unrecoverable BMC 3000 30 |
| 526 | Informational BMC 1500, Predictive BMC 1500 45 |
| 527 | Informational BMC 1500, Unrecoverable BMC 1500 45 |
| 528 | Unrecoverable BMC 1500, Predictive BMC 1500 30 |
Rahul Maheshwari | b4cacb5 | 2021-01-18 23:57:29 -0600 | [diff] [blame] | 529 | |
| 530 | |
| 531 | Verify Error Logging Rotation Policy With All Types Of Errors |
| 532 | [Documentation] Verify error logging rotation policy with all types of errors. |
George Keishing | 4203fad | 2022-01-31 12:22:33 -0600 | [diff] [blame] | 533 | [Tags] Verify_Error_Logging_Rotation_Policy_With_All_Types_Of_Errors |
Rahul Maheshwari | b4cacb5 | 2021-01-18 23:57:29 -0600 | [diff] [blame] | 534 | [Template] Error Logging Rotation Policy |
| 535 | |
| 536 | # Error logs to be created % of total logging space when error |
| 537 | # log exceeds max limit. |
manashsarma | 557b632 | 2020-11-29 12:08:32 -0600 | [diff] [blame] | 538 | Unrecoverable BMC 1000, Informational BMC 1000, Predictive BMC 1000 45 |
manashsarma | c513166 | 2020-11-12 12:25:59 -0600 | [diff] [blame] | 539 | |
manashsarma | 1810a5b | 2020-12-09 20:09:20 -0600 | [diff] [blame] | 540 | |
| 541 | Verify Error Logging Rotation Policy With HOST Error Logs |
| 542 | [Documentation] Verify error logging rotation policy for non bmc error logs. |
| 543 | [Tags] Verify_Error_Logging_Rotation_Policy_With_HOST_Error_Logs |
| 544 | [Setup] Run Keywords Open Connection for SCP AND scp.Put File ${UNRECOVERABLE_FILE_PATH} |
manashsarma | 4baa6a7 | 2020-12-16 07:13:37 -0600 | [diff] [blame] | 545 | ... /tmp/FILE_HOST_UNRECOVERABLE AND scp.Put File ${INFORMATIONAL_FILE_PATH} |
| 546 | ... /tmp/FILE_HOST_INFORMATIONAL |
manashsarma | 1810a5b | 2020-12-09 20:09:20 -0600 | [diff] [blame] | 547 | [Template] Error Logging Rotation Policy |
| 548 | |
| 549 | # Error logs to be created % of total logging space when error |
| 550 | # log exceeds max limit. |
manashsarma | 4baa6a7 | 2020-12-16 07:13:37 -0600 | [diff] [blame] | 551 | Informational HOST 3000 15 |
manashsarma | 1810a5b | 2020-12-09 20:09:20 -0600 | [diff] [blame] | 552 | Unrecoverable HOST 3000 30 |
manashsarma | 4baa6a7 | 2020-12-16 07:13:37 -0600 | [diff] [blame] | 553 | Informational HOST 1500, Informational BMC 1500 30 |
| 554 | Informational HOST 1500, Unrecoverable BMC 1500 45 |
manashsarma | 1810a5b | 2020-12-09 20:09:20 -0600 | [diff] [blame] | 555 | Unrecoverable HOST 1500, Informational BMC 1500 45 |
| 556 | Unrecoverable HOST 1500, Predictive BMC 1500 60 |
Rahul Maheshwari | b4cacb5 | 2021-01-18 23:57:29 -0600 | [diff] [blame] | 557 | |
| 558 | |
| 559 | Verify Error Logging Rotation Policy With Unrecoverable HOST And BMC Error Logs |
| 560 | [Documentation] Verify error logging rotation policy with unrecoverable HOST and BMC error logs. |
| 561 | [Tags] Verify_Error_Logging_Rotation_Policy_With_Unrecoverable_HOST_And_BMC_Error_Logs |
| 562 | [Setup] Run Keywords Open Connection for SCP AND scp.Put File ${UNRECOVERABLE_FILE_PATH} |
Rahul Maheshwari | e54d16f | 2021-02-04 05:20:46 -0600 | [diff] [blame] | 563 | ... /tmp/FILE_NBMC_UNRECOVERABLE AND Redfish.Login |
Rahul Maheshwari | b4cacb5 | 2021-01-18 23:57:29 -0600 | [diff] [blame] | 564 | [Template] Error Logging Rotation Policy |
| 565 | |
| 566 | # Error logs to be created % of total logging space when error |
| 567 | # log exceeds max limit. |
manashsarma | 1810a5b | 2020-12-09 20:09:20 -0600 | [diff] [blame] | 568 | Unrecoverable HOST 1500, Unrecoverable BMC 1500 60 |
| 569 | |
| 570 | |
manashsarma | 6f1f2a4 | 2020-12-15 07:29:41 -0600 | [diff] [blame] | 571 | Verify Old Logs Are Deleted When Count Crosses Max |
| 572 | [Documentation] Verify that when the count crosses max, older logs are deleted. |
| 573 | [Tags] Verify_Old_Logs_Are_Deleted_When_Count_Crosses_Max |
| 574 | |
| 575 | Redfish Purge Event Log |
manashsarma | 6f1f2a4 | 2020-12-15 07:29:41 -0600 | [diff] [blame] | 576 | # Create 3000 error logs. |
| 577 | FOR ${count} IN RANGE ${3000} |
| 578 | BMC Execute Command ${CMD_PREDICTIVE_ERROR} |
| 579 | END |
| 580 | |
| 581 | # Retrieve the IDs of the logs. |
| 582 | ${pel_ids}= Get PEL Log Via BMC CLI |
manashsarma | dd13268 | 2021-04-08 07:59:13 -0500 | [diff] [blame] | 583 | ${1st_id}= Get From List ${pel_ids} 0 |
| 584 | ${3000th_id}= Get From List ${pel_ids} 2999 |
manashsarma | 6f1f2a4 | 2020-12-15 07:29:41 -0600 | [diff] [blame] | 585 | |
| 586 | # Now create 3001st log to cross threshold limit and trigger error logs rotation. |
| 587 | BMC Execute Command ${CMD_PREDICTIVE_ERROR} |
manashsarma | dd13268 | 2021-04-08 07:59:13 -0500 | [diff] [blame] | 588 | |
manashsarma | 6f1f2a4 | 2020-12-15 07:29:41 -0600 | [diff] [blame] | 589 | # Wait few seconds for error logs rotation to complete. |
| 590 | Sleep 10s |
| 591 | |
| 592 | # Now verify that first log is no more available but the 3000th is available. |
manashsarma | dd13268 | 2021-04-08 07:59:13 -0500 | [diff] [blame] | 593 | ${status} ${output}= Run Keyword And Ignore Error Peltool -i ${1st_id} |
| 594 | Should Be True '${status}' == 'FAIL' |
manashsarma | 6f1f2a4 | 2020-12-15 07:29:41 -0600 | [diff] [blame] | 595 | Should Contain ${output} PEL not found |
manashsarma | dd13268 | 2021-04-08 07:59:13 -0500 | [diff] [blame] | 596 | |
| 597 | ${status} ${output}= Run Keyword And Ignore Error Peltool -i ${3000th_id} |
| 598 | Should Be True '${status}' == 'PASS' |
manashsarma | 6f1f2a4 | 2020-12-15 07:29:41 -0600 | [diff] [blame] | 599 | Should Not Contain ${output} PEL not found |
| 600 | |
| 601 | |
manashsarma | 5f20120 | 2020-10-30 12:52:04 -0500 | [diff] [blame] | 602 | Verify Reverse Order Of PEL Logs |
| 603 | [Documentation] Verify PEL command to output PEL logs in reverse order. |
George Keishing | 4203fad | 2022-01-31 12:22:33 -0600 | [diff] [blame] | 604 | [Tags] Verify_Reverse_Order_Of_PEL_Logs |
manashsarma | 5f20120 | 2020-10-30 12:52:04 -0500 | [diff] [blame] | 605 | |
| 606 | Redfish Purge Event Log |
manashsarma | c513166 | 2020-11-12 12:25:59 -0600 | [diff] [blame] | 607 | |
| 608 | # Below commands create unrecoverable error log at first and then the predictable error. |
manashsarma | 5f20120 | 2020-10-30 12:52:04 -0500 | [diff] [blame] | 609 | BMC Execute Command ${CMD_UNRECOVERABLE_ERROR} |
| 610 | BMC Execute Command ${CMD_PREDICTIVE_ERROR} |
| 611 | |
manashsarma | c513166 | 2020-11-12 12:25:59 -0600 | [diff] [blame] | 612 | # Using peltool -lr, recent PELs appear first. Hence the ID of first PEL is greater than the next. |
| 613 | ${pel_records}= peltool -lr |
manashsarma | 5f20120 | 2020-10-30 12:52:04 -0500 | [diff] [blame] | 614 | |
manashsarma | c513166 | 2020-11-12 12:25:59 -0600 | [diff] [blame] | 615 | # It is found that, variables like dictionary always keep items in sorted order that makes |
| 616 | # this verification not possible, hence json is used to keep the items original order. |
| 617 | ${pel_records}= Convert To String ${pel_records} |
| 618 | ${json_string}= Replace String ${pel_records} ' " |
| 619 | ${json_object}= Evaluate json.loads('''${json_string}''') json |
| 620 | |
| 621 | ${list}= Convert To List ${json_object} |
| 622 | |
| 623 | ${id1}= Get From List ${list} 0 |
| 624 | ${id1}= Convert To Integer ${id1} |
| 625 | ${id2}= Get From List ${list} 1 |
| 626 | ${id2}= Convert To Integer ${id2} |
| 627 | |
| 628 | Should Be True ${id1} > ${id2} |
manashsarma | 5f20120 | 2020-10-30 12:52:04 -0500 | [diff] [blame] | 629 | |
| 630 | |
manashsarma | 6d75bd8 | 2020-10-30 07:36:05 -0500 | [diff] [blame] | 631 | Verify Total PEL Count |
| 632 | [Documentation] Verify total PEL count returned by peltool command. |
| 633 | [Tags] Verify_Total_PEL_Count |
| 634 | |
| 635 | # Initially remove all logs. |
| 636 | Redfish Purge Event Log |
| 637 | |
| 638 | # Generate a random number between 1-20. |
| 639 | ${random}= Evaluate random.randint(1, 20) modules=random |
| 640 | |
| 641 | # Generate predictive error log multiple times. |
| 642 | FOR ${count} IN RANGE 0 ${random} |
| 643 | BMC Execute Command ${CMD_PREDICTIVE_ERROR} |
| 644 | END |
| 645 | |
| 646 | # Check PEL log count via peltool command and compare it with actual generated log count. |
| 647 | ${pel_records}= peltool -n |
| 648 | |
| 649 | Should Be Equal ${pel_records['Number of PELs found']} ${random} |
| 650 | |
| 651 | |
manashsarma | 407deda | 2020-10-30 10:36:26 -0500 | [diff] [blame] | 652 | Verify Listing Information Error |
| 653 | [Documentation] Verify that information error logs can only be listed using -lfh option of peltool. |
| 654 | [Tags] Verify_Listing_Information_Error |
| 655 | |
| 656 | # Initially remove all logs. |
| 657 | Redfish Purge Event Log |
| 658 | BMC Execute Command ${CMD_INFORMATIONAL_ERROR} |
| 659 | |
| 660 | # Generate informational logs and verify that it would not get listed by peltool's list command. |
| 661 | ${pel_records}= peltool -l |
manashsarma | 31d807b | 2020-11-11 12:49:46 -0600 | [diff] [blame] | 662 | ${ids}= Get Dictionary Keys ${pel_records} |
| 663 | Should Be Empty ${ids} |
manashsarma | 407deda | 2020-10-30 10:36:26 -0500 | [diff] [blame] | 664 | |
| 665 | # Verify that information logs get listed using peltool's list command with -lfh option. |
| 666 | ${pel_records}= peltool -lfh |
manashsarma | 31d807b | 2020-11-11 12:49:46 -0600 | [diff] [blame] | 667 | ${ids}= Get Dictionary Keys ${pel_records} |
| 668 | Should Not Be Empty ${ids} |
| 669 | ${id}= Get From List ${ids} 0 |
manashsarma | 407deda | 2020-10-30 10:36:26 -0500 | [diff] [blame] | 670 | Should Contain ${pel_records['${id}']['Sev']} Informational |
| 671 | |
| 672 | |
manashsarma | 54539ff | 2020-11-23 02:32:36 -0600 | [diff] [blame] | 673 | Verify PEL Delete |
| 674 | [Documentation] Verify that peltool command can delete PEL log based on id. |
| 675 | [Tags] Verify_PEL_Delete |
| 676 | |
| 677 | BMC Execute Command ${CMD_PREDICTIVE_ERROR} |
| 678 | ${pel_ids}= Get PEL Log Via BMC CLI |
| 679 | ${id}= Get From List ${pel_ids} -1 |
Rahul Maheshwari | 5eab56c | 2021-01-06 23:58:46 -0600 | [diff] [blame] | 680 | Peltool -d ${id} False |
| 681 | Run Keyword and Expect Error *PEL not found* Peltool -i ${id} |
manashsarma | 54539ff | 2020-11-23 02:32:36 -0600 | [diff] [blame] | 682 | |
| 683 | |
dnirmala | fe690af | 2022-10-18 05:27:31 -0500 | [diff] [blame] | 684 | Verify Mandatory Fields For Predictive Error |
| 685 | [Documentation] Verify mandatory fields of predictive errors from pel information. |
| 686 | [Tags] Verify_Mandatory_Fields_For_Predictive_Error |
| 687 | |
| 688 | # Inject predictive error. |
| 689 | BMC Execute Command ${CMD_PREDICTIVE_ERROR} |
| 690 | |
| 691 | ${pel_ids}= Get PEL Log Via BMC CLI |
| 692 | ${pel_id}= Get From List ${pel_ids} -1 |
| 693 | ${pel_output}= Peltool -i ${pel_id} |
| 694 | # Get all fields in predictive error log. |
| 695 | ${pel_sections}= Get Dictionary Keys ${pel_output} |
| 696 | |
dnirmala | 789c802 | 2022-11-18 05:49:08 -0600 | [diff] [blame] | 697 | List Should Contain Sub List ${pel_sections} ${mandatory_Predictive_pel_fields} |
dnirmala | fe690af | 2022-10-18 05:27:31 -0500 | [diff] [blame] | 698 | |
| 699 | |
dnirmala | 819be78 | 2022-11-07 04:34:40 -0600 | [diff] [blame] | 700 | Verify Mandatory Fields For Informational Error |
| 701 | [Documentation] Verify mandatory fields of informational error from pel information. |
| 702 | [Tags] Verify_Mandatory_Fields_For_Informational_Error |
| 703 | |
| 704 | # Inject informational error. |
| 705 | BMC Execute Command ${CMD_INFORMATIONAL_ERROR} |
| 706 | ${pel_records}= Peltool -lfh |
| 707 | |
| 708 | ${ids}= Get Dictionary Keys ${pel_records} |
| 709 | ${pel_id}= Get From List ${ids} -1 |
| 710 | ${pel_output}= Peltool -i ${pel_id} |
| 711 | |
| 712 | # Get all fields in the informational error log. |
| 713 | ${pel_sections}= Get Dictionary Keys ${pel_output} |
| 714 | FOR ${section} IN @{Mandatory_Informational_Pel_Fields} |
| 715 | ${contains}= Evaluate "${section}" in "${pel_sections}" |
| 716 | Should Be True ${contains} |
| 717 | END |
| 718 | |
| 719 | |
dnirmala | 789c802 | 2022-11-18 05:49:08 -0600 | [diff] [blame] | 720 | Verify PEL Log Not Offloaded To Host |
| 721 | [Documentation] Verify host transmission state of not offloaded PEL logs. |
| 722 | [Tags] Verify_PEL_Log_Not_Offloaded_To_Host |
| 723 | [Template] Verify PEL Transmission To Host |
| 724 | |
| 725 | # error_type host_state expected_transmission_state |
| 726 | informational_error Off Not Sent |
| 727 | unrecoverable_error Off Not Sent |
| 728 | predictive_error Off Not Sent |
| 729 | |
| 730 | |
| 731 | Verify PEL Log Offloaded To Host |
| 732 | [Documentation] Verify host transmission state of offloaded PEL logs. |
| 733 | [Tags] Verify_PEL_Log_Offloaded_To_Host |
| 734 | [Template] Verify PEL Transmission To Host |
| 735 | |
| 736 | # error_type host_state expected_transmission_state |
| 737 | unrecoverable_error On Acked |
| 738 | predictive_error On Acked |
| 739 | informational_error On Acked |
| 740 | |
| 741 | |
Rahul Maheshwari | faa5d20 | 2020-02-24 23:32:57 -0600 | [diff] [blame] | 742 | *** Keywords *** |
| 743 | |
manashsarma | 595282d | 2020-10-20 13:22:31 -0500 | [diff] [blame] | 744 | Error Logging Rotation Policy |
| 745 | [Documentation] Verify that when maximum log limit is reached, given error logging type |
| 746 | ... are deleted when reached their max allocated space. |
| 747 | [Arguments] ${error_log_type} ${max_allocated_space_percentage} |
| 748 | |
| 749 | # Description of argument(s): |
manashsarma | 557b632 | 2020-11-29 12:08:32 -0600 | [diff] [blame] | 750 | # error_log Error logs to be created (E.g. Informational BMC 3000 |
| 751 | # stands for BMC created 3000 informational error logs). |
manashsarma | 595282d | 2020-10-20 13:22:31 -0500 | [diff] [blame] | 752 | # max_allocated_space_percentage The maximum percentage of disk usage for given error |
| 753 | # log type when maximum count/log size is reached. |
| 754 | # The maximum error log count is 3000. |
| 755 | |
George Keishing | 6beaeab | 2022-08-29 09:34:42 -0500 | [diff] [blame] | 756 | Redfish.Login |
| 757 | |
manashsarma | 595282d | 2020-10-20 13:22:31 -0500 | [diff] [blame] | 758 | # Initially remove all logs. Purging is done to ensure that, only specific logs are present |
| 759 | # in BMC during the test. |
| 760 | Redfish Purge Event Log |
| 761 | |
manashsarma | 557b632 | 2020-11-29 12:08:32 -0600 | [diff] [blame] | 762 | @{lists}= Split String ${error_log_type} ,${SPACE} |
manashsarma | 595282d | 2020-10-20 13:22:31 -0500 | [diff] [blame] | 763 | |
manashsarma | 557b632 | 2020-11-29 12:08:32 -0600 | [diff] [blame] | 764 | ${length}= Get Length ${lists} |
manashsarma | 595282d | 2020-10-20 13:22:31 -0500 | [diff] [blame] | 765 | |
manashsarma | 557b632 | 2020-11-29 12:08:32 -0600 | [diff] [blame] | 766 | FOR ${list} IN RANGE ${length} |
| 767 | @{words}= Split String ${lists}[${list}] ${SPACE} |
| 768 | Create Error Log ${words}[0] ${words}[1] ${words}[2] |
manashsarma | 595282d | 2020-10-20 13:22:31 -0500 | [diff] [blame] | 769 | END |
| 770 | |
manashsarma | 557b632 | 2020-11-29 12:08:32 -0600 | [diff] [blame] | 771 | # Create an additional error log to exceed max error logs limit. |
| 772 | BMC Execute Command ${CMD_UNRECOVERABLE_ERROR} |
| 773 | |
manashsarma | 595282d | 2020-10-20 13:22:31 -0500 | [diff] [blame] | 774 | # Delay for BMC to perform delete older error logs when log limit exceeds. |
| 775 | Sleep 10s |
| 776 | |
| 777 | # Verify disk usage is around max allocated space. Maximum usage is around 3MB not exactly 3MB |
| 778 | # (for informational log) and around 6 MB for unrecoverable / predictive error log. So, usage |
| 779 | # percentage is NOT exactly 15% and 30%. So, an error/accuracy factor 0.5 percent is added. |
| 780 | |
| 781 | ${disk_usage_percentage}= Get Disk Usage For Error Logs |
| 782 | ${percent_diff}= Evaluate ${disk_usage_percentage} - ${max_allocated_space_percentage} |
| 783 | ${percent_diff}= Evaluate abs(${percent_diff}) |
manashsarma | 4baa6a7 | 2020-12-16 07:13:37 -0600 | [diff] [blame] | 784 | |
| 785 | ${trimmed_as_expected}= Run Keyword If ${disk_usage_percentage} > ${max_allocated_space_percentage} |
| 786 | ... Evaluate ${percent_diff} <= 0.5 |
| 787 | ... ELSE |
| 788 | ... Set Variable True |
| 789 | |
| 790 | # Check PEL log count via peltool command and compare it with actual generated log count. |
| 791 | ${pel_records}= peltool -n |
| 792 | ${no_pel_records}= Set Variable ${pel_records["Number of PELs found"]} |
| 793 | # Number of logs can be 80% of the total logs created after trimming. |
| 794 | ${expected_max_record}= Evaluate 3000 * 0.8 |
| 795 | |
George Keishing | b78bca2 | 2021-06-29 11:11:19 -0500 | [diff] [blame] | 796 | Run Keyword If ${trimmed_as_expected} == False |
| 797 | ... Should Be True ${no_pel_records} <= ${expected_max_record} |
manashsarma | 595282d | 2020-10-20 13:22:31 -0500 | [diff] [blame] | 798 | |
| 799 | |
manashsarma | 557b632 | 2020-11-29 12:08:32 -0600 | [diff] [blame] | 800 | Create Error Log |
George Keishing | f924895 | 2021-05-28 07:52:37 -0500 | [diff] [blame] | 801 | [Documentation] Create an error log. |
manashsarma | 557b632 | 2020-11-29 12:08:32 -0600 | [diff] [blame] | 802 | [Arguments] ${error_severity} ${error_creator} ${count} |
| 803 | |
| 804 | # Description of argument(s): |
| 805 | # error_severity Severity of the error (E.g. Informational, Unrecoberable or Predictive) |
| 806 | # error_creator Name of error log's creator(E.g BMC, Host Boot) |
| 807 | # count Number of error logs to be generated. |
| 808 | |
| 809 | FOR ${i} IN RANGE 0 ${count} |
| 810 | ${cmd}= Set Variable If |
Rahul Maheshwari | 5eab56c | 2021-01-06 23:58:46 -0600 | [diff] [blame] | 811 | ... '${error_severity}' == 'Informational' and '${error_creator}' == 'BMC' ${CMD_INFORMATIONAL_ERROR} |
Rahul Maheshwari | 952bad1 | 2022-10-19 01:56:01 -0500 | [diff] [blame] | 812 | ... '${error_severity}' == 'Informational' and '${error_creator}' == 'HOST' ${CMD_INFORMATIONAL_HOST_ERROR} |
Rahul Maheshwari | 5eab56c | 2021-01-06 23:58:46 -0600 | [diff] [blame] | 813 | ... '${error_severity}' == 'Predictive' and '${error_creator}' == 'BMC' ${CMD_PREDICTIVE_ERROR} |
| 814 | ... '${error_severity}' == 'Unrecoverable' and '${error_creator}' == 'BMC' ${CMD_UNRECOVERABLE_ERROR} |
| 815 | ... '${error_severity}' == 'Unrecoverable' and '${error_creator}' == 'HOST' ${CMD_UNRECOVERABLE_HOST_ERROR} |
manashsarma | 557b632 | 2020-11-29 12:08:32 -0600 | [diff] [blame] | 816 | BMC Execute Command ${cmd} |
| 817 | END |
| 818 | |
| 819 | |
manashsarma | d073a0a | 2020-10-20 12:54:59 -0500 | [diff] [blame] | 820 | Get Disk Usage For Error Logs |
| 821 | [Documentation] Get disk usage percentage for error logs. |
| 822 | |
manashsarma | 407deda | 2020-10-30 10:36:26 -0500 | [diff] [blame] | 823 | ${usage_output} ${stderr} ${rc}= BMC Execute Command du /var/lib/phosphor-logging/errors |
manashsarma | d073a0a | 2020-10-20 12:54:59 -0500 | [diff] [blame] | 824 | |
| 825 | ${usage_output}= Fetch From Left ${usage_output} \/ |
| 826 | |
George Keishing | c91aadd | 2022-02-23 09:30:48 -0600 | [diff] [blame] | 827 | # Convert disk usage unit from KB to MB. |
manashsarma | d073a0a | 2020-10-20 12:54:59 -0500 | [diff] [blame] | 828 | ${usage_output}= Evaluate ${usage_output} / 1024 |
| 829 | |
| 830 | # Logging disk capacity limit is set to 20MB. So calculating the log usage percentage. |
| 831 | ${usage_percent}= Evaluate ${usage_output} / 20 * 100 |
| 832 | |
| 833 | [return] ${usage_percent} |
| 834 | |
| 835 | |
Rahul Maheshwari | 8f5256f | 2020-02-26 23:53:55 -0600 | [diff] [blame] | 836 | Get PEL Log IDs |
| 837 | [Documentation] Returns the list of PEL log IDs which contains given field's value. |
| 838 | [Arguments] ${pel_section} ${pel_field} @{pel_field_value} |
| 839 | |
| 840 | # Description of argument(s): |
| 841 | # pel_section The section of PEL (e.g. Private Header, User Header). |
| 842 | # pel_field The PEL field (e.g. Event Severity, Event Type). |
| 843 | # pel_field_value The list of PEL's field value (e.g. Unrecoverable Error). |
| 844 | |
| 845 | ${pel_ids}= Get PEL Log Via BMC CLI |
| 846 | @{pel_id_list}= Create List |
| 847 | |
| 848 | FOR ${id} IN @{pel_ids} |
| 849 | ${pel_output}= Peltool -i ${id} |
| 850 | # Example of PEL output from "peltool -i <id>" command. |
| 851 | # [Private Header]: |
| 852 | # [Created at]: 08/24/1928 12:04:06 |
| 853 | # [Created by]: 0x584D |
| 854 | # [Sub-section type]: 0 |
| 855 | # [Entry Id]: 0x50000BB7 |
| 856 | # [Platform Log Id]: 0x8200061D |
| 857 | # [CSSVER]: |
| 858 | # [Section Version]: 1 |
| 859 | # [Creator Subsystem]: PHYP |
| 860 | # [BMC Event Log Id]: 341 |
| 861 | # [Committed at]: 03/25/1920 12:06:22 |
| 862 | # [User Header]: |
| 863 | # [Log Committed by]: 0x4552 |
| 864 | # [Action Flags]: |
| 865 | # [0]: Report Externally |
| 866 | # [Subsystem]: I/O Subsystem |
| 867 | # [Event Type]: Miscellaneous, Informational Only |
| 868 | # [Sub-section type]: 0 |
| 869 | # [Event Scope]: Entire Platform |
| 870 | # [Event Severity]: Informational Event |
| 871 | # [Host Transmission]: Not Sent |
| 872 | # [Section Version]: 1 |
| 873 | |
| 874 | ${pel_section_output}= Get From Dictionary ${pel_output} ${pel_section} |
| 875 | ${pel_field_output}= Get From Dictionary ${pel_section_output} ${pel_field} |
| 876 | Run Keyword If '${pel_field_output}' in @{pel_field_value} Append To List ${pel_id_list} ${id} |
| 877 | END |
| 878 | Sort List ${pel_id_list} |
| 879 | |
| 880 | [Return] ${pel_id_list} |
| 881 | |
| 882 | |
Rahul Maheshwari | f575c90 | 2020-02-26 04:38:40 -0600 | [diff] [blame] | 883 | Get PEL Log Via BMC CLI |
| 884 | [Documentation] Returns the list of PEL IDs using BMC CLI. |
Rahul Maheshwari | faa5d20 | 2020-02-24 23:32:57 -0600 | [diff] [blame] | 885 | |
| 886 | ${pel_records}= Peltool -l |
Rahul Maheshwari | f575c90 | 2020-02-26 04:38:40 -0600 | [diff] [blame] | 887 | ${ids}= Get Dictionary Keys ${pel_records} |
Rahul Maheshwari | 1cffc4b | 2020-04-02 02:58:16 -0500 | [diff] [blame] | 888 | Sort List ${ids} |
Rahul Maheshwari | faa5d20 | 2020-02-24 23:32:57 -0600 | [diff] [blame] | 889 | |
Rahul Maheshwari | f575c90 | 2020-02-26 04:38:40 -0600 | [diff] [blame] | 890 | [Return] ${ids} |
Rahul Maheshwari | 60b58a8 | 2020-04-02 02:40:19 -0500 | [diff] [blame] | 891 | |
| 892 | |
| 893 | Get PEL Field Value |
| 894 | [Documentation] Returns the value of given PEL's field. |
| 895 | [Arguments] ${pel_id} ${pel_section} ${pel_field} |
| 896 | |
| 897 | # Description of argument(s): |
| 898 | # pel_id The ID of PEL (e.g. 0x5000002D, 0x5000002E). |
| 899 | # pel_section The section of PEL (e.g. Private Header, User Header) |
| 900 | # pel_field The PEL field (e.g. Event Severity, Event Type). |
| 901 | |
| 902 | ${pel_output}= Peltool -i ${pel_id} |
| 903 | |
| 904 | # Example of PEL output from "peltool -i <id>" command. |
| 905 | # [Private Header]: |
| 906 | # [Created at]: 08/24/1928 12:04:06 |
| 907 | # [Created by]: 0x584D |
| 908 | # [Sub-section type]: 0 |
| 909 | # [Entry Id]: 0x50000BB7 |
| 910 | # [Platform Log Id]: 0x8200061D |
| 911 | # [CSSVER]: |
| 912 | # [Section Version]: 1 |
| 913 | # [Creator Subsystem]: PHYP |
| 914 | # [BMC Event Log Id]: 341 |
| 915 | # [Committed at]: 03/25/1920 12:06:22 |
| 916 | # [User Header]: |
| 917 | # [Log Committed by]: 0x4552 |
| 918 | # [Action Flags]: |
| 919 | # [0]: Report Externally |
| 920 | # [Subsystem]: I/O Subsystem |
| 921 | # [Event Type]: Miscellaneous, Informational Only |
| 922 | # [Sub-section type]: 0 |
| 923 | # [Event Scope]: Entire Platform |
| 924 | # [Event Severity]: Informational Event |
| 925 | # [Host Transmission]: Not Sent |
| 926 | # [Section Version]: 1 |
| 927 | |
| 928 | ${pel_section_output}= Get From Dictionary ${pel_output} ${pel_section} |
| 929 | ${pel_field_output}= Get From Dictionary ${pel_section_output} ${pel_field} |
| 930 | |
| 931 | [Return] ${pel_field_output} |
dnirmala | 789c802 | 2022-11-18 05:49:08 -0600 | [diff] [blame] | 932 | |
| 933 | |
| 934 | Verify PEL Transmission To Host |
| 935 | [Documentation] Inject PEL log of given type and verify its host transmission state. |
| 936 | [Arguments] ${error_type} ${host_state} ${expected_transmission_state} |
| 937 | |
| 938 | # Description of argument(s): |
| 939 | # error_type Type of error log to be injected. |
| 940 | # host_state Host state which is required before error log injection. |
| 941 | # expected_transmission_state Expected host transmission state of PEL log. |
| 942 | |
| 943 | # Get system in required state. |
| 944 | Run Keyword If '${host_state}' == 'Off' |
| 945 | ... Redfish Power Off stack_mode=skip |
| 946 | ... ELSE IF '${host_state}' == 'On' |
| 947 | ... Redfish Power On stack_mode=skip |
| 948 | |
dnirmala | cec17c7 | 2022-12-13 11:10:19 -0600 | [diff] [blame] | 949 | Redfish Purge Event Log |
| 950 | |
dnirmala | 789c802 | 2022-11-18 05:49:08 -0600 | [diff] [blame] | 951 | # Inject required error log. |
| 952 | Run Keyword If "${error_type}" == "informational_error" |
| 953 | ... BMC Execute Command ${CMD_INFORMATIONAL_ERROR} |
| 954 | ... ELSE IF "${error_type}" == "unrecoverable_error" |
| 955 | ... BMC Execute Command ${CMD_UNRECOVERABLE_ERROR} |
| 956 | ... ELSE IF "${error_type}" == "predictive_error" |
| 957 | ... BMC Execute Command ${CMD_PREDICTIVE_ERROR} |
| 958 | |
dnirmala | cec17c7 | 2022-12-13 11:10:19 -0600 | [diff] [blame] | 959 | ${pel_records}= Get Pel Data From Bmc True True |
| 960 | ${ids}= Get Dictionary Keys ${pel_records} |
| 961 | ${pel_id}= Get From List ${ids} -1 |
| 962 | |
dnirmala | 789c802 | 2022-11-18 05:49:08 -0600 | [diff] [blame] | 963 | # Check host transmission state for the cases where PEL is |
| 964 | # expected to be offloaded to HOST. |
| 965 | Run Keyword If "${expected_transmission_state}" == "Acked" |
| 966 | ... Wait Until Keyword Succeeds 2 min 10 sec |
dnirmala | cec17c7 | 2022-12-13 11:10:19 -0600 | [diff] [blame] | 967 | ... Check If PEL Transmission State Is Expected ${pel_id} Acked |
dnirmala | 789c802 | 2022-11-18 05:49:08 -0600 | [diff] [blame] | 968 | |
| 969 | # Adding delay before checking host transmission for the cases where PEL is |
| 970 | # not expected to be offloaded to HOST. |
| 971 | Run Keyword If "${expected_transmission_state}" == "Not sent" |
| 972 | ... Run Keywords Sleep 120s AND |
dnirmala | cec17c7 | 2022-12-13 11:10:19 -0600 | [diff] [blame] | 973 | ... Check If PEL Transmission State Is Expected ${pel_id} Not sent |
dnirmala | 789c802 | 2022-11-18 05:49:08 -0600 | [diff] [blame] | 974 | |
| 975 | |
| 976 | Check If PEL Transmission State Is Expected |
| 977 | [Documentation] Check if PEL's host transmission state is matching expected state. |
dnirmala | cec17c7 | 2022-12-13 11:10:19 -0600 | [diff] [blame] | 978 | [Arguments] ${pel_id} ${expected_transmission_state} |
dnirmala | 789c802 | 2022-11-18 05:49:08 -0600 | [diff] [blame] | 979 | |
| 980 | # Description of argument(s): |
| 981 | # expected_transmission_state Expected transmission state of PEL log. |
| 982 | |
dnirmala | 789c802 | 2022-11-18 05:49:08 -0600 | [diff] [blame] | 983 | # Check the transmission details in the error log. |
| 984 | ${host_transmission}= Get PEL Field Value ${pel_id} User Header Host Transmission |
| 985 | Should Be Equal ${host_transmission} ${expected_transmission_state} |