blob: b82ae13f22af47106e5bda5bf1e0ea3fc2708c0c [file] [log] [blame]
George Keishing5e870cd2016-08-24 10:05:47 -05001*** Settings ***
2Documentation Trigger code update to a target BMC.
3... Execution Method :
4... python -m robot -v OPENBMC_HOST:<hostname>
5... -v FILE_PATH:<path/*all.tar> update_bmc.robot
6...
7... Code update method BMC using REST
8... Update work flow sequence:
9... - User input BMC File existence check
10... - Ping Test and REST authentication
George Keishing8db0e1b2016-10-20 13:46:54 -050011... - Set Host Power host setting Policy to RESTORE_LAST_STATE
12... On reboot this policy would ensure the BMC comes
13... online and stays at HOST_POWERED_OFF state.
George Keishingdc5aa58e92016-09-27 01:35:11 -050014... - Issue poweroff
George Keishing0bd59f12016-12-14 10:39:21 -060015... - Prune archived journal logs
George Keishingdc5aa58e92016-09-27 01:35:11 -050016... - Prepare for Update
George Keishingdc5aa58e92016-09-27 01:35:11 -050017... - Wait for BMC to come online clean
George Keishing1b150202016-09-29 08:51:58 -050018... - Wait for BMC_READY state
George Keishing5e870cd2016-08-24 10:05:47 -050019... - Apply preserve BMC Network setting
20... - SCP image to BMC
21... - Activate the flash image
22... - Warm Reset BMC to activate code
23... - Wait for BMC to come online time out 30 minutes
24... - Version check post update
Rahul Maheshwari724e5912017-04-20 06:04:37 -050025... - Identify REST url post update
George Keishing5e870cd2016-08-24 10:05:47 -050026
Michael Walsh5ce98052017-04-12 16:40:31 -050027Library ../../lib/gen_robot_keyword.py
28Library String
Sweta Potthuri3a8ae262017-03-10 00:02:09 -060029
Michael Walsh5ce98052017-04-12 16:40:31 -050030Resource code_update_utils.robot
31Resource ../../lib/boot/boot_resource_master.robot
32Resource ../../lib/state_manager.robot
33Resource ../../lib/utils.robot
Rahul Maheshwari724e5912017-04-20 06:04:37 -050034Resource ../../lib/list_utils.robot
Michael Walsh5ce98052017-04-12 16:40:31 -050035Resource ../../lib/openbmc_ffdc.robot
36Resource ../../extended/obmc_boot_test_resource.robot
37
38Test Teardown Run Key FFDC On Test Case Fail
George Keishing5e870cd2016-08-24 10:05:47 -050039
40*** Variables ***
41
Michael Walsh5ce98052017-04-12 16:40:31 -050042${QUIET} ${1}
43# Boot failures are not acceptable so we set the threshold to 0.
44${boot_fail_threshold} ${0}
45
46${FILE_PATH} ${EMPTY}
47${FORCE_UPDATE} ${0}
Rahul Maheshwari724e5912017-04-20 06:04:37 -050048${REST_URL_FILE_PATH} ${EMPTY}
George Keishing80dd5af2017-02-08 07:01:25 -060049
50# There are two reboots issued by code update.
Michael Walsh5ce98052017-04-12 16:40:31 -050051${MAX_BOOT_COUNT} ${2}
George Keishing5e870cd2016-08-24 10:05:47 -050052
Gunnar Mills7c8923f2016-12-12 21:19:52 -060053*** Test Cases ***
George Keishing5e870cd2016-08-24 10:05:47 -050054
Sivas SRRaca55712016-12-21 04:32:35 -060055Test Basic BMC Performance Before Code Update
56 [Documentation] Check performance of memory, CPU & file system of BMC.
57 [Tags] Test_Basic_BMC_Performance_Before_Code_Update
58 Open Connection And Log In
59 Check BMC CPU Performance
60 Check BMC Mem Performance
61 Check BMC File System Performance
62
Sivas SRR01262bd2017-03-19 10:00:23 -050063Check Core Dump Exist Before Code Update
64 [Documentation] Check core dump existence on BMC before code update.
65 [Tags] Check_Core_Dump_Exist_Before_Code_Update
66 Check For Core Dumps
67
Rahul Maheshwari724e5912017-04-20 06:04:37 -050068Check URLs Before Code Update
69 [Documentation] Check available URLs before code update.
70 [Tags] Check_URLs_Before_Code_Update
Rahul Maheshwari13256d92017-06-15 10:05:40 -050071
Rahul Maheshwari724e5912017-04-20 06:04:37 -050072 ${url_list}= Get URL List ${OPENBMC_BASE_URI}
73 Set Global Variable ${URL_BEFORE_CU} ${url_list}
74
Rahul Maheshwari13256d92017-06-15 10:05:40 -050075 ${bmc_version}= Get BMC Version
76 Set Suite Variable ${bmc_version_before} ${bmc_version}
77
Sivas SRRaca55712016-12-21 04:32:35 -060078Initiate Code Update BMC
Michael Walsh5ce98052017-04-12 16:40:31 -050079 [Documentation] Initiate a code update on the BMC.
Sivas SRRaca55712016-12-21 04:32:35 -060080 [Tags] Initiate_Code_Update_BMC
George Keishing5e870cd2016-08-24 10:05:47 -050081
George Keishing830211e2017-07-19 08:44:07 -050082 ${status}= Run Keyword If '${LAST_KNOWN_GOOD_VERSION}' != '${EMPTY}'
83 ... Run Keyword And Return Status
84 ... Validate BMC Version ${LAST_KNOWN_GOOD_VERSION}
George Keishingfb10f492017-03-07 21:34:18 -060085
George Keishing830211e2017-07-19 08:44:07 -050086 Run Keyword if '${status}' == '${True}'
87 ... Pass Execution The BMC already has the requested build loaded so no further action will be taken.
George Keishing50787fc2016-09-21 03:44:26 -050088
George Keishing5e785822017-04-04 10:15:50 -050089 # Enable user to bypass prerequisite operations.
90 # Use cases for if BMC is not in working state.
91 Run Keyword If ${FORCE_UPDATE} == ${0}
92 ... Prepare BMC For Update
George Keishing2582bee2016-11-17 21:41:49 -060093
Michael Walsh5ce98052017-04-12 16:40:31 -050094 Run Key U Preserve BMC Network Setting
95 Run Key SCP Tar Image File To BMC \ ${FILE_PATH}
96 Run Key Activate BMC Flash Image
97 Run Key U OBMC Boot Test \ OBMC Reboot (off)
98 Run Key U Check Boot Count And Time
George Keishing80dd5af2017-02-08 07:01:25 -060099 Run Keyword If ${BOOT_COUNT} == ${1}
Michael Walsh5ce98052017-04-12 16:40:31 -0500100 ... Log Boot time not updated by kernel. level=WARN
Sivas SRRea85d1f2016-11-13 22:44:28 -0600101
George Keishinga126e212017-03-24 08:07:17 -0500102Install BMC Debug Tarball
103 [Documentation] Install the downloaded debug tarball on BMC.
104 [Tags] Install_BMC_Debug_Tarball
105 Run Keyword If '${DEBUG_TARBALL_PATH}' != '${EMPTY}'
106 ... Install Debug Tarball On BMC ${DEBUG_TARBALL_PATH}
107
Rahul Maheshwari724e5912017-04-20 06:04:37 -0500108Compare URLs Before And After Code Update
109 [Documentation] Compare URLs before and after code update.
110 [Tags] Compare_URLs_Before_And_After_Code_Update
111
Rahul Maheshwari13256d92017-06-15 10:05:40 -0500112 ${bmc_version}= Get BMC Version
113 Set Suite Variable ${bmc_version_after} ${bmc_version}
114
115 # Exit test for same firmware version.
116 Pass Execution If '${bmc_version_before}' == '${bmc_version_after}'
117 ... Same BMC firmware version found
118
Rahul Maheshwari724e5912017-04-20 06:04:37 -0500119 ${url_after_cu}= Get URL List ${OPENBMC_BASE_URI}
120 Compare URL List After Code Update ${URL_BEFORE_CU} ${url_after_cu}
George Keishinga126e212017-03-24 08:07:17 -0500121
Sivas SRRaca55712016-12-21 04:32:35 -0600122Test Basic BMC Performance At Ready State
123 [Documentation] Check performance of memory, CPU & file system of BMC.
124 [Tags] Test_Basic_BMC_Performance_At_Ready_State
George Keishing128643a2016-12-15 11:36:46 -0600125 Open Connection And Log In
Sivas SRRea85d1f2016-11-13 22:44:28 -0600126 Check BMC CPU Performance
127 Check BMC Mem Performance
Sivas SRRaca55712016-12-21 04:32:35 -0600128 Check BMC File System Performance
129
Sivas SRR01262bd2017-03-19 10:00:23 -0500130Check Core Dump Exist After Code Update
131 [Documentation] Check core dump existence on BMC after code update.
132 [Tags] Check_Core_Dump_Exist_After_Code_Update
133 Check For Core Dumps
134
135Enable Core Dump File Size To Be Unlimited
136 [Documentation] Set core dump file size to unlimited.
137 [Tags] Enable_Core_Dump_File_size_To_Be_unlimited
138 Set Core Dump File Size Unlimited
139
George Keishing80dd5af2017-02-08 07:01:25 -0600140*** Keywords ***
141
George Keishing5e785822017-04-04 10:15:50 -0500142Prepare BMC For Update
143 [Documentation] Prerequisite operation before code update.
144 Check Boot Count And Time
145 Prune Journal Log
146 Power Off Request
147 Set Policy Setting RESTORE_LAST_STATE
148 Prepare For Update
149 Check If BMC is Up 20 min 10 sec
150 Check Boot Count And Time
151
152 # Temporary fix for lab migration for driver which is booted with
153 # BMC state "/xyz/openbmc_project/state/BMC0/".
154 ${status}= Run Keyword And Return Status Temp BMC URI Check
155 Run Keyword If '${status}' == '${False}'
156 ... Wait For BMC Ready
157 ... ELSE Wait For Temp BMC Ready
158
George Keishing80dd5af2017-02-08 07:01:25 -0600159Check Boot Count And Time
160 [Documentation] Check for unexpected reboots.
161 Set BMC Reset Reference Time
162 Log To Console \n Boot Count: ${BOOT_COUNT}
163 Log To Console \n Boot Time: ${BOOT_TIME}
164 Run Keyword If ${BOOT_COUNT} > ${MAX_BOOT_COUNT}
165 ... Log Phantom Reboot!!! Unexpected reboot detected level=WARN
166
George Keishing3cb1ade2017-03-23 09:03:06 -0500167Temp BMC URI Check
168 [Documentation] Check for transient "BMC0" interface.
169 ${resp}= Openbmc Get Request /xyz/openbmc_project/state/BMC0/
170 Should Be Equal As Strings ${resp.status_code} ${HTTP_OK}
171
172Check Temp BMC State
173 [Documentation] BMC state should be "Ready".
174 # quiet - Suppress REST output logging to console.
175 ${state}=
176 ... Read Attribute /xyz/openbmc_project/state/BMC0/ CurrentBMCState
177 Should Be Equal Ready ${state.rsplit('.', 1)[1]}
178
179Wait For Temp BMC Ready
180 [Documentation] Check for BMC "Ready" until timedout.
181 Wait Until Keyword Succeeds
182 ... 10 min 10 sec Check Temp BMC State
183
Rahul Maheshwari724e5912017-04-20 06:04:37 -0500184Compare URL List After Code Update
185 [Documentation] Compare URL list before and after code update.
186 [Arguments] ${url_before_cu} ${url_after_cu}
187 # Description of arguments:
188 # url_before_cu List of URLs available before code update.
189 # url_after_cu List of URLs available after code update.
190
191 ${url_removed_list}= Subtract Lists ${url_before_cu} ${url_after_cu}
192 ${url_added_list}= Subtract Lists ${url_after_cu} ${url_before_cu}
193 Log ${url_removed_list}
194 Log ${url_added_list}
195
196 Return From Keyword If '${REST_URL_FILE_PATH}' == '${EMPTY}'
197
Rahul Maheshwari13256d92017-06-15 10:05:40 -0500198 # Create file with BMC firmware version before and after code update.
199 # i.e. <Before_Version>--<After_Version>
200 # Example v1.99.6-141-ge662190--v1.99.6-141-ge664242
201
202 ${file_name}= Catenate SEPARATOR=--
203 ... ${bmc_version_before} ${bmc_version_after}
204 ${REST_URL_FILE}= Catenate ${REST_URL_FILE_PATH}/${file_name}
205 Create File ${REST_URL_FILE} URL Removed${\n}
206
Rahul Maheshwari724e5912017-04-20 06:04:37 -0500207 Return From Keyword If
208 ... ${url_removed_list} == [] and ${url_added_list} == []
209
Rahul Maheshwari13256d92017-06-15 10:05:40 -0500210 Create File ${REST_URL_FILE} URL Removed${\n}
211 Append To File ${REST_URL_FILE} [${url_removed_list}]
212 Append To File ${REST_URL_FILE} ${\n}URL Added${\n}
213 Append To File ${REST_URL_FILE} [${url_added_list}]