Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation Update the BMC code on a target BMC via Redifsh. |
| 3 | |
| 4 | # Test Parameters: |
| 5 | # IMAGE_FILE_PATH The path to the BMC image file. |
| 6 | # |
| 7 | # Firmware update states: |
| 8 | # Enabled Image is installed and either functional or active. |
| 9 | # Disabled Image installation failed or ready for activation. |
| 10 | # Updating Image installation currently in progress. |
| 11 | |
| 12 | Resource ../../lib/resource.robot |
| 13 | Resource ../../lib/bmc_redfish_resource.robot |
| 14 | Resource ../../lib/openbmc_ffdc.robot |
| 15 | Resource ../../lib/common_utils.robot |
| 16 | Resource ../../lib/code_update_utils.robot |
| 17 | Resource ../../lib/redfish_code_update_utils.robot |
Sushil Singh | 6624ce5 | 2020-01-22 00:53:41 -0600 | [diff] [blame] | 18 | Resource ../../lib/utils.robot |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 19 | Library ../../lib/gen_robot_valid.py |
| 20 | Library ../../lib/var_funcs.py |
Sushil Singh | 8f48c8f | 2020-01-16 04:36:25 -0600 | [diff] [blame] | 21 | Library ../../lib/gen_robot_keyword.py |
Sushil Singh | 8469a48 | 2020-07-30 04:19:10 -0500 | [diff] [blame] | 22 | Library ../../lib/code_update_utils.py |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 23 | |
Sushil Singh | b2162d8 | 2019-09-27 07:22:04 -0500 | [diff] [blame] | 24 | Suite Setup Suite Setup Execution |
| 25 | Suite Teardown Redfish.Logout |
| 26 | Test Setup Printn |
| 27 | Test Teardown FFDC On Test Case Fail |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 28 | |
George Keishing | 7e85471 | 2021-03-17 13:18:10 -0500 | [diff] [blame] | 29 | # Force the test to timedout to prevent test hanging. |
| 30 | Test Timeout 30 minutes |
| 31 | |
Sushil Singh | b2162d8 | 2019-09-27 07:22:04 -0500 | [diff] [blame] | 32 | Force Tags BMC_Code_Update |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 33 | |
Sushil Singh | 65878cb | 2020-02-27 03:43:44 -0600 | [diff] [blame] | 34 | *** Variables *** |
| 35 | |
| 36 | ${FORCE_UPDATE} ${0} |
George Keishing | 98cf8af | 2022-07-14 11:13:49 -0500 | [diff] [blame] | 37 | ${LOOP_COUNT} ${2} |
George Keishing | cad841d | 2022-02-24 01:02:20 -0600 | [diff] [blame] | 38 | ${DELETE_ERRLOGS} ${1} |
Sushil Singh | 65878cb | 2020-02-27 03:43:44 -0600 | [diff] [blame] | 39 | |
George Keishing | 2e078ae | 2022-02-03 09:13:23 -0600 | [diff] [blame] | 40 | ${ACTIVATION_WAIT_TIMEOUT} 8 min |
| 41 | |
George Keishing | 57ab7cc | 2023-02-13 01:18:42 -0600 | [diff] [blame] | 42 | # New code update path. |
| 43 | ${REDFISH_UPDATE_URI} /redfish/v1/UpdateService/update |
| 44 | |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 45 | *** Test Cases *** |
| 46 | |
| 47 | Redfish BMC Code Update |
| 48 | [Documentation] Update the firmware image. |
| 49 | [Tags] Redfish_BMC_Code_Update |
| 50 | |
George Keishing | aa02722 | 2021-11-17 06:37:57 -0600 | [diff] [blame] | 51 | # Python module: get_version_tar(tar_file_path) |
| 52 | ${image_version}= code_update_utils.Get Version Tar ${IMAGE_FILE_PATH} |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 53 | Rprint Vars image_version |
| 54 | |
George Keishing | aa02722 | 2021-11-17 06:37:57 -0600 | [diff] [blame] | 55 | # Python module: get_bmc_release_info() |
| 56 | ${bmc_release_info}= utils.Get BMC Release Info |
George Keishing | fedd5ce | 2020-07-24 02:25:08 -0500 | [diff] [blame] | 57 | ${functional_version}= Set Variable ${bmc_release_info['version_id']} |
| 58 | Rprint Vars functional_version |
| 59 | |
Sushil Singh | 7665091 | 2020-12-10 23:48:05 -0600 | [diff] [blame] | 60 | ${post_code_update_actions}= Get Post Boot Action |
| 61 | ${state}= Get Pre Reboot State |
| 62 | Rprint Vars state |
| 63 | |
George Keishing | 7890395 | 2020-07-24 07:04:53 -0500 | [diff] [blame] | 64 | # Check if the existing firmware is functional. |
| 65 | Pass Execution If '${functional_version}' == '${image_version}' |
| 66 | ... The existing ${image_version} firmware is already functional. |
| 67 | |
Sushil Singh | 7665091 | 2020-12-10 23:48:05 -0600 | [diff] [blame] | 68 | ${sw_inv}= Get Functional Firmware BMC image |
| 69 | ${nonfunctional_sw_inv}= Get Non Functional Firmware ${sw_inv} False |
| 70 | |
| 71 | # Redfish active software image API. |
Sushil Singh | aad1da2 | 2021-06-21 04:19:18 -0500 | [diff] [blame] | 72 | Run Keyword If ${num_records} > 0 |
| 73 | ... Run Keyword If '${nonfunctional_sw_inv['version']}' == '${image_version}' |
| 74 | ... Set Backup Firmware To Functional ${image_version} ${state} |
Sushil Singh | 5285924 | 2020-10-09 07:28:22 -0500 | [diff] [blame] | 75 | |
Sushil Singh | aad1da2 | 2021-06-21 04:19:18 -0500 | [diff] [blame] | 76 | Print Timen Performing firmware update ${image_version}. |
Sushil Singh | 5285924 | 2020-10-09 07:28:22 -0500 | [diff] [blame] | 77 | |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 78 | Redfish Update Firmware |
| 79 | |
Sushil Singh | 8469a48 | 2020-07-30 04:19:10 -0500 | [diff] [blame] | 80 | |
George Keishing | b695a90 | 2022-05-11 09:26:21 -0500 | [diff] [blame] | 81 | Redfish BMC Code Update Running And Backup Image With Same Firmware |
| 82 | [Documentation] Perform the firmware update with same image back to back, so that |
| 83 | ... the running (functional Image) and backup image (alternate image) |
| 84 | ... with same firmware. |
| 85 | [Tags] Redfish_BMC_Code_Update_Running_And_Backup_Image_With_Same_Firmware |
| 86 | |
| 87 | # Python module: get_version_tar(tar_file_path) |
| 88 | ${image_version}= code_update_utils.Get Version Tar ${IMAGE_FILE_PATH} |
| 89 | Rprint Vars image_version |
| 90 | |
| 91 | # Python module: get_bmc_release_info() |
| 92 | ${bmc_release_info}= utils.Get BMC Release Info |
| 93 | ${functional_version}= Set Variable ${bmc_release_info['version_id']} |
| 94 | Rprint Vars functional_version |
| 95 | |
| 96 | # First update. |
| 97 | Print Timen Performing firmware update ${image_version}. |
| 98 | Redfish Update Firmware |
| 99 | |
| 100 | # Second update. |
| 101 | Print Timen Performing firmware update ${image_version}. |
| 102 | Redfish Update Firmware |
| 103 | |
| 104 | |
Sushil Singh | 8469a48 | 2020-07-30 04:19:10 -0500 | [diff] [blame] | 105 | Redfish Firmware Update Loop |
George Keishing | 98cf8af | 2022-07-14 11:13:49 -0500 | [diff] [blame] | 106 | [Documentation] Update the same firmware image in loop. |
Sushil Singh | 8469a48 | 2020-07-30 04:19:10 -0500 | [diff] [blame] | 107 | [Tags] Redfish_Firmware_Update_Loop |
| 108 | [Template] Redfish Firmware Update In Loop |
George Keishing | 98cf8af | 2022-07-14 11:13:49 -0500 | [diff] [blame] | 109 | [Timeout] NONE |
| 110 | # Override default 30 minutes, Disabling timeout with NONE explicitly |
| 111 | # else this test will fail for longer loop runs. |
Sushil Singh | 8469a48 | 2020-07-30 04:19:10 -0500 | [diff] [blame] | 112 | |
| 113 | ${LOOP_COUNT} |
| 114 | |
| 115 | |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 116 | *** Keywords *** |
| 117 | |
| 118 | Suite Setup Execution |
| 119 | [Documentation] Do the suite setup. |
| 120 | |
| 121 | Redfish.Login |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 122 | # Delete BMC dump and Error logs. |
George Keishing | c195445 | 2020-10-14 07:44:17 -0500 | [diff] [blame] | 123 | Run Keyword And Ignore Error Redfish Delete All BMC Dumps |
George Keishing | cad841d | 2022-02-24 01:02:20 -0600 | [diff] [blame] | 124 | Run Keyword If ${DELETE_ERRLOGS} == ${1} |
| 125 | ... Run Keyword And Ignore Error Redfish Purge Event Log |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 126 | # Checking for file existence. |
| 127 | Valid File Path IMAGE_FILE_PATH |
| 128 | |
George Keishing | 57ab7cc | 2023-02-13 01:18:42 -0600 | [diff] [blame] | 129 | # Check and set the update path. |
| 130 | # Old - /redfish/v1/UpdateService/ |
| 131 | # New - /redfish/v1/UpdateService/update |
| 132 | ${resp}= Redfish.Get /redfish/v1/UpdateService/update |
| 133 | ... valid_status_codes=[${HTTP_OK},${HTTP_NOT_FOUND},${HTTP_METHOD_NOT_ALLOWED}] |
| 134 | |
| 135 | # If the method is not found, set update URI to old method. |
| 136 | Run Keyword If ${resp.status} == ${HTTP_NOT_FOUND} |
| 137 | ... Set Suite Variable ${REDFISH_UPDATE_URI} /redfish/v1/UpdateService |
| 138 | |
| 139 | Log To Console Update URI: ${REDFISH_UPDATE_URI} |
| 140 | |
George Keishing | 4574ec4 | 2021-10-06 11:45:33 -0500 | [diff] [blame] | 141 | Redfish Power Off stack_mode=skip |
| 142 | |
Sushil Singh | 8469a48 | 2020-07-30 04:19:10 -0500 | [diff] [blame] | 143 | |
| 144 | Redfish Firmware Update In Loop |
| 145 | [Documentation] Update the firmware in loop. |
| 146 | [Arguments] ${update_loop_count} |
| 147 | |
| 148 | # Description of argument(s): |
| 149 | # update_loop_count This value is used to run the firmware update in loop. |
| 150 | |
George Keishing | 98cf8af | 2022-07-14 11:13:49 -0500 | [diff] [blame] | 151 | # Python module: get_version_tar(tar_file_path) |
| 152 | ${image_version}= code_update_utils.Get Version Tar ${IMAGE_FILE_PATH} |
| 153 | Rprint Vars image_version |
| 154 | |
| 155 | # Python module: get_bmc_release_info() |
| 156 | ${bmc_release_info}= utils.Get BMC Release Info |
| 157 | ${functional_version}= Set Variable ${bmc_release_info['version_id']} |
| 158 | Print Timen Starting firmware information: |
| 159 | Rprint Vars functional_version |
| 160 | |
Sushil Singh | 53c2dde | 2020-09-18 05:53:20 -0500 | [diff] [blame] | 161 | ${temp_update_loop_count}= Evaluate ${update_loop_count} + 1 |
Sushil Singh | 8469a48 | 2020-07-30 04:19:10 -0500 | [diff] [blame] | 162 | |
Sushil Singh | 53c2dde | 2020-09-18 05:53:20 -0500 | [diff] [blame] | 163 | FOR ${count} IN RANGE 1 ${temp_update_loop_count} |
George Keishing | 98cf8af | 2022-07-14 11:13:49 -0500 | [diff] [blame] | 164 | Print Timen ************************************** |
| 165 | Print Timen * The Current Loop Count is ${count} of ${update_loop_count} * |
| 166 | Print Timen ************************************** |
| 167 | Print Timen Performing firmware update ${image_version}. |
| 168 | Redfish Update Firmware |
Sushil Singh | 8469a48 | 2020-07-30 04:19:10 -0500 | [diff] [blame] | 169 | END |
| 170 | |
Sushil Singh | 8469a48 | 2020-07-30 04:19:10 -0500 | [diff] [blame] | 171 | |
Sushil Singh | 8469a48 | 2020-07-30 04:19:10 -0500 | [diff] [blame] | 172 | Delete BMC Image |
| 173 | [Documentation] Delete a BMC image from the BMC flash chip. |
| 174 | |
| 175 | ${software_object}= Get Non Running BMC Software Object |
| 176 | Delete Image And Verify ${software_object} ${VERSION_PURPOSE_BMC} |
| 177 | |
| 178 | |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 179 | Activate Existing Firmware |
George Keishing | 16b3c7b | 2021-01-28 09:23:37 -0600 | [diff] [blame] | 180 | [Documentation] Set firmware image to lower priority. |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 181 | [Arguments] ${image_version} |
| 182 | |
| 183 | # Description of argument(s): |
| 184 | # image_version Version of image. |
| 185 | |
| 186 | ${software_inventory_record}= Get Software Inventory State By Version |
| 187 | ... ${image_version} |
| 188 | ${num_keys}= Get Length ${software_inventory_record} |
| 189 | |
| 190 | Rprint Vars software_inventory_record |
| 191 | |
| 192 | # If no software inventory record was found, there is no existing |
| 193 | # firmware for the given version and therefore no action to be taken. |
| 194 | Return From Keyword If not ${num_keys} |
| 195 | |
| 196 | # Check if the existing firmware is functional. |
| 197 | Pass Execution If ${software_inventory_record['functional']} |
| 198 | ... The existing ${image_version} firmware is already functional. |
| 199 | |
| 200 | # If existing firmware is not functional, then set the priority to least. |
| 201 | Print Timen The existing ${image_version} firmware is not yet functional. |
| 202 | Set BMC Image Priority To Least ${image_version} ${software_inventory_record} |
| 203 | |
| 204 | Pass Execution The existing ${image_version} firmware is now functional. |
| 205 | |
| 206 | |
| 207 | Get Image Priority |
| 208 | [Documentation] Get Current Image Priority. |
| 209 | [Arguments] ${image_version} |
| 210 | |
| 211 | # Description of argument(s): |
George Keishing | 16b3c7b | 2021-01-28 09:23:37 -0600 | [diff] [blame] | 212 | # image_version The Firmware image version (e.g. 2.8.0-dev-1107-g512028d95). |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 213 | |
| 214 | ${software_info}= Read Properties |
| 215 | ... ${SOFTWARE_VERSION_URI}/enumerate quiet=1 |
| 216 | # Get only the record associated with our image_version. |
| 217 | |
| 218 | ${software_info}= Filter Struct |
| 219 | ... ${software_info} [('Version', '${image_version}')] |
| 220 | # Convert from dict to list. |
| 221 | ${software_info}= Get Dictionary Values ${software_info} |
| 222 | |
| 223 | [Return] ${software_info[0]['Priority']} |
| 224 | |
| 225 | |
| 226 | Set BMC Image Priority To Least |
| 227 | [Documentation] Set BMC image priority to least value. |
| 228 | [Arguments] ${image_version} ${software_inventory} |
| 229 | |
| 230 | # Description of argument(s): |
George Keishing | 16b3c7b | 2021-01-28 09:23:37 -0600 | [diff] [blame] | 231 | # image_version The Firmware image version (e.g. 2.8.0-dev-1107-g512028d95). |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 232 | # software_inventory Software inventory details. |
| 233 | |
| 234 | ${least_priority}= Get Least Value Priority Image ${VERSION_PURPOSE_BMC} |
| 235 | ${cur_priority}= Get Image Priority ${image_version} |
| 236 | Rprint Vars least_priority cur_priority |
| 237 | |
| 238 | Return From Keyword If '${least_priority}' == ${cur_priority} |
| 239 | Set Host Software Property |
| 240 | ... ${SOFTWARE_VERSION_URI}${software_inventory['image_id']} |
| 241 | ... Priority ${least_priority} |
| 242 | |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 243 | Redfish OBMC Reboot (off) |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 244 | |
| 245 | |
Sushil Singh | aad1da2 | 2021-06-21 04:19:18 -0500 | [diff] [blame] | 246 | Set Backup Firmware To Functional |
| 247 | [Documentation] Set the backup firmware to functional. |
| 248 | [Arguments] ${image_version} ${state} |
| 249 | |
| 250 | # Description of argument(s): |
| 251 | # image_version Version of image. |
| 252 | # state Pre reboot state. |
| 253 | |
| 254 | Print Timen Switch to back up and rebooting. |
| 255 | Switch Backup Firmware Image To Functional |
| 256 | Wait For Reboot start_boot_seconds=${state['epoch_seconds']} |
| 257 | Redfish Verify BMC Version ${IMAGE_FILE_PATH} |
| 258 | Pass Execution The backup firmware image ${image_version} is now functional. |
| 259 | |
| 260 | |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 261 | Redfish Update Firmware |
| 262 | [Documentation] Update the BMC firmware via redfish interface. |
| 263 | |
Sushil Singh | 6624ce5 | 2020-01-22 00:53:41 -0600 | [diff] [blame] | 264 | ${post_code_update_actions}= Get Post Boot Action |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 265 | ${state}= Get Pre Reboot State |
| 266 | Rprint Vars state |
Sushil Singh | 090eedc | 2019-11-05 02:04:59 -0600 | [diff] [blame] | 267 | Run Keyword And Ignore Error Set ApplyTime policy=OnReset |
George Keishing | 2e078ae | 2022-02-03 09:13:23 -0600 | [diff] [blame] | 268 | |
| 269 | # Python module: get_member_list(resource_path) |
| 270 | ${before_inv_list}= redfish_utils.Get Member List /redfish/v1/UpdateService/FirmwareInventory |
| 271 | Log To Console Current images on the BMC before upload: ${before_inv_list} |
| 272 | |
George Keishing | b695a90 | 2022-05-11 09:26:21 -0500 | [diff] [blame] | 273 | Print Timen Start uploading image to BMC. |
George Keishing | 57ab7cc | 2023-02-13 01:18:42 -0600 | [diff] [blame] | 274 | Redfish Upload Image ${REDFISH_UPDATE_URI} ${IMAGE_FILE_PATH} |
George Keishing | b695a90 | 2022-05-11 09:26:21 -0500 | [diff] [blame] | 275 | Print Timen Completed image upload to BMC. |
George Keishing | 2e078ae | 2022-02-03 09:13:23 -0600 | [diff] [blame] | 276 | |
| 277 | # Python module: get_member_list(resource_path) |
| 278 | ${after_inv_list}= redfish_utils.Get Member List /redfish/v1/UpdateService/FirmwareInventory |
| 279 | Log To Console Current images on the BMC after upload: ${after_inv_list} |
| 280 | |
| 281 | ${image_id}= Evaluate set(${after_inv_list}) - set(${before_inv_list}) |
| 282 | Should Not Be Empty ${image_id} |
| 283 | ${image_id}= Evaluate list(${image_id})[0].split('/')[-1] |
| 284 | Log To Console Firmware installation in progress with image id:: ${image_id} |
| 285 | |
| 286 | Wait Until Keyword Succeeds ${ACTIVATION_WAIT_TIMEOUT} 10 sec |
| 287 | ... Check Image Update Progress State match_state='Enabled' image_id=${image_id} |
| 288 | |
| 289 | # Python module: get_version_tar(tar_file_path) |
| 290 | ${tar_version}= code_update_utils.Get Version Tar ${IMAGE_FILE_PATH} |
Sushil Singh | 8f48c8f | 2020-01-16 04:36:25 -0600 | [diff] [blame] | 291 | ${image_info}= Get Software Inventory State By Version ${tar_version} |
George Keishing | 2e078ae | 2022-02-03 09:13:23 -0600 | [diff] [blame] | 292 | |
Sushil Singh | 8f48c8f | 2020-01-16 04:36:25 -0600 | [diff] [blame] | 293 | Run Key ${post_code_update_actions['${image_info["image_type"]}']['OnReset']} |
| 294 | Redfish.Login |
| 295 | Redfish Verify BMC Version ${IMAGE_FILE_PATH} |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 296 | |