blob: 1d4fb9e8336e816485fa72c57d72defe19e6f5f6 [file] [log] [blame]
Sushil Singh87dcee12019-08-07 13:13:13 -05001*** Settings ***
2Documentation 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
12Resource ../../lib/resource.robot
13Resource ../../lib/bmc_redfish_resource.robot
14Resource ../../lib/openbmc_ffdc.robot
15Resource ../../lib/common_utils.robot
16Resource ../../lib/code_update_utils.robot
17Resource ../../lib/redfish_code_update_utils.robot
Sushil Singh6624ce52020-01-22 00:53:41 -060018Resource ../../lib/utils.robot
Sushil Singh87dcee12019-08-07 13:13:13 -050019Library ../../lib/gen_robot_valid.py
20Library ../../lib/var_funcs.py
Sushil Singh8f48c8f2020-01-16 04:36:25 -060021Library ../../lib/gen_robot_keyword.py
Sushil Singh8469a482020-07-30 04:19:10 -050022Library ../../lib/code_update_utils.py
Sushil Singh87dcee12019-08-07 13:13:13 -050023
Sushil Singhb2162d82019-09-27 07:22:04 -050024Suite Setup Suite Setup Execution
25Suite Teardown Redfish.Logout
26Test Setup Printn
27Test Teardown FFDC On Test Case Fail
Sushil Singh87dcee12019-08-07 13:13:13 -050028
George Keishing7e854712021-03-17 13:18:10 -050029# Force the test to timedout to prevent test hanging.
30Test Timeout 30 minutes
31
Sushil Singhb2162d82019-09-27 07:22:04 -050032Force Tags BMC_Code_Update
Sushil Singh87dcee12019-08-07 13:13:13 -050033
Sushil Singh65878cb2020-02-27 03:43:44 -060034*** Variables ***
35
36${FORCE_UPDATE} ${0}
George Keishing98cf8af2022-07-14 11:13:49 -050037${LOOP_COUNT} ${2}
George Keishingcad841d2022-02-24 01:02:20 -060038${DELETE_ERRLOGS} ${1}
Sushil Singh65878cb2020-02-27 03:43:44 -060039
George Keishing2e078ae2022-02-03 09:13:23 -060040${ACTIVATION_WAIT_TIMEOUT} 8 min
41
Sushil Singh87dcee12019-08-07 13:13:13 -050042*** Test Cases ***
43
44Redfish BMC Code Update
45 [Documentation] Update the firmware image.
46 [Tags] Redfish_BMC_Code_Update
47
George Keishingaa027222021-11-17 06:37:57 -060048 # Python module: get_version_tar(tar_file_path)
49 ${image_version}= code_update_utils.Get Version Tar ${IMAGE_FILE_PATH}
Sushil Singh87dcee12019-08-07 13:13:13 -050050 Rprint Vars image_version
51
George Keishingaa027222021-11-17 06:37:57 -060052 # Python module: get_bmc_release_info()
53 ${bmc_release_info}= utils.Get BMC Release Info
George Keishingfedd5ce2020-07-24 02:25:08 -050054 ${functional_version}= Set Variable ${bmc_release_info['version_id']}
55 Rprint Vars functional_version
56
Sushil Singh76650912020-12-10 23:48:05 -060057 ${post_code_update_actions}= Get Post Boot Action
58 ${state}= Get Pre Reboot State
59 Rprint Vars state
60
George Keishing78903952020-07-24 07:04:53 -050061 # 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 Singh76650912020-12-10 23:48:05 -060065 ${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 Singhaad1da22021-06-21 04:19:18 -050069 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 Singh52859242020-10-09 07:28:22 -050072
Sushil Singhaad1da22021-06-21 04:19:18 -050073 Print Timen Performing firmware update ${image_version}.
Sushil Singh52859242020-10-09 07:28:22 -050074
Sushil Singh87dcee12019-08-07 13:13:13 -050075 Redfish Update Firmware
76
Sushil Singh8469a482020-07-30 04:19:10 -050077
George Keishingb695a902022-05-11 09:26:21 -050078Redfish BMC Code Update Running And Backup Image With Same Firmware
79 [Documentation] Perform the firmware update with same image back to back, so that
80 ... the running (functional Image) and backup image (alternate image)
81 ... with same firmware.
82 [Tags] Redfish_BMC_Code_Update_Running_And_Backup_Image_With_Same_Firmware
83
84 # Python module: get_version_tar(tar_file_path)
85 ${image_version}= code_update_utils.Get Version Tar ${IMAGE_FILE_PATH}
86 Rprint Vars image_version
87
88 # Python module: get_bmc_release_info()
89 ${bmc_release_info}= utils.Get BMC Release Info
90 ${functional_version}= Set Variable ${bmc_release_info['version_id']}
91 Rprint Vars functional_version
92
93 # First update.
94 Print Timen Performing firmware update ${image_version}.
95 Redfish Update Firmware
96
97 # Second update.
98 Print Timen Performing firmware update ${image_version}.
99 Redfish Update Firmware
100
101
Sushil Singh8469a482020-07-30 04:19:10 -0500102Redfish Firmware Update Loop
George Keishing98cf8af2022-07-14 11:13:49 -0500103 [Documentation] Update the same firmware image in loop.
Sushil Singh8469a482020-07-30 04:19:10 -0500104 [Tags] Redfish_Firmware_Update_Loop
105 [Template] Redfish Firmware Update In Loop
George Keishing98cf8af2022-07-14 11:13:49 -0500106 [Timeout] NONE
107 # Override default 30 minutes, Disabling timeout with NONE explicitly
108 # else this test will fail for longer loop runs.
Sushil Singh8469a482020-07-30 04:19:10 -0500109
110 ${LOOP_COUNT}
111
112
Sushil Singh87dcee12019-08-07 13:13:13 -0500113*** Keywords ***
114
115Suite Setup Execution
116 [Documentation] Do the suite setup.
117
118 Redfish.Login
Sushil Singh87dcee12019-08-07 13:13:13 -0500119 # Delete BMC dump and Error logs.
George Keishingc1954452020-10-14 07:44:17 -0500120 Run Keyword And Ignore Error Redfish Delete All BMC Dumps
George Keishingcad841d2022-02-24 01:02:20 -0600121 Run Keyword If ${DELETE_ERRLOGS} == ${1}
122 ... Run Keyword And Ignore Error Redfish Purge Event Log
Sushil Singh87dcee12019-08-07 13:13:13 -0500123 # Checking for file existence.
124 Valid File Path IMAGE_FILE_PATH
125
George Keishing4574ec42021-10-06 11:45:33 -0500126 Redfish Power Off stack_mode=skip
127
Sushil Singh8469a482020-07-30 04:19:10 -0500128
129Redfish Firmware Update In Loop
130 [Documentation] Update the firmware in loop.
131 [Arguments] ${update_loop_count}
132
133 # Description of argument(s):
134 # update_loop_count This value is used to run the firmware update in loop.
135
George Keishing98cf8af2022-07-14 11:13:49 -0500136 # Python module: get_version_tar(tar_file_path)
137 ${image_version}= code_update_utils.Get Version Tar ${IMAGE_FILE_PATH}
138 Rprint Vars image_version
139
140 # Python module: get_bmc_release_info()
141 ${bmc_release_info}= utils.Get BMC Release Info
142 ${functional_version}= Set Variable ${bmc_release_info['version_id']}
143 Print Timen Starting firmware information:
144 Rprint Vars functional_version
145
Sushil Singh53c2dde2020-09-18 05:53:20 -0500146 ${temp_update_loop_count}= Evaluate ${update_loop_count} + 1
Sushil Singh8469a482020-07-30 04:19:10 -0500147
Sushil Singh53c2dde2020-09-18 05:53:20 -0500148 FOR ${count} IN RANGE 1 ${temp_update_loop_count}
George Keishing98cf8af2022-07-14 11:13:49 -0500149 Print Timen **************************************
150 Print Timen * The Current Loop Count is ${count} of ${update_loop_count} *
151 Print Timen **************************************
152 Print Timen Performing firmware update ${image_version}.
153 Redfish Update Firmware
Sushil Singh8469a482020-07-30 04:19:10 -0500154 END
155
Sushil Singh8469a482020-07-30 04:19:10 -0500156
Sushil Singh8469a482020-07-30 04:19:10 -0500157Delete BMC Image
158 [Documentation] Delete a BMC image from the BMC flash chip.
159
160 ${software_object}= Get Non Running BMC Software Object
161 Delete Image And Verify ${software_object} ${VERSION_PURPOSE_BMC}
162
163
Sushil Singh87dcee12019-08-07 13:13:13 -0500164Activate Existing Firmware
George Keishing16b3c7b2021-01-28 09:23:37 -0600165 [Documentation] Set firmware image to lower priority.
Sushil Singh87dcee12019-08-07 13:13:13 -0500166 [Arguments] ${image_version}
167
168 # Description of argument(s):
169 # image_version Version of image.
170
171 ${software_inventory_record}= Get Software Inventory State By Version
172 ... ${image_version}
173 ${num_keys}= Get Length ${software_inventory_record}
174
175 Rprint Vars software_inventory_record
176
177 # If no software inventory record was found, there is no existing
178 # firmware for the given version and therefore no action to be taken.
179 Return From Keyword If not ${num_keys}
180
181 # Check if the existing firmware is functional.
182 Pass Execution If ${software_inventory_record['functional']}
183 ... The existing ${image_version} firmware is already functional.
184
185 # If existing firmware is not functional, then set the priority to least.
186 Print Timen The existing ${image_version} firmware is not yet functional.
187 Set BMC Image Priority To Least ${image_version} ${software_inventory_record}
188
189 Pass Execution The existing ${image_version} firmware is now functional.
190
191
192Get Image Priority
193 [Documentation] Get Current Image Priority.
194 [Arguments] ${image_version}
195
196 # Description of argument(s):
George Keishing16b3c7b2021-01-28 09:23:37 -0600197 # image_version The Firmware image version (e.g. 2.8.0-dev-1107-g512028d95).
Sushil Singh87dcee12019-08-07 13:13:13 -0500198
199 ${software_info}= Read Properties
200 ... ${SOFTWARE_VERSION_URI}/enumerate quiet=1
201 # Get only the record associated with our image_version.
202
203 ${software_info}= Filter Struct
204 ... ${software_info} [('Version', '${image_version}')]
205 # Convert from dict to list.
206 ${software_info}= Get Dictionary Values ${software_info}
207
208 [Return] ${software_info[0]['Priority']}
209
210
211Set BMC Image Priority To Least
212 [Documentation] Set BMC image priority to least value.
213 [Arguments] ${image_version} ${software_inventory}
214
215 # Description of argument(s):
George Keishing16b3c7b2021-01-28 09:23:37 -0600216 # image_version The Firmware image version (e.g. 2.8.0-dev-1107-g512028d95).
Sushil Singh87dcee12019-08-07 13:13:13 -0500217 # software_inventory Software inventory details.
218
219 ${least_priority}= Get Least Value Priority Image ${VERSION_PURPOSE_BMC}
220 ${cur_priority}= Get Image Priority ${image_version}
221 Rprint Vars least_priority cur_priority
222
223 Return From Keyword If '${least_priority}' == ${cur_priority}
224 Set Host Software Property
225 ... ${SOFTWARE_VERSION_URI}${software_inventory['image_id']}
226 ... Priority ${least_priority}
227
Sushil Singh87dcee12019-08-07 13:13:13 -0500228 Redfish OBMC Reboot (off)
Sushil Singh87dcee12019-08-07 13:13:13 -0500229
230
Sushil Singhaad1da22021-06-21 04:19:18 -0500231Set Backup Firmware To Functional
232 [Documentation] Set the backup firmware to functional.
233 [Arguments] ${image_version} ${state}
234
235 # Description of argument(s):
236 # image_version Version of image.
237 # state Pre reboot state.
238
239 Print Timen Switch to back up and rebooting.
240 Switch Backup Firmware Image To Functional
241 Wait For Reboot start_boot_seconds=${state['epoch_seconds']}
242 Redfish Verify BMC Version ${IMAGE_FILE_PATH}
243 Pass Execution The backup firmware image ${image_version} is now functional.
244
245
Sushil Singh87dcee12019-08-07 13:13:13 -0500246Redfish Update Firmware
247 [Documentation] Update the BMC firmware via redfish interface.
248
Sushil Singh6624ce52020-01-22 00:53:41 -0600249 ${post_code_update_actions}= Get Post Boot Action
Sushil Singh87dcee12019-08-07 13:13:13 -0500250 ${state}= Get Pre Reboot State
251 Rprint Vars state
Sushil Singh090eedc2019-11-05 02:04:59 -0600252 Run Keyword And Ignore Error Set ApplyTime policy=OnReset
George Keishing2e078ae2022-02-03 09:13:23 -0600253
254 # Python module: get_member_list(resource_path)
255 ${before_inv_list}= redfish_utils.Get Member List /redfish/v1/UpdateService/FirmwareInventory
256 Log To Console Current images on the BMC before upload: ${before_inv_list}
257
George Keishingb695a902022-05-11 09:26:21 -0500258 Print Timen Start uploading image to BMC.
George Keishing2e078ae2022-02-03 09:13:23 -0600259 Redfish Upload Image /redfish/v1/UpdateService ${IMAGE_FILE_PATH}
George Keishingb695a902022-05-11 09:26:21 -0500260 Print Timen Completed image upload to BMC.
George Keishing2e078ae2022-02-03 09:13:23 -0600261
262 # Python module: get_member_list(resource_path)
263 ${after_inv_list}= redfish_utils.Get Member List /redfish/v1/UpdateService/FirmwareInventory
264 Log To Console Current images on the BMC after upload: ${after_inv_list}
265
266 ${image_id}= Evaluate set(${after_inv_list}) - set(${before_inv_list})
267 Should Not Be Empty ${image_id}
268 ${image_id}= Evaluate list(${image_id})[0].split('/')[-1]
269 Log To Console Firmware installation in progress with image id:: ${image_id}
270
271 Wait Until Keyword Succeeds ${ACTIVATION_WAIT_TIMEOUT} 10 sec
272 ... Check Image Update Progress State match_state='Enabled' image_id=${image_id}
273
274 # Python module: get_version_tar(tar_file_path)
275 ${tar_version}= code_update_utils.Get Version Tar ${IMAGE_FILE_PATH}
Sushil Singh8f48c8f2020-01-16 04:36:25 -0600276 ${image_info}= Get Software Inventory State By Version ${tar_version}
George Keishing2e078ae2022-02-03 09:13:23 -0600277
Sushil Singh8f48c8f2020-01-16 04:36:25 -0600278 Run Key ${post_code_update_actions['${image_info["image_type"]}']['OnReset']}
279 Redfish.Login
280 Redfish Verify BMC Version ${IMAGE_FILE_PATH}
Sushil Singh87dcee12019-08-07 13:13:13 -0500281