1*** Settings *** 2Documentation Test BMC Manager functionality. 3Resource ../../lib/resource.robot 4Resource ../../lib/bmc_redfish_resource.robot 5Resource ../../lib/common_utils.robot 6Resource ../../lib/openbmc_ffdc.robot 7Resource ../../lib/boot_utils.robot 8Resource ../../lib/open_power_utils.robot 9Resource ../../lib/bmc_network_utils.robot 10Library ../../lib/gen_robot_valid.py 11 12Test Setup Test Setup Execution 13Test Teardown Test Teardown Execution 14 15 16*** Variables *** 17 18${SYSTEM_SHUTDOWN_TIME} ${5} 19 20# Strings to check from journald. 21${REBOOT_REGEX} ^\-- Boot | Startup finished 22 23*** Test Cases *** 24 25Verify Redfish BMC Firmware Version 26 [Documentation] Get firmware version from BMC manager. 27 [Tags] Verify_Redfish_BMC_Firmware_Version 28 29 Redfish.Login 30 ${resp}= Redfish.Get /redfish/v1/Managers/bmc 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('"')} 35 36 37Verify Redfish BMC Manager Properties 38 [Documentation] Verify BMC managers resource properties. 39 [Tags] Verify_Redfish_BMC_Manager_Properties 40 41 Redfish.Login 42 ${resp}= Redfish.Get /redfish/v1/Managers/bmc 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 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 58 59 60Verify MAC Address Property Is Populated 61 [Documentation] Verify BMC managers resource properties. 62 [Tags] Verify_MAC_Address_Property_Is_Populated 63 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 # Skip channel if is_valid is false for the channel number 82 Continue For Loop If 83 ... ${active_channel_config["${channel_number}"]["is_valid"]}==${FALSE} 84 85 # Get ethernet valid paths in redfish. 86 # Example: ['/redfish/v1/Managers/bmc/EthernetInterfaces'] 87 ${eth_interface}= redfish_utils.Get Endpoint Path List 88 ... /redfish/v1/Managers/ EthernetInterfaces 89 90 # Get the MACAddress attrivute value with the 'name': 'eth0'. 91 # Example: /redfish/v1/Managers/bmc/EthernetInterfaces/eth0 92 ${redfish_mac_addr}= Redfish.Get Attribute 93 ... ${eth_interface[0]}/${active_channel_config["${channel_number}"]["name"]} 94 ... MACAddress 95 END 96 97 Rprint Vars redfish_mac_addr fmt=terse 98 Valid Value redfish_mac_addr 99 100 ${ipaddr_mac_addr}= Get BMC MAC Address List 101 Rprint Vars ipaddr_mac_addr fmt=terse 102 103 List Should Contain Value ${ipaddr_mac_addr} ${redfish_mac_addr} 104 105 106Redfish BMC Manager GracefulRestart When Host Off 107 [Documentation] BMC graceful restart when host is powered off. 108 [Tags] Redfish_BMC_Manager_GracefulRestart_When_Host_Off 109 110 # "Actions": { 111 # "#Manager.Reset": { 112 # "ResetType@Redfish.AllowableValues": [ 113 # "GracefulRestart", 114 # "ForceRestart" 115 # ], 116 # "target": "/redfish/v1/Managers/bmc/Actions/Manager.Reset" 117 # } 118 119 ${test_file_path}= Set Variable /tmp/before_bmcreboot 120 BMC Execute Command touch ${test_file_path} 121 122 Redfish Power Off stack_mode=skip 123 124 Redfish BMC Reset Operation reset_type=GracefulRestart 125 126 Is BMC Standby 127 128 ${stdout} ${stderr} ${rc}= BMC Execute Command test ! -f ${test_file_path} print_out=1 129 Verify BMC RTC And UTC Time Drift 130 131 # Check for journald persistency post reboot. 132 Wait Until Keyword Succeeds 3 min 10 sec 133 ... Check For Regex In Journald ${REBOOT_REGEX} error_check=${1} 134 135 136Redfish BMC Manager ForceRestart When Host Off 137 [Documentation] BMC force restart when host is powered off. 138 [Tags] Redfish_BMC_Manager_ForceRestart_When_Host_Off 139 140 # "Actions": { 141 # "#Manager.Reset": { 142 # "ResetType@Redfish.AllowableValues": [ 143 # "GracefulRestart", 144 # "ForceRestart" 145 # ], 146 # "target": "/redfish/v1/Managers/bmc/Actions/Manager.Reset" 147 # } 148 149 ${test_file_path}= Set Variable /tmp/before_bmcreboot 150 BMC Execute Command touch ${test_file_path} 151 152 Redfish Power Off stack_mode=skip 153 154 Redfish BMC Reset Operation reset_type=ForceRestart 155 156 Is BMC Standby 157 158 ${stdout} ${stderr} ${rc}= BMC Execute Command test ! -f ${test_file_path} print_out=1 159 Verify BMC RTC And UTC Time Drift 160 161 # Check for journald persistency post reboot. 162 Wait Until Keyword Succeeds 3 min 10 sec 163 ... Check For Regex In Journald ${REBOOT_REGEX} error_check=${1} 164 165 166Verify Boot Count After BMC Reboot 167 [Documentation] Verify boot count increments on BMC reboot. 168 [Tags] Verify_Boot_Count_After_BMC_Reboot 169 170 Set BMC Boot Count ${0} 171 Redfish OBMC Reboot (off) 172 ${boot_count}= Get BMC Boot Count 173 Should Be Equal ${boot_count} ${1} msg=Boot count is not incremented. 174 175 176Redfish BMC Manager GracefulRestart When Host Booted 177 [Documentation] BMC graceful restart when host is running. 178 [Tags] Redfish_BMC_Manager_GracefulRestart_When_Host_Booted 179 180 Redfish OBMC Reboot (run) 181 182 # TODO: Replace OCC state check with redfish property when available. 183 Wait Until Keyword Succeeds 10 min 30 sec Verify OCC State 184 185 186*** Keywords *** 187 188Test Setup Execution 189 [Documentation] Do test case setup tasks. 190 191 redfish.Login 192 193 194Test Teardown Execution 195 [Documentation] Do the post test teardown. 196 197 FFDC On Test Case Fail 198 Run Keyword And Ignore Error redfish.Logout 199