1*** Settings *** 2 3Documentation 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. 10# HTX_DURATION Duration of HTX run, for example, 2h, or 30m. 11# HTX_LOOP The number of times to loop HTX. 12# HTX_INTERVAL The time delay between consecutive checks of HTX 13# status, for example, 15m. 14# In summary: Run HTX for $HTX_DURATION, looping 15# $HTX_LOOP times checking for errors every 16# $HTX_INTERVAL. Then allow extra time for OS 17# Boot, HTX startup, shutdown. 18# HTX_KEEP_RUNNING If set to 1, this indicates that the HTX is to 19# continue running after an error was found. 20# CHECK_INVENTORY If set to 0 or False, OS inventory checking before 21# and after each HTX run will be disabled. This 22# parameter is optional. The default value is True. 23# 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. 27# This parameter is optional. If not specified an 28# initial inventory snapshot will be taken before 29# HTX startup. 30# INV_IGNORE_LIST A comma-delimited list of strings that 31# indicate what to ignore if there are inventory 32# differences, (e.g., processor "size"). 33# If differences are found during inventory checking 34# and those items are in this list, the 35# differences will be ignored. This parameter is 36# optional. If not specified the default value is 37# "size". 38 39Resource ../syslib/utils_os.robot 40Resource ../lib/openbmc_ffdc_utils.robot 41Library ../syslib/utils_keywords.py 42Library ../lib/utils_files.py 43 44Suite Setup Run Keyword Start SOL Console Logging 45Test Setup Test Setup Execution 46Test Teardown Test Teardown Execution 47 48 49*** Variables **** 50 51${stack_mode} skip 52${json_initial_file_path} ${EXECDIR}/os_inventory_initial.json 53${json_final_file_path} ${EXECDIR}/os_inventory_final.json 54${json_diff_file_path} ${EXECDIR}/os_inventory_diff.json 55${CHECK_INVENTORY} True 56${INV_IGNORE_LIST} size 57${PREV_INV_FILE_PATH} NONE 58 59 60*** Test Cases *** 61 62Hard Bootme Test 63 [Documentation] Stress the system using HTX exerciser. 64 [Tags] Hard_Bootme_Test 65 66 Rprintn 67 Rpvars HTX_DURATION HTX_LOOP HTX_INTERVAL CHECK_INVENTORY 68 ... INV_IGNORE_LIST PREV_INV_FILE_PATH 69 70 Run Keyword If '${PREV_INV_FILE_PATH}' != 'NONE' 71 ... OperatingSystem.File Should Exist ${PREV_INV_FILE_PATH} 72 73 Set Suite Variable ${PREV_INV_FILE_PATH} children=true 74 Set Suite Variable ${INV_IGNORE_LIST} children=true 75 76 # Set up the iteration (loop) counter. 77 Set Suite Variable ${iteration} ${0} children=true 78 79 # Estimate the time required for a single iteration loop. 80 # HTX_DURATION + 10 minutes for OS boot, HTX startup, shutdown. 81 ${loop_body_seconds}= Add Time To Time ${HTX_DURATION} 10m 82 Set Suite Variable ${loop_body_seconds} children=true 83 # And save it in printable (compact) format. 84 ${estimated_loop_time}= Convert Time 85 ... ${loop_body_seconds} result_format=compact 86 Set Suite Variable ${estimated_loop_time} children=true 87 88 # Estimated time remaining = loop_body_seconds * HTX_LOOP + 5m 89 ${est_seconds_left}= Evaluate ${loop_body_seconds}*${HTX_LOOP}+(5*60) 90 Set Suite Variable ${est_seconds_left} children=true 91 92 Repeat Keyword ${HTX_LOOP} times Run HTX Exerciser 93 94 95*** Keywords *** 96 97 98Run HTX Exerciser 99 [Documentation] Run HTX exerciser. 100 # Test Flow: 101 # - Power on. 102 # - Establish SSH connection session. 103 # - Do inventory collection, compare with 104 # previous inventory run if applicable. 105 # - Create HTX mdt profile. 106 # - Run HTX exerciser. 107 # - Check HTX status for errors. 108 # - Do inventory collection, compare with 109 # previous inventory run. 110 # - Power off. 111 112 Set Suite Variable ${iteration} ${iteration + 1} 113 ${loop_count}= Catenate Starting iteration: ${iteration} 114 ${estimated_time_remaining}= Convert Time 115 ... ${est_seconds_left} result_format=compact 116 Rprintn 117 Rpvars loop_count estimated_loop_time estimated_time_remaining 118 119 REST Power On stack_mode=skip 120 121 # Post Power off and on, the OS SSH session needs to be established. 122 Login To OS 123 124 Run Keyword If '${CHECK_INVENTORY}' == 'True' 125 ... Do Inventory And Compare ${json_initial_file_path} 126 ... ${PREV_INV_FILE_PATH} 127 128 Run Keyword If '${HTX_MDT_PROFILE}' == 'mdt.bu' 129 ... Create Default MDT Profile 130 131 Run MDT Profile 132 133 Loop HTX Health Check 134 135 Shutdown HTX Exerciser 136 137 Run Keyword If '${CHECK_INVENTORY}' == 'True' 138 ... Do Inventory And Compare ${json_final_file_path} 139 ... ${PREV_INV_FILE_PATH} 140 141 Error Logs Should Not Exist 142 Power Off Host 143 144 # Close all SSH and REST active sessions. 145 Close All Connections 146 Flush REST Sessions 147 148 Rprint Timen HTX Test ran for: ${HTX_DURATION} 149 150 ${loop_count}= Catenate Ending iteration: ${iteration} 151 152 ${est_seconds_left}= Evaluate ${est_seconds_left}-${loop_body_seconds} 153 Set Suite Variable ${est_seconds_left} children=true 154 ${estimated_time_remaining}= Convert Time 155 ... ${est_seconds_left} result_format=compact 156 157 Rpvars loop_count estimated_time_remaining 158 159 160Do Inventory And Compare 161 [Documentation] Do inventory and compare. 162 [Arguments] ${inventory_file_path} ${PREV_INV_FILE_PATH} 163 # Description of argument(s): 164 # inventory_file_path The file to receive the inventory snapshot. 165 # PREV_INV_FILE_PATH The previous inventory to compare with. 166 167 Create JSON Inventory File ${inventory_file_path} 168 Run Keyword If '${PREV_INV_FILE_PATH}' != 'NONE' 169 ... Compare Json Inventory Files ${inventory_file_path} 170 ... ${PREV_INV_FILE_PATH} 171 ${PREV_INV_FILE_PATH}= Set Variable ${inventory_file_path} 172 Set Suite Variable ${PREV_INV_FILE_PATH} children=true 173 174 175Compare Json Inventory Files 176 [Documentation] Compare JSON inventory files. 177 [Arguments] ${file1} ${file2} 178 # Description of argument(s): 179 # file1 A file that has an inventory snapshot in JSON format. 180 # file2 A file that has an inventory snapshot, to compare with file1. 181 182 ${diff_rc}= File_Diff ${file1} 183 ... ${file2} ${json_diff_file_path} ${INV_IGNORE_LIST} 184 Run Keyword If '${diff_rc}' != '${0}' 185 ... Report Inventory Mismatch ${diff_rc} ${json_diff_file_path} 186 187 188Report Inventory Mismatch 189 [Documentation] Report inventory mismatch. 190 [Arguments] ${diff_rc} ${json_diff_file_path} 191 # Description of argument(s): 192 # diff_rc The failing return code from the difference check. 193 # json_diff_file_path The file that has the latest inventory snapshot. 194 195 Log To Console Significant difference in inventory found, rc=${diff_rc} 196 Log To Console Differences are listed in file: no_newline=true 197 Log To Console ${json_diff_file_path} 198 Log To Console File Contents: 199 Wait Until Created ${json_diff_file_path} 200 ${file_contents}= OperatingSystem.Get File ${json_diff_file_path} 201 Log ${file_contents} level=WARN 202 Fail Significant difference in inventory found, rc=${diff_rc} 203 204 205Loop HTX Health Check 206 [Documentation] Run until HTX exerciser fails. 207 Repeat Keyword ${HTX_DURATION} 208 ... Run Keywords Check HTX Run Status 209 ... AND Sleep ${HTX_INTERVAL} 210 211 212Test Setup Execution 213 [Documentation] Do the initial test setup. 214 215 REST Power On stack_mode=skip 216 Delete All Error Logs 217 Tool Exist htxcmdline 218 219 # Shutdown if HTX is running. 220 ${status}= Run Keyword And Return Status Is HTX Running 221 Run Keyword If '${status}' == 'True' 222 ... Shutdown HTX Exerciser 223 224 225Test Teardown Execution 226 [Documentation] Do the post test teardown. 227 # 1. Shut down HTX exerciser if test Failed. 228 # 2. Capture FFDC on test failure. 229 # 3. Close all open SSH connections. 230 231 # Keep HTX running if user set HTX_KEEP_RUNNING to 1. 232 Run Keyword If 233 ... '${TEST_STATUS}' == 'FAIL' and ${HTX_KEEP_RUNNING} == ${0} 234 ... Shutdown HTX Exerciser 235 236 ${keyword_buf}= Catenate Stop SOL Console Logging 237 ... \ targ_file_path=${EXECDIR}${/}logs${/}SOL.log 238 Run Key ${keyword_buf} 239 240 FFDC On Test Case Fail 241 Close All Connections 242