blob: 42af3f753cdf7acefea2443cb0c43cf54404f09a [file] [log] [blame]
Michael Walshac29d062017-02-20 16:13:10 -06001#!/usr/bin/env python
2
3r"""
Michael Walsh410b1782019-10-22 15:56:18 -05004This module has functions to support various data structures such as the boot_table, valid_boot_list and
5boot_results_table.
Michael Walshac29d062017-02-20 16:13:10 -06006"""
7
8import os
9import tempfile
10import json
Michael Walshb6e3aac2017-09-19 16:57:27 -050011import glob
Michael Walshac29d062017-02-20 16:13:10 -060012from tally_sheet import *
13
14from robot.libraries.BuiltIn import BuiltIn
15try:
16 from robot.utils import DotDict
17except ImportError:
18 import collections
19
20import gen_print as gp
Michael Walshac29d062017-02-20 16:13:10 -060021import gen_valid as gv
22import gen_misc as gm
23import gen_cmd as gc
Michael Walshb6e3aac2017-09-19 16:57:27 -050024import var_funcs as vf
Michael Walshac29d062017-02-20 16:13:10 -060025
Michael Walsh410b1782019-10-22 15:56:18 -050026# The code base directory will be one level up from the directory containing this module.
Michael Walshac29d062017-02-20 16:13:10 -060027code_base_dir_path = os.path.dirname(os.path.dirname(__file__)) + os.sep
28
Michael Sheposda40c1d2020-12-01 22:30:00 -060029redfish_support_trans_state = int(os.environ.get('REDFISH_SUPPORT_TRANS_STATE', 0)) or \
30 int(BuiltIn().get_variable_value("${REDFISH_SUPPORT_TRANS_STATE}", default=0))
31
Michael Walshac29d062017-02-20 16:13:10 -060032
Michael Walsh6c4520c2019-07-16 16:40:00 -050033def create_boot_table(file_path=None,
34 os_host=""):
Michael Walshac29d062017-02-20 16:13:10 -060035 r"""
36 Read the boot table JSON file, convert it to an object and return it.
37
Michael Walsh410b1782019-10-22 15:56:18 -050038 Note that if the user is running without a global OS_HOST robot variable specified, this function will
39 remove all of the "os_" start and end state requirements from the JSON data.
Michael Walshac29d062017-02-20 16:13:10 -060040
Michael Walsh6c4520c2019-07-16 16:40:00 -050041 Description of argument(s):
Michael Walsh410b1782019-10-22 15:56:18 -050042 file_path The path to the boot_table file. If this value is not specified, it will
43 be obtained from the "BOOT_TABLE_PATH" environment variable, if set.
44 Otherwise, it will default to "data/boot_table.json". If this value is a
45 relative path, this function will use the code_base_dir_path as the base
46 directory (see definition above).
47 os_host The host name or IP address of the host associated with the machine being
48 tested. If the user is running without an OS_HOST (i.e. if this argument
49 is blank), we remove os starting and ending state requirements from the
50 boot entries.
Michael Walshac29d062017-02-20 16:13:10 -060051 """
52 if file_path is None:
Michael Sheposda40c1d2020-12-01 22:30:00 -060053 if redfish_support_trans_state:
54 file_path = os.environ.get('BOOT_TABLE_PATH', 'data/boot_table_redfish.json')
55 else:
56 file_path = os.environ.get('BOOT_TABLE_PATH', 'data/boot_table.json')
Michael Walshac29d062017-02-20 16:13:10 -060057
58 if not file_path.startswith("/"):
59 file_path = code_base_dir_path + file_path
60
61 # Pre-process the file by removing blank lines and comment lines.
62 temp = tempfile.NamedTemporaryFile()
63 temp_file_path = temp.name
64
65 cmd_buf = "egrep -v '^[ ]*$|^[ ]*#' " + file_path + " > " + temp_file_path
66 gc.cmd_fnc_u(cmd_buf, quiet=1)
67
68 boot_file = open(temp_file_path)
69 boot_table = json.load(boot_file, object_hook=DotDict)
70
Michael Walsh410b1782019-10-22 15:56:18 -050071 # If the user is running without an OS_HOST, we remove os starting and ending state requirements from
72 # the boot entries.
Michael Walshac29d062017-02-20 16:13:10 -060073 if os_host == "":
74 for boot in boot_table:
75 state_keys = ['start', 'end']
76 for state_key in state_keys:
Michael Walsh37f833d2019-03-04 17:09:12 -060077 for sub_state in list(boot_table[boot][state_key]):
Michael Walshac29d062017-02-20 16:13:10 -060078 if sub_state.startswith("os_"):
79 boot_table[boot][state_key].pop(sub_state, None)
80
Michael Walsh07a01ef2017-02-27 14:20:22 -060081 # For every boot_type we should have a corresponding mfg mode boot type.
82 enhanced_boot_table = DotDict()
George Keishing36efbc02018-12-12 10:18:23 -060083 for key, value in boot_table.items():
Michael Walsh07a01ef2017-02-27 14:20:22 -060084 enhanced_boot_table[key] = value
85 enhanced_boot_table[key + " (mfg)"] = value
86
87 return enhanced_boot_table
Michael Walshac29d062017-02-20 16:13:10 -060088
Michael Walshac29d062017-02-20 16:13:10 -060089
Michael Walshac29d062017-02-20 16:13:10 -060090def create_valid_boot_list(boot_table):
Michael Walshac29d062017-02-20 16:13:10 -060091 r"""
Michael Walsh410b1782019-10-22 15:56:18 -050092 Return a list of all of the valid boot types (e.g. ['REST Power On', 'REST Power Off', ...]).
Michael Walshac29d062017-02-20 16:13:10 -060093
Michael Walsh6c4520c2019-07-16 16:40:00 -050094 Description of argument(s):
Michael Walsh410b1782019-10-22 15:56:18 -050095 boot_table A boot table such as is returned by the create_boot_table function.
Michael Walshac29d062017-02-20 16:13:10 -060096 """
97
98 return list(boot_table.keys())
99
Michael Walshac29d062017-02-20 16:13:10 -0600100
Michael Walshac29d062017-02-20 16:13:10 -0600101def read_boot_lists(dir_path="data/boot_lists/"):
Michael Walshac29d062017-02-20 16:13:10 -0600102 r"""
Michael Walsh410b1782019-10-22 15:56:18 -0500103 Read the contents of all the boot lists files found in the given boot lists directory and return
104 dictionary of the lists.
Michael Walshac29d062017-02-20 16:13:10 -0600105
Michael Walsh410b1782019-10-22 15:56:18 -0500106 Boot lists are simply files containing a boot test name on each line. These files are useful for
107 categorizing and organizing boot tests. For example, there may be a "Power_on" list, a "Power_off" list,
108 etc.
Michael Walshac29d062017-02-20 16:13:10 -0600109
Michael Walsh410b1782019-10-22 15:56:18 -0500110 The names of the boot list files will be the keys to the top level dictionary. Each dictionary entry is
111 a list of all the boot tests found in the corresponding file.
Michael Walshac29d062017-02-20 16:13:10 -0600112
113 Here is an abbreviated look at the resulting boot_lists dictionary.
114
115 boot_lists:
116 boot_lists[All]:
Michael Walsh6c4520c2019-07-16 16:40:00 -0500117 boot_lists[All][0]: REST Power On
118 boot_lists[All][1]: REST Power Off
Michael Walshac29d062017-02-20 16:13:10 -0600119 ...
120 boot_lists[Code_update]:
121 boot_lists[Code_update][0]: BMC oob hpm
122 boot_lists[Code_update][1]: BMC ib hpm
123 ...
124
Michael Walsh6c4520c2019-07-16 16:40:00 -0500125 Description of argument(s):
Michael Walsh410b1782019-10-22 15:56:18 -0500126 dir_path The path to the directory containing the boot list files. If this value
127 is a relative path, this function will use the code_base_dir_path as the
128 base directory (see definition above).
Michael Walshac29d062017-02-20 16:13:10 -0600129 """
130
131 if not dir_path.startswith("/"):
132 # Dir path is relative.
133 dir_path = code_base_dir_path + dir_path
134
135 # Get a list of all file names in the directory.
136 boot_file_names = os.listdir(dir_path)
137
138 boot_lists = DotDict()
139 for boot_category in boot_file_names:
140 file_path = gm.which(dir_path + boot_category)
141 boot_list = gm.file_to_list(file_path, newlines=0, comments=0, trim=1)
142 boot_lists[boot_category] = boot_list
143
144 return boot_lists
145
Michael Walshac29d062017-02-20 16:13:10 -0600146
Michael Walshac29d062017-02-20 16:13:10 -0600147def valid_boot_list(boot_list,
148 valid_boot_types):
Michael Walshac29d062017-02-20 16:13:10 -0600149 r"""
150 Verify that each entry in boot_list is a supported boot test.
151
Michael Walsh6c4520c2019-07-16 16:40:00 -0500152 Description of argument(s):
Michael Walsh410b1782019-10-22 15:56:18 -0500153 boot_list An array (i.e. list) of boot test types (e.g. "REST Power On").
154 valid_boot_types A list of valid boot types such as that returned by
155 create_valid_boot_list.
Michael Walshac29d062017-02-20 16:13:10 -0600156 """
157
158 for boot_name in boot_list:
159 boot_name = boot_name.strip(" ")
Michael Walshec01a6f2019-08-01 12:43:20 -0500160 error_message = gv.valid_value(boot_name,
161 valid_values=valid_boot_types,
162 var_name="boot_name")
Michael Walshac29d062017-02-20 16:13:10 -0600163 if error_message != "":
164 BuiltIn().fail(gp.sprint_error(error_message))
165
Michael Walshac29d062017-02-20 16:13:10 -0600166
Michael Walshac29d062017-02-20 16:13:10 -0600167class boot_results:
168
169 r"""
170 This class defines a boot_results table.
171 """
172
173 def __init__(self,
174 boot_table,
175 boot_pass=0,
176 boot_fail=0,
177 obj_name='boot_results'):
Michael Walshac29d062017-02-20 16:13:10 -0600178 r"""
179 Initialize the boot results object.
180
Michael Walsh6c4520c2019-07-16 16:40:00 -0500181 Description of argument(s):
Michael Walsh410b1782019-10-22 15:56:18 -0500182 boot_table Boot table object (see definition above). The boot table contains all of
183 the valid boot test types. It can be created with the create_boot_table
184 function.
185 boot_pass An initial boot_pass value. This program may be called as part of a
186 larger test suite. As such there may already have been some successful
187 boot tests that we need to keep track of.
188 boot_fail An initial boot_fail value. This program may be called as part of a
189 larger test suite. As such there may already have been some unsuccessful
190 boot tests that we need to keep track of.
Michael Walsh6c4520c2019-07-16 16:40:00 -0500191 obj_name The name of this object.
Michael Walshac29d062017-02-20 16:13:10 -0600192 """
193
194 # Store the method parms as class data.
195 self.__obj_name = obj_name
196 self.__initial_boot_pass = boot_pass
197 self.__initial_boot_fail = boot_fail
198
199 # Create boot_results_fields for use in creating boot_results table.
200 boot_results_fields = DotDict([('total', 0), ('pass', 0), ('fail', 0)])
201 # Create boot_results table.
202 self.__boot_results = tally_sheet('boot type',
203 boot_results_fields,
204 'boot_test_results')
205 self.__boot_results.set_sum_fields(['total', 'pass', 'fail'])
206 self.__boot_results.set_calc_fields(['total=pass+fail'])
Michael Walsh410b1782019-10-22 15:56:18 -0500207 # Create one row in the result table for each kind of boot test in the boot_table (i.e. for all
208 # supported boot tests).
Michael Walshac29d062017-02-20 16:13:10 -0600209 for boot_name in list(boot_table.keys()):
210 self.__boot_results.add_row(boot_name)
211
Michael Walsh6c4520c2019-07-16 16:40:00 -0500212 def add_row(self, *args, **kwargs):
213 r"""
214 Add row to tally_sheet class object.
215
216 Description of argument(s):
Michael Walsh410b1782019-10-22 15:56:18 -0500217 See add_row method in tally_sheet.py for a description of all arguments.
Michael Walsh6c4520c2019-07-16 16:40:00 -0500218 """
219 self.__boot_results.add_row(*args, **kwargs)
220
Michael Walshac29d062017-02-20 16:13:10 -0600221 def return_total_pass_fail(self):
Michael Walshac29d062017-02-20 16:13:10 -0600222 r"""
Michael Walsh410b1782019-10-22 15:56:18 -0500223 Return the total boot_pass and boot_fail values. This information is comprised of the pass/fail
224 values from the table plus the initial pass/fail values.
Michael Walshac29d062017-02-20 16:13:10 -0600225 """
226
227 totals_line = self.__boot_results.calc()
228 return totals_line['pass'] + self.__initial_boot_pass,\
229 totals_line['fail'] + self.__initial_boot_fail
230
231 def update(self,
232 boot_type,
233 boot_status):
Michael Walshac29d062017-02-20 16:13:10 -0600234 r"""
235 Update our boot_results_table. This includes:
Michael Walsh410b1782019-10-22 15:56:18 -0500236 - Updating the record for the given boot_type by incrementing the pass or fail field.
Michael Walshac29d062017-02-20 16:13:10 -0600237 - Calling the calc method to have the totals calculated.
238
Michael Walsh6c4520c2019-07-16 16:40:00 -0500239 Description of argument(s):
Michael Walsh410b1782019-10-22 15:56:18 -0500240 boot_type The type of boot test just done (e.g. "REST Power On").
241 boot_status The status of the boot just done. This should be equal to either "pass"
242 or "fail" (case-insensitive).
Michael Walshac29d062017-02-20 16:13:10 -0600243 """
244
245 self.__boot_results.inc_row_field(boot_type, boot_status.lower())
Michael Walsh8f1ef9e2017-03-02 14:31:24 -0600246 self.__boot_results.calc()
Michael Walshac29d062017-02-20 16:13:10 -0600247
248 def sprint_report(self,
249 header_footer="\n"):
Michael Walshac29d062017-02-20 16:13:10 -0600250 r"""
251 String-print the formatted boot_resuls_table and return them.
252
Michael Walsh6c4520c2019-07-16 16:40:00 -0500253 Description of argument(s):
Michael Walsh410b1782019-10-22 15:56:18 -0500254 header_footer This indicates whether a header and footer are to be included in the
255 report.
Michael Walshac29d062017-02-20 16:13:10 -0600256 """
257
258 buffer = ""
259
260 buffer += gp.sprint(header_footer)
261 buffer += self.__boot_results.sprint_report()
262 buffer += gp.sprint(header_footer)
263
264 return buffer
265
266 def print_report(self,
Michael Walsh6c4520c2019-07-16 16:40:00 -0500267 header_footer="\n",
268 quiet=None):
Michael Walshac29d062017-02-20 16:13:10 -0600269 r"""
270 Print the formatted boot_resuls_table to the console.
271
Michael Walsh6c4520c2019-07-16 16:40:00 -0500272 Description of argument(s):
Michael Walshac29d062017-02-20 16:13:10 -0600273 See sprint_report for details.
Michael Walsh410b1782019-10-22 15:56:18 -0500274 quiet Only print if this value is 0. This function will search upward in the
275 stack to get the default value.
Michael Walshac29d062017-02-20 16:13:10 -0600276 """
277
Michael Walsh6c4520c2019-07-16 16:40:00 -0500278 quiet = int(gm.dft(quiet, gp.get_stack_var('quiet', 0)))
279
Michael Walshc108e422019-03-28 12:27:18 -0500280 gp.qprint(self.sprint_report(header_footer))
Michael Walshac29d062017-02-20 16:13:10 -0600281
282 def sprint_obj(self):
Michael Walshac29d062017-02-20 16:13:10 -0600283 r"""
Michael Walsh410b1782019-10-22 15:56:18 -0500284 sprint the fields of this object. This would normally be for debug purposes only.
Michael Walshac29d062017-02-20 16:13:10 -0600285 """
286
287 buffer = ""
288
289 buffer += "class name: " + self.__class__.__name__ + "\n"
290 buffer += gp.sprint_var(self.__obj_name)
291 buffer += self.__boot_results.sprint_obj()
292 buffer += gp.sprint_var(self.__initial_boot_pass)
293 buffer += gp.sprint_var(self.__initial_boot_fail)
294
295 return buffer
296
297 def print_obj(self):
Michael Walshac29d062017-02-20 16:13:10 -0600298 r"""
Michael Walsh410b1782019-10-22 15:56:18 -0500299 Print the fields of this object to stdout. This would normally be for debug purposes.
Michael Walshac29d062017-02-20 16:13:10 -0600300 """
301
Michael Walshc108e422019-03-28 12:27:18 -0500302 gp.gp_print(self.sprint_obj())
Michael Walshac29d062017-02-20 16:13:10 -0600303
Michael Walshb6e3aac2017-09-19 16:57:27 -0500304
Michael Walshb6e3aac2017-09-19 16:57:27 -0500305def create_boot_results_file_path(pgm_name,
306 openbmc_nickname,
307 master_pid):
Michael Walshb6e3aac2017-09-19 16:57:27 -0500308 r"""
309 Create a file path to be used to store a boot_results object.
310
311 Description of argument(s):
Michael Walsh410b1782019-10-22 15:56:18 -0500312 pgm_name The name of the program. This will form part of the resulting file name.
313 openbmc_nickname The name of the system. This could be a nickname, a hostname, an IP,
314 etc. This will form part of the resulting file name.
315 master_pid The master process id which will form part of the file name.
Michael Walsh6c4520c2019-07-16 16:40:00 -0500316 """
Michael Walshb6e3aac2017-09-19 16:57:27 -0500317
Michael Walsh8d7b7382017-09-27 16:00:25 -0500318 USER = os.environ.get("USER", "")
319 dir_path = "/tmp/" + USER + "/"
320 if not os.path.exists(dir_path):
321 os.makedirs(dir_path)
322
Michael Walshb6e3aac2017-09-19 16:57:27 -0500323 file_name_dict = vf.create_var_dict(pgm_name, openbmc_nickname, master_pid)
Michael Walsh8d7b7382017-09-27 16:00:25 -0500324 return vf.create_file_path(file_name_dict, dir_path=dir_path,
325 file_suffix=":boot_results")
Michael Walshb6e3aac2017-09-19 16:57:27 -0500326
Michael Walshb6e3aac2017-09-19 16:57:27 -0500327
Michael Walshb6e3aac2017-09-19 16:57:27 -0500328def cleanup_boot_results_file():
Michael Walshb6e3aac2017-09-19 16:57:27 -0500329 r"""
Michael Walsh410b1782019-10-22 15:56:18 -0500330 Delete all boot results files whose corresponding pids are no longer active.
Michael Walshb6e3aac2017-09-19 16:57:27 -0500331 """
332
Michael Walsh410b1782019-10-22 15:56:18 -0500333 # Use create_boot_results_file_path to create a globex to find all of the existing boot results files.
Michael Walshb6e3aac2017-09-19 16:57:27 -0500334 globex = create_boot_results_file_path("*", "*", "*")
335 file_list = sorted(glob.glob(globex))
336 for file_path in file_list:
337 # Use parse_file_path to extract info from the file path.
338 file_dict = vf.parse_file_path(file_path)
339 if gm.pid_active(file_dict['master_pid']):
340 gp.qprint_timen("Preserving " + file_path + ".")
341 else:
342 gc.cmd_fnc("rm -f " + file_path)
Michael Walsh6c4520c2019-07-16 16:40:00 -0500343
344
345def update_boot_history(boot_history, boot_start_message, max_boot_history=10):
346 r"""
Michael Walsh410b1782019-10-22 15:56:18 -0500347 Update the boot_history list by appending the boot_start_message and by removing all but the last n
348 entries.
Michael Walsh6c4520c2019-07-16 16:40:00 -0500349
350 Description of argument(s):
351 boot_history A list of boot start messages.
Michael Walsh410b1782019-10-22 15:56:18 -0500352 boot_start_message This is typically a time-stamped line of text announcing the start of a
353 boot test.
354 max_boot_history The max number of entries to be kept in the boot_history list. The
355 oldest entries are deleted to achieve this list size.
Michael Walsh6c4520c2019-07-16 16:40:00 -0500356 """
357
358 boot_history.append(boot_start_message)
359
360 # Trim list to max number of entries.
361 del boot_history[:max(0, len(boot_history) - max_boot_history)]
362
363
364def print_boot_history(boot_history, quiet=None):
365 r"""
366 Print the last ten boots done with their time stamps.
367
368 Description of argument(s):
Michael Walsh410b1782019-10-22 15:56:18 -0500369 quiet Only print if this value is 0. This function will search upward in the
370 stack to get the default value.
Michael Walsh6c4520c2019-07-16 16:40:00 -0500371 """
372
373 quiet = int(gm.dft(quiet, gp.get_stack_var('quiet', 0)))
374
375 # indent 0, 90 chars wide, linefeed, char is "="
376 gp.qprint_dashes(0, 90)
377 gp.qprintn("Last 10 boots:\n")
378
379 for boot_entry in boot_history:
380 gp.qprint(boot_entry)
381 gp.qprint_dashes(0, 90)