1*** Settings *** 2Documentation Methods to execute commands on BMC and collect 3... data to a list of FFDC files 4 5Resource openbmc_ffdc_utils.robot 6Resource rest_client.robot 7Resource utils.robot 8Resource list_utils.robot 9Resource logging_utils.robot 10Resource bmc_redfish_resource.robot 11Library SSHLibrary 12Library OperatingSystem 13Library Collections 14Library String 15Library gen_print.py 16Library gen_cmd.py 17Library gen_robot_keyword.py 18Library dump_utils.py 19Library logging_utils.py 20 21*** Variables *** 22 23${FFDC_CMD_TIMEOUT} 240 24 25*** Keywords *** 26 27# Method : Call FFDC Methods # 28# Execute the user define keywords from the FFDC List # 29# Unlike any other keywords this will call into the # 30# list of keywords defined in the FFDC list at one go # 31 32Call FFDC Methods 33 [Documentation] Call into FFDC Keyword index list. 34 [Arguments] ${ffdc_function_list}=${EMPTY} 35 36 # Description of argument(s): 37 # ffdc_function_list A colon-delimited list naming the kinds of FFDC that 38 # are to be collected 39 # (e.g. "FFDC Generic Report:BMC Specific Files"). 40 # Acceptable values can be found in the description 41 # field of FFDC_METHOD_CALL in 42 # lib/openbmc_ffdc_list.py. Those values can be 43 # obtained via a call to 'Get FFDC Method Desc' (also 44 # from lib/openbmc_ffdc_list.py). 45 46 @{entries}= Get FFDC Method Index 47 # Example entries: 48 # entries: 49 # entries[0]: BMC LOGS 50 51 @{ffdc_file_list}= Create List 52 :FOR ${index} IN @{entries} 53 \ ${ffdc_file_sub_list}= Method Call Keyword List ${index} 54 ... ${ffdc_function_list} 55 \ ${ffdc_file_list}= Smart Combine Lists ${ffdc_file_list} 56 ... ${ffdc_file_sub_list} 57 58 Run Key U SSHLibrary.Close All Connections 59 60 [Return] ${ffdc_file_list} 61 62 63Method Call Keyword List 64 [Documentation] Process FFDC request and return a list of generated files. 65 [Arguments] ${index} ${ffdc_function_list}=${EMPTY} 66 67 # Description of argument(s): 68 # index The index into the FFDC_METHOD_CALL dictionary (e.g. 69 # 'BMC LOGS'). 70 # ffdc_function_list See ffdc_function_list description in 71 # "Call FFDC Methods" (above). 72 73 @{method_list}= Get FFDC Method Call ${index} 74 # Example method_list: 75 # method_list: 76 # method_list[0]: 77 # method_list[0][0]: FFDC Generic Report 78 # method_list[0][1]: BMC FFDC Manifest 79 # method_list[1]: 80 # method_list[1][0]: Get Request FFDC 81 # method_list[1][1]: BMC FFDC Get Requests 82 # (etc.) 83 84 # If function list is empty assign default (i.e. a list of all allowable 85 # values). In either case, convert ffdc_function_list from a string to 86 # a list. 87 @{ffdc_function_list}= 88 ... Run Keyword If '${ffdc_function_list}' == '${EMPTY}' 89 ... Get FFDC Method Desc ${index} 90 ... ELSE 91 ... Split String ${ffdc_function_list} separator=: 92 93 @{ffdc_file_list}= Create List 94 :FOR ${method} IN @{method_list} 95 \ ${ffdc_file_sub_list}= Execute Keyword Method ${method[0]} 96 ... ${method[1]} @{ffdc_function_list} 97 \ ${ffdc_file_list}= Smart Combine Lists ${ffdc_file_list} 98 ... ${ffdc_file_sub_list} 99 100 [Return] ${ffdc_file_list} 101 102 103Execute Keyword Method 104 [Documentation] Call into BMC method keywords. Don't let one 105 ... failure skip the remaining. Get whatever data 106 ... it could gather at worse case scenario. 107 [Arguments] ${description} ${keyword_name} @{ffdc_function_list} 108 109 # Description of argument(s): 110 # description The description of the FFDC to be collected. This 111 # would be any value returned by 112 # 'Get FFDC Method Desc' (e.g. "FFDC Generic Report"). 113 # keyword_name The name of the keyword to call to collect the FFDC 114 # data (again, see FFDC_METHOD_CALL). 115 # ffdc_function_list See ffdc_function_list description in 116 # "Call FFDC Methods" (above). The only difference is 117 # in this case, it should be a list rather than a 118 # colon-delimited value. 119 120 @{ffdc_file_list}= Create List 121 122 ${index}= Get Index From List ${ffdc_function_list} ${description} 123 Run Keyword If '${index}' == '${-1}' Return from Keyword 124 ... ${ffdc_file_list} 125 126 ${status} ${ffdc_file_list}= Run Key ${keyword_name} ignore=1 127 [Return] ${ffdc_file_list} 128 129# Method : BMC FFDC Manifest # 130# Execute command on BMC and write to ffdc_report.txt # 131 132BMC FFDC Manifest 133 [Documentation] Run the ssh commands from FFDC_BMC_CMD and return a list 134 ... of generated files. 135 136 @{ffdc_file_list}= Create List ${FFDC_FILE_PATH} 137 @{entries}= Get FFDC Cmd Index 138 :FOR ${index} IN @{entries} 139 \ Iterate BMC Command List Pairs ${index} 140 141 [Return] ${ffdc_file_list} 142 143 144Iterate BMC Command List Pairs 145 [Documentation] Feed in key pair list from dictionary to execute 146 [Arguments] ${key_index} 147 148 @{cmd_list}= Get ffdc bmc cmd ${key_index} 149 Set Suite Variable ${ENTRY_INDEX} ${key_index} 150 :FOR ${cmd} IN @{cmd_list} 151 \ Execute Command and Write FFDC ${cmd[0]} ${cmd[1]} 152 153 154Execute Command and Write FFDC 155 [Documentation] Run a command on the BMC or OS, write the output to the 156 ... specified file and return a list of generated files. 157 [Arguments] ${key_index} ${cmd} ${logpath}=${FFDC_FILE_PATH} 158 ... ${target}=BMC 159 160 Run Keyword If '${logpath}' == '${FFDC_FILE_PATH}' 161 ... Write Cmd Output to FFDC File ${key_index} ${cmd} 162 163 @{ffdc_file_list}= Create List ${log_path} 164 165 ${cmd_buf}= Catenate ${target} Execute Command \ ${cmd} \ ignore_err=${1} 166 ... \ time_out=${FFDC_CMD_TIMEOUT} 167 ${status} ${ret_values}= Run Key ${cmd_buf} ignore=${1} 168 # If the command times out, status will be 'FAIL'. 169 Return From Keyword If '${status}' == 'FAIL' ${ffdc_file_list} 170 171 ${stdout}= Set Variable @{ret_values}[0] 172 ${stderr}= Set Variable @{ret_values}[1] 173 174 # Write stdout on success and stderr/stdout to the file on failure. 175 Run Keyword If $stderr == '${EMPTY}' 176 ... Write Data To File ${stdout}${\n} ${logpath} 177 ... ELSE Write Data To File 178 ... ERROR output:${\n}${stderr}${\n}Output:${\n}${stdout}${\n} 179 ... ${logpath} 180 181 [Return] ${ffdc_file_list} 182 183 184# Method : BMC FFDC Files # 185# Execute command on BMC and write to individual file # 186# based on the file name pre-defined in the list # 187 188BMC FFDC Files 189 [Documentation] Run the commands from FFDC_BMC_FILE and return a list of 190 ... generated files. 191 192 @{entries}= Get FFDC File Index 193 # Example of entries: 194 # entries: 195 # entries[0]: BMC FILES 196 197 scp.Open Connection 198 ... ${OPENBMC_HOST} username=${OPENBMC_USERNAME} password=${OPENBMC_PASSWORD} 199 200 @{ffdc_file_list}= Create List 201 :FOR ${index} IN @{entries} 202 \ ${ffdc_file_sub_list}= Create File and Write Data ${index} 203 \ ${ffdc_file_list}= Smart Combine Lists ${ffdc_file_list} 204 ... ${ffdc_file_sub_list} 205 206 BMC Execute Command rm -rf /tmp/BMC_* /tmp/SOL.txt 207 scp.Close Connection 208 209 [Return] ${ffdc_file_list} 210 211 212Create File and Write Data 213 [Documentation] Run commands from FFDC_BMC_FILE to create FFDC files and 214 ... return a list of generated files. 215 [Arguments] ${key_index} 216 217 # Description of argument(s): 218 # key_index The index into the FFDC_BMC_FILE dictionary. 219 220 @{ffdc_file_list}= Create List 221 @{cmd_list}= Get FFDC BMC File ${key_index} 222 :FOR ${cmd} IN @{cmd_list} 223 \ ${logpath}= Catenate SEPARATOR= ${LOG_PREFIX} ${cmd[0]}.txt 224 \ ${ffdc_file_sub_list}= Execute Command and Write FFDC ${cmd[0]} 225 ... ${cmd[1]} ${logpath} 226 \ Run Key U scp.Get File \ /tmp/${cmd[0]}.txt \ ${LOG_PREFIX}${cmd[0]}.txt 227 \ ${ffdc_file_list}= Smart Combine Lists ${ffdc_file_list} 228 ... ${ffdc_file_sub_list} 229 230 [Return] ${ffdc_file_list} 231 232 233# Method : Log Test Case Status # 234# Creates test result history footprint for reference # 235 236Log Test Case Status 237 [Documentation] Test case execution result history. 238 ... Create once and append to this file 239 ... logs/test_history.txt 240 ... Format Date:Test suite:Test case:Status 241 ... 20160909214053719992:Test Warmreset:Test WarmReset via REST:FAIL 242 243 ${FFDC_DIR_PATH_STYLE}= Get Variable Value ${FFDC_DIR_PATH_STYLE} 244 ... ${EMPTY} 245 ${FFDC_DIR_PATH}= Get Variable Value ${FFDC_DIR_PATH} ${EMPTY} 246 247 Run Keyword If '${FFDC_DIR_PATH}' == '${EMPTY}' Set FFDC Defaults 248 249 Run Keyword If '${FFDC_DIR_PATH_STYLE}' == '${1}' Run Keywords 250 ... Set Global Variable ${FFDC_LOG_PATH} ${FFDC_DIR_PATH} AND 251 ... Set Global Variable ${TEST_HISTORY} ${FFDC_DIR_PATH}test_history.txt 252 253 Create Directory ${FFDC_LOG_PATH} 254 255 ${exist}= Run Keyword and Return Status 256 ... OperatingSystem.File Should Exist ${TEST_HISTORY} 257 258 Run Keyword If '${exist}' == '${False}' 259 ... Create File ${TEST_HISTORY} 260 261 Rpvars TEST_HISTORY 262 263 ${cur_time}= Get Current Time Stamp 264 265 Append To File ${TEST_HISTORY} 266 ... ${cur_time}:${SUITE_NAME}:${TEST_NAME}:${TEST_STATUS}${\n} 267 268 269Log FFDC Get Requests 270 [Documentation] Run the get requests associated with the key and return a 271 ... list of generated files. 272 [Arguments] ${key_index} 273 274 # Note: Output will be in JSON pretty_print format. 275 276 # Description of argument(s): 277 # key_index The key to the FFDC_GET_REQUEST dictionary that contains the 278 # get requests that are to be run. 279 280 @{ffdc_file_list}= Create List 281 @{cmd_list}= Get FFDC Get Request ${key_index} 282 :FOR ${cmd} IN @{cmd_list} 283 \ ${logpath}= Catenate SEPARATOR= ${LOG_PREFIX} ${cmd[0]}.txt 284 \ ${resp}= OpenBMC Get Request ${cmd[1]} quiet=${1} 285 \ ${status}= Run Keyword and Return Status 286 ... Should Be Equal As Strings ${resp.status_code} ${HTTP_OK} 287 \ Run Keyword If '${status}' == '${False}' Continue For Loop 288 \ ${jsondata}= to json ${resp.content} pretty_print=True 289 \ Write Data To File ${\n}${jsondata}${\n} ${logpath} 290 \ Append To List ${ffdc_file_list} ${logpath} 291 292 [Return] ${ffdc_file_list} 293 294BMC FFDC Get Requests 295 [Documentation] Iterate over get request list and return a list of 296 ... generated files. 297 298 @{ffdc_file_list}= Create List 299 300 @{entries}= Get ffdc get request index 301 # Example of entries: 302 # entries: 303 # entries[0]: GET REQUESTS 304 :FOR ${index} IN @{entries} 305 \ ${ffdc_file_sub_list}= Log FFDC Get Requests ${index} 306 \ ${ffdc_file_list}= Smart Combine Lists ${ffdc_file_list} 307 ... ${ffdc_file_sub_list} 308 309 [Return] ${ffdc_file_list} 310 311Log OS All distros FFDC 312 [Documentation] Run commands from FFDC_OS_ALL_DISTROS_FILE to create FFDC 313 ... files and return a list of generated files. 314 [Arguments] ${key_index} 315 316 # Description of argument(s): 317 # key_index The index into the FFDC_OS_ALL_DISTROS_FILE dictionary. 318 319 @{ffdc_file_list}= Create List 320 321 @{cmd_list}= Get FFDC OS All Distros Call ${key_index} 322 :FOR ${cmd} IN @{cmd_list} 323 \ ${logpath}= Catenate SEPARATOR= ${LOG_PREFIX} ${cmd[0]}.txt 324 \ ${ffdc_file_sub_list}= Execute Command and Write FFDC ${cmd[0]} 325 ... ${cmd[1]} ${logpath} target=OS 326 \ # scp it to the LOG_PREFIX ffdc directory. 327 \ Run Key U scp.Get File \ /tmp/${cmd[0]}.txt \ ${LOG_PREFIX}${cmd[0]}.txt 328 \ ${ffdc_file_list}= Smart Combine Lists ${ffdc_file_list} 329 ... ${ffdc_file_sub_list} 330 331 [Return] ${ffdc_file_list} 332 333 334Log OS SPECIFIC DISTRO FFDC 335 [Documentation] Run commands from the FFDC_OS_<distro>_FILE to create FFDC 336 ... files and return a list of generated files. 337 [Arguments] ${key_index} ${linux_distro} 338 339 # Description of argument(s): 340 # key_index The index into the FFDC_OS_<distro>_FILE dictionary. 341 # linux_distro Your OS's linux distro (e.g. "UBUNTU", "RHEL", etc). 342 343 @{ffdc_file_list}= Create List 344 345 @{cmd_list}= Get FFDC OS Distro Call ${key_index} ${linux_distro} 346 :FOR ${cmd} IN @{cmd_list} 347 \ ${logpath}= Catenate SEPARATOR= ${LOG_PREFIX} ${cmd[0]}.txt 348 \ ${ffdc_file_sub_list}= Execute Command and Write FFDC ${cmd[0]} 349 ... ${cmd[1]} ${logpath} target=OS 350 \ Run Key U scp.Get File \ /tmp/${cmd[0]}.txt \ ${LOG_PREFIX}${cmd[0]}.txt 351 \ ${ffdc_file_list}= Smart Combine Lists ${ffdc_file_list} 352 ... ${ffdc_file_sub_list} 353 354 [Return] ${ffdc_file_list} 355 356 357OS FFDC Files 358 [Documentation] Run the commands from FFDC_OS_ALL_DISTROS_FILE to create 359 ... FFDC files and return a list of generated files. 360 [Arguments] ${OS_HOST}=${OS_HOST} ${OS_USERNAME}=${OS_USERNAME} 361 ... ${OS_PASSWORD}=${OS_PASSWORD} 362 363 @{ffdc_file_list}= Create List 364 365 Run Keyword If '${OS_HOST}' == '${EMPTY}' Run Keywords 366 ... Print Timen No OS Host provided so no OS FFDC will be done. AND 367 ... Return From Keyword ${ffdc_file_list} 368 369 ${match_state}= Create Dictionary os_ping=^1$ os_login=^1$ 370 ... os_run_cmd=^1$ 371 ${status} ${ret_values}= Run Keyword and Ignore Error Check State 372 ... ${match_state} quiet=0 373 374 Run Keyword If '${status}' == 'FAIL' Run Keywords 375 ... Print Timen The OS is not communicating so no OS FFDC will be done.\n 376 ... AND 377 ... Return From Keyword ${ffdc_file_list} 378 379 ${stdout} ${stderr} ${rc}= OS Execute Command 380 ... . /etc/os-release; echo $ID ignore_err=${0} 381 Set Global Variable ${linux_distro} ${stdout} 382 383 Rpvars linux_distro 384 385 scp.Open Connection 386 ... ${OS_HOST} username=${OS_USERNAME} password=${OS_PASSWORD} 387 388 @{entries}= Get FFDC OS All Distros Index 389 :FOR ${index} IN @{entries} 390 \ ${ffdc_file_sub_list}= Log OS All distros FFDC ${index} 391 \ ${ffdc_file_list}= Smart Combine Lists ${ffdc_file_list} 392 ... ${ffdc_file_sub_list} 393 394 Return From Keyword If 395 ... '${linux_distro}' == '${EMPTY}' or '${linux_distro}' == 'None' 396 ... ${ffdc_file_list} 397 398 @{entries}= Get ffdc os distro index ${linux_distro} 399 :FOR ${index} IN @{entries} 400 \ ${ffdc_file_sub_list}= Log OS SPECIFIC DISTRO FFDC ${index} 401 ... ${linux_distro} 402 \ ${ffdc_file_list}= Smart Combine Lists ${ffdc_file_list} 403 ... ${ffdc_file_sub_list} 404 405 # Delete ffdc files still on OS and close scp. 406 OS Execute Command rm -rf /tmp/OS_* 407 scp.Close Connection 408 409 [Return] ${ffdc_file_list} 410 411 412System Inventory Files 413 [Documentation] Copy systest os_inventory files and return a list of 414 ... generated files.. 415 # The os_inventory files are the result of running 416 # systest/htx_hardbootme_test. If these files exist 417 # they are copied to the FFDC directory. 418 # Global variable ffdc_dir_path is the path name of the 419 # directory they are copied to. 420 421 @{ffdc_file_list}= Create List 422 423 ${globex}= Set Variable os_inventory_*.json 424 425 @{file_list}= OperatingSystem.List Files In Directory . ${globex} 426 427 Copy Files ${globex} ${ffdc_dir_path} 428 429 : FOR ${file_name} IN @{file_list} 430 \ Append To List ${ffdc_file_list} ${ffdc_dir_path}${file_name} 431 432 Run Keyword and Ignore Error Remove Files ${globex} 433 434 [Return] ${ffdc_file_list} 435 436 437SCP Coredump Files 438 [Documentation] Copy core dump files from BMC to local system and return a 439 ... list of generated file names. 440 441 @{ffdc_file_list}= Create List 442 443 # Check if core dump exist in the /tmp 444 ${core_files} ${stderr} ${rc}= BMC Execute Command ls /tmp/core_* 445 ... ignore_err=${1} 446 Run Keyword If '${rc}' != '${0}' Return From Keyword ${ffdc_file_list} 447 448 @{core_list}= Split String ${core_files} 449 # Copy the core files 450 Run Key U Open Connection for SCP 451 :FOR ${index} IN @{core_list} 452 \ ${ffdc_file_path}= Catenate ${LOG_PREFIX}${index.lstrip("/tmp/")} 453 \ ${status}= Run Keyword and Return Status 454 ... scp.Get File ${index} ${ffdc_file_path} 455 \ Run Keyword If '${status}' == '${False}' Continue For Loop 456 \ Append To List ${ffdc_file_list} ${ffdc_file_path} 457 # Remove the file from remote to avoid re-copying on next FFDC call 458 \ BMC Execute Command rm ${index} ignore_err=${1} 459 # I can't find a way to do this: scp.Close Connection 460 461 [Return] ${ffdc_file_list} 462 463 464SCP Dump Files 465 [Documentation] Copy all dump files from BMC to local system. 466 467 # Check if dumps exist 468 ${ffdc_file_list}= Scp Dumps ${FFDC_DIR_PATH} ${FFDC_PREFIX} 469 470 [Return] ${ffdc_file_list} 471 472 473Collect Dump Log 474 [Documentation] Collect dumps from dump entry. 475 [Arguments] ${log_prefix_path}=${LOG_PREFIX} 476 477 ${data}= Read Properties ${DUMP_ENTRY_URI}enumerate quiet=${1} 478 479 # Grab the list of entries from dump/entry/ 480 # The data shown below is the result of the "Get Dictionary Keys". 481 # Example: 482 # /xyz/openbmc_project/dump/entry/1 483 # /xyz/openbmc_project/dump/entry/2 484 485 ${dump_list}= Get Dictionary Keys ${data} 486 487 488Enumerate Redfish Resources 489 [Documentation] Enumerate /redfish/v1 resources and properties to 490 ... a file. Return a list which contains the file name. 491 [Arguments] ${log_prefix_path}=${LOG_PREFIX} 492 493 # Description of argument(s): 494 # log_prefix_path The location specifying where to create FFDC file(s). 495 496 # Login is needed to fetch Redfish information. 497 # If login fails, return from keyword. 498 ${status}= Run Keyword And Return Status Redfish.Login 499 Return From Keyword If ${status} == ${False} 500 501 # Get the Redfish resources and properties. 502 ${json_data}= redfish_utils.Enumerate Request /redfish/v1 503 # Typical output: 504 # { 505 # "@odata.id": "/redfish/v1", 506 # "@odata.type": "#ServiceRoot.v1_1_1.ServiceRoot", 507 # "AccountService": { 508 # "@odata.id": "/redfish/v1/AccountService" 509 # }, 510 # "Chassis": { 511 # "@odata.id": "/redfish/v1/Chassis" 512 # }, 513 # "Id": "RootService", 514 # "JsonSchemas": { 515 # "@odata.id": "/redfish/v1/JsonSchemas" 516 # }, 517 # ..etc... 518 # } 519 520 @{ffdc_file_list}= Create List 521 ${logpath}= Catenate SEPARATOR= ${log_prefix_path} 522 ... redfish_resource_properties.txt 523 Create File ${logpath} 524 Write Data To File "${\n}${json_data}${\n}" ${logpath} 525 526 Append To List ${ffdc_file_list} ${logpath} 527 528 [Return] ${ffdc_file_list} 529 530 531Collect eSEL Log 532 [Documentation] Create raw and formatted eSEL files. 533 [Arguments] ${log_prefix_path}=${LOG_PREFIX} 534 535 # NOTE: If no eSEL.pl program can be located, then no formatted eSEL file 536 # will be generated. 537 538 # Description of argument(s): 539 # log_prefix_path The path prefix to be used in creating 540 # eSEL file path names. For example, if 541 # log_prefix_path is 542 # "/tmp/user1/dummy.181001.120000.", then 543 # this keyword will create 544 # /tmp/user1/dummy.181001.120000.esel (raw) 545 # and 546 # /tmp/user1/dummy.181001.120000.esel.txt 547 # (formatted). 548 549 @{ffdc_file_list}= Create List 550 551 ${esels}= Get Esels 552 ${num_esels}= Evaluate len(${esels}) 553 Rprint Vars num_esels 554 Return From Keyword If ${num_esels} == ${0} ${ffdc_file_list} 555 556 ${logpath}= Catenate SEPARATOR= ${log_prefix_path} esel 557 Create File ${logpath} 558 559 :FOR ${esel} IN @{esels} 560 \ Write Data To File "${esel}"${\n} ${logpath} 561 562 Append To List ${ffdc_file_list} ${logpath} 563 564 ${rc} ${output}= Shell Cmd which eSEL.pl show_err=0 565 Return From Keyword If ${rc} != ${0} ${ffdc_file_list} 566 567 Convert eSEL To Elog Format ${logpath} 568 Append To List ${ffdc_file_list} ${logpath}.txt 569 570 [Return] ${ffdc_file_list} 571 572 573Convert eSEL To Elog Format 574 [Documentation] Execute parser tool on the eSEL data file to generate 575 ... formatted error log. 576 [Arguments] ${esel_file_path} 577 # Description of argument(s): 578 # esel_file_path The path to the file containing raw eSEL 579 # data (e.g. 580 # "/tmp/user1/dummy.181001.120000.esel"). 581 582 # Note: The only way to get eSEL.pl to put the output in a particular 583 # directory is to cd to that directory. 584 ${cmd_buf}= Catenate cd $(dirname ${esel_file_path}) ; eSEL.pl -l 585 ... ${esel_file_path} -p decode_obmc_data 586 Qprint Issuing ${cmd_buf} 587 Run ${cmd_buf} 588 # The .binary file, which is generated by eSEL.pl, is of no use to us. 589 Remove File ${esel_file_path}.binary 590