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