Rahul Maheshwari | fdd5ff6 | 2017-08-01 04:15:03 -0500 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation This suite is for testing general IPMI functions. |
| 3 | |
| 4 | Resource ../../lib/ipmi_client.robot |
| 5 | Resource ../../lib/openbmc_ffdc.robot |
George Keishing | 0825a11 | 2018-03-30 10:48:07 -0500 | [diff] [blame] | 6 | Resource ../../lib/boot_utils.robot |
George Keishing | 78ce8dc | 2018-03-30 11:49:06 -0500 | [diff] [blame] | 7 | Resource ../../lib/utils.robot |
Sweta Potthuri | f39022d | 2018-02-06 03:40:07 -0600 | [diff] [blame] | 8 | Resource ../../lib/bmc_network_utils.robot |
George Keishing | d627380 | 2018-09-07 07:06:53 -0500 | [diff] [blame] | 9 | Resource ../../lib/logging_utils.robot |
George Keishing | 78ce8dc | 2018-03-30 11:49:06 -0500 | [diff] [blame] | 10 | Library ../../lib/ipmi_utils.py |
George Keishing | 0825a11 | 2018-03-30 10:48:07 -0500 | [diff] [blame] | 11 | Variables ../../data/ipmi_raw_cmd_table.py |
Rahul Maheshwari | df6f05d | 2018-09-04 03:48:37 -0500 | [diff] [blame] | 12 | Library ../../lib/gen_misc.py |
Rahul Maheshwari | fdd5ff6 | 2017-08-01 04:15:03 -0500 | [diff] [blame] | 13 | |
Michael Walsh | c9eb34e | 2019-01-23 11:08:43 -0600 | [diff] [blame] | 14 | Test Setup Log to Console ${EMPTY} |
Rahul Maheshwari | fdd5ff6 | 2017-08-01 04:15:03 -0500 | [diff] [blame] | 15 | Test Teardown FFDC On Test Case Fail |
| 16 | |
| 17 | *** Variables *** |
| 18 | |
Rahul Maheshwari | 901dcde | 2018-02-06 03:14:31 -0600 | [diff] [blame] | 19 | ${allowed_temp_diff}= ${1} |
Rahul Maheshwari | 615da15 | 2018-02-13 23:53:36 -0600 | [diff] [blame] | 20 | ${allowed_power_diff}= ${10} |
Sweta Potthuri | 5c6c72e | 2018-01-23 05:48:35 -0600 | [diff] [blame] | 21 | |
Rahul Maheshwari | fdd5ff6 | 2017-08-01 04:15:03 -0500 | [diff] [blame] | 22 | *** Test Cases *** |
| 23 | |
Rahul Maheshwari | fdd5ff6 | 2017-08-01 04:15:03 -0500 | [diff] [blame] | 24 | Set Asset Tag With Valid String Length Via REST |
| 25 | [Documentation] Set valid asset tag via REST and verify. |
| 26 | [Tags] Set_Asset_Tag_With_Valid_String_Length_Via_REST |
| 27 | |
| 28 | ${random_string}= Generate Random String 63 |
| 29 | ${args}= Create Dictionary data=${random_string} |
| 30 | Write Attribute /xyz/openbmc_project/inventory/system AssetTag |
| 31 | ... data=${args} |
| 32 | |
| 33 | ${asset_tag}= Read Attribute /xyz/openbmc_project/inventory/system |
| 34 | ... AssetTag |
| 35 | Should Be Equal As Strings ${asset_tag} ${random_string} |
| 36 | |
Sweta Potthuri | f39022d | 2018-02-06 03:40:07 -0600 | [diff] [blame] | 37 | |
Sweta Potthuri | 0cc6050 | 2018-01-24 00:36:17 -0600 | [diff] [blame] | 38 | Verify Chassis Identify via IPMI |
| 39 | [Documentation] Verify "chassis identify" using IPMI command. |
| 40 | [Tags] Verify_Chassis_Identify_via_IPMI |
| 41 | |
| 42 | # Set to default "chassis identify" and verify that LED blinks for 15s. |
| 43 | Run IPMI Standard Command chassis identify |
Alvin Wang | 32f7b3d | 2019-07-25 02:05:39 -0500 | [diff] [blame] | 44 | Verify Identify LED State ${1} |
Sweta Potthuri | 0cc6050 | 2018-01-24 00:36:17 -0600 | [diff] [blame] | 45 | |
| 46 | Sleep 15s |
Alvin Wang | 32f7b3d | 2019-07-25 02:05:39 -0500 | [diff] [blame] | 47 | Verify Identify LED State ${0} |
Sweta Potthuri | 0cc6050 | 2018-01-24 00:36:17 -0600 | [diff] [blame] | 48 | |
| 49 | # Set "chassis identify" to 10s and verify that the LED blinks for 10s. |
| 50 | Run IPMI Standard Command chassis identify 10 |
Alvin Wang | 32f7b3d | 2019-07-25 02:05:39 -0500 | [diff] [blame] | 51 | Verify Identify LED State ${1} |
Sweta Potthuri | 0cc6050 | 2018-01-24 00:36:17 -0600 | [diff] [blame] | 52 | |
| 53 | Sleep 10s |
Alvin Wang | 32f7b3d | 2019-07-25 02:05:39 -0500 | [diff] [blame] | 54 | Verify Identify LED State ${0} |
Sweta Potthuri | 0cc6050 | 2018-01-24 00:36:17 -0600 | [diff] [blame] | 55 | |
Sweta Potthuri | f39022d | 2018-02-06 03:40:07 -0600 | [diff] [blame] | 56 | |
Sweta Potthuri | 0cc6050 | 2018-01-24 00:36:17 -0600 | [diff] [blame] | 57 | Verify Chassis Identify Off And Force Identify On via IPMI |
| 58 | [Documentation] Verify "chassis identify" off |
| 59 | ... and "force identify on" via IPMI. |
| 60 | [Tags] Verify_Chassis_Identify_Off_And_Force_Identify_On_via_IPMI |
| 61 | |
| 62 | # Set the LED to "Force Identify On". |
| 63 | Run IPMI Standard Command chassis identify force |
Alvin Wang | 32f7b3d | 2019-07-25 02:05:39 -0500 | [diff] [blame] | 64 | Verify Identify LED State ${1} |
Sweta Potthuri | 0cc6050 | 2018-01-24 00:36:17 -0600 | [diff] [blame] | 65 | |
| 66 | # Set "chassis identify" to 0 and verify that the LED turns off. |
| 67 | Run IPMI Standard Command chassis identify 0 |
Alvin Wang | 32f7b3d | 2019-07-25 02:05:39 -0500 | [diff] [blame] | 68 | Verify Identify LED State ${0} |
Sweta Potthuri | 0cc6050 | 2018-01-24 00:36:17 -0600 | [diff] [blame] | 69 | |
Sweta Potthuri | f39022d | 2018-02-06 03:40:07 -0600 | [diff] [blame] | 70 | |
Sweta Potthuri | 7d3af3c | 2018-01-29 03:07:07 -0600 | [diff] [blame] | 71 | Test Watchdog Reset Via IPMI And Verify Using REST |
| 72 | [Documentation] Test watchdog reset via IPMI and verify using REST. |
| 73 | [Tags] Test_Watchdog_Reset_Via_IPMI_And_Verify_Using_REST |
| 74 | |
| 75 | Initiate Host Boot |
| 76 | |
| 77 | Set Watchdog Enabled Using REST ${1} |
| 78 | |
| 79 | Watchdog Object Should Exist |
| 80 | |
| 81 | # Resetting the watchdog via IPMI. |
| 82 | Run IPMI Standard Command mc watchdog reset |
| 83 | |
| 84 | # Verify the watchdog is reset using REST after an interval of 1000ms. |
| 85 | Sleep 1000ms |
| 86 | ${watchdog_time_left}= |
| 87 | ... Read Attribute ${HOST_WATCHDOG_URI} TimeRemaining |
| 88 | Should Be True |
| 89 | ... ${watchdog_time_left}<${1200000} and ${watchdog_time_left}>${2000} |
| 90 | ... msg=Watchdog timer didn't reset. |
| 91 | |
Sweta Potthuri | f39022d | 2018-02-06 03:40:07 -0600 | [diff] [blame] | 92 | |
Sweta Potthuri | 7d3af3c | 2018-01-29 03:07:07 -0600 | [diff] [blame] | 93 | Test Watchdog Off Via IPMI And Verify Using REST |
| 94 | [Documentation] Test watchdog off via IPMI and verify using REST. |
| 95 | [Tags] Test_Watchdog_Off_Via_IPMI_And_Verify_Using_REST |
| 96 | |
| 97 | Initiate Host Boot |
| 98 | |
| 99 | Set Watchdog Enabled Using REST ${1} |
| 100 | |
| 101 | Watchdog Object Should Exist |
| 102 | |
| 103 | # Turn off the watchdog via IPMI. |
| 104 | Run IPMI Standard Command mc watchdog off |
| 105 | |
| 106 | # Verify the watchdog is off using REST |
| 107 | ${watchdog_state}= Read Attribute ${HOST_WATCHDOG_URI} Enabled |
| 108 | Should Be Equal ${watchdog_state} ${0} |
| 109 | ... msg=msg=Verification failed for watchdog off check. |
Rahul Maheshwari | 901dcde | 2018-02-06 03:14:31 -0600 | [diff] [blame] | 110 | |
| 111 | |
| 112 | Test Ambient Temperature Via IPMI |
| 113 | [Documentation] Test ambient temperature via IPMI and verify using REST. |
| 114 | [Tags] Test_Ambient_Temperature_Via_IPMI |
| 115 | |
| 116 | # Entity ID Entity Instance Temp. Readings |
| 117 | # Inlet air temperature(40h) 1 +19 C |
| 118 | # CPU temperature sensors(41h) 5 +51 C |
| 119 | # CPU temperature sensors(41h) 6 +50 C |
| 120 | # CPU temperature sensors(41h) 7 +50 C |
| 121 | # CPU temperature sensors(41h) 8 +50 C |
| 122 | # CPU temperature sensors(41h) 9 +50 C |
| 123 | # CPU temperature sensors(41h) 10 +48 C |
| 124 | # CPU temperature sensors(41h) 11 +49 C |
| 125 | # CPU temperature sensors(41h) 12 +47 C |
| 126 | # CPU temperature sensors(41h) 8 +50 C |
| 127 | # CPU temperature sensors(41h) 16 +51 C |
| 128 | # CPU temperature sensors(41h) 24 +50 C |
| 129 | # CPU temperature sensors(41h) 32 +43 C |
| 130 | # CPU temperature sensors(41h) 40 +43 C |
| 131 | # Baseboard temperature sensors(42h) 1 +35 C |
| 132 | |
| 133 | ${temp_reading}= Run IPMI Standard Command dcmi get_temp_reading -N 10 |
George Keishing | 77f1ad2 | 2018-07-23 12:39:28 -0500 | [diff] [blame] | 134 | Should Contain ${temp_reading} Inlet air temperature |
| 135 | ... msg="Unable to get inlet temperature via DCMI". |
Rahul Maheshwari | 901dcde | 2018-02-06 03:14:31 -0600 | [diff] [blame] | 136 | ${ambient_temp_line}= |
| 137 | ... Get Lines Containing String ${temp_reading} |
| 138 | ... Inlet air temperature case-insensitive |
| 139 | |
| 140 | ${ambient_temp_ipmi}= Fetch From Right ${ambient_temp_line} + |
| 141 | ${ambient_temp_ipmi}= Remove String ${ambient_temp_ipmi} ${SPACE}C |
| 142 | |
| 143 | ${ambient_temp_rest}= Read Attribute |
| 144 | ... ${SENSORS_URI}temperature/ambient Value |
| 145 | |
| 146 | # Example of ambient temperature via REST |
| 147 | # "CriticalAlarmHigh": 0, |
| 148 | # "CriticalAlarmLow": 0, |
| 149 | # "CriticalHigh": 35000, |
| 150 | # "CriticalLow": 0, |
| 151 | # "Scale": -3, |
| 152 | # "Unit": "xyz.openbmc_project.Sensor.Value.Unit.DegreesC", |
| 153 | # "Value": 21775, |
| 154 | # "WarningAlarmHigh": 0, |
| 155 | # "WarningAlarmLow": 0, |
| 156 | # "WarningHigh": 25000, |
| 157 | # "WarningLow": 0 |
| 158 | |
| 159 | # Get temperature value based on scale i.e. Value * (10 power Scale Value) |
| 160 | # e.g. from above case 21775 * (10 power -3) = 21775/1000 |
| 161 | |
| 162 | ${ambient_temp_rest}= Evaluate ${ambient_temp_rest}/1000 |
| 163 | ${ipmi_rest_temp_diff}= |
| 164 | ... Evaluate abs(${ambient_temp_rest} - ${ambient_temp_ipmi}) |
| 165 | |
| 166 | Should Be True ${ipmi_rest_temp_diff} <= ${allowed_temp_diff} |
| 167 | ... msg=Ambient temperature above allowed threshold ${allowed_temp_diff}. |
| 168 | |
| 169 | |
Sweta Potthuri | 78dd1e1 | 2018-02-21 00:03:33 -0600 | [diff] [blame] | 170 | Test Power Reading Via IPMI With Host Off |
| 171 | [Documentation] Test power reading via IPMI with host off state and |
| 172 | ... verify using REST. |
| 173 | [Tags] Test_Power_Reading_Via_IPMI_With_Host_Off |
Rahul Maheshwari | 615da15 | 2018-02-13 23:53:36 -0600 | [diff] [blame] | 174 | |
Sweta Potthuri | 78dd1e1 | 2018-02-21 00:03:33 -0600 | [diff] [blame] | 175 | REST Power Off stack_mode=skip quiet=1 |
Rahul Maheshwari | 615da15 | 2018-02-13 23:53:36 -0600 | [diff] [blame] | 176 | |
George Keishing | 04bf06c | 2018-10-05 08:28:50 -0500 | [diff] [blame] | 177 | Wait Until Keyword Succeeds 1 min 30 sec Verify Power Reading |
George Keishing | e78f1fd | 2018-09-04 13:34:59 -0500 | [diff] [blame] | 178 | |
| 179 | |
| 180 | Test Power Reading Via IPMI With Host Booted |
| 181 | [Documentation] Test power reading via IPMI with host booted state and |
| 182 | ... verify using REST. |
| 183 | [Tags] Test_Power_Reading_Via_IPMI_With_Host_Booted |
| 184 | |
| 185 | REST Power On stack_mode=skip quiet=1 |
| 186 | |
| 187 | # For a good power reading take a 3 samples for 15 seconds interval and |
| 188 | # average it out. |
| 189 | |
George Keishing | 04bf06c | 2018-10-05 08:28:50 -0500 | [diff] [blame] | 190 | Wait Until Keyword Succeeds 2 min 30 sec Verify Power Reading |
Rahul Maheshwari | 615da15 | 2018-02-13 23:53:36 -0600 | [diff] [blame] | 191 | |
| 192 | |
Rahul Maheshwari | abe13af | 2018-02-15 22:42:08 -0600 | [diff] [blame] | 193 | Test Power Reading Via IPMI Raw Command |
| 194 | [Documentation] Test power reading via IPMI raw command and verify |
| 195 | ... using REST. |
| 196 | [Tags] Test_Power_Reading_Via_IPMI_Raw_Command |
| 197 | |
| 198 | # Response data structure of power reading command output via IPMI. |
| 199 | # 1 Completion Code. Refer to section 8, DCMI Completion Codes. |
| 200 | # 2 Group Extension Identification = DCh |
| 201 | # 3:4 Current Power in watts |
| 202 | |
George Keishing | e78f1fd | 2018-09-04 13:34:59 -0500 | [diff] [blame] | 203 | REST Power On stack_mode=skip quiet=1 |
Rahul Maheshwari | abe13af | 2018-02-15 22:42:08 -0600 | [diff] [blame] | 204 | |
George Keishing | 04bf06c | 2018-10-05 08:28:50 -0500 | [diff] [blame] | 205 | Wait Until Keyword Succeeds 2 min 30 sec Verify Power Reading Via Raw Command |
Rahul Maheshwari | abe13af | 2018-02-15 22:42:08 -0600 | [diff] [blame] | 206 | |
| 207 | |
Rahul Maheshwari | 91a18ef | 2018-02-15 04:54:59 -0600 | [diff] [blame] | 208 | Test Baseboard Temperature Via IPMI |
| 209 | [Documentation] Test baseboard temperature via IPMI and verify using REST. |
| 210 | [Tags] Test_Baseboard_Temperature_Via_IPMI |
| 211 | |
| 212 | # Example of IPMI dcmi get_temp_reading output: |
| 213 | # Entity ID Entity Instance Temp. Readings |
| 214 | # Inlet air temperature(40h) 1 +19 C |
| 215 | # CPU temperature sensors(41h) 5 +51 C |
| 216 | # CPU temperature sensors(41h) 6 +50 C |
| 217 | # CPU temperature sensors(41h) 7 +50 C |
| 218 | # CPU temperature sensors(41h) 8 +50 C |
| 219 | # CPU temperature sensors(41h) 9 +50 C |
| 220 | # CPU temperature sensors(41h) 10 +48 C |
| 221 | # CPU temperature sensors(41h) 11 +49 C |
| 222 | # CPU temperature sensors(41h) 12 +47 C |
| 223 | # CPU temperature sensors(41h) 8 +50 C |
| 224 | # CPU temperature sensors(41h) 16 +51 C |
| 225 | # CPU temperature sensors(41h) 24 +50 C |
| 226 | # CPU temperature sensors(41h) 32 +43 C |
| 227 | # CPU temperature sensors(41h) 40 +43 C |
| 228 | # Baseboard temperature sensors(42h) 1 +35 C |
| 229 | |
| 230 | ${temp_reading}= Run IPMI Standard Command dcmi get_temp_reading -N 10 |
George Keishing | 77f1ad2 | 2018-07-23 12:39:28 -0500 | [diff] [blame] | 231 | Should Contain ${temp_reading} Baseboard temperature sensors |
| 232 | ... msg="Unable to get baseboard temperature via DCMI". |
Rahul Maheshwari | 91a18ef | 2018-02-15 04:54:59 -0600 | [diff] [blame] | 233 | ${baseboard_temp_line}= |
| 234 | ... Get Lines Containing String ${temp_reading} |
| 235 | ... Baseboard temperature case-insensitive=True |
| 236 | |
| 237 | ${baseboard_temp_ipmi}= Fetch From Right ${baseboard_temp_line} + |
| 238 | ${baseboard_temp_ipmi}= Remove String ${baseboard_temp_ipmi} ${SPACE}C |
| 239 | |
| 240 | ${baseboard_temp_rest}= Read Attribute |
| 241 | ... /xyz/openbmc_project/sensors/temperature/pcie Value |
| 242 | ${baseboard_temp_rest}= Evaluate ${baseboard_temp_rest}/1000 |
| 243 | |
| 244 | Should Be True |
| 245 | ... ${baseboard_temp_rest} - ${baseboard_temp_ipmi} <= ${allowed_temp_diff} |
| 246 | ... msg=Baseboard temperature above allowed threshold ${allowed_temp_diff}. |
| 247 | |
| 248 | |
Sweta Potthuri | f39022d | 2018-02-06 03:40:07 -0600 | [diff] [blame] | 249 | Retrieve Default Gateway Via IPMI And Verify Using REST |
| 250 | [Documentation] Retrieve default gateway from LAN print using IPMI. |
| 251 | [Tags] Retrieve_Default_Gateway_Via_IPMI_And_Verify_Using_REST |
| 252 | |
| 253 | # Fetch "Default Gateway" from IPMI LAN print. |
| 254 | ${default_gateway_ipmi}= Fetch Details From LAN Print Default Gateway IP |
| 255 | |
| 256 | # Verify "Default Gateway" using REST. |
Steven Sombar | a8800da | 2018-12-18 16:19:05 -0600 | [diff] [blame] | 257 | Read Attribute ${NETWORK_MANAGER}config DefaultGateway |
Sweta Potthuri | f39022d | 2018-02-06 03:40:07 -0600 | [diff] [blame] | 258 | ... expected_value=${default_gateway_ipmi} |
| 259 | |
| 260 | |
| 261 | Retrieve MAC Address Via IPMI And Verify Using REST |
| 262 | [Documentation] Retrieve MAC Address from LAN print using IPMI. |
| 263 | [Tags] Retrieve_MAC_Address_Via_IPMI_And_Verify_Using_REST |
| 264 | |
| 265 | # Fetch "MAC Address" from IPMI LAN print. |
| 266 | ${mac_address_ipmi}= Fetch Details From LAN Print MAC Address |
| 267 | |
| 268 | # Verify "MAC Address" using REST. |
| 269 | ${mac_address_rest}= Get BMC MAC Address |
| 270 | Should Be Equal ${mac_address_ipmi} ${mac_address_rest} |
| 271 | ... msg=Verification of MAC address from lan print using IPMI failed. |
| 272 | |
| 273 | |
| 274 | Retrieve Network Mode Via IPMI And Verify Using REST |
| 275 | [Documentation] Retrieve network mode from LAN print using IPMI. |
| 276 | [Tags] Retrieve_Network_Mode_Via_IPMI_And_Verify_Using_REST |
| 277 | |
| 278 | # Fetch "Mode" from IPMI LAN print. |
| 279 | ${network_mode_ipmi}= Fetch Details From LAN Print Source |
| 280 | |
| 281 | # Verify "Mode" using REST. |
| 282 | ${network_mode_rest}= Read Attribute |
Steven Sombar | a8800da | 2018-12-18 16:19:05 -0600 | [diff] [blame] | 283 | ... ${NETWORK_MANAGER}eth0 DHCPEnabled |
Sweta Potthuri | f39022d | 2018-02-06 03:40:07 -0600 | [diff] [blame] | 284 | Run Keyword If '${network_mode_ipmi}' == 'Static Address' |
| 285 | ... Should Be Equal ${network_mode_rest} ${0} |
| 286 | ... msg=Verification of network setting failed. |
| 287 | ... ELSE IF '${network_mode_ipmi}' == 'DHCP' |
| 288 | ... Should Be Equal ${network_mode_rest} ${1} |
| 289 | ... msg=Verification of network setting failed. |
| 290 | |
| 291 | |
| 292 | Retrieve IP Address Via IPMI And Verify With BMC Details |
| 293 | [Documentation] Retrieve IP address from LAN print using IPMI. |
| 294 | [Tags] Retrieve_IP_Address_Via_IPMI_And_Verify_With_BMC_Details |
| 295 | |
| 296 | # Fetch "IP Address" from IPMI LAN print. |
| 297 | ${ip_addr_ipmi}= Fetch Details From LAN Print IP Address |
| 298 | |
| 299 | # Verify the IP address retrieved via IPMI with BMC IPs. |
| 300 | ${ip_address_rest}= Get BMC IP Info |
| 301 | Validate IP On BMC ${ip_addr_ipmi} ${ip_address_rest} |
| 302 | |
| 303 | |
Rahul Maheshwari | fe8639b | 2018-02-05 22:42:24 -0600 | [diff] [blame] | 304 | Verify Get Device ID |
| 305 | [Documentation] Verify get device ID command output. |
| 306 | [Tags] Verify_Get_Device_ID |
| 307 | |
| 308 | # Example of get device ID command output: |
| 309 | # Device ID : 0 |
| 310 | # Device Revision : 0 |
| 311 | # Firmware Revision : 2.01 |
| 312 | # IPMI Version : 2.0 |
| 313 | # Manufacturer ID : 42817 |
| 314 | # Manufacturer Name : Unknown (0xA741) |
| 315 | # Product ID : 16975 (0x424f) |
| 316 | # Product Name : Unknown (0x424F) |
| 317 | # Device Available : yes |
| 318 | # Provides Device SDRs : yes |
| 319 | # Additional Device Support : |
| 320 | # Sensor Device |
| 321 | # SEL Device |
| 322 | # FRU Inventory Device |
| 323 | # Chassis Device |
| 324 | # Aux Firmware Rev Info : |
George Keishing | 3511a3f | 2018-04-19 10:38:30 -0500 | [diff] [blame] | 325 | # 0x04 |
| 326 | # 0x38 |
Rahul Maheshwari | fe8639b | 2018-02-05 22:42:24 -0600 | [diff] [blame] | 327 | # 0x00 |
George Keishing | 3511a3f | 2018-04-19 10:38:30 -0500 | [diff] [blame] | 328 | # 0x03 |
Rahul Maheshwari | fe8639b | 2018-02-05 22:42:24 -0600 | [diff] [blame] | 329 | |
| 330 | ${mc_info}= Get MC Info |
| 331 | |
| 332 | Should Be Equal ${mc_info['device_id']} 0 |
| 333 | Should Be Equal ${mc_info['device_revision']} 0 |
| 334 | |
Rahul Maheshwari | bb9e257 | 2018-04-02 05:24:37 -0500 | [diff] [blame] | 335 | # Get firmware revision from mc info command output i.e. 2.01 |
| 336 | ${ipmi_fw_major_version} ${ipmi_fw_minor_version}= |
| 337 | ... Split String ${mc_info['firmware_revision']} . |
| 338 | # Convert minor firmware version from BCD format to integer. i.e. 01 to 1 |
| 339 | ${ipmi_fw_minor_version}= Convert To Integer ${ipmi_fw_minor_version} |
Rahul Maheshwari | fe8639b | 2018-02-05 22:42:24 -0600 | [diff] [blame] | 340 | |
George Keishing | e0a8128 | 2018-06-08 10:02:30 -0500 | [diff] [blame] | 341 | # Get BMC version from BMC CLI i.e. 2.2 from "v2.2-253-g00050f1" |
George Keishing | 3511a3f | 2018-04-19 10:38:30 -0500 | [diff] [blame] | 342 | ${bmc_version_full}= Get BMC Version |
Rahul Maheshwari | bb9e257 | 2018-04-02 05:24:37 -0500 | [diff] [blame] | 343 | ${bmc_version}= |
George Keishing | 3511a3f | 2018-04-19 10:38:30 -0500 | [diff] [blame] | 344 | ... Remove String Using Regexp ${bmc_version_full} ^[^0-9]+ [^0-9\.].* |
Rahul Maheshwari | bb9e257 | 2018-04-02 05:24:37 -0500 | [diff] [blame] | 345 | |
| 346 | # Get major and minor version from BMC version i.e. 2 and 1 from 2.1 |
George Keishing | c95e998 | 2019-01-14 09:27:45 -0600 | [diff] [blame] | 347 | @{major_minor_version}= Split String ${bmc_version} . |
Rahul Maheshwari | bb9e257 | 2018-04-02 05:24:37 -0500 | [diff] [blame] | 348 | |
George Keishing | c95e998 | 2019-01-14 09:27:45 -0600 | [diff] [blame] | 349 | Should Be Equal As Strings ${ipmi_fw_major_version} ${major_minor_version[0]} |
George Keishing | 2ee2f00 | 2019-02-16 09:36:02 -0600 | [diff] [blame] | 350 | ... msg=Major version mismatch. |
George Keishing | c95e998 | 2019-01-14 09:27:45 -0600 | [diff] [blame] | 351 | Should Be Equal As Strings ${ipmi_fw_minor_version} ${major_minor_version[1]} |
George Keishing | 2ee2f00 | 2019-02-16 09:36:02 -0600 | [diff] [blame] | 352 | ... msg=Minor version mismatch. |
Rahul Maheshwari | bb9e257 | 2018-04-02 05:24:37 -0500 | [diff] [blame] | 353 | |
Rahul Maheshwari | fe8639b | 2018-02-05 22:42:24 -0600 | [diff] [blame] | 354 | Should Be Equal ${mc_info['ipmi_version']} 2.0 |
| 355 | |
Gunnar Mills | 917ba1a | 2018-04-08 16:42:12 -0500 | [diff] [blame] | 356 | # TODO: Verify Manufacturer and Product IDs directly from json file. |
Rahul Maheshwari | fe8639b | 2018-02-05 22:42:24 -0600 | [diff] [blame] | 357 | # Reference : openbmc/openbmc-test-automation#1244 |
| 358 | Should Be Equal ${mc_info['manufacturer_id']} 42817 |
| 359 | Should Be Equal ${mc_info['product_id']} 16975 (0x424f) |
| 360 | |
| 361 | Should Be Equal ${mc_info['device_available']} yes |
| 362 | Should Be Equal ${mc_info['provides_device_sdrs']} yes |
| 363 | Should Contain ${mc_info['additional_device_support']} Sensor Device |
| 364 | Should Contain ${mc_info['additional_device_support']} SEL Device |
| 365 | Should Contain |
| 366 | ... ${mc_info['additional_device_support']} FRU Inventory Device |
| 367 | Should Contain ${mc_info['additional_device_support']} Chassis Device |
George Keishing | b746d3f | 2018-04-19 10:53:10 -0500 | [diff] [blame] | 368 | |
George Keishing | 3511a3f | 2018-04-19 10:38:30 -0500 | [diff] [blame] | 369 | # Auxiliary revision data verification. |
| 370 | ${aux_version}= Get Aux Version ${bmc_version_full} |
| 371 | |
| 372 | # From aux_firmware_rev_info field ['0x04', '0x38', '0x00', '0x03'] |
| 373 | ${bmc_aux_version}= Catenate |
| 374 | ... SEPARATOR= |
| 375 | ... ${mc_info['aux_firmware_rev_info'][0][2:]} |
| 376 | ... ${mc_info['aux_firmware_rev_info'][1][2:]} |
| 377 | ... ${mc_info['aux_firmware_rev_info'][2][2:]} |
| 378 | ... ${mc_info['aux_firmware_rev_info'][3][2:]} |
| 379 | |
| 380 | Should Be Equal As Integers |
| 381 | ... ${bmc_aux_version} ${aux_version} |
| 382 | ... msg=BMC aux version ${bmc_aux_version} does not match expected value of ${aux_version}. |
Rahul Maheshwari | fe8639b | 2018-02-05 22:42:24 -0600 | [diff] [blame] | 383 | |
| 384 | |
George Keishing | 02651f0 | 2018-04-11 02:07:16 -0500 | [diff] [blame] | 385 | Test Valid IPMI Channels Supported |
| 386 | [Documentation] Verify IPMI channels supported on a given system. |
| 387 | [Tags] Test_Valid_IPMI_Channels_Supported |
| 388 | |
| 389 | ${channel_count}= Get Physical Network Interface Count |
| 390 | |
| 391 | # Note: IPMI network channel logically starts from 1. |
| 392 | :FOR ${channel_number} IN RANGE 1 ${channel_count} |
Rahul Maheshwari | 20f3bf7 | 2018-12-18 04:24:20 -0600 | [diff] [blame] | 393 | \ Run IPMI Standard Command lan print ${channel_number} |
George Keishing | 02651f0 | 2018-04-11 02:07:16 -0500 | [diff] [blame] | 394 | |
| 395 | |
| 396 | Test Invalid IPMI Channel Response |
| 397 | [Documentation] Verify invalid IPMI channels supported response. |
| 398 | [Tags] Test_Invalid_IPMI_Channel_Response |
| 399 | |
| 400 | ${channel_count}= Get Physical Network Interface Count |
| 401 | |
| 402 | # To target invalid channel, increment count. |
| 403 | ${channel_number}= Evaluate ${channel_count} + 1 |
| 404 | |
| 405 | # Example of invalid channel: |
George Keishing | 72d0ac8 | 2018-09-20 09:33:01 -0500 | [diff] [blame] | 406 | # $ ipmitool -I lanplus -H xx.xx.xx.xx -P password lan print 3 |
George Keishing | 02651f0 | 2018-04-11 02:07:16 -0500 | [diff] [blame] | 407 | # Get Channel Info command failed: Parameter out of range |
| 408 | # Invalid channel: 3 |
| 409 | |
| 410 | ${stdout}= Run External IPMI Standard Command |
| 411 | ... lan print ${channel_number} fail_on_err=${0} |
| 412 | Should Contain ${stdout} Invalid channel |
| 413 | ... msg=IPMI channel ${channel_number} is invalid but seen working. |
| 414 | |
| 415 | |
George Keishing | e85113a | 2019-06-07 08:21:51 -0500 | [diff] [blame] | 416 | Test IPMI Restriction Mode |
| 417 | [Documentation] Set restricition mode via REST and verify IPMI operation. |
| 418 | [Tags] Test_IPMI_Restriction_Mode |
| 419 | # Forego normal test setup: |
| 420 | [Setup] No Operation |
| 421 | [Teardown] Run Keywords FFDC On Test Case Fail AND |
| 422 | ... Set IPMI Restriction Mode xyz.openbmc_project.Control.Security.RestrictionMode.Modes.None |
| 423 | |
| 424 | # By default no IPMI operations are restricted. |
| 425 | # /xyz/openbmc_project/control/host0/restriction_mode/attr/RestrictionMode |
| 426 | # { |
| 427 | # "data": "xyz.openbmc_project.Control.Security.RestrictionMode.Modes.None", |
| 428 | # "message": "200 OK", |
| 429 | # "status": "ok" |
| 430 | # } |
| 431 | |
| 432 | # Refer to: #openbmc/phosphor-host-ipmid/blob/master/host-ipmid-whitelist.conf |
| 433 | # Set the restriction mode to Whitelist IPMI commands only: |
| 434 | # /xyz/openbmc_project/control/host0/restriction_mode/attr/RestrictionMode |
| 435 | # { |
| 436 | # "data": "xyz.openbmc_project.Control.Security.RestrictionMode.Modes.Whitelist", |
| 437 | # "message": "200 OK", |
| 438 | # "status": "ok" |
| 439 | # } |
| 440 | |
| 441 | Set IPMI Restriction Mode xyz.openbmc_project.Control.Security.RestrictionMode.Modes.Whitelist |
| 442 | |
| 443 | # Attempt white-listed operation expecting success. |
| 444 | IPMI Power On |
| 445 | |
| 446 | # Attempt non white-listed operation expecting failure. |
| 447 | Run Keyword And Expect Error *Insufficient privilege level* |
| 448 | ... Run Inband IPMI Standard Command mc reset cold |
| 449 | |
| 450 | |
Rahul Maheshwari | fdd5ff6 | 2017-08-01 04:15:03 -0500 | [diff] [blame] | 451 | *** Keywords *** |
Sweta Potthuri | 5c6c72e | 2018-01-23 05:48:35 -0600 | [diff] [blame] | 452 | |
Sweta Potthuri | 7d3af3c | 2018-01-29 03:07:07 -0600 | [diff] [blame] | 453 | Set Watchdog Enabled Using REST |
| 454 | [Documentation] Set watchdog Enabled field using REST. |
| 455 | [Arguments] ${value} |
| 456 | |
| 457 | # Description of argument(s): |
| 458 | # value Integer value (eg. "0-Disabled", "1-Enabled"). |
| 459 | |
| 460 | ${value_dict}= Create Dictionary data=${value} |
Steven Sombar | aaaab22 | 2018-12-19 13:16:23 -0600 | [diff] [blame] | 461 | ${resp}= OpenBMC Put Request ${HOST_WATCHDOG_URI}attr/Enabled |
Sweta Potthuri | 7d3af3c | 2018-01-29 03:07:07 -0600 | [diff] [blame] | 462 | ... data=${value_dict} |
Sweta Potthuri | f39022d | 2018-02-06 03:40:07 -0600 | [diff] [blame] | 463 | |
| 464 | |
Sweta Potthuri | f39022d | 2018-02-06 03:40:07 -0600 | [diff] [blame] | 465 | Fetch Details From LAN Print |
| 466 | [Documentation] Fetch details from LAN print. |
| 467 | [Arguments] ${field_name} |
| 468 | |
| 469 | # Description of argument(s): |
| 470 | # ${field_name} Field name to be fetched from LAN print |
| 471 | # (e.g. "MAC Address", "Source"). |
| 472 | |
Rahul Maheshwari | d8037d3 | 2018-12-17 00:59:57 -0600 | [diff] [blame] | 473 | ${stdout}= Run IPMI Standard Command lan print |
Sweta Potthuri | f39022d | 2018-02-06 03:40:07 -0600 | [diff] [blame] | 474 | ${fetch_value}= Get Lines Containing String ${stdout} ${field_name} |
| 475 | ${value_fetch}= Fetch From Right ${fetch_value} :${SPACE} |
| 476 | [Return] ${value_fetch} |
| 477 | |
Sweta Potthuri | 78dd1e1 | 2018-02-21 00:03:33 -0600 | [diff] [blame] | 478 | |
| 479 | Verify Power Reading |
| 480 | [Documentation] Get dcmi power reading via IPMI. |
| 481 | |
| 482 | # Example of power reading command output via IPMI. |
| 483 | # Instantaneous power reading: 235 Watts |
| 484 | # Minimum during sampling period: 235 Watts |
| 485 | # Maximum during sampling period: 235 Watts |
| 486 | # Average power reading over sample period: 235 Watts |
| 487 | # IPMI timestamp: Thu Jan 1 00:00:00 1970 |
| 488 | # Sampling period: 00000000 Seconds. |
| 489 | # Power reading state is: deactivated |
| 490 | |
| 491 | ${power_reading}= Get IPMI Power Reading |
| 492 | |
| 493 | ${host_state}= Get Host State |
| 494 | Run Keyword If '${host_state}' == 'Off' |
George Keishing | 5131487 | 2018-03-31 13:24:35 -0500 | [diff] [blame] | 495 | ... Should Be Equal ${power_reading['instantaneous_power_reading']} 0 |
| 496 | ... msg=Power reading not zero when power is off. |
Sweta Potthuri | 78dd1e1 | 2018-02-21 00:03:33 -0600 | [diff] [blame] | 497 | |
George Keishing | 5131487 | 2018-03-31 13:24:35 -0500 | [diff] [blame] | 498 | Run Keyword If '${power_reading['instantaneous_power_reading']}' != '0' |
Sweta Potthuri | 78dd1e1 | 2018-02-21 00:03:33 -0600 | [diff] [blame] | 499 | ... Verify Power Reading Using REST ${power_reading['instantaneous_power_reading']} |
| 500 | |
| 501 | |
George Keishing | e78f1fd | 2018-09-04 13:34:59 -0500 | [diff] [blame] | 502 | Verify Power Reading Via Raw Command |
| 503 | [Documentation] Get dcmi power reading via IPMI raw command. |
| 504 | |
| 505 | ${ipmi_raw_output}= Run IPMI Standard Command |
| 506 | ... raw ${IPMI_RAW_CMD['power_reading']['Get'][0]} |
| 507 | |
| 508 | @{raw_output_list}= Split String ${ipmi_raw_output} ${SPACE} |
| 509 | |
| 510 | # On successful execution of raw IPMI power reading command, completion |
| 511 | # code does not come in output. So current power value will start from 2 |
| 512 | # byte instead of 3. |
| 513 | |
| 514 | ${power_reading_ipmi_raw_3_item}= Get From List ${raw_output_list} 2 |
| 515 | ${power_reading_ipmi_raw_3_item}= |
| 516 | ... Convert To Integer 0x${power_reading_ipmi_raw_3_item} |
| 517 | |
| 518 | ${power_reading_rest}= Read Attribute |
| 519 | ... ${SENSORS_URI}power/total_power Value |
| 520 | |
| 521 | # Example of power reading via REST |
| 522 | # "CriticalAlarmHigh": 0, |
| 523 | # "CriticalAlarmLow": 0, |
| 524 | # "CriticalHigh": 3100000000, |
| 525 | # "CriticalLow": 0, |
| 526 | # "Scale": -6, |
| 527 | # "Unit": "xyz.openbmc_project.Sensor.Value.Unit.Watts", |
| 528 | # "Value": 228000000, |
| 529 | # "WarningAlarmHigh": 0, |
| 530 | # "WarningAlarmLow": 0, |
| 531 | # "WarningHigh": 3050000000, |
| 532 | # "WarningLow": 0 |
| 533 | |
| 534 | # Get power value based on scale i.e. Value * (10 power Scale Value) |
| 535 | # e.g. from above case 228000000 * (10 power -6) = 228000000/1000000 |
| 536 | |
| 537 | ${power_reading_rest}= Evaluate ${power_reading_rest}/1000000 |
| 538 | ${ipmi_rest_power_diff}= |
| 539 | ... Evaluate abs(${power_reading_rest} - ${power_reading_ipmi_raw_3_item}) |
| 540 | |
| 541 | Should Be True ${ipmi_rest_power_diff} <= ${allowed_power_diff} |
| 542 | ... msg=Power Reading above allowed threshold ${allowed_power_diff}. |
| 543 | |
| 544 | |
Sweta Potthuri | 78dd1e1 | 2018-02-21 00:03:33 -0600 | [diff] [blame] | 545 | Verify Power Reading Using REST |
| 546 | [Documentation] Verify power reading using REST. |
| 547 | [Arguments] ${power_reading} |
| 548 | |
Gunnar Mills | 948e2e2 | 2018-03-23 12:54:27 -0500 | [diff] [blame] | 549 | # Description of argument(s): |
Sweta Potthuri | 78dd1e1 | 2018-02-21 00:03:33 -0600 | [diff] [blame] | 550 | # power_reading IPMI Power reading |
| 551 | |
| 552 | ${power_reading_rest}= Read Attribute |
| 553 | ... ${SENSORS_URI}power/total_power Value |
| 554 | |
| 555 | # Example of power reading via REST |
| 556 | # "CriticalAlarmHigh": 0, |
| 557 | # "CriticalAlarmLow": 0, |
| 558 | # "CriticalHigh": 3100000000, |
| 559 | # "CriticalLow": 0, |
| 560 | # "Scale": -6, |
| 561 | # "Unit": "xyz.openbmc_project.Sensor.Value.Unit.Watts", |
| 562 | # "Value": 228000000, |
| 563 | # "WarningAlarmHigh": 0, |
| 564 | # "WarningAlarmLow": 0, |
| 565 | # "WarningHigh": 3050000000, |
| 566 | # "WarningLow": 0 |
| 567 | |
| 568 | # Get power value based on scale i.e. Value * (10 power Scale Value) |
| 569 | # e.g. from above case 228000000 * (10 power -6) = 228000000/1000000 |
| 570 | ${power_reading_rest}= Evaluate ${power_reading_rest}/1000000 |
| 571 | ${ipmi_rest_power_diff}= |
| 572 | ... Evaluate abs(${power_reading_rest} - ${power_reading}) |
| 573 | |
| 574 | Should Be True ${ipmi_rest_power_diff} <= ${allowed_power_diff} |
| 575 | ... msg=Power reading above allowed threshold ${allowed_power_diff}. |
George Keishing | 02651f0 | 2018-04-11 02:07:16 -0500 | [diff] [blame] | 576 | |
| 577 | |
| 578 | Get Physical Network Interface Count |
| 579 | [Documentation] Return valid physical network interfaces count. |
| 580 | |
| 581 | # Example: |
| 582 | # link/ether 22:3a:7f:70:92:cb brd ff:ff:ff:ff:ff:ff |
| 583 | # link/ether 0e:8e:0d:6b:e9:e4 brd ff:ff:ff:ff:ff:ff |
| 584 | |
| 585 | ${mac_entry_list}= Get BMC MAC Address List |
| 586 | ${mac_unique_list}= Remove Duplicates ${mac_entry_list} |
| 587 | ${physical_interface_count}= Get Length ${mac_unique_list} |
| 588 | |
| 589 | [Return] ${physical_interface_count} |
George Keishing | 39967eb | 2018-04-30 11:36:23 -0500 | [diff] [blame] | 590 | |
George Keishing | e85113a | 2019-06-07 08:21:51 -0500 | [diff] [blame] | 591 | |
| 592 | Set IPMI Restriction Mode |
| 593 | [Documentation] Set the IPMI restriction mode. |
| 594 | [Arguments] ${restriction_mode} |
| 595 | |
| 596 | # Description of argument(s): |
| 597 | # restriction_mode IPMI valid restriction modes. |
| 598 | |
| 599 | ${valueDict}= Create Dictionary data=${restriction_mode} |
| 600 | |
| 601 | Write Attribute ${CONTROL_HOST_URI}restriction_mode/ |
| 602 | ... RestrictionMode data=${valueDict} |