blob: 3240db1d61100a7d369a20be00f4799a0fd064bb [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}
Sushil Singh8469a482020-07-30 04:19:10 -050037${LOOP_COUNT} 20
Sushil Singh65878cb2020-02-27 03:43:44 -060038
George Keishing2e078ae2022-02-03 09:13:23 -060039${ACTIVATION_WAIT_TIMEOUT} 8 min
40
Sushil Singh87dcee12019-08-07 13:13:13 -050041*** Test Cases ***
42
43Redfish BMC Code Update
44 [Documentation] Update the firmware image.
45 [Tags] Redfish_BMC_Code_Update
46
George Keishingaa027222021-11-17 06:37:57 -060047 # Python module: get_version_tar(tar_file_path)
48 ${image_version}= code_update_utils.Get Version Tar ${IMAGE_FILE_PATH}
Sushil Singh87dcee12019-08-07 13:13:13 -050049 Rprint Vars image_version
50
George Keishingaa027222021-11-17 06:37:57 -060051 # Python module: get_bmc_release_info()
52 ${bmc_release_info}= utils.Get BMC Release Info
George Keishingfedd5ce2020-07-24 02:25:08 -050053 ${functional_version}= Set Variable ${bmc_release_info['version_id']}
54 Rprint Vars functional_version
55
Sushil Singh76650912020-12-10 23:48:05 -060056 ${post_code_update_actions}= Get Post Boot Action
57 ${state}= Get Pre Reboot State
58 Rprint Vars state
59
George Keishing78903952020-07-24 07:04:53 -050060 # Check if the existing firmware is functional.
61 Pass Execution If '${functional_version}' == '${image_version}'
62 ... The existing ${image_version} firmware is already functional.
63
Sushil Singh76650912020-12-10 23:48:05 -060064 ${sw_inv}= Get Functional Firmware BMC image
65 ${nonfunctional_sw_inv}= Get Non Functional Firmware ${sw_inv} False
66
67 # Redfish active software image API.
Sushil Singhaad1da22021-06-21 04:19:18 -050068 Run Keyword If ${num_records} > 0
69 ... Run Keyword If '${nonfunctional_sw_inv['version']}' == '${image_version}'
70 ... Set Backup Firmware To Functional ${image_version} ${state}
Sushil Singh52859242020-10-09 07:28:22 -050071
Sushil Singhaad1da22021-06-21 04:19:18 -050072 Print Timen Performing firmware update ${image_version}.
Sushil Singh52859242020-10-09 07:28:22 -050073
Sushil Singh87dcee12019-08-07 13:13:13 -050074 Redfish Update Firmware
75
Sushil Singh8469a482020-07-30 04:19:10 -050076
77Redfish Firmware Update Loop
78 [Documentation] Update the firmware image in loop.
79 [Tags] Redfish_Firmware_Update_Loop
80 [Template] Redfish Firmware Update In Loop
81
82 ${LOOP_COUNT}
83
84
Sushil Singh87dcee12019-08-07 13:13:13 -050085*** Keywords ***
86
87Suite Setup Execution
88 [Documentation] Do the suite setup.
89
90 Redfish.Login
Sushil Singh87dcee12019-08-07 13:13:13 -050091 # Delete BMC dump and Error logs.
George Keishingc1954452020-10-14 07:44:17 -050092 Run Keyword And Ignore Error Redfish Delete All BMC Dumps
George Keishing2dac8122020-07-24 02:11:47 -050093 Run Keyword And Ignore Error Redfish Purge Event Log
Sushil Singh87dcee12019-08-07 13:13:13 -050094 # Checking for file existence.
95 Valid File Path IMAGE_FILE_PATH
96
George Keishing4574ec42021-10-06 11:45:33 -050097 Redfish Power Off stack_mode=skip
98
Sushil Singh8469a482020-07-30 04:19:10 -050099
100Redfish Firmware Update In Loop
101 [Documentation] Update the firmware in loop.
102 [Arguments] ${update_loop_count}
103
104 # Description of argument(s):
105 # update_loop_count This value is used to run the firmware update in loop.
106
107 ${before_image_state}= Get BMC Functional Firmware
Sushil Singh53c2dde2020-09-18 05:53:20 -0500108 ${temp_update_loop_count}= Evaluate ${update_loop_count} + 1
Sushil Singh8469a482020-07-30 04:19:10 -0500109
Sushil Singh53c2dde2020-09-18 05:53:20 -0500110 FOR ${count} IN RANGE 1 ${temp_update_loop_count}
Sushil Singh8469a482020-07-30 04:19:10 -0500111 Print Timen **************************************
112 Print Timen * The Current Loop Count is ${count} of ${update_loop_count} *
113 Print Timen **************************************
114 Redfish Update Firmware
115 ${sw_inv}= Get Functional Firmware BMC update
Sushil Singhfd481ef2020-10-12 06:51:00 -0500116 ${nonfunctional_sw_inv}= Get Non Functional Firmware ${sw_inv} False
Sushil Singh8469a482020-07-30 04:19:10 -0500117 Run Keyword If ${nonfunctional_sw_inv['functional']} == False
118 ... Set BMC Image Priority To Least ${nonfunctional_sw_inv['version']} ${nonfunctional_sw_inv}
119 Redfish.Login
120 ${sw_inv}= Get Functional Firmware BMC update
Sushil Singhfd481ef2020-10-12 06:51:00 -0500121 ${nonfunctional_sw_inv}= Get Non Functional Firmware ${sw_inv} False
Sushil Singh8469a482020-07-30 04:19:10 -0500122 Delete BMC Image
123 END
124
125 ${after_image_state}= Get BMC Functional Firmware
126 Valid Value before_image_state["version"] ['${after_image_state["version"]}']
127
128
Sushil Singh8469a482020-07-30 04:19:10 -0500129Delete BMC Image
130 [Documentation] Delete a BMC image from the BMC flash chip.
131
132 ${software_object}= Get Non Running BMC Software Object
133 Delete Image And Verify ${software_object} ${VERSION_PURPOSE_BMC}
134
135
Sushil Singh87dcee12019-08-07 13:13:13 -0500136Activate Existing Firmware
George Keishing16b3c7b2021-01-28 09:23:37 -0600137 [Documentation] Set firmware image to lower priority.
Sushil Singh87dcee12019-08-07 13:13:13 -0500138 [Arguments] ${image_version}
139
140 # Description of argument(s):
141 # image_version Version of image.
142
143 ${software_inventory_record}= Get Software Inventory State By Version
144 ... ${image_version}
145 ${num_keys}= Get Length ${software_inventory_record}
146
147 Rprint Vars software_inventory_record
148
149 # If no software inventory record was found, there is no existing
150 # firmware for the given version and therefore no action to be taken.
151 Return From Keyword If not ${num_keys}
152
153 # Check if the existing firmware is functional.
154 Pass Execution If ${software_inventory_record['functional']}
155 ... The existing ${image_version} firmware is already functional.
156
157 # If existing firmware is not functional, then set the priority to least.
158 Print Timen The existing ${image_version} firmware is not yet functional.
159 Set BMC Image Priority To Least ${image_version} ${software_inventory_record}
160
161 Pass Execution The existing ${image_version} firmware is now functional.
162
163
164Get Image Priority
165 [Documentation] Get Current Image Priority.
166 [Arguments] ${image_version}
167
168 # Description of argument(s):
George Keishing16b3c7b2021-01-28 09:23:37 -0600169 # image_version The Firmware image version (e.g. 2.8.0-dev-1107-g512028d95).
Sushil Singh87dcee12019-08-07 13:13:13 -0500170
171 ${software_info}= Read Properties
172 ... ${SOFTWARE_VERSION_URI}/enumerate quiet=1
173 # Get only the record associated with our image_version.
174
175 ${software_info}= Filter Struct
176 ... ${software_info} [('Version', '${image_version}')]
177 # Convert from dict to list.
178 ${software_info}= Get Dictionary Values ${software_info}
179
180 [Return] ${software_info[0]['Priority']}
181
182
183Set BMC Image Priority To Least
184 [Documentation] Set BMC image priority to least value.
185 [Arguments] ${image_version} ${software_inventory}
186
187 # Description of argument(s):
George Keishing16b3c7b2021-01-28 09:23:37 -0600188 # image_version The Firmware image version (e.g. 2.8.0-dev-1107-g512028d95).
Sushil Singh87dcee12019-08-07 13:13:13 -0500189 # software_inventory Software inventory details.
190
191 ${least_priority}= Get Least Value Priority Image ${VERSION_PURPOSE_BMC}
192 ${cur_priority}= Get Image Priority ${image_version}
193 Rprint Vars least_priority cur_priority
194
195 Return From Keyword If '${least_priority}' == ${cur_priority}
196 Set Host Software Property
197 ... ${SOFTWARE_VERSION_URI}${software_inventory['image_id']}
198 ... Priority ${least_priority}
199
Sushil Singh87dcee12019-08-07 13:13:13 -0500200 Redfish OBMC Reboot (off)
Sushil Singh87dcee12019-08-07 13:13:13 -0500201
202
Sushil Singhaad1da22021-06-21 04:19:18 -0500203Set Backup Firmware To Functional
204 [Documentation] Set the backup firmware to functional.
205 [Arguments] ${image_version} ${state}
206
207 # Description of argument(s):
208 # image_version Version of image.
209 # state Pre reboot state.
210
211 Print Timen Switch to back up and rebooting.
212 Switch Backup Firmware Image To Functional
213 Wait For Reboot start_boot_seconds=${state['epoch_seconds']}
214 Redfish Verify BMC Version ${IMAGE_FILE_PATH}
215 Pass Execution The backup firmware image ${image_version} is now functional.
216
217
Sushil Singh87dcee12019-08-07 13:13:13 -0500218Redfish Update Firmware
219 [Documentation] Update the BMC firmware via redfish interface.
220
Sushil Singh6624ce52020-01-22 00:53:41 -0600221 ${post_code_update_actions}= Get Post Boot Action
Sushil Singh87dcee12019-08-07 13:13:13 -0500222 ${state}= Get Pre Reboot State
223 Rprint Vars state
Sushil Singh090eedc2019-11-05 02:04:59 -0600224 Run Keyword And Ignore Error Set ApplyTime policy=OnReset
George Keishing2e078ae2022-02-03 09:13:23 -0600225
226 # Python module: get_member_list(resource_path)
227 ${before_inv_list}= redfish_utils.Get Member List /redfish/v1/UpdateService/FirmwareInventory
228 Log To Console Current images on the BMC before upload: ${before_inv_list}
229
230 Log To Console Start uploading image to BMC.
231 Redfish Upload Image /redfish/v1/UpdateService ${IMAGE_FILE_PATH}
232 Log To Console Completed image upload to BMC.
233
234 # Python module: get_member_list(resource_path)
235 ${after_inv_list}= redfish_utils.Get Member List /redfish/v1/UpdateService/FirmwareInventory
236 Log To Console Current images on the BMC after upload: ${after_inv_list}
237
238 ${image_id}= Evaluate set(${after_inv_list}) - set(${before_inv_list})
239 Should Not Be Empty ${image_id}
240 ${image_id}= Evaluate list(${image_id})[0].split('/')[-1]
241 Log To Console Firmware installation in progress with image id:: ${image_id}
242
243 Wait Until Keyword Succeeds ${ACTIVATION_WAIT_TIMEOUT} 10 sec
244 ... Check Image Update Progress State match_state='Enabled' image_id=${image_id}
245
246 # Python module: get_version_tar(tar_file_path)
247 ${tar_version}= code_update_utils.Get Version Tar ${IMAGE_FILE_PATH}
Sushil Singh8f48c8f2020-01-16 04:36:25 -0600248 ${image_info}= Get Software Inventory State By Version ${tar_version}
George Keishing2e078ae2022-02-03 09:13:23 -0600249
Sushil Singh8f48c8f2020-01-16 04:36:25 -0600250 Run Key ${post_code_update_actions['${image_info["image_type"]}']['OnReset']}
251 Redfish.Login
252 Redfish Verify BMC Version ${IMAGE_FILE_PATH}
Sushil Singh87dcee12019-08-07 13:13:13 -0500253