Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | |
| 3 | r""" |
| 4 | This module is the python counterpart to obmc_boot_test. |
| 5 | """ |
| 6 | |
Michael Walsh | 0b93fbf | 2017-03-02 14:42:41 -0600 | [diff] [blame] | 7 | import os |
| 8 | import imp |
| 9 | import time |
| 10 | import glob |
| 11 | import random |
Michael Walsh | 0ad0f7f | 2017-05-04 14:39:58 -0500 | [diff] [blame] | 12 | import re |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 13 | import signal |
George Keishing | d54bbc2 | 2018-08-03 08:24:58 -0500 | [diff] [blame] | 14 | try: |
| 15 | import cPickle as pickle |
| 16 | except ImportError: |
| 17 | import pickle |
Michael Walsh | dc80d67 | 2017-05-09 12:58:32 -0500 | [diff] [blame] | 18 | import socket |
Michael Walsh | 0b93fbf | 2017-03-02 14:42:41 -0600 | [diff] [blame] | 19 | |
| 20 | from robot.utils import DotDict |
| 21 | from robot.libraries.BuiltIn import BuiltIn |
| 22 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 23 | from boot_data import * |
Michael Walsh | c911681 | 2017-03-10 14:23:06 -0600 | [diff] [blame] | 24 | import gen_print as gp |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 25 | import gen_robot_print as grp |
Michael Walsh | 5530229 | 2017-01-10 11:43:02 -0600 | [diff] [blame] | 26 | import gen_robot_plug_in as grpi |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 27 | import gen_robot_valid as grv |
| 28 | import gen_misc as gm |
| 29 | import gen_cmd as gc |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 30 | import gen_robot_keyword as grk |
Michael Walsh | 5530229 | 2017-01-10 11:43:02 -0600 | [diff] [blame] | 31 | import state as st |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 32 | import var_stack as vs |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 33 | |
Michael Walsh | 0b93fbf | 2017-03-02 14:42:41 -0600 | [diff] [blame] | 34 | base_path = os.path.dirname(os.path.dirname( |
| 35 | imp.find_module("gen_robot_print")[1])) +\ |
Michael Walsh | c911681 | 2017-03-10 14:23:06 -0600 | [diff] [blame] | 36 | os.sep |
Michael Walsh | 0b93fbf | 2017-03-02 14:42:41 -0600 | [diff] [blame] | 37 | sys.path.append(base_path + "extended/") |
| 38 | import run_keyword as rk |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 39 | |
Michael Walsh | e1e2644 | 2017-03-06 17:50:07 -0600 | [diff] [blame] | 40 | # Setting master_pid correctly influences the behavior of plug-ins like |
| 41 | # DB_Logging |
| 42 | program_pid = os.getpid() |
| 43 | master_pid = os.environ.get('AUTOBOOT_MASTER_PID', program_pid) |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 44 | pgm_name = re.sub('\\.py$', '', os.path.basename(__file__)) |
Michael Walsh | e1e2644 | 2017-03-06 17:50:07 -0600 | [diff] [blame] | 45 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 46 | # Set up boot data structures. |
| 47 | boot_table = create_boot_table() |
| 48 | valid_boot_types = create_valid_boot_list(boot_table) |
Michael Walsh | 0b93fbf | 2017-03-02 14:42:41 -0600 | [diff] [blame] | 49 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 50 | boot_lists = read_boot_lists() |
Michael Walsh | 815b1d5 | 2018-10-30 13:32:26 -0500 | [diff] [blame] | 51 | # The maximum number of entries that can be in the last_ten global variable. |
| 52 | max_boot_history = 10 |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 53 | last_ten = [] |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 54 | |
Michael Walsh | 7dc885b | 2018-03-14 17:51:59 -0500 | [diff] [blame] | 55 | state = st.return_state_constant('default_state') |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 56 | cp_setup_called = 0 |
| 57 | next_boot = "" |
| 58 | base_tool_dir_path = os.path.normpath(os.environ.get( |
| 59 | 'AUTOBOOT_BASE_TOOL_DIR_PATH', "/tmp")) + os.sep |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 60 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 61 | ffdc_dir_path = os.path.normpath(os.environ.get('FFDC_DIR_PATH', '')) + os.sep |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 62 | boot_success = 0 |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 63 | status_dir_path = os.environ.get('STATUS_DIR_PATH', "") |
| 64 | if status_dir_path != "": |
| 65 | status_dir_path = os.path.normpath(status_dir_path) + os.sep |
Michael Walsh | 0b93fbf | 2017-03-02 14:42:41 -0600 | [diff] [blame] | 66 | default_power_on = "REST Power On" |
| 67 | default_power_off = "REST Power Off" |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 68 | boot_count = 0 |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 69 | |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 70 | LOG_LEVEL = BuiltIn().get_variable_value("${LOG_LEVEL}") |
Michael Walsh | e1974b9 | 2017-08-03 13:39:51 -0500 | [diff] [blame] | 71 | ffdc_prefix = "" |
Sunil M | 325eb54 | 2017-08-10 07:09:43 -0500 | [diff] [blame] | 72 | boot_start_time = "" |
| 73 | boot_end_time = "" |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 74 | save_stack = vs.var_stack('save_stack') |
| 75 | main_func_parm_list = ['boot_stack', 'stack_mode', 'quiet'] |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 76 | |
| 77 | |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 78 | def dump_ffdc_rc(): |
| 79 | r""" |
| 80 | Return the constant dump ffdc test return code value. |
| 81 | |
| 82 | When a plug-in call point program returns this value, it indicates that |
| 83 | this program should collect FFDC. |
| 84 | """ |
| 85 | |
| 86 | return 0x00000200 |
| 87 | |
| 88 | |
| 89 | def stop_test_rc(): |
| 90 | r""" |
| 91 | Return the constant stop test return code value. |
| 92 | |
| 93 | When a plug-in call point program returns this value, it indicates that |
| 94 | this program should stop running. |
| 95 | """ |
| 96 | |
| 97 | return 0x00000200 |
| 98 | |
| 99 | |
Michael Walsh | 0ad0f7f | 2017-05-04 14:39:58 -0500 | [diff] [blame] | 100 | def process_host(host, |
| 101 | host_var_name=""): |
Michael Walsh | 0ad0f7f | 2017-05-04 14:39:58 -0500 | [diff] [blame] | 102 | r""" |
| 103 | Process a host by getting the associated host name and IP address and |
| 104 | setting them in global variables. |
| 105 | |
| 106 | If the caller does not pass the host_var_name, this function will try to |
| 107 | figure out the name of the variable used by the caller for the host parm. |
| 108 | Callers are advised to explicitly specify the host_var_name when calling |
| 109 | with an exec command. In such cases, the get_arg_name cannot figure out |
| 110 | the host variable name. |
| 111 | |
| 112 | This function will then create similar global variable names by |
| 113 | removing "_host" and appending "_host_name" or "_ip" to the host variable |
| 114 | name. |
| 115 | |
| 116 | Example: |
| 117 | |
| 118 | If a call is made like this: |
| 119 | process_host(openbmc_host) |
| 120 | |
| 121 | Global variables openbmc_host_name and openbmc_ip will be set. |
| 122 | |
| 123 | Description of argument(s): |
| 124 | host A host name or IP. The name of the variable used should |
| 125 | have a suffix of "_host". |
| 126 | host_var_name The name of the variable being used as the host parm. |
| 127 | """ |
| 128 | |
| 129 | if host_var_name == "": |
| 130 | host_var_name = gp.get_arg_name(0, 1, stack_frame_ix=2) |
| 131 | |
| 132 | host_name_var_name = re.sub("host", "host_name", host_var_name) |
| 133 | ip_var_name = re.sub("host", "ip", host_var_name) |
| 134 | cmd_buf = "global " + host_name_var_name + ", " + ip_var_name + " ; " +\ |
| 135 | host_name_var_name + ", " + ip_var_name + " = gm.get_host_name_ip('" +\ |
| 136 | host + "')" |
| 137 | exec(cmd_buf) |
| 138 | |
Michael Walsh | 0ad0f7f | 2017-05-04 14:39:58 -0500 | [diff] [blame] | 139 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 140 | def process_pgm_parms(): |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 141 | r""" |
| 142 | Process the program parameters by assigning them all to corresponding |
| 143 | globals. Also, set some global values that depend on program parameters. |
| 144 | """ |
| 145 | |
| 146 | # Program parameter processing. |
| 147 | # Assign all program parms to python variables which are global to this |
| 148 | # module. |
| 149 | |
| 150 | global parm_list |
| 151 | parm_list = BuiltIn().get_variable_value("${parm_list}") |
| 152 | # The following subset of parms should be processed as integers. |
| 153 | int_list = ['max_num_tests', 'boot_pass', 'boot_fail', 'ffdc_only', |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 154 | 'boot_fail_threshold', 'delete_errlogs', |
| 155 | 'call_post_stack_plug', 'quiet', 'test_mode', 'debug'] |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 156 | for parm in parm_list: |
| 157 | if parm in int_list: |
| 158 | sub_cmd = "int(BuiltIn().get_variable_value(\"${" + parm +\ |
| 159 | "}\", \"0\"))" |
| 160 | else: |
| 161 | sub_cmd = "BuiltIn().get_variable_value(\"${" + parm + "}\")" |
| 162 | cmd_buf = "global " + parm + " ; " + parm + " = " + sub_cmd |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 163 | gp.dpissuing(cmd_buf) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 164 | exec(cmd_buf) |
Michael Walsh | 0ad0f7f | 2017-05-04 14:39:58 -0500 | [diff] [blame] | 165 | if re.match(r".*_host$", parm): |
| 166 | cmd_buf = "process_host(" + parm + ", '" + parm + "')" |
| 167 | exec(cmd_buf) |
| 168 | if re.match(r".*_password$", parm): |
| 169 | # Register the value of any parm whose name ends in _password. |
| 170 | # This will cause the print functions to replace passwords with |
| 171 | # asterisks in the output. |
| 172 | cmd_buf = "gp.register_passwords(" + parm + ")" |
| 173 | exec(cmd_buf) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 174 | |
| 175 | global ffdc_dir_path_style |
| 176 | global boot_list |
| 177 | global boot_stack |
| 178 | global boot_results_file_path |
| 179 | global boot_results |
Michael Walsh | 6c64574 | 2018-08-17 15:02:17 -0500 | [diff] [blame] | 180 | global last_ten |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 181 | global ffdc_list_file_path |
Michael Walsh | e0cf8d7 | 2017-05-17 13:20:46 -0500 | [diff] [blame] | 182 | global ffdc_report_list_path |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 183 | global ffdc_summary_list_path |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 184 | |
| 185 | if ffdc_dir_path_style == "": |
| 186 | ffdc_dir_path_style = int(os.environ.get('FFDC_DIR_PATH_STYLE', '0')) |
| 187 | |
| 188 | # Convert these program parms to lists for easier processing.. |
George Keishing | 36efbc0 | 2018-12-12 10:18:23 -0600 | [diff] [blame] | 189 | boot_list = list(filter(None, boot_list.split(":"))) |
| 190 | boot_stack = list(filter(None, boot_stack.split(":"))) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 191 | |
Michael Walsh | 903e0b2 | 2017-09-19 17:00:33 -0500 | [diff] [blame] | 192 | cleanup_boot_results_file() |
| 193 | boot_results_file_path = create_boot_results_file_path(pgm_name, |
| 194 | openbmc_nickname, |
| 195 | master_pid) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 196 | |
| 197 | if os.path.isfile(boot_results_file_path): |
| 198 | # We've been called before in this run so we'll load the saved |
Michael Walsh | 6c64574 | 2018-08-17 15:02:17 -0500 | [diff] [blame] | 199 | # boot_results and last_ten objects. |
| 200 | boot_results, last_ten =\ |
| 201 | pickle.load(open(boot_results_file_path, 'rb')) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 202 | else: |
| 203 | boot_results = boot_results(boot_table, boot_pass, boot_fail) |
| 204 | |
| 205 | ffdc_list_file_path = base_tool_dir_path + openbmc_nickname +\ |
| 206 | "/FFDC_FILE_LIST" |
Michael Walsh | e0cf8d7 | 2017-05-17 13:20:46 -0500 | [diff] [blame] | 207 | ffdc_report_list_path = base_tool_dir_path + openbmc_nickname +\ |
| 208 | "/FFDC_REPORT_FILE_LIST" |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 209 | |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 210 | ffdc_summary_list_path = base_tool_dir_path + openbmc_nickname +\ |
| 211 | "/FFDC_SUMMARY_FILE_LIST" |
| 212 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 213 | |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 214 | def initial_plug_in_setup(): |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 215 | r""" |
| 216 | Initialize all plug-in environment variables which do not change for the |
| 217 | duration of the program. |
| 218 | |
| 219 | """ |
| 220 | |
| 221 | global LOG_LEVEL |
| 222 | BuiltIn().set_log_level("NONE") |
| 223 | |
| 224 | BuiltIn().set_global_variable("${master_pid}", master_pid) |
| 225 | BuiltIn().set_global_variable("${FFDC_DIR_PATH}", ffdc_dir_path) |
| 226 | BuiltIn().set_global_variable("${STATUS_DIR_PATH}", status_dir_path) |
| 227 | BuiltIn().set_global_variable("${BASE_TOOL_DIR_PATH}", base_tool_dir_path) |
| 228 | BuiltIn().set_global_variable("${FFDC_LIST_FILE_PATH}", |
| 229 | ffdc_list_file_path) |
Michael Walsh | e0cf8d7 | 2017-05-17 13:20:46 -0500 | [diff] [blame] | 230 | BuiltIn().set_global_variable("${FFDC_REPORT_LIST_PATH}", |
| 231 | ffdc_report_list_path) |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 232 | BuiltIn().set_global_variable("${FFDC_SUMMARY_LIST_PATH}", |
| 233 | ffdc_summary_list_path) |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 234 | |
| 235 | BuiltIn().set_global_variable("${FFDC_DIR_PATH_STYLE}", |
| 236 | ffdc_dir_path_style) |
| 237 | BuiltIn().set_global_variable("${FFDC_CHECK}", |
| 238 | ffdc_check) |
| 239 | |
| 240 | # For each program parameter, set the corresponding AUTOBOOT_ environment |
| 241 | # variable value. Also, set an AUTOBOOT_ environment variable for every |
| 242 | # element in additional_values. |
| 243 | additional_values = ["program_pid", "master_pid", "ffdc_dir_path", |
| 244 | "status_dir_path", "base_tool_dir_path", |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 245 | "ffdc_list_file_path", "ffdc_report_list_path", |
Michael Walsh | 0a3bdb4 | 2019-01-31 16:21:44 +0000 | [diff] [blame] | 246 | "ffdc_summary_list_path", "execdir"] |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 247 | |
| 248 | plug_in_vars = parm_list + additional_values |
| 249 | |
| 250 | for var_name in plug_in_vars: |
| 251 | var_value = BuiltIn().get_variable_value("${" + var_name + "}") |
| 252 | var_name = var_name.upper() |
| 253 | if var_value is None: |
| 254 | var_value = "" |
| 255 | os.environ["AUTOBOOT_" + var_name] = str(var_value) |
| 256 | |
| 257 | BuiltIn().set_log_level(LOG_LEVEL) |
| 258 | |
Michael Walsh | 68a6116 | 2017-04-25 11:54:06 -0500 | [diff] [blame] | 259 | # Make sure the ffdc list directory exists. |
| 260 | ffdc_list_dir_path = os.path.dirname(ffdc_list_file_path) + os.sep |
| 261 | if not os.path.exists(ffdc_list_dir_path): |
| 262 | os.makedirs(ffdc_list_dir_path) |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 263 | |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 264 | |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 265 | def plug_in_setup(): |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 266 | r""" |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 267 | Initialize all changing plug-in environment variables for use by the |
| 268 | plug-in programs. |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 269 | """ |
| 270 | |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 271 | global LOG_LEVEL |
| 272 | global test_really_running |
| 273 | |
| 274 | BuiltIn().set_log_level("NONE") |
| 275 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 276 | boot_pass, boot_fail = boot_results.return_total_pass_fail() |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 277 | if boot_pass > 1: |
| 278 | test_really_running = 1 |
| 279 | else: |
| 280 | test_really_running = 0 |
| 281 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 282 | BuiltIn().set_global_variable("${test_really_running}", |
| 283 | test_really_running) |
| 284 | BuiltIn().set_global_variable("${boot_type_desc}", next_boot) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 285 | BuiltIn().set_global_variable("${boot_pass}", boot_pass) |
| 286 | BuiltIn().set_global_variable("${boot_fail}", boot_fail) |
| 287 | BuiltIn().set_global_variable("${boot_success}", boot_success) |
| 288 | BuiltIn().set_global_variable("${ffdc_prefix}", ffdc_prefix) |
Sunil M | 325eb54 | 2017-08-10 07:09:43 -0500 | [diff] [blame] | 289 | BuiltIn().set_global_variable("${boot_start_time}", boot_start_time) |
| 290 | BuiltIn().set_global_variable("${boot_end_time}", boot_end_time) |
Michael Walsh | 4c9a645 | 2016-12-13 16:03:11 -0600 | [diff] [blame] | 291 | |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 292 | # For each program parameter, set the corresponding AUTOBOOT_ environment |
| 293 | # variable value. Also, set an AUTOBOOT_ environment variable for every |
| 294 | # element in additional_values. |
| 295 | additional_values = ["boot_type_desc", "boot_success", "boot_pass", |
Sunil M | 325eb54 | 2017-08-10 07:09:43 -0500 | [diff] [blame] | 296 | "boot_fail", "test_really_running", "ffdc_prefix", |
| 297 | "boot_start_time", "boot_end_time"] |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 298 | |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 299 | plug_in_vars = additional_values |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 300 | |
| 301 | for var_name in plug_in_vars: |
| 302 | var_value = BuiltIn().get_variable_value("${" + var_name + "}") |
| 303 | var_name = var_name.upper() |
| 304 | if var_value is None: |
| 305 | var_value = "" |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 306 | os.environ["AUTOBOOT_" + var_name] = str(var_value) |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 307 | |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 308 | if debug: |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 309 | shell_rc, out_buf = \ |
| 310 | gc.cmd_fnc_u("printenv | egrep AUTOBOOT_ | sort -u") |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 311 | |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 312 | BuiltIn().set_log_level(LOG_LEVEL) |
| 313 | |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 314 | |
Michael Walsh | e0cf8d7 | 2017-05-17 13:20:46 -0500 | [diff] [blame] | 315 | def pre_boot_plug_in_setup(): |
| 316 | |
| 317 | # Clear the ffdc_list_file_path file. Plug-ins may now write to it. |
| 318 | try: |
| 319 | os.remove(ffdc_list_file_path) |
| 320 | except OSError: |
| 321 | pass |
| 322 | |
| 323 | # Clear the ffdc_report_list_path file. Plug-ins may now write to it. |
| 324 | try: |
| 325 | os.remove(ffdc_report_list_path) |
| 326 | except OSError: |
| 327 | pass |
| 328 | |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 329 | # Clear the ffdc_summary_list_path file. Plug-ins may now write to it. |
| 330 | try: |
| 331 | os.remove(ffdc_summary_list_path) |
| 332 | except OSError: |
| 333 | pass |
| 334 | |
Michael Walsh | e1974b9 | 2017-08-03 13:39:51 -0500 | [diff] [blame] | 335 | global ffdc_prefix |
| 336 | |
| 337 | seconds = time.time() |
| 338 | loc_time = time.localtime(seconds) |
| 339 | time_string = time.strftime("%y%m%d.%H%M%S.", loc_time) |
| 340 | |
| 341 | ffdc_prefix = openbmc_nickname + "." + time_string |
| 342 | |
Michael Walsh | e0cf8d7 | 2017-05-17 13:20:46 -0500 | [diff] [blame] | 343 | |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 344 | def default_sigusr1(signal_number=0, |
| 345 | frame=None): |
| 346 | r""" |
| 347 | Handle SIGUSR1 by doing nothing. |
| 348 | |
| 349 | This function assists in debugging SIGUSR1 processing by printing messages |
| 350 | to stdout and to the log.html file. |
| 351 | |
| 352 | Description of argument(s): |
| 353 | signal_number The signal number (should always be 10 for SIGUSR1). |
| 354 | frame The frame data. |
| 355 | """ |
| 356 | |
| 357 | gp.printn() |
| 358 | gp.print_executing() |
| 359 | gp.lprint_executing() |
| 360 | |
| 361 | |
| 362 | def set_default_siguser1(): |
| 363 | r""" |
| 364 | Set the default_sigusr1 function to be the SIGUSR1 handler. |
| 365 | """ |
| 366 | |
| 367 | gp.printn() |
| 368 | gp.print_executing() |
| 369 | gp.lprint_executing() |
| 370 | signal.signal(signal.SIGUSR1, default_sigusr1) |
| 371 | |
| 372 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 373 | def setup(): |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 374 | r""" |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 375 | Do general program setup tasks. |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 376 | """ |
| 377 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 378 | global cp_setup_called |
Michael Walsh | 8181674 | 2017-09-27 11:02:29 -0500 | [diff] [blame] | 379 | global transitional_boot_selected |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 380 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 381 | gp.qprintn() |
| 382 | |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 383 | set_default_siguser1() |
Michael Walsh | 8181674 | 2017-09-27 11:02:29 -0500 | [diff] [blame] | 384 | transitional_boot_selected = False |
| 385 | |
Michael Walsh | 83f4bc7 | 2017-04-20 16:49:43 -0500 | [diff] [blame] | 386 | robot_pgm_dir_path = os.path.dirname(__file__) + os.sep |
| 387 | repo_bin_path = robot_pgm_dir_path.replace("/lib/", "/bin/") |
Michael Walsh | d061c04 | 2017-05-23 14:46:57 -0500 | [diff] [blame] | 388 | # If we can't find process_plug_in_packages.py, ssh_pw or |
| 389 | # validate_plug_ins.py, then we don't have our repo bin in PATH. |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 390 | shell_rc, out_buf = gc.cmd_fnc_u("which process_plug_in_packages.py" |
| 391 | + " ssh_pw validate_plug_ins.py", quiet=1, |
Michael Walsh | d061c04 | 2017-05-23 14:46:57 -0500 | [diff] [blame] | 392 | print_output=0, show_err=0) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 393 | if shell_rc != 0: |
Michael Walsh | 83f4bc7 | 2017-04-20 16:49:43 -0500 | [diff] [blame] | 394 | os.environ['PATH'] = repo_bin_path + ":" + os.environ.get('PATH', "") |
| 395 | # Likewise, our repo lib subdir needs to be in sys.path and PYTHONPATH. |
| 396 | if robot_pgm_dir_path not in sys.path: |
| 397 | sys.path.append(robot_pgm_dir_path) |
| 398 | PYTHONPATH = os.environ.get("PYTHONPATH", "") |
| 399 | if PYTHONPATH == "": |
| 400 | os.environ['PYTHONPATH'] = robot_pgm_dir_path |
| 401 | else: |
| 402 | os.environ['PYTHONPATH'] = robot_pgm_dir_path + ":" + PYTHONPATH |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 403 | |
| 404 | validate_parms() |
| 405 | |
| 406 | grp.rqprint_pgm_header() |
| 407 | |
George Keishing | efc3ff2 | 2017-12-12 11:49:25 -0600 | [diff] [blame] | 408 | grk.run_key("Set BMC Power Policy ALWAYS_POWER_OFF") |
Michael Walsh | 11cfc8c | 2017-03-31 09:40:55 -0500 | [diff] [blame] | 409 | |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 410 | initial_plug_in_setup() |
| 411 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 412 | plug_in_setup() |
| 413 | rc, shell_rc, failed_plug_in_name = grpi.rprocess_plug_in_packages( |
| 414 | call_point='setup') |
| 415 | if rc != 0: |
| 416 | error_message = "Plug-in setup failed.\n" |
| 417 | grp.rprint_error_report(error_message) |
| 418 | BuiltIn().fail(error_message) |
| 419 | # Setting cp_setup_called lets our Teardown know that it needs to call |
| 420 | # the cleanup plug-in call point. |
| 421 | cp_setup_called = 1 |
| 422 | |
| 423 | # Keyword "FFDC" will fail if TEST_MESSAGE is not set. |
| 424 | BuiltIn().set_global_variable("${TEST_MESSAGE}", "${EMPTY}") |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 425 | # FFDC_LOG_PATH is used by "FFDC" keyword. |
| 426 | BuiltIn().set_global_variable("${FFDC_LOG_PATH}", ffdc_dir_path) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 427 | |
Michael Walsh | dc80d67 | 2017-05-09 12:58:32 -0500 | [diff] [blame] | 428 | # Also printed by FFDC. |
| 429 | global host_name |
| 430 | global host_ip |
| 431 | host = socket.gethostname() |
| 432 | host_name, host_ip = gm.get_host_name_ip(host) |
| 433 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 434 | gp.dprint_var(boot_table, 1) |
| 435 | gp.dprint_var(boot_lists) |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 436 | |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 437 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 438 | def validate_parms(): |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 439 | r""" |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 440 | Validate all program parameters. |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 441 | """ |
| 442 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 443 | process_pgm_parms() |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 444 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 445 | gp.qprintn() |
| 446 | |
| 447 | global openbmc_model |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 448 | grv.rvalid_value("openbmc_host") |
| 449 | grv.rvalid_value("openbmc_username") |
| 450 | grv.rvalid_value("openbmc_password") |
Michael Walsh | 0a3bdb4 | 2019-01-31 16:21:44 +0000 | [diff] [blame] | 451 | grv.rvalid_value("rest_username") |
| 452 | grv.rvalid_value("rest_password") |
| 453 | grv.rvalid_value("ipmi_username") |
| 454 | grv.rvalid_value("ipmi_password") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 455 | if os_host != "": |
| 456 | grv.rvalid_value("os_username") |
| 457 | grv.rvalid_value("os_password") |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 458 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 459 | if pdu_host != "": |
| 460 | grv.rvalid_value("pdu_username") |
| 461 | grv.rvalid_value("pdu_password") |
Michael Walsh | 8567894 | 2017-03-27 14:34:22 -0500 | [diff] [blame] | 462 | grv.rvalid_integer("pdu_slot_no") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 463 | if openbmc_serial_host != "": |
| 464 | grv.rvalid_integer("openbmc_serial_port") |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 465 | if openbmc_model == "": |
| 466 | status, ret_values =\ |
| 467 | grk.run_key_u("Get BMC System Model") |
| 468 | openbmc_model = ret_values |
| 469 | BuiltIn().set_global_variable("${openbmc_model}", openbmc_model) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 470 | grv.rvalid_value("openbmc_model") |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 471 | grv.rvalid_integer("max_num_tests") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 472 | grv.rvalid_integer("boot_pass") |
| 473 | grv.rvalid_integer("boot_fail") |
| 474 | |
| 475 | plug_in_packages_list = grpi.rvalidate_plug_ins(plug_in_dir_paths) |
| 476 | BuiltIn().set_global_variable("${plug_in_packages_list}", |
| 477 | plug_in_packages_list) |
| 478 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 479 | grv.rvalid_value("stack_mode", valid_values=['normal', 'skip']) |
Michael Walsh | a20da40 | 2017-03-31 16:27:45 -0500 | [diff] [blame] | 480 | if len(boot_list) == 0 and len(boot_stack) == 0 and not ffdc_only: |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 481 | error_message = "You must provide either a value for either the" +\ |
| 482 | " boot_list or the boot_stack parm.\n" |
| 483 | BuiltIn().fail(gp.sprint_error(error_message)) |
| 484 | |
| 485 | valid_boot_list(boot_list, valid_boot_types) |
| 486 | valid_boot_list(boot_stack, valid_boot_types) |
| 487 | |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 488 | selected_PDU_boots = list(set(boot_list + boot_stack) |
| 489 | & set(boot_lists['PDU_reboot'])) |
Michael Walsh | 11cfc8c | 2017-03-31 09:40:55 -0500 | [diff] [blame] | 490 | |
| 491 | if len(selected_PDU_boots) > 0 and pdu_host == "": |
| 492 | error_message = "You have selected the following boots which" +\ |
| 493 | " require a PDU host but no value for pdu_host:\n" |
| 494 | error_message += gp.sprint_var(selected_PDU_boots) |
| 495 | error_message += gp.sprint_var(pdu_host, 2) |
| 496 | BuiltIn().fail(gp.sprint_error(error_message)) |
| 497 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 498 | return |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 499 | |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 500 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 501 | def my_get_state(): |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 502 | r""" |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 503 | Get the system state plus a little bit of wrapping. |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 504 | """ |
| 505 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 506 | global state |
| 507 | |
| 508 | req_states = ['epoch_seconds'] + st.default_req_states |
| 509 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 510 | gp.qprint_timen("Getting system state.") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 511 | if test_mode: |
| 512 | state['epoch_seconds'] = int(time.time()) |
| 513 | else: |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 514 | state = st.get_state(req_states=req_states, quiet=quiet) |
| 515 | gp.qprint_var(state) |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 516 | |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 517 | |
Michael Walsh | 45ca6e4 | 2017-09-14 17:29:12 -0500 | [diff] [blame] | 518 | def valid_state(): |
Michael Walsh | 45ca6e4 | 2017-09-14 17:29:12 -0500 | [diff] [blame] | 519 | r""" |
| 520 | Verify that our state dictionary contains no blank values. If we don't get |
| 521 | valid state data, we cannot continue to work. |
| 522 | """ |
| 523 | |
| 524 | if st.compare_states(state, st.invalid_state_match, 'or'): |
| 525 | error_message = "The state dictionary contains blank fields which" +\ |
| 526 | " is illegal.\n" + gp.sprint_var(state) |
| 527 | BuiltIn().fail(gp.sprint_error(error_message)) |
| 528 | |
Michael Walsh | 45ca6e4 | 2017-09-14 17:29:12 -0500 | [diff] [blame] | 529 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 530 | def select_boot(): |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 531 | r""" |
| 532 | Select a boot test to be run based on our current state and return the |
| 533 | chosen boot type. |
| 534 | |
| 535 | Description of arguments: |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 536 | state The state of the machine. |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 537 | """ |
| 538 | |
Michael Walsh | 8181674 | 2017-09-27 11:02:29 -0500 | [diff] [blame] | 539 | global transitional_boot_selected |
Michael Walsh | 30dadae | 2017-02-27 14:25:52 -0600 | [diff] [blame] | 540 | global boot_stack |
| 541 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 542 | gp.qprint_timen("Selecting a boot test.") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 543 | |
Michael Walsh | 8181674 | 2017-09-27 11:02:29 -0500 | [diff] [blame] | 544 | if transitional_boot_selected and not boot_success: |
| 545 | prior_boot = next_boot |
| 546 | boot_candidate = boot_stack.pop() |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 547 | gp.qprint_timen("The prior '" + next_boot + "' was chosen to" |
| 548 | + " transition to a valid state for '" + boot_candidate |
| 549 | + "' which was at the top of the boot_stack. Since" |
| 550 | + " the '" + next_boot + "' failed, the '" |
| 551 | + boot_candidate + "' has been removed from the stack" |
| 552 | + " to avoid and endless failure loop.") |
Michael Walsh | 8181674 | 2017-09-27 11:02:29 -0500 | [diff] [blame] | 553 | if len(boot_stack) == 0: |
| 554 | return "" |
| 555 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 556 | my_get_state() |
Michael Walsh | 45ca6e4 | 2017-09-14 17:29:12 -0500 | [diff] [blame] | 557 | valid_state() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 558 | |
Michael Walsh | 8181674 | 2017-09-27 11:02:29 -0500 | [diff] [blame] | 559 | transitional_boot_selected = False |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 560 | stack_popped = 0 |
| 561 | if len(boot_stack) > 0: |
| 562 | stack_popped = 1 |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 563 | gp.qprint_dashes() |
| 564 | gp.qprint_var(boot_stack) |
| 565 | gp.qprint_dashes() |
| 566 | skip_boot_printed = 0 |
| 567 | while len(boot_stack) > 0: |
| 568 | boot_candidate = boot_stack.pop() |
| 569 | if stack_mode == 'normal': |
| 570 | break |
| 571 | else: |
| 572 | if st.compare_states(state, boot_table[boot_candidate]['end']): |
| 573 | if not skip_boot_printed: |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 574 | gp.qprint_var(stack_mode) |
| 575 | gp.qprintn() |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 576 | gp.qprint_timen("Skipping the following boot tests" |
| 577 | + " which are unnecessary since their" |
| 578 | + " required end states match the" |
| 579 | + " current machine state:") |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 580 | skip_boot_printed = 1 |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 581 | gp.qprint_var(boot_candidate) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 582 | boot_candidate = "" |
| 583 | if boot_candidate == "": |
| 584 | gp.qprint_dashes() |
| 585 | gp.qprint_var(boot_stack) |
| 586 | gp.qprint_dashes() |
| 587 | return boot_candidate |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 588 | if st.compare_states(state, boot_table[boot_candidate]['start']): |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 589 | gp.qprint_timen("The machine state is valid for a '" |
| 590 | + boot_candidate + "' boot test.") |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 591 | gp.qprint_dashes() |
| 592 | gp.qprint_var(boot_stack) |
| 593 | gp.qprint_dashes() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 594 | return boot_candidate |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 595 | else: |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 596 | gp.qprint_timen("The machine state does not match the required" |
| 597 | + " starting state for a '" + boot_candidate |
| 598 | + "' boot test:") |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 599 | gp.qprint_varx("boot_table[" + boot_candidate + "][start]", |
| 600 | boot_table[boot_candidate]['start'], 1) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 601 | boot_stack.append(boot_candidate) |
Michael Walsh | 8181674 | 2017-09-27 11:02:29 -0500 | [diff] [blame] | 602 | transitional_boot_selected = True |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 603 | popped_boot = boot_candidate |
| 604 | |
| 605 | # Loop through your list selecting a boot_candidates |
| 606 | boot_candidates = [] |
| 607 | for boot_candidate in boot_list: |
| 608 | if st.compare_states(state, boot_table[boot_candidate]['start']): |
| 609 | if stack_popped: |
| 610 | if st.compare_states(boot_table[boot_candidate]['end'], |
Gunnar Mills | 096cd56 | 2018-03-26 10:19:12 -0500 | [diff] [blame] | 611 | boot_table[popped_boot]['start']): |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 612 | boot_candidates.append(boot_candidate) |
| 613 | else: |
| 614 | boot_candidates.append(boot_candidate) |
| 615 | |
| 616 | if len(boot_candidates) == 0: |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 617 | gp.qprint_timen("The user's boot list contained no boot tests" |
| 618 | + " which are valid for the current machine state.") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 619 | boot_candidate = default_power_on |
| 620 | if not st.compare_states(state, boot_table[default_power_on]['start']): |
| 621 | boot_candidate = default_power_off |
| 622 | boot_candidates.append(boot_candidate) |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 623 | gp.qprint_timen("Using default '" + boot_candidate |
| 624 | + "' boot type to transition to valid state.") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 625 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 626 | gp.dprint_var(boot_candidates) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 627 | |
| 628 | # Randomly select a boot from the candidate list. |
| 629 | boot = random.choice(boot_candidates) |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 630 | |
| 631 | return boot |
Michael Walsh | 0bbd860 | 2016-11-22 11:31:49 -0600 | [diff] [blame] | 632 | |
Michael Walsh | 5530229 | 2017-01-10 11:43:02 -0600 | [diff] [blame] | 633 | |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 634 | def print_last_boots(): |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 635 | r""" |
| 636 | Print the last ten boots done with their time stamps. |
| 637 | """ |
| 638 | |
| 639 | # indent 0, 90 chars wide, linefeed, char is "=" |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 640 | gp.qprint_dashes(0, 90) |
| 641 | gp.qprintn("Last 10 boots:\n") |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 642 | |
| 643 | for boot_entry in last_ten: |
| 644 | grp.rqprint(boot_entry) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 645 | gp.qprint_dashes(0, 90) |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 646 | |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 647 | |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 648 | def print_defect_report(ffdc_file_list): |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 649 | r""" |
| 650 | Print a defect report. |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 651 | |
| 652 | Description of argument(s): |
| 653 | ffdc_file_list A list of files which were collected by our ffdc functions. |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 654 | """ |
| 655 | |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 656 | # Making deliberate choice to NOT run plug_in_setup(). We don't want |
| 657 | # ffdc_prefix updated. |
| 658 | rc, shell_rc, failed_plug_in_name = grpi.rprocess_plug_in_packages( |
| 659 | call_point='ffdc_report', stop_on_plug_in_failure=0) |
| 660 | |
Michael Walsh | e0cf8d7 | 2017-05-17 13:20:46 -0500 | [diff] [blame] | 661 | # Get additional header data which may have been created by ffdc plug-ins. |
| 662 | # Also, delete the individual header files to cleanup. |
| 663 | cmd_buf = "file_list=$(cat " + ffdc_report_list_path + " 2>/dev/null)" +\ |
| 664 | " ; [ ! -z \"${file_list}\" ] && cat ${file_list}" +\ |
| 665 | " 2>/dev/null ; rm -rf ${file_list} 2>/dev/null || :" |
| 666 | shell_rc, more_header_info = gc.cmd_fnc_u(cmd_buf, print_output=0, |
| 667 | show_err=0) |
| 668 | |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 669 | # Get additional summary data which may have been created by ffdc plug-ins. |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 670 | # Also, delete the individual header files to cleanup. |
| 671 | cmd_buf = "file_list=$(cat " + ffdc_summary_list_path + " 2>/dev/null)" +\ |
| 672 | " ; [ ! -z \"${file_list}\" ] && cat ${file_list}" +\ |
| 673 | " 2>/dev/null ; rm -rf ${file_list} 2>/dev/null || :" |
| 674 | shell_rc, ffdc_summary_info = gc.cmd_fnc_u(cmd_buf, print_output=0, |
| 675 | show_err=0) |
| 676 | |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 677 | # ffdc_list_file_path contains a list of any ffdc files created by plug- |
| 678 | # ins, etc. Read that data into a list. |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 679 | try: |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 680 | plug_in_ffdc_list = \ |
| 681 | open(ffdc_list_file_path, 'r').read().rstrip("\n").split("\n") |
George Keishing | 36efbc0 | 2018-12-12 10:18:23 -0600 | [diff] [blame] | 682 | plug_in_ffdc_list = list(filter(None, plug_in_ffdc_list)) |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 683 | except IOError: |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 684 | plug_in_ffdc_list = [] |
| 685 | |
| 686 | # Combine the files from plug_in_ffdc_list with the ffdc_file_list passed |
| 687 | # in. Eliminate duplicates and sort the list. |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 688 | ffdc_file_list = sorted(set(ffdc_file_list + plug_in_ffdc_list)) |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 689 | |
| 690 | if status_file_path != "": |
| 691 | ffdc_file_list.insert(0, status_file_path) |
| 692 | |
| 693 | # Convert the list to a printable list. |
| 694 | printable_ffdc_file_list = "\n".join(ffdc_file_list) |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 695 | |
Michael Walsh | 68a6116 | 2017-04-25 11:54:06 -0500 | [diff] [blame] | 696 | # Open ffdc_file_list for writing. We will write a complete list of |
| 697 | # FFDC files to it for possible use by plug-ins like cp_stop_check. |
| 698 | ffdc_list_file = open(ffdc_list_file_path, 'w') |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 699 | ffdc_list_file.write(printable_ffdc_file_list + "\n") |
| 700 | ffdc_list_file.close() |
| 701 | |
| 702 | indent = 0 |
| 703 | width = 90 |
| 704 | linefeed = 1 |
| 705 | char = "=" |
Michael Walsh | 68a6116 | 2017-04-25 11:54:06 -0500 | [diff] [blame] | 706 | |
| 707 | gp.qprintn() |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 708 | gp.qprint_dashes(indent, width, linefeed, char) |
Michael Walsh | 68a6116 | 2017-04-25 11:54:06 -0500 | [diff] [blame] | 709 | gp.qprintn("Copy this data to the defect:\n") |
| 710 | |
Michael Walsh | e0cf8d7 | 2017-05-17 13:20:46 -0500 | [diff] [blame] | 711 | if len(more_header_info) > 0: |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 712 | gp.qprintn(more_header_info) |
Michael Walsh | dc80d67 | 2017-05-09 12:58:32 -0500 | [diff] [blame] | 713 | gp.qpvars(host_name, host_ip, openbmc_nickname, openbmc_host, |
| 714 | openbmc_host_name, openbmc_ip, openbmc_username, |
Michael Walsh | 0a3bdb4 | 2019-01-31 16:21:44 +0000 | [diff] [blame] | 715 | openbmc_password, rest_username, rest_password, ipmi_username, |
| 716 | ipmi_password, os_host, os_host_name, os_ip, os_username, |
Michael Walsh | dc80d67 | 2017-05-09 12:58:32 -0500 | [diff] [blame] | 717 | os_password, pdu_host, pdu_host_name, pdu_ip, pdu_username, |
| 718 | pdu_password, pdu_slot_no, openbmc_serial_host, |
| 719 | openbmc_serial_host_name, openbmc_serial_ip, openbmc_serial_port) |
Michael Walsh | 68a6116 | 2017-04-25 11:54:06 -0500 | [diff] [blame] | 720 | |
| 721 | gp.qprintn() |
Michael Walsh | 68a6116 | 2017-04-25 11:54:06 -0500 | [diff] [blame] | 722 | print_last_boots() |
| 723 | gp.qprintn() |
| 724 | gp.qprint_var(state) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 725 | gp.qprintn() |
| 726 | gp.qprintn("FFDC data files:") |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 727 | gp.qprintn(printable_ffdc_file_list) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 728 | gp.qprintn() |
Michael Walsh | 341c21e | 2017-01-17 16:25:20 -0600 | [diff] [blame] | 729 | |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 730 | if len(ffdc_summary_info) > 0: |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 731 | gp.qprintn(ffdc_summary_info) |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 732 | |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 733 | gp.qprint_dashes(indent, width, linefeed, char) |
Michael Walsh | 68a6116 | 2017-04-25 11:54:06 -0500 | [diff] [blame] | 734 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 735 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 736 | def my_ffdc(): |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 737 | r""" |
| 738 | Collect FFDC data. |
| 739 | """ |
| 740 | |
| 741 | global state |
| 742 | |
| 743 | plug_in_setup() |
| 744 | rc, shell_rc, failed_plug_in_name = grpi.rprocess_plug_in_packages( |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 745 | call_point='ffdc', stop_on_plug_in_failure=0) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 746 | |
| 747 | AUTOBOOT_FFDC_PREFIX = os.environ['AUTOBOOT_FFDC_PREFIX'] |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 748 | status, ffdc_file_list = grk.run_key_u("FFDC ffdc_prefix=" |
| 749 | + AUTOBOOT_FFDC_PREFIX |
| 750 | + " ffdc_function_list=" |
| 751 | + ffdc_function_list, ignore=1) |
Michael Walsh | 83f4bc7 | 2017-04-20 16:49:43 -0500 | [diff] [blame] | 752 | if status != 'PASS': |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 753 | gp.qprint_error("Call to ffdc failed.\n") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 754 | |
| 755 | my_get_state() |
| 756 | |
Michael Walsh | b2e53ec | 2017-10-30 15:04:36 -0500 | [diff] [blame] | 757 | print_defect_report(ffdc_file_list) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 758 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 759 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 760 | def print_test_start_message(boot_keyword): |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 761 | r""" |
| 762 | Print a message indicating what boot test is about to run. |
| 763 | |
| 764 | Description of arguments: |
| 765 | boot_keyword The name of the boot which is to be run |
| 766 | (e.g. "BMC Power On"). |
| 767 | """ |
| 768 | |
| 769 | global last_ten |
Sunil M | 325eb54 | 2017-08-10 07:09:43 -0500 | [diff] [blame] | 770 | global boot_start_time |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 771 | |
| 772 | doing_msg = gp.sprint_timen("Doing \"" + boot_keyword + "\".") |
Sunil M | 325eb54 | 2017-08-10 07:09:43 -0500 | [diff] [blame] | 773 | |
| 774 | # Set boot_start_time for use by plug-ins. |
| 775 | boot_start_time = doing_msg[1:33] |
| 776 | gp.qprint_var(boot_start_time) |
| 777 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 778 | gp.qprint(doing_msg) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 779 | |
| 780 | last_ten.append(doing_msg) |
| 781 | |
Michael Walsh | 815b1d5 | 2018-10-30 13:32:26 -0500 | [diff] [blame] | 782 | # Trim list to max number of entries. |
| 783 | del last_ten[:max(0, len(last_ten) - max_boot_history)] |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 784 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 785 | |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 786 | def stop_boot_test(signal_number=0, |
| 787 | frame=None): |
| 788 | r""" |
| 789 | Handle SIGUSR1 by aborting the boot test that is running. |
| 790 | |
| 791 | Description of argument(s): |
| 792 | signal_number The signal number (should always be 10 for SIGUSR1). |
| 793 | frame The frame data. |
| 794 | """ |
| 795 | |
| 796 | gp.printn() |
| 797 | gp.print_executing() |
| 798 | gp.lprint_executing() |
| 799 | |
| 800 | # Restore original sigusr1 handler. |
| 801 | set_default_siguser1() |
| 802 | |
| 803 | message = "The caller has asked that the boot test be stopped and marked" |
| 804 | message += " as a failure." |
| 805 | |
| 806 | function_stack = gm.get_function_stack() |
| 807 | if "wait_state" in function_stack: |
| 808 | st.set_wait_early_exit_message(message) |
| 809 | else: |
| 810 | BuiltIn().fail(gp.sprint_error(message)) |
| 811 | |
| 812 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 813 | def run_boot(boot): |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 814 | r""" |
| 815 | Run the specified boot. |
| 816 | |
| 817 | Description of arguments: |
| 818 | boot The name of the boot test to be performed. |
| 819 | """ |
| 820 | |
| 821 | global state |
| 822 | |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 823 | signal.signal(signal.SIGUSR1, stop_boot_test) |
| 824 | gp.qprint_timen("stop_boot_test is armed.") |
| 825 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 826 | print_test_start_message(boot) |
| 827 | |
| 828 | plug_in_setup() |
| 829 | rc, shell_rc, failed_plug_in_name = \ |
| 830 | grpi.rprocess_plug_in_packages(call_point="pre_boot") |
| 831 | if rc != 0: |
| 832 | error_message = "Plug-in failed with non-zero return code.\n" +\ |
| 833 | gp.sprint_var(rc, 1) |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 834 | set_default_siguser1() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 835 | BuiltIn().fail(gp.sprint_error(error_message)) |
| 836 | |
| 837 | if test_mode: |
| 838 | # In test mode, we'll pretend the boot worked by assigning its |
| 839 | # required end state to the default state value. |
Michael Walsh | 30dadae | 2017-02-27 14:25:52 -0600 | [diff] [blame] | 840 | state = st.strip_anchor_state(boot_table[boot]['end']) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 841 | else: |
| 842 | # Assertion: We trust that the state data was made fresh by the |
| 843 | # caller. |
| 844 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 845 | gp.qprintn() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 846 | |
| 847 | if boot_table[boot]['method_type'] == "keyword": |
Michael Walsh | 0b93fbf | 2017-03-02 14:42:41 -0600 | [diff] [blame] | 848 | rk.my_run_keywords(boot_table[boot].get('lib_file_path', ''), |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 849 | boot_table[boot]['method'], |
| 850 | quiet=quiet) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 851 | |
| 852 | if boot_table[boot]['bmc_reboot']: |
| 853 | st.wait_for_comm_cycle(int(state['epoch_seconds'])) |
Michael Walsh | 30dadae | 2017-02-27 14:25:52 -0600 | [diff] [blame] | 854 | plug_in_setup() |
| 855 | rc, shell_rc, failed_plug_in_name = \ |
| 856 | grpi.rprocess_plug_in_packages(call_point="post_reboot") |
| 857 | if rc != 0: |
Michael Walsh | 0b93fbf | 2017-03-02 14:42:41 -0600 | [diff] [blame] | 858 | error_message = "Plug-in failed with non-zero return code.\n" |
| 859 | error_message += gp.sprint_var(rc, 1) |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 860 | set_default_siguser1() |
Michael Walsh | 30dadae | 2017-02-27 14:25:52 -0600 | [diff] [blame] | 861 | BuiltIn().fail(gp.sprint_error(error_message)) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 862 | else: |
| 863 | match_state = st.anchor_state(state) |
| 864 | del match_state['epoch_seconds'] |
| 865 | # Wait for the state to change in any way. |
| 866 | st.wait_state(match_state, wait_time=state_change_timeout, |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 867 | interval="10 seconds", invert=1) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 868 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 869 | gp.qprintn() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 870 | if boot_table[boot]['end']['chassis'] == "Off": |
| 871 | boot_timeout = power_off_timeout |
| 872 | else: |
| 873 | boot_timeout = power_on_timeout |
| 874 | st.wait_state(boot_table[boot]['end'], wait_time=boot_timeout, |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 875 | interval="10 seconds") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 876 | |
| 877 | plug_in_setup() |
| 878 | rc, shell_rc, failed_plug_in_name = \ |
| 879 | grpi.rprocess_plug_in_packages(call_point="post_boot") |
| 880 | if rc != 0: |
| 881 | error_message = "Plug-in failed with non-zero return code.\n" +\ |
| 882 | gp.sprint_var(rc, 1) |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 883 | set_default_siguser1() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 884 | BuiltIn().fail(gp.sprint_error(error_message)) |
| 885 | |
Michael Walsh | f566fb1 | 2019-02-01 14:35:09 -0600 | [diff] [blame] | 886 | # Restore original sigusr1 handler. |
| 887 | set_default_siguser1() |
| 888 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 889 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 890 | def test_loop_body(): |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 891 | r""" |
| 892 | The main loop body for the loop in main_py. |
| 893 | |
| 894 | Description of arguments: |
| 895 | boot_count The iteration number (starts at 1). |
| 896 | """ |
| 897 | |
| 898 | global boot_count |
| 899 | global state |
| 900 | global next_boot |
| 901 | global boot_success |
Sunil M | 325eb54 | 2017-08-10 07:09:43 -0500 | [diff] [blame] | 902 | global boot_end_time |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 903 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 904 | gp.qprintn() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 905 | |
| 906 | next_boot = select_boot() |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 907 | if next_boot == "": |
| 908 | return True |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 909 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 910 | boot_count += 1 |
| 911 | gp.qprint_timen("Starting boot " + str(boot_count) + ".") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 912 | |
Michael Walsh | e0cf8d7 | 2017-05-17 13:20:46 -0500 | [diff] [blame] | 913 | pre_boot_plug_in_setup() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 914 | |
| 915 | cmd_buf = ["run_boot", next_boot] |
| 916 | boot_status, msg = BuiltIn().run_keyword_and_ignore_error(*cmd_buf) |
| 917 | if boot_status == "FAIL": |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 918 | gp.qprint(msg) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 919 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 920 | gp.qprintn() |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 921 | if boot_status == "PASS": |
| 922 | boot_success = 1 |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 923 | completion_msg = gp.sprint_timen("BOOT_SUCCESS: \"" + next_boot |
| 924 | + "\" succeeded.") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 925 | else: |
| 926 | boot_success = 0 |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 927 | completion_msg = gp.sprint_timen("BOOT_FAILED: \"" + next_boot |
| 928 | + "\" failed.") |
Sunil M | 325eb54 | 2017-08-10 07:09:43 -0500 | [diff] [blame] | 929 | |
| 930 | # Set boot_end_time for use by plug-ins. |
| 931 | boot_end_time = completion_msg[1:33] |
| 932 | gp.qprint_var(boot_end_time) |
| 933 | |
| 934 | gp.qprint(completion_msg) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 935 | |
| 936 | boot_results.update(next_boot, boot_status) |
| 937 | |
| 938 | plug_in_setup() |
| 939 | # NOTE: A post_test_case call point failure is NOT counted as a boot |
| 940 | # failure. |
| 941 | rc, shell_rc, failed_plug_in_name = grpi.rprocess_plug_in_packages( |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 942 | call_point='post_test_case', stop_on_plug_in_failure=0) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 943 | |
| 944 | plug_in_setup() |
| 945 | rc, shell_rc, failed_plug_in_name = grpi.rprocess_plug_in_packages( |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 946 | call_point='ffdc_check', shell_rc=dump_ffdc_rc(), |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 947 | stop_on_plug_in_failure=1, stop_on_non_zero_rc=1) |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 948 | if boot_status != "PASS" or ffdc_check == "All" or\ |
| 949 | shell_rc == dump_ffdc_rc(): |
Michael Walsh | 83f4bc7 | 2017-04-20 16:49:43 -0500 | [diff] [blame] | 950 | status, ret_values = grk.run_key_u("my_ffdc", ignore=1) |
| 951 | if status != 'PASS': |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 952 | gp.qprint_error("Call to my_ffdc failed.\n") |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 953 | |
Michael Walsh | aabef1e | 2017-09-20 15:16:17 -0500 | [diff] [blame] | 954 | if delete_errlogs: |
| 955 | # We need to purge error logs between boots or they build up. |
| 956 | grk.run_key("Delete Error logs", ignore=1) |
Michael Walsh | d139f28 | 2017-04-04 18:00:23 -0500 | [diff] [blame] | 957 | |
Michael Walsh | 952f9b0 | 2017-03-09 13:11:14 -0600 | [diff] [blame] | 958 | boot_results.print_report() |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 959 | gp.qprint_timen("Finished boot " + str(boot_count) + ".") |
Michael Walsh | 952f9b0 | 2017-03-09 13:11:14 -0600 | [diff] [blame] | 960 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 961 | plug_in_setup() |
| 962 | rc, shell_rc, failed_plug_in_name = grpi.rprocess_plug_in_packages( |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 963 | call_point='stop_check', shell_rc=stop_test_rc(), |
| 964 | stop_on_non_zero_rc=1) |
| 965 | if shell_rc == stop_test_rc(): |
Michael Walsh | 3ba8ecd | 2018-04-24 11:33:25 -0500 | [diff] [blame] | 966 | message = "Stopping as requested by user.\n" |
| 967 | gp.print_time(message) |
| 968 | BuiltIn().fail(message) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 969 | |
Michael Walsh | d139f28 | 2017-04-04 18:00:23 -0500 | [diff] [blame] | 970 | # This should help prevent ConnectionErrors. |
Michael Walsh | 0960b38 | 2017-06-22 16:23:37 -0500 | [diff] [blame] | 971 | grk.run_key_u("Close All Connections") |
Michael Walsh | d139f28 | 2017-04-04 18:00:23 -0500 | [diff] [blame] | 972 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 973 | return True |
| 974 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 975 | |
Michael Walsh | 83f4bc7 | 2017-04-20 16:49:43 -0500 | [diff] [blame] | 976 | def obmc_boot_test_teardown(): |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 977 | r""" |
Michael Walsh | c911681 | 2017-03-10 14:23:06 -0600 | [diff] [blame] | 978 | Clean up after the Main keyword. |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 979 | """ |
| 980 | |
| 981 | if cp_setup_called: |
| 982 | plug_in_setup() |
| 983 | rc, shell_rc, failed_plug_in_name = grpi.rprocess_plug_in_packages( |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 984 | call_point='cleanup', stop_on_plug_in_failure=0) |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 985 | |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 986 | if 'boot_results_file_path' in globals(): |
Michael Walsh | 6c64574 | 2018-08-17 15:02:17 -0500 | [diff] [blame] | 987 | # Save boot_results and last_ten objects to a file in case they are |
| 988 | # needed again. |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 989 | gp.qprint_timen("Saving boot_results to the following path.") |
| 990 | gp.qprint_var(boot_results_file_path) |
Michael Walsh | 6c64574 | 2018-08-17 15:02:17 -0500 | [diff] [blame] | 991 | pickle.dump((boot_results, last_ten), |
| 992 | open(boot_results_file_path, 'wb'), |
Michael Walsh | 600876d | 2017-05-30 17:58:58 -0500 | [diff] [blame] | 993 | pickle.HIGHEST_PROTOCOL) |
Michael Walsh | 0b93fbf | 2017-03-02 14:42:41 -0600 | [diff] [blame] | 994 | |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 995 | global save_stack |
| 996 | # Restore any global values saved on the save_stack. |
| 997 | for parm_name in main_func_parm_list: |
| 998 | # Get the parm_value if it was saved on the stack. |
| 999 | try: |
| 1000 | parm_value = save_stack.pop(parm_name) |
Joy Onyerikwu | 004ad3c | 2018-06-11 16:29:56 -0500 | [diff] [blame] | 1001 | except BaseException: |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 1002 | # If it was not saved, no further action is required. |
| 1003 | continue |
| 1004 | |
| 1005 | # Restore the saved value. |
| 1006 | cmd_buf = "BuiltIn().set_global_variable(\"${" + parm_name +\ |
| 1007 | "}\", parm_value)" |
| 1008 | gp.dpissuing(cmd_buf) |
| 1009 | exec(cmd_buf) |
| 1010 | |
| 1011 | gp.dprintn(save_stack.sprint_obj()) |
| 1012 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 1013 | |
Michael Walsh | c911681 | 2017-03-10 14:23:06 -0600 | [diff] [blame] | 1014 | def test_teardown(): |
Michael Walsh | c911681 | 2017-03-10 14:23:06 -0600 | [diff] [blame] | 1015 | r""" |
| 1016 | Clean up after this test case. |
| 1017 | """ |
| 1018 | |
| 1019 | gp.qprintn() |
| 1020 | cmd_buf = ["Print Error", |
| 1021 | "A keyword timeout occurred ending this program.\n"] |
| 1022 | BuiltIn().run_keyword_if_timeout_occurred(*cmd_buf) |
| 1023 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 1024 | grp.rqprint_pgm_footer() |
| 1025 | |
Michael Walsh | c911681 | 2017-03-10 14:23:06 -0600 | [diff] [blame] | 1026 | |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 1027 | def post_stack(): |
| 1028 | r""" |
| 1029 | Process post_stack plug-in programs. |
| 1030 | """ |
| 1031 | |
| 1032 | if not call_post_stack_plug: |
| 1033 | # The caller does not wish to have post_stack plug-in processing done. |
| 1034 | return |
| 1035 | |
| 1036 | global boot_success |
| 1037 | |
| 1038 | # NOTE: A post_stack call-point failure is NOT counted as a boot failure. |
| 1039 | pre_boot_plug_in_setup() |
| 1040 | # For the purposes of the following plug-ins, mark the "boot" as a success. |
| 1041 | boot_success = 1 |
| 1042 | plug_in_setup() |
Michael Walsh | 815b1d5 | 2018-10-30 13:32:26 -0500 | [diff] [blame] | 1043 | rc, shell_rc, failed_plug_in_name, history =\ |
| 1044 | grpi.rprocess_plug_in_packages(call_point='post_stack', |
| 1045 | stop_on_plug_in_failure=0, |
| 1046 | return_history=True) |
| 1047 | last_ten.extend(history) |
| 1048 | # Trim list to max number of entries. |
| 1049 | del last_ten[:max(0, len(last_ten) - max_boot_history)] |
| 1050 | if rc != 0: |
| 1051 | boot_success = 0 |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 1052 | |
| 1053 | plug_in_setup() |
Michael Walsh | 815b1d5 | 2018-10-30 13:32:26 -0500 | [diff] [blame] | 1054 | rc, shell_rc, failed_plug_in_name =\ |
| 1055 | grpi.rprocess_plug_in_packages(call_point='ffdc_check', |
| 1056 | shell_rc=dump_ffdc_rc(), |
| 1057 | stop_on_plug_in_failure=1, |
| 1058 | stop_on_non_zero_rc=1) |
| 1059 | if shell_rc == dump_ffdc_rc(): |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 1060 | status, ret_values = grk.run_key_u("my_ffdc", ignore=1) |
| 1061 | if status != 'PASS': |
| 1062 | gp.qprint_error("Call to my_ffdc failed.\n") |
| 1063 | |
| 1064 | plug_in_setup() |
| 1065 | rc, shell_rc, failed_plug_in_name = grpi.rprocess_plug_in_packages( |
| 1066 | call_point='stop_check', shell_rc=stop_test_rc(), |
| 1067 | stop_on_non_zero_rc=1) |
| 1068 | if shell_rc == stop_test_rc(): |
| 1069 | message = "Stopping as requested by user.\n" |
| 1070 | gp.print_time(message) |
| 1071 | BuiltIn().fail(message) |
| 1072 | |
| 1073 | |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 1074 | def obmc_boot_test_py(loc_boot_stack=None, |
| 1075 | loc_stack_mode=None, |
| 1076 | loc_quiet=None): |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 1077 | r""" |
| 1078 | Do main program processing. |
| 1079 | """ |
| 1080 | |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 1081 | global save_stack |
| 1082 | |
George Keishing | 36efbc0 | 2018-12-12 10:18:23 -0600 | [diff] [blame] | 1083 | gp.dprintn() |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 1084 | # Process function parms. |
| 1085 | for parm_name in main_func_parm_list: |
| 1086 | # Get parm's value. |
George Keishing | 36efbc0 | 2018-12-12 10:18:23 -0600 | [diff] [blame] | 1087 | parm_value = eval("loc_" + parm_name) |
| 1088 | gp.dpvars(parm_name, parm_value) |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 1089 | |
George Keishing | 36efbc0 | 2018-12-12 10:18:23 -0600 | [diff] [blame] | 1090 | if parm_value is not None: |
Michael Walsh | ff34000 | 2017-08-29 11:18:27 -0500 | [diff] [blame] | 1091 | # Save the global value on a stack. |
| 1092 | cmd_buf = "save_stack.push(BuiltIn().get_variable_value(\"${" +\ |
| 1093 | parm_name + "}\"), \"" + parm_name + "\")" |
| 1094 | gp.dpissuing(cmd_buf) |
| 1095 | exec(cmd_buf) |
| 1096 | |
| 1097 | # Set the global value to the passed value. |
| 1098 | cmd_buf = "BuiltIn().set_global_variable(\"${" + parm_name +\ |
| 1099 | "}\", loc_" + parm_name + ")" |
| 1100 | gp.dpissuing(cmd_buf) |
| 1101 | exec(cmd_buf) |
| 1102 | |
| 1103 | gp.dprintn(save_stack.sprint_obj()) |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 1104 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 1105 | setup() |
| 1106 | |
Michael Walsh | cd9fbfd | 2017-09-19 12:00:08 -0500 | [diff] [blame] | 1107 | init_boot_pass, init_boot_fail = boot_results.return_total_pass_fail() |
| 1108 | |
Michael Walsh | a20da40 | 2017-03-31 16:27:45 -0500 | [diff] [blame] | 1109 | if ffdc_only: |
| 1110 | gp.qprint_timen("Caller requested ffdc_only.") |
Michael Walsh | e0cf8d7 | 2017-05-17 13:20:46 -0500 | [diff] [blame] | 1111 | pre_boot_plug_in_setup() |
Michael Walsh | 83f4bc7 | 2017-04-20 16:49:43 -0500 | [diff] [blame] | 1112 | grk.run_key_u("my_ffdc") |
Michael Walsh | 764d2f8 | 2017-04-27 16:01:08 -0500 | [diff] [blame] | 1113 | return |
Michael Walsh | a20da40 | 2017-03-31 16:27:45 -0500 | [diff] [blame] | 1114 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 1115 | # Process caller's boot_stack. |
| 1116 | while (len(boot_stack) > 0): |
| 1117 | test_loop_body() |
| 1118 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 1119 | gp.qprint_timen("Finished processing stack.") |
Michael Walsh | 30dadae | 2017-02-27 14:25:52 -0600 | [diff] [blame] | 1120 | |
Michael Walsh | 89de14a | 2018-10-01 16:51:37 -0500 | [diff] [blame] | 1121 | post_stack() |
| 1122 | |
Michael Walsh | 6741f74 | 2017-02-20 16:16:38 -0600 | [diff] [blame] | 1123 | # Process caller's boot_list. |
| 1124 | if len(boot_list) > 0: |
| 1125 | for ix in range(1, max_num_tests + 1): |
| 1126 | test_loop_body() |
| 1127 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 1128 | gp.qprint_timen("Completed all requested boot tests.") |
| 1129 | |
| 1130 | boot_pass, boot_fail = boot_results.return_total_pass_fail() |
Michael Walsh | cd9fbfd | 2017-09-19 12:00:08 -0500 | [diff] [blame] | 1131 | new_fail = boot_fail - init_boot_fail |
| 1132 | if new_fail > boot_fail_threshold: |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 1133 | error_message = "Boot failures exceed the boot failure" +\ |
| 1134 | " threshold:\n" +\ |
Michael Walsh | cd9fbfd | 2017-09-19 12:00:08 -0500 | [diff] [blame] | 1135 | gp.sprint_var(new_fail) +\ |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 1136 | gp.sprint_var(boot_fail_threshold) |
| 1137 | BuiltIn().fail(gp.sprint_error(error_message)) |