blob: 789a71385bdb365190ef527f9160a13a9edc5916 [file] [log] [blame]
George Keishing8b082fd2017-05-03 13:42:39 -05001*** Settings ***
George Keishing8b082fd2017-05-03 13:42:39 -05002
Steven Sombar130a04f2017-07-16 10:02:37 -05003Documentation Stress the system using HTX exerciser.
4
5# Test Parameters:
6# OPENBMC_HOST The BMC host name or IP address.
7# OS_HOST The OS host name or IP Address.
8# OS_USERNAME The OS login userid (usually root).
9# OS_PASSWORD The password for the OS login.
Steven Sombar2c97f812017-10-31 09:55:13 -050010# HTX_DURATION Duration of HTX run, for example, 2h, or 30m.
Steven Sombar130a04f2017-07-16 10:02:37 -050011# HTX_LOOP The number of times to loop HTX.
12# HTX_INTERVAL The time delay between consecutive checks of HTX
Steven Sombar2c97f812017-10-31 09:55:13 -050013# status, for example, 15m.
Steven Sombar130a04f2017-07-16 10:02:37 -050014# In summary: Run HTX for $HTX_DURATION, looping
Steven Sombar0278b132018-01-09 14:41:32 -060015# $HTX_LOOP times checking for errors every
16# $HTX_INTERVAL. Then allow extra time for OS
17# Boot, HTX startup, shutdown.
Steven Sombar130a04f2017-07-16 10:02:37 -050018# HTX_KEEP_RUNNING If set to 1, this indicates that the HTX is to
Steven Sombar2c97f812017-10-31 09:55:13 -050019# continue running after an error was found.
Steven Sombara2f166c2017-08-02 14:22:45 -050020# CHECK_INVENTORY If set to 0 or False, OS inventory checking before
21# and after each HTX run will be disabled. This
Steven Sombar2c97f812017-10-31 09:55:13 -050022# parameter is optional. The default value is True.
Steven Sombara2f166c2017-08-02 14:22:45 -050023# PREV_INV_FILE_PATH The file path and name of an initial previous
24# inventory snapshot file in JSON format. Inventory
25# snapshots taken before and after each HTX run will
26# be compared to this file.
Steven Sombar2c97f812017-10-31 09:55:13 -050027# This parameter is optional. If not specified an
Steven Sombara2f166c2017-08-02 14:22:45 -050028# initial inventory snapshot will be taken before
29# HTX startup.
Steven Sombarb6749a62017-10-06 08:34:23 -050030# INV_IGNORE_LIST A comma-delimited list of strings that
Steven Sombar48ad01d2017-08-17 14:17:37 -050031# indicate what to ignore if there are inventory
Steven Sombarb6749a62017-10-06 08:34:23 -050032# differences, (e.g., processor "size").
Steven Sombar48ad01d2017-08-17 14:17:37 -050033# If differences are found during inventory checking
Steven Sombarb6749a62017-10-06 08:34:23 -050034# and those items are in this list, the
Steven Sombar48ad01d2017-08-17 14:17:37 -050035# differences will be ignored. This parameter is
36# optional. If not specified the default value is
Steven Sombarb6749a62017-10-06 08:34:23 -050037# "size".
Steven Sombar130a04f2017-07-16 10:02:37 -050038
39Resource ../syslib/utils_os.robot
George Keishingdc1691d2017-12-07 12:17:46 -060040Resource ../lib/openbmc_ffdc_utils.robot
Steven Sombar3ecb6892018-03-23 11:41:08 -050041Resource ../lib/logging_utils.robot
George Keishing559f8382018-10-28 02:17:49 -050042Resource ../lib/code_update_utils.robot
Steven Sombar3839c8c2019-09-09 14:39:45 -050043Resource ../lib/esel_utils.robot
Peter D Phan4a8b3bb2022-03-08 10:32:08 -060044Resource ../syslib/resource.robot
Steven Sombar130a04f2017-07-16 10:02:37 -050045Library ../syslib/utils_keywords.py
Steven Sombarb6749a62017-10-06 08:34:23 -050046Library ../lib/utils_files.py
Steven Sombar3ecb6892018-03-23 11:41:08 -050047Library ../lib/logging_utils.py
Steven Sombare0be9152018-08-08 08:22:53 -050048Library ../syslib/utils_os.py
George Keishingffbe8ce2017-05-04 12:08:54 -050049
Steven Sombar16dba512017-10-20 07:20:08 -050050Suite Setup Run Keyword Start SOL Console Logging
George Keishingdc1691d2017-12-07 12:17:46 -060051Test Setup Test Setup Execution
52Test Teardown Test Teardown Execution
George Keishing8b082fd2017-05-03 13:42:39 -050053
Steven Sombar6f9d41d2017-08-08 13:35:30 -050054
George Keishing8b082fd2017-05-03 13:42:39 -050055*** Variables ****
56
Steven Sombar130a04f2017-07-16 10:02:37 -050057${stack_mode} skip
Steven Sombar6f9d41d2017-08-08 13:35:30 -050058${json_initial_file_path} ${EXECDIR}/os_inventory_initial.json
59${json_final_file_path} ${EXECDIR}/os_inventory_final.json
60${json_diff_file_path} ${EXECDIR}/os_inventory_diff.json
Steven Sombara2f166c2017-08-02 14:22:45 -050061${CHECK_INVENTORY} True
Steven Sombarb6749a62017-10-06 08:34:23 -050062${INV_IGNORE_LIST} size
Steven Sombar2c97f812017-10-31 09:55:13 -050063${PREV_INV_FILE_PATH} NONE
George Keishingffbe8ce2017-05-04 12:08:54 -050064
Steven Sombar377a2cd2019-04-09 11:42:56 -050065${rest_keyword} REST
66
Steven Sombar3839c8c2019-09-09 14:39:45 -050067# Error log Severities to ignore when checking Error Logs.
George Keishing178d9bf2020-07-09 08:29:29 -050068@{ESEL_IGNORE_LIST}
Steven Sombard6365f12019-04-02 09:38:29 -050069... xyz.openbmc_project.Logging.Entry.Level.Informational
70
Steven Sombar6f9d41d2017-08-08 13:35:30 -050071
Steven Sombar3839c8c2019-09-09 14:39:45 -050072
George Keishing8b082fd2017-05-03 13:42:39 -050073*** Test Cases ***
74
75Hard Bootme Test
76 [Documentation] Stress the system using HTX exerciser.
George Keishingffbe8ce2017-05-04 12:08:54 -050077 [Tags] Hard_Bootme_Test
George Keishing8b082fd2017-05-03 13:42:39 -050078
Michael Walshc108e422019-03-28 12:27:18 -050079 Printn
Michael Walsh0d5f96a2019-05-20 10:09:57 -050080 Rprint Vars HTX_DURATION HTX_LOOP HTX_INTERVAL CHECK_INVENTORY
Steven Sombar2c97f812017-10-31 09:55:13 -050081 ... INV_IGNORE_LIST PREV_INV_FILE_PATH
Steven Sombar48ad01d2017-08-17 14:17:37 -050082
Steven Sombar2c97f812017-10-31 09:55:13 -050083 Run Keyword If '${PREV_INV_FILE_PATH}' != 'NONE'
84 ... OperatingSystem.File Should Exist ${PREV_INV_FILE_PATH}
Steven Sombar48ad01d2017-08-17 14:17:37 -050085
Steven Sombar2c97f812017-10-31 09:55:13 -050086 Set Suite Variable ${PREV_INV_FILE_PATH} children=true
Steven Sombar48ad01d2017-08-17 14:17:37 -050087 Set Suite Variable ${INV_IGNORE_LIST} children=true
Steven Sombar2c97f812017-10-31 09:55:13 -050088
89 # Set up the iteration (loop) counter.
Steven Sombar16dba512017-10-20 07:20:08 -050090 Set Suite Variable ${iteration} ${0} children=true
Steven Sombar130a04f2017-07-16 10:02:37 -050091
Steven Sombar2c97f812017-10-31 09:55:13 -050092 # Estimate the time required for a single iteration loop.
93 # HTX_DURATION + 10 minutes for OS boot, HTX startup, shutdown.
94 ${loop_body_seconds}= Add Time To Time ${HTX_DURATION} 10m
95 Set Suite Variable ${loop_body_seconds} children=true
96 # And save it in printable (compact) format.
97 ${estimated_loop_time}= Convert Time
98 ... ${loop_body_seconds} result_format=compact
99 Set Suite Variable ${estimated_loop_time} children=true
100
101 # Estimated time remaining = loop_body_seconds * HTX_LOOP + 5m
102 ${est_seconds_left}= Evaluate ${loop_body_seconds}*${HTX_LOOP}+(5*60)
103 Set Suite Variable ${est_seconds_left} children=true
104
Steven Sombar130a04f2017-07-16 10:02:37 -0500105 Repeat Keyword ${HTX_LOOP} times Run HTX Exerciser
George Keishingffbe8ce2017-05-04 12:08:54 -0500106
107
108*** Keywords ***
109
Steven Sombar16dba512017-10-20 07:20:08 -0500110
Steven Sombar130a04f2017-07-16 10:02:37 -0500111Run HTX Exerciser
112 [Documentation] Run HTX exerciser.
George Keishingffbe8ce2017-05-04 12:08:54 -0500113 # Test Flow:
Steven Sombar130a04f2017-07-16 10:02:37 -0500114 # - Power on.
115 # - Establish SSH connection session.
116 # - Do inventory collection, compare with
117 # previous inventory run if applicable.
118 # - Create HTX mdt profile.
119 # - Run HTX exerciser.
120 # - Check HTX status for errors.
121 # - Do inventory collection, compare with
122 # previous inventory run.
123 # - Power off.
George Keishingffbe8ce2017-05-04 12:08:54 -0500124
Steven Sombar16dba512017-10-20 07:20:08 -0500125 Set Suite Variable ${iteration} ${iteration + 1}
126 ${loop_count}= Catenate Starting iteration: ${iteration}
Steven Sombar2c97f812017-10-31 09:55:13 -0500127 ${estimated_time_remaining}= Convert Time
128 ... ${est_seconds_left} result_format=compact
Michael Walshc108e422019-03-28 12:27:18 -0500129 Printn
Michael Walsh0d5f96a2019-05-20 10:09:57 -0500130 Rprint Vars loop_count estimated_loop_time estimated_time_remaining
Steven Sombar16dba512017-10-20 07:20:08 -0500131
Steven Sombar377a2cd2019-04-09 11:42:56 -0500132 Run Keyword ${rest_keyword} Power On stack_mode=skip
Steven Sombar1ddc7c62018-06-01 11:55:34 -0500133 Run Key U Sleep \ 15s
George Keishingffbe8ce2017-05-04 12:08:54 -0500134
135 # Post Power off and on, the OS SSH session needs to be established.
George Keishing8b082fd2017-05-03 13:42:39 -0500136 Login To OS
137
Steven Sombara2f166c2017-08-02 14:22:45 -0500138 Run Keyword If '${CHECK_INVENTORY}' == 'True'
Steven Sombar130a04f2017-07-16 10:02:37 -0500139 ... Do Inventory And Compare ${json_initial_file_path}
Steven Sombar2c97f812017-10-31 09:55:13 -0500140 ... ${PREV_INV_FILE_PATH}
Steven Sombar130a04f2017-07-16 10:02:37 -0500141
George Keishing13f44e52017-05-12 15:28:12 -0500142 Run Keyword If '${HTX_MDT_PROFILE}' == 'mdt.bu'
143 ... Create Default MDT Profile
George Keishing8b082fd2017-05-03 13:42:39 -0500144
George Keishing13f44e52017-05-12 15:28:12 -0500145 Run MDT Profile
George Keishing8b082fd2017-05-03 13:42:39 -0500146
147 Loop HTX Health Check
148
George Keishingffbe8ce2017-05-04 12:08:54 -0500149 Shutdown HTX Exerciser
150
Steven Sombara2f166c2017-08-02 14:22:45 -0500151 Run Keyword If '${CHECK_INVENTORY}' == 'True'
Steven Sombar130a04f2017-07-16 10:02:37 -0500152 ... Do Inventory And Compare ${json_final_file_path}
Steven Sombar2c97f812017-10-31 09:55:13 -0500153 ... ${PREV_INV_FILE_PATH}
Steven Sombar130a04f2017-07-16 10:02:37 -0500154
Steven Sombar377a2cd2019-04-09 11:42:56 -0500155 Run Keyword ${rest_keyword} Power Off
George Keishingffbe8ce2017-05-04 12:08:54 -0500156
George Keishingae5d9782017-06-12 13:35:59 -0500157 # Close all SSH and REST active sessions.
158 Close All Connections
159 Flush REST Sessions
160
Michael Walshc108e422019-03-28 12:27:18 -0500161 Print Timen HTX Test ran for: ${HTX_DURATION}
George Keishing8b082fd2017-05-03 13:42:39 -0500162
Steven Sombar16dba512017-10-20 07:20:08 -0500163 ${loop_count}= Catenate Ending iteration: ${iteration}
Steven Sombar2c97f812017-10-31 09:55:13 -0500164
165 ${est_seconds_left}= Evaluate ${est_seconds_left}-${loop_body_seconds}
166 Set Suite Variable ${est_seconds_left} children=true
167 ${estimated_time_remaining}= Convert Time
168 ... ${est_seconds_left} result_format=compact
169
Michael Walsh0d5f96a2019-05-20 10:09:57 -0500170 Rprint Vars loop_count estimated_time_remaining
Steven Sombar16dba512017-10-20 07:20:08 -0500171
George Keishing13f44e52017-05-12 15:28:12 -0500172
Steven Sombara2f166c2017-08-02 14:22:45 -0500173Do Inventory And Compare
Steven Sombar130a04f2017-07-16 10:02:37 -0500174 [Documentation] Do inventory and compare.
Steven Sombar2c97f812017-10-31 09:55:13 -0500175 [Arguments] ${inventory_file_path} ${PREV_INV_FILE_PATH}
Steven Sombar130a04f2017-07-16 10:02:37 -0500176 # Description of argument(s):
Steven Sombar2c97f812017-10-31 09:55:13 -0500177 # inventory_file_path The file to receive the inventory snapshot.
178 # PREV_INV_FILE_PATH The previous inventory to compare with.
Steven Sombar130a04f2017-07-16 10:02:37 -0500179
180 Create JSON Inventory File ${inventory_file_path}
Steven Sombar2c97f812017-10-31 09:55:13 -0500181 Run Keyword If '${PREV_INV_FILE_PATH}' != 'NONE'
Steven Sombar130a04f2017-07-16 10:02:37 -0500182 ... Compare Json Inventory Files ${inventory_file_path}
Steven Sombar2c97f812017-10-31 09:55:13 -0500183 ... ${PREV_INV_FILE_PATH}
184 ${PREV_INV_FILE_PATH}= Set Variable ${inventory_file_path}
185 Set Suite Variable ${PREV_INV_FILE_PATH} children=true
Steven Sombar130a04f2017-07-16 10:02:37 -0500186
187
188Compare Json Inventory Files
189 [Documentation] Compare JSON inventory files.
190 [Arguments] ${file1} ${file2}
191 # Description of argument(s):
192 # file1 A file that has an inventory snapshot in JSON format.
193 # file2 A file that has an inventory snapshot, to compare with file1.
194
Steven Sombarb6749a62017-10-06 08:34:23 -0500195 ${diff_rc}= File_Diff ${file1}
Steven Sombar48ad01d2017-08-17 14:17:37 -0500196 ... ${file2} ${json_diff_file_path} ${INV_IGNORE_LIST}
Steven Sombar130a04f2017-07-16 10:02:37 -0500197 Run Keyword If '${diff_rc}' != '${0}'
198 ... Report Inventory Mismatch ${diff_rc} ${json_diff_file_path}
Michael Walshc108e422019-03-28 12:27:18 -0500199 ... ELSE Print Timen Inventoy check: No differences found.
Steven Sombar130a04f2017-07-16 10:02:37 -0500200
201
202Report Inventory Mismatch
203 [Documentation] Report inventory mismatch.
204 [Arguments] ${diff_rc} ${json_diff_file_path}
205 # Description of argument(s):
206 # diff_rc The failing return code from the difference check.
207 # json_diff_file_path The file that has the latest inventory snapshot.
208
Steven Sombara2216d22017-08-09 12:18:00 -0500209 Log To Console Significant difference in inventory found, rc=${diff_rc}
210 Log To Console Differences are listed in file: no_newline=true
211 Log To Console ${json_diff_file_path}
212 Log To Console File Contents:
213 Wait Until Created ${json_diff_file_path}
214 ${file_contents}= OperatingSystem.Get File ${json_diff_file_path}
215 Log ${file_contents} level=WARN
216 Fail Significant difference in inventory found, rc=${diff_rc}
Steven Sombar130a04f2017-07-16 10:02:37 -0500217
218
George Keishing8b082fd2017-05-03 13:42:39 -0500219Loop HTX Health Check
George Keishingffbe8ce2017-05-04 12:08:54 -0500220 [Documentation] Run until HTX exerciser fails.
George Keishing8b082fd2017-05-03 13:42:39 -0500221 Repeat Keyword ${HTX_DURATION}
222 ... Run Keywords Check HTX Run Status
George Keishing178d9bf2020-07-09 08:29:29 -0500223 ... AND Check For Error Logs ${ESEL_IGNORE_LIST}
George Keishing8b082fd2017-05-03 13:42:39 -0500224 ... AND Sleep ${HTX_INTERVAL}
225
226
Steven Sombar0278b132018-01-09 14:41:32 -0600227Test Setup Execution
228 [Documentation] Do the initial test setup.
229
Steven Sombarac687c42018-08-09 13:39:36 -0500230 ${bmc_version} ${stderr} ${rc}= BMC Execute Command
231 ... cat /etc/os-release
Michael Walshc108e422019-03-28 12:27:18 -0500232 Printn
Michael Walsh0d5f96a2019-05-20 10:09:57 -0500233 Rprint Vars bmc_version
Steven Sombare0be9152018-08-08 08:22:53 -0500234
George Keishing1ad128c2021-10-28 09:38:37 -0500235 ${fw_version}= Get BMC Version
236 Rprint Vars fw_version
Steven Sombare0be9152018-08-08 08:22:53 -0500237
Steven Sombar377a2cd2019-04-09 11:42:56 -0500238 ${is_redfish}= Run Keyword And Return Status Redfish.Login
239 ${rest_keyword}= Set Variable If ${is_redfish} Redfish REST
240 Rprint Vars rest_keyword
241 Set Suite Variable ${rest_keyword} children=true
242
243 Run Keyword ${rest_keyword} Power On stack_mode=skip
244
Steven Sombar1ddc7c62018-06-01 11:55:34 -0500245 Run Key U Sleep \ 15s
George Keishing1ad128c2021-10-28 09:38:37 -0500246 Run Keyword And Ignore Error Delete All Error Logs
247 Run Keyword And Ignore Error Redfish Purge Event Log
Steven Sombar0278b132018-01-09 14:41:32 -0600248 Tool Exist htxcmdline
249
George Keishing1ad128c2021-10-28 09:38:37 -0500250 ${os_release_info}= utils_os.Get OS Release Info uname
Michael Walsh0d5f96a2019-05-20 10:09:57 -0500251 Rprint Vars os_release_info fmt=1
Steven Sombarac687c42018-08-09 13:39:36 -0500252
Steven Sombar0278b132018-01-09 14:41:32 -0600253 # Shutdown if HTX is running.
Steven Sombar3ecb6892018-03-23 11:41:08 -0500254 ${status}= Is HTX Running
Steven Sombar0278b132018-01-09 14:41:32 -0600255 Run Keyword If '${status}' == 'True'
256 ... Shutdown HTX Exerciser
257
258
George Keishingdc1691d2017-12-07 12:17:46 -0600259Test Teardown Execution
Steven Sombare0be9152018-08-08 08:22:53 -0500260 [Documentation] Do the post-test teardown.
George Keishingffbe8ce2017-05-04 12:08:54 -0500261
George Keishing1a23b692017-05-06 12:19:41 -0500262 # Keep HTX running if user set HTX_KEEP_RUNNING to 1.
Steven Sombar130a04f2017-07-16 10:02:37 -0500263 Run Keyword If
264 ... '${TEST_STATUS}' == 'FAIL' and ${HTX_KEEP_RUNNING} == ${0}
George Keishingffbe8ce2017-05-04 12:08:54 -0500265 ... Shutdown HTX Exerciser
266
George Keishingae5d9782017-06-12 13:35:59 -0500267 ${keyword_buf}= Catenate Stop SOL Console Logging
268 ... \ targ_file_path=${EXECDIR}${/}logs${/}SOL.log
269 Run Key ${keyword_buf}
270
George Keishingffbe8ce2017-05-04 12:08:54 -0500271 FFDC On Test Case Fail
272 Close All Connections