1*** Settings *** 2Documentation BMC and host redfish utility keywords. 3 4Resource resource.robot 5Resource bmc_redfish_resource.robot 6 7 8*** Keywords *** 9 10Redfish Power Operation 11 [Documentation] Do Redfish host power operation. 12 [Arguments] ${reset_type} 13 14 # Description of arguments: 15 # reset_type Type of power operation. 16 # (e.g. On/ForceOff/GracefulRestart/GracefulShutdown) 17 18 # Example: 19 # "Actions": { 20 # "#ComputerSystem.Reset": { 21 # "ResetType@Redfish.AllowableValues": [ 22 # "On", 23 # "ForceOff", 24 # "ForceOn", 25 # "ForceRestart", 26 # "GracefulRestart", 27 # "GracefulShutdown" 28 # "PowerCycle", 29 # "Nmi" 30 # ], 31 # "target": "/redfish/v1/Systems/system/Actions/ComputerSystem.Reset" 32 # } 33 # } 34 35 ${target}= redfish_utils.Get Target Actions /redfish/v1/Systems/system/ ComputerSystem.Reset 36 ${payload}= Create Dictionary ResetType=${reset_type} 37 ${resp}= Redfish.Post ${target} body=&{payload} 38 39 40Redfish BMC Reset Operation 41 [Documentation] Do Redfish BMC reset operation. 42 [Arguments] ${reset_type}=GracefulRestart 43 44 # Example: 45 # "Actions": { 46 # "#Manager.Reset": { 47 # "ResetType@Redfish.AllowableValues": [ 48 # "GracefulRestart", 49 # "ForceRestart" 50 # ], 51 # "target": "/redfish/v1/Managers/${MANAGER_ID}/Actions/Manager.Reset" 52 # } 53 54 ${target}= redfish_utils.Get Target Actions /redfish/v1/Managers/${MANAGER_ID}/ Manager.Reset 55 ${payload}= Create Dictionary ResetType=${reset_type} 56 Redfish.Post ${target} body=&{payload} 57 58 59Reset BIOS Via Redfish 60 [Documentation] Do BIOS reset through Redfish. 61 62 ${target}= redfish_utils.Get Target Actions /redfish/v1/Systems/system/Bios/ Bios.ResetBios 63 Redfish.Post ${target} valid_status_codes=[${HTTP_OK}] 64 65 66Redfish Delete Session 67 [Documentation] Redfish delete session. 68 [Arguments] ${session_info} 69 70 # Description of argument(s): 71 # session_info Session information are stored in dictionary. 72 73 # ${session_info} = { 74 # 'SessionIDs': 'XXXXXXXXX', 75 # 'ClientID': 'XXXXXX', 76 # 'SessionToken': 'XXXXXXXXX', 77 # 'SessionResp': session response from redfish login 78 # } 79 80 # SessionIDs : Session IDs 81 # ClientID : Client ID 82 # SessionToken : Session token 83 # SessionResp : Response of creating an redfish login session 84 85 Redfish.Delete /redfish/v1/SessionService/Sessions/${session_info["SessionIDs"]} 86 87 88Redfish Delete List Of Session 89 [Documentation] Redfish delete session from list of session records, individual session information 90 ... are stored in dictionary. 91 [Arguments] ${session_info_list} 92 93 # Description of argument(s): 94 # session_info_list List contains individual session record are stored in dictionary. 95 96 # ${session_info_list} = [{ 97 # 'SessionIDs': 'XXXXXXXXX', 98 # 'ClientID': 'XXXXXX', 99 # 'SessionToken': 'XXXXXXXXX', 100 # 'SessionResp': session response from redfish login 101 # }] 102 103 # SessionIDs : Session IDs 104 # ClientID : Client ID 105 # SessionToken : Session token 106 # SessionResp : Response of creating an redfish login session 107 108 FOR ${session_record} IN @{session_info_list} 109 Redfish.Delete /redfish/v1/SessionService/Sessions/${session_record["SessionIDs"]} 110 END 111 112 113Delete All Redfish Sessions 114 [Documentation] Delete all active redfish sessions. 115 116 ${saved_session_info}= Redfish_Utils.Get Redfish Session Info 117 118 ${resp_list}= Redfish_Utils.Get Member List 119 ... /redfish/v1/SessionService/Sessions 120 121 # Remove the current login session from the list. 122 Remove Values From List ${resp_list} ${saved_session_info["location"]} 123 124 # Remove session with client_id populated from the list. 125 ${client_id_list}= Get Session With Client Id ${resp_list} 126 Log To Console Client sessions skip list: ${client_id_list} 127 FOR ${client_session} IN @{client_id_list} 128 Remove Values From List ${resp_list} ${client_session} 129 END 130 131 FOR ${session} IN @{resp_list} 132 Run Keyword And Ignore Error Redfish.Delete ${session} 133 END 134 135 136Get Session With Client Id 137 [Documentation] Iterate through the active sessions and return sessions 138 ... populated with Context. 139 [Arguments] ${session_list} 140 141 # Description of argument(s): 142 # session_list Active session list from SessionService. 143 144 # "@odata.type": "#Session.v1_5_0.Session", 145 # "ClientOriginIPAddress": "xx.xx.xx.xx", 146 # "Context": "MYID-01" 147 148 ${client_id_sessions}= Create List 149 FOR ${session} IN @{session_list} 150 ${resp}= Redfish.Get ${session} valid_status_codes=[200,404] 151 # This prevents dictionary KeyError exception when the Context 152 # attribute is not populated in generic session response. 153 ${context_var}= Get Variable Value ${resp.dict["Context"]} ${EMPTY} 154 # Handle backward compatibility for OEM. 155 ${oem_var}= Get Variable Value ${resp.dict["Oem"]["OpenBMC"]["ClientID"]} ${EMPTY} 156 Run Keyword If '${context_var}' != '${EMPTY}' 157 ... Append To List ${client_id_sessions} ${session} 158 Run Keyword If '${oem_var}' != '${EMPTY}' 159 ... Append To List ${client_id_sessions} ${session} 160 END 161 162 [Return] ${client_id_sessions} 163 164 165Get Valid FRUs 166 [Documentation] Return a dictionary containing all of the valid FRU records for the given fru_type. 167 [Arguments] ${fru_type} 168 169 # NOTE: A valid FRU record will have a "State" key of "Enabled" and a "Health" key of "OK". 170 171 # Description of argument(s): 172 # fru_type The type of fru (e.g. "Processors", "Memory", etc.). 173 174 ${fru_records}= Redfish_Utils.Enumerate Request 175 ... /redfish/v1/Systems/system/${fru_type} return_json=0 176 ${fru_records}= Filter Struct ${fru_records} [('State', 'Enabled'), ('Health', 'OK')] 177 178 [Return] ${fru_records} 179 180 181Get Num Valid FRUs 182 [Documentation] Return the number of valid FRU records for the given fru_type. 183 [Arguments] ${fru_type} 184 185 # Description of argument(s): 186 # fru_type The type of fru (e.g. "Processors", "Memory", etc.). 187 188 ${fru_records}= Get Valid FRUs ${fru_type} 189 ${num_valid_frus}= Get length ${fru_records} 190 191 [Return] ${num_valid_frus} 192 193 194Verify Valid Records 195 [Documentation] Verify all records retrieved with the given arguments are valid. 196 [Arguments] ${record_type} ${redfish_uri} ${reading_type} 197 198 # Description of Argument(s): 199 # record_type The sensor record type (e.g. "PowerSupplies") 200 # redfish_uri The power supply URI (e.g. /redfish/v1/Chassis/chassis/Power) 201 # reading_type The power watt readings (e.g. "PowerInputWatts") 202 203 # A valid record will have "State" key "Enabled" and "Health" key "OK". 204 ${records}= Redfish.Get Attribute ${redfish_uri} ${record_type} 205 206 Rprint Vars records 207 208 # Example output: 209 # records: 210 # [0]: 211 # [@odata.id]: /redfish/v1/Chassis/chassis/Power#/PowerControl/0 212 # [@odata.type]: #Power.v1_0_0.PowerControl 213 # [MemberId]: 0 214 # [Name]: Chassis Power Control 215 # [PowerConsumedWatts]: 264.0 216 # [PowerLimit]: 217 # [LimitInWatts]: None 218 # [PowerMetrics]: 219 # [AverageConsumedWatts]: 325 220 # [IntervalInMin]: 3 221 # [MaxConsumedWatts]: 538 222 # [Status]: 223 # [Health]: OK 224 # [State]: Enabled 225 226 ${invalid_records}= Filter Struct ${records} 227 ... [('Health', '^OK$'), ('State', '^Enabled$'), ('${reading_type}', '')] regex=1 invert=1 228 Valid Length invalid_records max_length=0 229 230 [Return] ${records} 231 232 233Redfish Create User 234 [Documentation] Redfish create user. 235 [Arguments] ${user_name} ${password} ${role_id} ${enabled} ${force}=${False} 236 237 # Description of argument(s): 238 # user_name The user name to be created. 239 # password The password to be assigned. 240 # role_id The role ID of the user to be created. 241 # (e.g. "Administrator", "Operator", etc.). 242 # enabled Indicates whether the username being created. 243 # should be enabled (${True}, ${False}). 244 # force Delete user account and re-create if force is True. 245 246 ${curr_role}= Run Keyword And Ignore Error Get User Role ${user_name} 247 # Ex: ${curr_role} = ('PASS', 'Administrator') 248 249 ${user_exists}= Run Keyword And Return Status Should Be Equal As Strings ${curr_role}[0] PASS 250 251 # Delete user account when force is True. 252 Run Keyword If ${force} == ${True} Redfish.Delete ${REDFISH_ACCOUNTS_URI}${user_name} 253 ... valid_status_codes=[${HTTP_OK}, ${HTTP_NOT_FOUND}] 254 255 # Create specified user when force is True or User does not exist. 256 ${payload}= Create Dictionary 257 ... UserName=${user_name} Password=${password} RoleId=${role_id} Enabled=${enabled} 258 259 Run Keyword If ${force} == ${True} or ${user_exists} == ${False} 260 ... Redfish.Post ${REDFISH_ACCOUNTS_URI} body=&{payload} 261 ... valid_status_codes=[${HTTP_CREATED}] 262 263 264Get User Role 265 [Documentation] Get User Role. 266 [Arguments] ${user_name} 267 268 # Description of argument(s): 269 # user_name User name to get it's role. 270 271 ${role_config}= Redfish_Utils.Get Attribute 272 ... ${REDFISH_ACCOUNTS_URI}${user_name} RoleId 273 274 [Return] ${role_config} 275 276 277Create Users With Different Roles 278 [Documentation] Create users with different roles. 279 [Arguments] ${users} ${force}=${False} 280 281 # Description of argument(s): 282 # users Dictionary of roles and user credentails to be created. 283 # Ex: {'Administrator': '[admin_user, TestPwd123]', 'Operator': '[operator_user, TestPwd123]'} 284 # force Delete given user account if already exists when force is True. 285 286 FOR ${role} IN @{users} 287 Redfish Create User ${users['${role}'][0]} ${users['${role}']}[1] ${role} ${True} ${force} 288 END 289 290 291Delete BMC Users Via Redfish 292 [Documentation] Delete BMC users via redfish. 293 [Arguments] ${users} 294 295 # Description of argument(s): 296 # users Dictionary of roles and user credentials to be deleted. 297 298 FOR ${role} IN @{users} 299 Redfish.Delete /redfish/v1/AccountService/Accounts/${users['${role}'][0]} 300 ... valid_status_codes=[${HTTP_OK}, ${HTTP_NOT_FOUND}] 301 END 302 303 304Expire And Update New Password Via Redfish 305 [Documentation] Expire and change password and verify using password. 306 [Arguments] ${username} ${password} ${new_password} 307 308 # Description of argument(s): 309 # username The username to be used to login to the BMC. 310 # password The password to be used to login to the BMC. 311 # new_password The new password to be used to update password. 312 313 # Expire admin password using ssh. 314 Open Connection And Log In ${OPENBMC_USERNAME} ${OPENBMC_PASSWORD} 315 ${output} ${stderr} ${rc}= BMC Execute Command passwd --expire ${username} 316 Should Contain Any ${output} password expiry information changed 317 ... password changed 318 319 # Verify user password expired using Redfish 320 Verify User Password Expired Using Redfish ${username} ${password} 321 322 # Change user password. 323 Redfish.Patch /redfish/v1/AccountService/Accounts/${username} 324 ... body={'Password': '${new_password}'} 325 Redfish.Logout 326 327 328Verify User Password Expired Using Redfish 329 [Documentation] Checking whether user password expired or not using redfish. 330 [Arguments] ${username} ${password} ${expected_result}=${True} 331 332 # Description of argument(s): 333 # username The username to be used to login to the BMC. 334 # password The password to be used to login to the BMC. 335 336 Redfish.Login ${username} ${password} 337 ${resp}= Redfish.Get /redfish/v1/AccountService/Accounts/${username} 338 Should Be Equal ${resp.dict["PasswordChangeRequired"]} ${expected_result} 339 340 341Is BMC LastResetTime Changed 342 [Documentation] Return fail if BMC last reset time is not changed. 343 [Arguments] ${reset_time} 344 345 # Description of argument(s): 346 # reset_time Last BMC reset time. 347 348 ${last_reset_time}= Get BMC Last Reset Time 349 Should Not Be Equal ${last_reset_time} ${reset_time} 350 351 352Redfish BMC Reboot 353 [Documentation] Use Redfish API reboot BMC and wait for BMC ready. 354 355 # Get BMC last reset time for compare 356 ${last_reset_time}= Get BMC Last Reset Time 357 358 # Reboot BMC by Redfish API 359 Redfish BMC Reset Operation 360 361 # Wait for BMC real reboot and Redfish API ready 362 Wait Until Keyword Succeeds 3 min 10 sec Is BMC LastResetTime Changed ${last_reset_time} 363 364 365Get BMC Last Reset Time 366 [Documentation] Return BMC LastResetTime. 367 368 ${last_reset_time}= Redfish.Get Attribute /redfish/v1/Managers/${MANAGER_ID} LastResetTime 369 370 [Return] ${last_reset_time} 371