Joy Onyerikwu | 5b2d33c | 2021-01-22 00:48:49 -0600 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation BMC collect VPD and hardware status. |
| 3 | |
| 4 | # Test Parameters: |
| 5 | # OPENBMC_HOST The BMC host name or IP address. |
| 6 | |
Joy Onyerikwu | c3dcec3 | 2021-01-22 10:37:57 -0600 | [diff] [blame] | 7 | Resource ../lib/bmc_redfish_resource.robot |
| 8 | Resource ../lib/openbmc_ffdc.robot |
Joy Onyerikwu | 5b2d33c | 2021-01-22 00:48:49 -0600 | [diff] [blame] | 9 | |
| 10 | Suite Setup Suite Setup Execution |
| 11 | Test Setup Printn |
| 12 | |
| 13 | *** Variables *** |
| 14 | ${QUIET} ${1} |
| 15 | |
| 16 | *** Test Cases *** |
| 17 | |
| 18 | Collect VPD And Hardware Status |
| 19 | [Documentation] Collect VPD and hardware status using Redfish. |
| 20 | [Tags] collect_vpd |
| 21 | [Setup] Redfish.Login |
| 22 | [Teardown] Redfish Test Teardown Execution |
| 23 | |
| 24 | ${system_properties}= Redfish_Utils.Get Properties ${SYSTEM_BASE_URI} |
| 25 | ${system_memory_info}= Redfish_Utils.Enumerate Request ${SYSTEM_BASE_URI}/Memory |
| 26 | ${system_processors_info}= Redfish_Utils.Enumerate Request ${SYSTEM_BASE_URI}/Processors |
| 27 | ${system_fans_info}= Redfish_Utils.Get Attribute ${REDFISH_CHASSIS_THERMAL_URI} Fans |
| 28 | ${collected_values}= gen_robot_print.Sprint Vars |
| 29 | ... system_properties system_memory_info system_processors_info system_fans_info |
| 30 | Log To Console ${\n}${collected_values}${\n} |
| 31 | |
| 32 | Run VPD Tool |
| 33 | [Documentation] Run vpd-tool -i. |
| 34 | [Tags] run_vpd_tool |
| 35 | |
| 36 | BMC Execute Command vpd-tool -i print_out=${1} |
| 37 | |
| 38 | *** Keywords *** |
| 39 | |
| 40 | Suite Setup Execution |
| 41 | [Documentation] Do test case setup tasks. |
| 42 | |
| 43 | Set Log Level DEBUG |
| 44 | Log To Console ${OPENBMC_HOST} |
| 45 | |
| 46 | |
| 47 | Redfish Test Teardown Execution |
| 48 | [Documentation] Do the post test teardown for redfish. |
| 49 | |
| 50 | Redfish.Logout |
| 51 | FFDC On Test Case Fail clean_up=${FALSE} |