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 | cad841d | 2022-02-24 01:02:20 -0600 | [diff] [blame] | 37 | ${LOOP_COUNT} ${20} |
| 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 | |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 42 | *** Test Cases *** |
| 43 | |
| 44 | Redfish BMC Code Update |
| 45 | [Documentation] Update the firmware image. |
| 46 | [Tags] Redfish_BMC_Code_Update |
| 47 | |
George Keishing | aa02722 | 2021-11-17 06:37:57 -0600 | [diff] [blame] | 48 | # Python module: get_version_tar(tar_file_path) |
| 49 | ${image_version}= code_update_utils.Get Version Tar ${IMAGE_FILE_PATH} |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 50 | Rprint Vars image_version |
| 51 | |
George Keishing | aa02722 | 2021-11-17 06:37:57 -0600 | [diff] [blame] | 52 | # Python module: get_bmc_release_info() |
| 53 | ${bmc_release_info}= utils.Get BMC Release Info |
George Keishing | fedd5ce | 2020-07-24 02:25:08 -0500 | [diff] [blame] | 54 | ${functional_version}= Set Variable ${bmc_release_info['version_id']} |
| 55 | Rprint Vars functional_version |
| 56 | |
Sushil Singh | 7665091 | 2020-12-10 23:48:05 -0600 | [diff] [blame] | 57 | ${post_code_update_actions}= Get Post Boot Action |
| 58 | ${state}= Get Pre Reboot State |
| 59 | Rprint Vars state |
| 60 | |
George Keishing | 7890395 | 2020-07-24 07:04:53 -0500 | [diff] [blame] | 61 | # Check if the existing firmware is functional. |
| 62 | Pass Execution If '${functional_version}' == '${image_version}' |
| 63 | ... The existing ${image_version} firmware is already functional. |
| 64 | |
Sushil Singh | 7665091 | 2020-12-10 23:48:05 -0600 | [diff] [blame] | 65 | ${sw_inv}= Get Functional Firmware BMC image |
| 66 | ${nonfunctional_sw_inv}= Get Non Functional Firmware ${sw_inv} False |
| 67 | |
| 68 | # Redfish active software image API. |
Sushil Singh | aad1da2 | 2021-06-21 04:19:18 -0500 | [diff] [blame] | 69 | Run Keyword If ${num_records} > 0 |
| 70 | ... Run Keyword If '${nonfunctional_sw_inv['version']}' == '${image_version}' |
| 71 | ... Set Backup Firmware To Functional ${image_version} ${state} |
Sushil Singh | 5285924 | 2020-10-09 07:28:22 -0500 | [diff] [blame] | 72 | |
Sushil Singh | aad1da2 | 2021-06-21 04:19:18 -0500 | [diff] [blame] | 73 | Print Timen Performing firmware update ${image_version}. |
Sushil Singh | 5285924 | 2020-10-09 07:28:22 -0500 | [diff] [blame] | 74 | |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 75 | Redfish Update Firmware |
| 76 | |
Sushil Singh | 8469a48 | 2020-07-30 04:19:10 -0500 | [diff] [blame] | 77 | |
| 78 | Redfish Firmware Update Loop |
| 79 | [Documentation] Update the firmware image in loop. |
| 80 | [Tags] Redfish_Firmware_Update_Loop |
| 81 | [Template] Redfish Firmware Update In Loop |
| 82 | |
| 83 | ${LOOP_COUNT} |
| 84 | |
| 85 | |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 86 | *** Keywords *** |
| 87 | |
| 88 | Suite Setup Execution |
| 89 | [Documentation] Do the suite setup. |
| 90 | |
| 91 | Redfish.Login |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 92 | # Delete BMC dump and Error logs. |
George Keishing | c195445 | 2020-10-14 07:44:17 -0500 | [diff] [blame] | 93 | Run Keyword And Ignore Error Redfish Delete All BMC Dumps |
George Keishing | cad841d | 2022-02-24 01:02:20 -0600 | [diff] [blame] | 94 | Run Keyword If ${DELETE_ERRLOGS} == ${1} |
| 95 | ... Run Keyword And Ignore Error Redfish Purge Event Log |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 96 | # Checking for file existence. |
| 97 | Valid File Path IMAGE_FILE_PATH |
| 98 | |
George Keishing | 4574ec4 | 2021-10-06 11:45:33 -0500 | [diff] [blame] | 99 | Redfish Power Off stack_mode=skip |
| 100 | |
Sushil Singh | 8469a48 | 2020-07-30 04:19:10 -0500 | [diff] [blame] | 101 | |
| 102 | Redfish Firmware Update In Loop |
| 103 | [Documentation] Update the firmware in loop. |
| 104 | [Arguments] ${update_loop_count} |
| 105 | |
| 106 | # Description of argument(s): |
| 107 | # update_loop_count This value is used to run the firmware update in loop. |
| 108 | |
| 109 | ${before_image_state}= Get BMC Functional Firmware |
Sushil Singh | 53c2dde | 2020-09-18 05:53:20 -0500 | [diff] [blame] | 110 | ${temp_update_loop_count}= Evaluate ${update_loop_count} + 1 |
Sushil Singh | 8469a48 | 2020-07-30 04:19:10 -0500 | [diff] [blame] | 111 | |
Sushil Singh | 53c2dde | 2020-09-18 05:53:20 -0500 | [diff] [blame] | 112 | FOR ${count} IN RANGE 1 ${temp_update_loop_count} |
Sushil Singh | 8469a48 | 2020-07-30 04:19:10 -0500 | [diff] [blame] | 113 | Print Timen ************************************** |
| 114 | Print Timen * The Current Loop Count is ${count} of ${update_loop_count} * |
| 115 | Print Timen ************************************** |
| 116 | Redfish Update Firmware |
| 117 | ${sw_inv}= Get Functional Firmware BMC update |
Sushil Singh | fd481ef | 2020-10-12 06:51:00 -0500 | [diff] [blame] | 118 | ${nonfunctional_sw_inv}= Get Non Functional Firmware ${sw_inv} False |
Sushil Singh | 8469a48 | 2020-07-30 04:19:10 -0500 | [diff] [blame] | 119 | Run Keyword If ${nonfunctional_sw_inv['functional']} == False |
| 120 | ... Set BMC Image Priority To Least ${nonfunctional_sw_inv['version']} ${nonfunctional_sw_inv} |
| 121 | Redfish.Login |
| 122 | ${sw_inv}= Get Functional Firmware BMC update |
Sushil Singh | fd481ef | 2020-10-12 06:51:00 -0500 | [diff] [blame] | 123 | ${nonfunctional_sw_inv}= Get Non Functional Firmware ${sw_inv} False |
Sushil Singh | 8469a48 | 2020-07-30 04:19:10 -0500 | [diff] [blame] | 124 | Delete BMC Image |
| 125 | END |
| 126 | |
| 127 | ${after_image_state}= Get BMC Functional Firmware |
| 128 | Valid Value before_image_state["version"] ['${after_image_state["version"]}'] |
| 129 | |
| 130 | |
Sushil Singh | 8469a48 | 2020-07-30 04:19:10 -0500 | [diff] [blame] | 131 | Delete BMC Image |
| 132 | [Documentation] Delete a BMC image from the BMC flash chip. |
| 133 | |
| 134 | ${software_object}= Get Non Running BMC Software Object |
| 135 | Delete Image And Verify ${software_object} ${VERSION_PURPOSE_BMC} |
| 136 | |
| 137 | |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 138 | Activate Existing Firmware |
George Keishing | 16b3c7b | 2021-01-28 09:23:37 -0600 | [diff] [blame] | 139 | [Documentation] Set firmware image to lower priority. |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 140 | [Arguments] ${image_version} |
| 141 | |
| 142 | # Description of argument(s): |
| 143 | # image_version Version of image. |
| 144 | |
| 145 | ${software_inventory_record}= Get Software Inventory State By Version |
| 146 | ... ${image_version} |
| 147 | ${num_keys}= Get Length ${software_inventory_record} |
| 148 | |
| 149 | Rprint Vars software_inventory_record |
| 150 | |
| 151 | # If no software inventory record was found, there is no existing |
| 152 | # firmware for the given version and therefore no action to be taken. |
| 153 | Return From Keyword If not ${num_keys} |
| 154 | |
| 155 | # Check if the existing firmware is functional. |
| 156 | Pass Execution If ${software_inventory_record['functional']} |
| 157 | ... The existing ${image_version} firmware is already functional. |
| 158 | |
| 159 | # If existing firmware is not functional, then set the priority to least. |
| 160 | Print Timen The existing ${image_version} firmware is not yet functional. |
| 161 | Set BMC Image Priority To Least ${image_version} ${software_inventory_record} |
| 162 | |
| 163 | Pass Execution The existing ${image_version} firmware is now functional. |
| 164 | |
| 165 | |
| 166 | Get Image Priority |
| 167 | [Documentation] Get Current Image Priority. |
| 168 | [Arguments] ${image_version} |
| 169 | |
| 170 | # Description of argument(s): |
George Keishing | 16b3c7b | 2021-01-28 09:23:37 -0600 | [diff] [blame] | 171 | # 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] | 172 | |
| 173 | ${software_info}= Read Properties |
| 174 | ... ${SOFTWARE_VERSION_URI}/enumerate quiet=1 |
| 175 | # Get only the record associated with our image_version. |
| 176 | |
| 177 | ${software_info}= Filter Struct |
| 178 | ... ${software_info} [('Version', '${image_version}')] |
| 179 | # Convert from dict to list. |
| 180 | ${software_info}= Get Dictionary Values ${software_info} |
| 181 | |
| 182 | [Return] ${software_info[0]['Priority']} |
| 183 | |
| 184 | |
| 185 | Set BMC Image Priority To Least |
| 186 | [Documentation] Set BMC image priority to least value. |
| 187 | [Arguments] ${image_version} ${software_inventory} |
| 188 | |
| 189 | # Description of argument(s): |
George Keishing | 16b3c7b | 2021-01-28 09:23:37 -0600 | [diff] [blame] | 190 | # 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] | 191 | # software_inventory Software inventory details. |
| 192 | |
| 193 | ${least_priority}= Get Least Value Priority Image ${VERSION_PURPOSE_BMC} |
| 194 | ${cur_priority}= Get Image Priority ${image_version} |
| 195 | Rprint Vars least_priority cur_priority |
| 196 | |
| 197 | Return From Keyword If '${least_priority}' == ${cur_priority} |
| 198 | Set Host Software Property |
| 199 | ... ${SOFTWARE_VERSION_URI}${software_inventory['image_id']} |
| 200 | ... Priority ${least_priority} |
| 201 | |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 202 | Redfish OBMC Reboot (off) |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 203 | |
| 204 | |
Sushil Singh | aad1da2 | 2021-06-21 04:19:18 -0500 | [diff] [blame] | 205 | Set Backup Firmware To Functional |
| 206 | [Documentation] Set the backup firmware to functional. |
| 207 | [Arguments] ${image_version} ${state} |
| 208 | |
| 209 | # Description of argument(s): |
| 210 | # image_version Version of image. |
| 211 | # state Pre reboot state. |
| 212 | |
| 213 | Print Timen Switch to back up and rebooting. |
| 214 | Switch Backup Firmware Image To Functional |
| 215 | Wait For Reboot start_boot_seconds=${state['epoch_seconds']} |
| 216 | Redfish Verify BMC Version ${IMAGE_FILE_PATH} |
| 217 | Pass Execution The backup firmware image ${image_version} is now functional. |
| 218 | |
| 219 | |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 220 | Redfish Update Firmware |
| 221 | [Documentation] Update the BMC firmware via redfish interface. |
| 222 | |
Sushil Singh | 6624ce5 | 2020-01-22 00:53:41 -0600 | [diff] [blame] | 223 | ${post_code_update_actions}= Get Post Boot Action |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 224 | ${state}= Get Pre Reboot State |
| 225 | Rprint Vars state |
Sushil Singh | 090eedc | 2019-11-05 02:04:59 -0600 | [diff] [blame] | 226 | Run Keyword And Ignore Error Set ApplyTime policy=OnReset |
George Keishing | 2e078ae | 2022-02-03 09:13:23 -0600 | [diff] [blame] | 227 | |
| 228 | # Python module: get_member_list(resource_path) |
| 229 | ${before_inv_list}= redfish_utils.Get Member List /redfish/v1/UpdateService/FirmwareInventory |
| 230 | Log To Console Current images on the BMC before upload: ${before_inv_list} |
| 231 | |
| 232 | Log To Console Start uploading image to BMC. |
| 233 | Redfish Upload Image /redfish/v1/UpdateService ${IMAGE_FILE_PATH} |
| 234 | Log To Console Completed image upload to BMC. |
| 235 | |
| 236 | # Python module: get_member_list(resource_path) |
| 237 | ${after_inv_list}= redfish_utils.Get Member List /redfish/v1/UpdateService/FirmwareInventory |
| 238 | Log To Console Current images on the BMC after upload: ${after_inv_list} |
| 239 | |
| 240 | ${image_id}= Evaluate set(${after_inv_list}) - set(${before_inv_list}) |
| 241 | Should Not Be Empty ${image_id} |
| 242 | ${image_id}= Evaluate list(${image_id})[0].split('/')[-1] |
| 243 | Log To Console Firmware installation in progress with image id:: ${image_id} |
| 244 | |
| 245 | Wait Until Keyword Succeeds ${ACTIVATION_WAIT_TIMEOUT} 10 sec |
| 246 | ... Check Image Update Progress State match_state='Enabled' image_id=${image_id} |
| 247 | |
| 248 | # Python module: get_version_tar(tar_file_path) |
| 249 | ${tar_version}= code_update_utils.Get Version Tar ${IMAGE_FILE_PATH} |
Sushil Singh | 8f48c8f | 2020-01-16 04:36:25 -0600 | [diff] [blame] | 250 | ${image_info}= Get Software Inventory State By Version ${tar_version} |
George Keishing | 2e078ae | 2022-02-03 09:13:23 -0600 | [diff] [blame] | 251 | |
Sushil Singh | 8f48c8f | 2020-01-16 04:36:25 -0600 | [diff] [blame] | 252 | Run Key ${post_code_update_actions['${image_info["image_type"]}']['OnReset']} |
| 253 | Redfish.Login |
| 254 | Redfish Verify BMC Version ${IMAGE_FILE_PATH} |
Sushil Singh | 87dcee1 | 2019-08-07 13:13:13 -0500 | [diff] [blame] | 255 | |