blob: 143d82748bdfed4bc92e5bca468a7e669f849a8d [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
Sushil Singh87dcee12019-08-07 13:13:13 -050039*** Test Cases ***
40
41Redfish BMC Code Update
42 [Documentation] Update the firmware image.
43 [Tags] Redfish_BMC_Code_Update
44
45 ${image_version}= Get Version Tar ${IMAGE_FILE_PATH}
46 Rprint Vars image_version
47
George Keishingfedd5ce2020-07-24 02:25:08 -050048 ${bmc_release_info}= Get BMC Release Info
49 ${functional_version}= Set Variable ${bmc_release_info['version_id']}
50 Rprint Vars functional_version
51
Sushil Singh76650912020-12-10 23:48:05 -060052 ${post_code_update_actions}= Get Post Boot Action
53 ${state}= Get Pre Reboot State
54 Rprint Vars state
55
George Keishing78903952020-07-24 07:04:53 -050056 # Check if the existing firmware is functional.
57 Pass Execution If '${functional_version}' == '${image_version}'
58 ... The existing ${image_version} firmware is already functional.
59
Sushil Singh76650912020-12-10 23:48:05 -060060 ${sw_inv}= Get Functional Firmware BMC image
61 ${nonfunctional_sw_inv}= Get Non Functional Firmware ${sw_inv} False
62
63 # Redfish active software image API.
Sushil Singhaad1da22021-06-21 04:19:18 -050064 Run Keyword If ${num_records} > 0
65 ... Run Keyword If '${nonfunctional_sw_inv['version']}' == '${image_version}'
66 ... Set Backup Firmware To Functional ${image_version} ${state}
Sushil Singh52859242020-10-09 07:28:22 -050067
Sushil Singhaad1da22021-06-21 04:19:18 -050068 Print Timen Performing firmware update ${image_version}.
Sushil Singh52859242020-10-09 07:28:22 -050069
Sushil Singh87dcee12019-08-07 13:13:13 -050070 Redfish Update Firmware
71
Sushil Singh8469a482020-07-30 04:19:10 -050072
73Redfish Firmware Update Loop
74 [Documentation] Update the firmware image in loop.
75 [Tags] Redfish_Firmware_Update_Loop
76 [Template] Redfish Firmware Update In Loop
77
78 ${LOOP_COUNT}
79
80
Sushil Singh87dcee12019-08-07 13:13:13 -050081*** Keywords ***
82
83Suite Setup Execution
84 [Documentation] Do the suite setup.
85
86 Redfish.Login
Sushil Singh87dcee12019-08-07 13:13:13 -050087 # Delete BMC dump and Error logs.
George Keishingc1954452020-10-14 07:44:17 -050088 Run Keyword And Ignore Error Redfish Delete All BMC Dumps
George Keishing2dac8122020-07-24 02:11:47 -050089 Run Keyword And Ignore Error Redfish Purge Event Log
Sushil Singh87dcee12019-08-07 13:13:13 -050090 # Checking for file existence.
91 Valid File Path IMAGE_FILE_PATH
92
Sushil Singh8469a482020-07-30 04:19:10 -050093
94Redfish Firmware Update In Loop
95 [Documentation] Update the firmware in loop.
96 [Arguments] ${update_loop_count}
97
98 # Description of argument(s):
99 # update_loop_count This value is used to run the firmware update in loop.
100
101 ${before_image_state}= Get BMC Functional Firmware
Sushil Singh53c2dde2020-09-18 05:53:20 -0500102 ${temp_update_loop_count}= Evaluate ${update_loop_count} + 1
Sushil Singh8469a482020-07-30 04:19:10 -0500103
Sushil Singh53c2dde2020-09-18 05:53:20 -0500104 FOR ${count} IN RANGE 1 ${temp_update_loop_count}
Sushil Singh8469a482020-07-30 04:19:10 -0500105 Print Timen **************************************
106 Print Timen * The Current Loop Count is ${count} of ${update_loop_count} *
107 Print Timen **************************************
108 Redfish Update Firmware
109 ${sw_inv}= Get Functional Firmware BMC update
Sushil Singhfd481ef2020-10-12 06:51:00 -0500110 ${nonfunctional_sw_inv}= Get Non Functional Firmware ${sw_inv} False
Sushil Singh8469a482020-07-30 04:19:10 -0500111 Run Keyword If ${nonfunctional_sw_inv['functional']} == False
112 ... Set BMC Image Priority To Least ${nonfunctional_sw_inv['version']} ${nonfunctional_sw_inv}
113 Redfish.Login
114 ${sw_inv}= Get Functional Firmware BMC update
Sushil Singhfd481ef2020-10-12 06:51:00 -0500115 ${nonfunctional_sw_inv}= Get Non Functional Firmware ${sw_inv} False
Sushil Singh8469a482020-07-30 04:19:10 -0500116 Delete BMC Image
117 END
118
119 ${after_image_state}= Get BMC Functional Firmware
120 Valid Value before_image_state["version"] ['${after_image_state["version"]}']
121
122
Sushil Singh8469a482020-07-30 04:19:10 -0500123Delete BMC Image
124 [Documentation] Delete a BMC image from the BMC flash chip.
125
126 ${software_object}= Get Non Running BMC Software Object
127 Delete Image And Verify ${software_object} ${VERSION_PURPOSE_BMC}
128
129
Sushil Singh87dcee12019-08-07 13:13:13 -0500130Activate Existing Firmware
George Keishing16b3c7b2021-01-28 09:23:37 -0600131 [Documentation] Set firmware image to lower priority.
Sushil Singh87dcee12019-08-07 13:13:13 -0500132 [Arguments] ${image_version}
133
134 # Description of argument(s):
135 # image_version Version of image.
136
137 ${software_inventory_record}= Get Software Inventory State By Version
138 ... ${image_version}
139 ${num_keys}= Get Length ${software_inventory_record}
140
141 Rprint Vars software_inventory_record
142
143 # If no software inventory record was found, there is no existing
144 # firmware for the given version and therefore no action to be taken.
145 Return From Keyword If not ${num_keys}
146
147 # Check if the existing firmware is functional.
148 Pass Execution If ${software_inventory_record['functional']}
149 ... The existing ${image_version} firmware is already functional.
150
151 # If existing firmware is not functional, then set the priority to least.
152 Print Timen The existing ${image_version} firmware is not yet functional.
153 Set BMC Image Priority To Least ${image_version} ${software_inventory_record}
154
155 Pass Execution The existing ${image_version} firmware is now functional.
156
157
158Get Image Priority
159 [Documentation] Get Current Image Priority.
160 [Arguments] ${image_version}
161
162 # Description of argument(s):
George Keishing16b3c7b2021-01-28 09:23:37 -0600163 # image_version The Firmware image version (e.g. 2.8.0-dev-1107-g512028d95).
Sushil Singh87dcee12019-08-07 13:13:13 -0500164
165 ${software_info}= Read Properties
166 ... ${SOFTWARE_VERSION_URI}/enumerate quiet=1
167 # Get only the record associated with our image_version.
168
169 ${software_info}= Filter Struct
170 ... ${software_info} [('Version', '${image_version}')]
171 # Convert from dict to list.
172 ${software_info}= Get Dictionary Values ${software_info}
173
174 [Return] ${software_info[0]['Priority']}
175
176
177Set BMC Image Priority To Least
178 [Documentation] Set BMC image priority to least value.
179 [Arguments] ${image_version} ${software_inventory}
180
181 # Description of argument(s):
George Keishing16b3c7b2021-01-28 09:23:37 -0600182 # image_version The Firmware image version (e.g. 2.8.0-dev-1107-g512028d95).
Sushil Singh87dcee12019-08-07 13:13:13 -0500183 # software_inventory Software inventory details.
184
185 ${least_priority}= Get Least Value Priority Image ${VERSION_PURPOSE_BMC}
186 ${cur_priority}= Get Image Priority ${image_version}
187 Rprint Vars least_priority cur_priority
188
189 Return From Keyword If '${least_priority}' == ${cur_priority}
190 Set Host Software Property
191 ... ${SOFTWARE_VERSION_URI}${software_inventory['image_id']}
192 ... Priority ${least_priority}
193
Sushil Singh87dcee12019-08-07 13:13:13 -0500194 Redfish OBMC Reboot (off)
Sushil Singh87dcee12019-08-07 13:13:13 -0500195
196
Sushil Singhaad1da22021-06-21 04:19:18 -0500197Set Backup Firmware To Functional
198 [Documentation] Set the backup firmware to functional.
199 [Arguments] ${image_version} ${state}
200
201 # Description of argument(s):
202 # image_version Version of image.
203 # state Pre reboot state.
204
205 Print Timen Switch to back up and rebooting.
206 Switch Backup Firmware Image To Functional
207 Wait For Reboot start_boot_seconds=${state['epoch_seconds']}
208 Redfish Verify BMC Version ${IMAGE_FILE_PATH}
209 Pass Execution The backup firmware image ${image_version} is now functional.
210
211
Sushil Singh87dcee12019-08-07 13:13:13 -0500212Redfish Update Firmware
213 [Documentation] Update the BMC firmware via redfish interface.
214
Sushil Singh6624ce52020-01-22 00:53:41 -0600215 ${post_code_update_actions}= Get Post Boot Action
Sushil Singh87dcee12019-08-07 13:13:13 -0500216 ${state}= Get Pre Reboot State
217 Rprint Vars state
Sushil Singh090eedc2019-11-05 02:04:59 -0600218 Run Keyword And Ignore Error Set ApplyTime policy=OnReset
Sushil Singh6f86f172019-10-30 11:36:25 -0500219 Redfish Upload Image And Check Progress State
Sushil Singh8f48c8f2020-01-16 04:36:25 -0600220 ${tar_version}= Get Version Tar ${IMAGE_FILE_PATH}
221 ${image_info}= Get Software Inventory State By Version ${tar_version}
Sushil Singh8f48c8f2020-01-16 04:36:25 -0600222 Run Key ${post_code_update_actions['${image_info["image_type"]}']['OnReset']}
223 Redfish.Login
224 Redfish Verify BMC Version ${IMAGE_FILE_PATH}
Sushil Singh87dcee12019-08-07 13:13:13 -0500225