George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 1 | *** Settings *** |
Joy Onyerikwu | dbfe97d | 2019-03-11 19:44:56 -0500 | [diff] [blame] | 2 | Documentation Test BMC Manager functionality. |
George Keishing | 2db7bca | 2019-02-14 13:03:08 -0600 | [diff] [blame] | 3 | Resource ../../lib/resource.robot |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 4 | Resource ../../lib/bmc_redfish_resource.robot |
| 5 | Resource ../../lib/common_utils.robot |
George Keishing | 3298d5c | 2019-02-12 06:59:25 -0600 | [diff] [blame] | 6 | Resource ../../lib/openbmc_ffdc.robot |
George Keishing | ba0441c | 2019-03-09 22:22:57 -0600 | [diff] [blame] | 7 | Resource ../../lib/boot_utils.robot |
George Keishing | 44f890b | 2019-04-22 13:32:15 -0500 | [diff] [blame] | 8 | Resource ../../lib/open_power_utils.robot |
George Keishing | 224377b | 2019-07-15 14:15:09 -0500 | [diff] [blame] | 9 | Resource ../../lib/bmc_network_utils.robot |
| 10 | Library ../../lib/gen_robot_valid.py |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 11 | |
George Keishing | 97c9394 | 2019-03-04 12:45:07 -0600 | [diff] [blame] | 12 | Test Setup Test Setup Execution |
George Keishing | 49f4633 | 2019-03-26 08:13:05 -0500 | [diff] [blame] | 13 | Test Teardown Test Teardown Execution |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 14 | |
George Keishing | 912094b | 2019-06-07 09:49:03 -0500 | [diff] [blame] | 15 | |
| 16 | *** Variables *** |
| 17 | |
| 18 | ${SYSTEM_SHUTDOWN_TIME} ${5} |
| 19 | |
| 20 | # Strings to check from journald. |
aravinth0510 | 9fae166 | 2022-06-29 16:42:27 +0000 | [diff] [blame] | 21 | ${REBOOT_REGEX} ^\-- Boot | Startup finished |
George Keishing | 912094b | 2019-06-07 09:49:03 -0500 | [diff] [blame] | 22 | |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 23 | *** Test Cases *** |
| 24 | |
George Keishing | 5ee33d9 | 2019-02-02 12:33:25 -0600 | [diff] [blame] | 25 | Verify Redfish BMC Firmware Version |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 26 | [Documentation] Get firmware version from BMC manager. |
George Keishing | 5ee33d9 | 2019-02-02 12:33:25 -0600 | [diff] [blame] | 27 | [Tags] Verify_Redfish_BMC_Firmware_Version |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 28 | |
George Keishing | 97c9394 | 2019-03-04 12:45:07 -0600 | [diff] [blame] | 29 | Redfish.Login |
| 30 | ${resp}= Redfish.Get /redfish/v1/Managers/bmc |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 31 | Should Be Equal As Strings ${resp.status} ${HTTP_OK} |
| 32 | ${bmc_version}= Get BMC Version |
| 33 | Should Be Equal As Strings |
| 34 | ... ${resp.dict["FirmwareVersion"]} ${bmc_version.strip('"')} |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 35 | |
| 36 | |
George Keishing | 5ee33d9 | 2019-02-02 12:33:25 -0600 | [diff] [blame] | 37 | Verify Redfish BMC Manager Properties |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 38 | [Documentation] Verify BMC managers resource properties. |
George Keishing | 5ee33d9 | 2019-02-02 12:33:25 -0600 | [diff] [blame] | 39 | [Tags] Verify_Redfish_BMC_Manager_Properties |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 40 | |
George Keishing | 97c9394 | 2019-03-04 12:45:07 -0600 | [diff] [blame] | 41 | Redfish.Login |
| 42 | ${resp}= Redfish.Get /redfish/v1/Managers/bmc |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 43 | Should Be Equal As Strings ${resp.status} ${HTTP_OK} |
| 44 | # Example: |
| 45 | # "Description": "Baseboard Management Controller" |
| 46 | # "Id": "bmc" |
| 47 | # "Model": "OpenBmc", |
| 48 | # "Name": "OpenBmc Manager", |
| 49 | # "UUID": "xxxxxxxx-xxx-xxx-xxx-xxxxxxxxxxxx" |
| 50 | # "PowerState": "On" |
| 51 | |
| 52 | Should Be Equal As Strings |
| 53 | ... ${resp.dict["Description"]} Baseboard Management Controller |
| 54 | Should Be Equal As Strings ${resp.dict["Id"]} bmc |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 55 | Should Be Equal As Strings ${resp.dict["Name"]} OpenBmc Manager |
| 56 | Should Not Be Empty ${resp.dict["UUID"]} |
| 57 | Should Be Equal As Strings ${resp.dict["PowerState"]} On |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 58 | |
| 59 | |
George Keishing | 224377b | 2019-07-15 14:15:09 -0500 | [diff] [blame] | 60 | Verify MAC Address Property Is Populated |
| 61 | [Documentation] Verify BMC managers resource properties. |
| 62 | [Tags] Verify_MAC_Address_Property_Is_Populated |
| 63 | |
George Keishing | 11789a2 | 2020-07-17 14:38:00 -0500 | [diff] [blame] | 64 | # Get OrderedDict from the BMC which contains active ethernet channel. |
| 65 | # Example: ([('1', {'name': 'eth0', |
| 66 | # 'is_valid': True, |
| 67 | # 'active_sessions': 0, |
| 68 | # 'channel_info': {'medium_type': 'lan-802.3', |
| 69 | # 'protocol_type': 'ipmb-1.0', |
| 70 | # 'session_supported': 'multi-session', |
| 71 | # 'is_ipmi': True |
| 72 | # } |
| 73 | # } |
| 74 | # )]) |
| 75 | |
| 76 | ${active_channel_config}= Get Active Channel Config |
| 77 | |
| 78 | FOR ${channel_number} IN @{active_channel_config.keys()} |
| 79 | Log Dictionary ${active_channel_config["${channel_number}"]} |
| 80 | |
| 81 | # Get ethernet valid paths in redfish. |
| 82 | # Example: ['/redfish/v1/Managers/bmc/EthernetInterfaces'] |
| 83 | ${eth_interface}= redfish_utils.Get Endpoint Path List |
| 84 | ... /redfish/v1/Managers/ EthernetInterfaces |
| 85 | |
| 86 | # Get the MACAddress attrivute value with the 'name': 'eth0'. |
| 87 | # Example: /redfish/v1/Managers/bmc/EthernetInterfaces/eth0 |
| 88 | ${redfish_mac_addr}= Redfish.Get Attribute |
| 89 | ... ${eth_interface[0]}/${active_channel_config["${channel_number}"]["name"]} |
| 90 | ... MACAddress |
| 91 | END |
| 92 | |
George Keishing | 224377b | 2019-07-15 14:15:09 -0500 | [diff] [blame] | 93 | Rprint Vars redfish_mac_addr fmt=terse |
Michael Walsh | e7edb22 | 2019-08-19 17:39:38 -0500 | [diff] [blame] | 94 | Valid Value redfish_mac_addr |
George Keishing | 224377b | 2019-07-15 14:15:09 -0500 | [diff] [blame] | 95 | |
| 96 | ${ipaddr_mac_addr}= Get BMC MAC Address List |
| 97 | Rprint Vars ipaddr_mac_addr fmt=terse |
| 98 | |
| 99 | List Should Contain Value ${ipaddr_mac_addr} ${redfish_mac_addr} |
| 100 | |
| 101 | |
George Keishing | ba0441c | 2019-03-09 22:22:57 -0600 | [diff] [blame] | 102 | Redfish BMC Manager GracefulRestart When Host Off |
| 103 | [Documentation] BMC graceful restart when host is powered off. |
| 104 | [Tags] Redfish_BMC_Manager_GracefulRestart_When_Host_Off |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 105 | |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 106 | # "Actions": { |
| 107 | # "#Manager.Reset": { |
| 108 | # "ResetType@Redfish.AllowableValues": [ |
Sushil Singh | b910d89 | 2021-11-17 05:34:29 -0600 | [diff] [blame] | 109 | # "GracefulRestart", |
| 110 | # "ForceRestart" |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 111 | # ], |
| 112 | # "target": "/redfish/v1/Managers/bmc/Actions/Manager.Reset" |
| 113 | # } |
| 114 | |
George Keishing | 912094b | 2019-06-07 09:49:03 -0500 | [diff] [blame] | 115 | ${test_file_path}= Set Variable /tmp/before_bmcreboot |
| 116 | BMC Execute Command touch ${test_file_path} |
| 117 | |
Sushil Singh | b910d89 | 2021-11-17 05:34:29 -0600 | [diff] [blame] | 118 | Redfish Power Off stack_mode=skip |
| 119 | |
| 120 | Redfish BMC Reset Operation reset_type=GracefulRestart |
| 121 | |
| 122 | Is BMC Standby |
| 123 | |
George Keishing | e9ebf91 | 2022-07-19 10:23:26 -0500 | [diff] [blame] | 124 | ${stdout} ${stderr} ${rc}= BMC Execute Command test ! -f ${test_file_path} print_out=1 |
Sushil Singh | b910d89 | 2021-11-17 05:34:29 -0600 | [diff] [blame] | 125 | Verify BMC RTC And UTC Time Drift |
| 126 | |
| 127 | # Check for journald persistency post reboot. |
aravinth0510 | 9fae166 | 2022-06-29 16:42:27 +0000 | [diff] [blame] | 128 | Wait Until Keyword Succeeds 3 min 10 sec |
| 129 | ... Check For Regex In Journald ${REBOOT_REGEX} error_check=${1} |
Sushil Singh | b910d89 | 2021-11-17 05:34:29 -0600 | [diff] [blame] | 130 | |
| 131 | |
| 132 | Redfish BMC Manager ForceRestart When Host Off |
| 133 | [Documentation] BMC force restart when host is powered off. |
| 134 | [Tags] Redfish_BMC_Manager_ForceRestart_When_Host_Off |
| 135 | |
| 136 | # "Actions": { |
| 137 | # "#Manager.Reset": { |
| 138 | # "ResetType@Redfish.AllowableValues": [ |
| 139 | # "GracefulRestart", |
| 140 | # "ForceRestart" |
| 141 | # ], |
| 142 | # "target": "/redfish/v1/Managers/bmc/Actions/Manager.Reset" |
| 143 | # } |
| 144 | |
| 145 | ${test_file_path}= Set Variable /tmp/before_bmcreboot |
| 146 | BMC Execute Command touch ${test_file_path} |
| 147 | |
| 148 | Redfish Power Off stack_mode=skip |
| 149 | |
| 150 | Redfish BMC Reset Operation reset_type=ForceRestart |
| 151 | |
| 152 | Is BMC Standby |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 153 | |
George Keishing | e9ebf91 | 2022-07-19 10:23:26 -0500 | [diff] [blame] | 154 | ${stdout} ${stderr} ${rc}= BMC Execute Command test ! -f ${test_file_path} print_out=1 |
George Keishing | 912094b | 2019-06-07 09:49:03 -0500 | [diff] [blame] | 155 | Verify BMC RTC And UTC Time Drift |
| 156 | |
| 157 | # Check for journald persistency post reboot. |
aravinth0510 | 9fae166 | 2022-06-29 16:42:27 +0000 | [diff] [blame] | 158 | Wait Until Keyword Succeeds 3 min 10 sec |
| 159 | ... Check For Regex In Journald ${REBOOT_REGEX} error_check=${1} |
George Keishing | 912094b | 2019-06-07 09:49:03 -0500 | [diff] [blame] | 160 | |
George Keishing | ba0441c | 2019-03-09 22:22:57 -0600 | [diff] [blame] | 161 | |
George Keishing | e210d59 | 2019-06-11 11:18:35 -0500 | [diff] [blame] | 162 | Verify Boot Count After BMC Reboot |
| 163 | [Documentation] Verify boot count increments on BMC reboot. |
| 164 | [Tags] Verify_Boot_Count_After_BMC_Reboot |
| 165 | |
| 166 | Set BMC Boot Count ${0} |
| 167 | Redfish OBMC Reboot (off) |
| 168 | ${boot_count}= Get BMC Boot Count |
| 169 | Should Be Equal ${boot_count} ${1} msg=Boot count is not incremented. |
| 170 | |
| 171 | |
George Keishing | ba0441c | 2019-03-09 22:22:57 -0600 | [diff] [blame] | 172 | Redfish BMC Manager GracefulRestart When Host Booted |
| 173 | [Documentation] BMC graceful restart when host is running. |
| 174 | [Tags] Redfish_BMC_Manager_GracefulRestart_When_Host_Booted |
| 175 | |
| 176 | Redfish OBMC Reboot (run) |
| 177 | |
George Keishing | 44f890b | 2019-04-22 13:32:15 -0500 | [diff] [blame] | 178 | # TODO: Replace OCC state check with redfish property when available. |
George Keishing | e9ebf91 | 2022-07-19 10:23:26 -0500 | [diff] [blame] | 179 | Wait Until Keyword Succeeds 10 min 30 sec Verify OCC State |
George Keishing | 44f890b | 2019-04-22 13:32:15 -0500 | [diff] [blame] | 180 | |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 181 | |
George Keishing | 97c9394 | 2019-03-04 12:45:07 -0600 | [diff] [blame] | 182 | *** Keywords *** |
George Keishing | 22872e5 | 2019-01-30 22:44:04 -0600 | [diff] [blame] | 183 | |
George Keishing | 97c9394 | 2019-03-04 12:45:07 -0600 | [diff] [blame] | 184 | Test Setup Execution |
| 185 | [Documentation] Do test case setup tasks. |
| 186 | |
| 187 | redfish.Login |
| 188 | |
| 189 | |
| 190 | Test Teardown Execution |
| 191 | [Documentation] Do the post test teardown. |
| 192 | |
| 193 | FFDC On Test Case Fail |
George Keishing | 780ee11 | 2021-02-02 23:27:22 -0600 | [diff] [blame] | 194 | Run Keyword And Ignore Error redfish.Logout |