blob: 8c10b2d4c5fd3fe6a2408815b9438fe9d2a6593c [file] [log] [blame]
manasarm5dedfaf2018-02-07 14:54:54 +05301#!/usr/bin/env python
2
George Keishing9fbdf792016-10-18 06:16:09 -05003r"""
manasarm5dedfaf2018-02-07 14:54:54 +05304Use robot framework API to extract test result data from output.xml generated
5by robot tests. For more information on the Robot Framework API, see
6http://robot-framework.readthedocs.io/en/3.0/autodoc/robot.result.html
George Keishing9fbdf792016-10-18 06:16:09 -05007"""
manasarm5dedfaf2018-02-07 14:54:54 +05308
Gunnar Mills096cd562018-03-26 10:19:12 -05009import sys
10import os
George Keishing9fbdf792016-10-18 06:16:09 -050011import getopt
12import csv
George Keishing9fbdf792016-10-18 06:16:09 -050013import robot.errors
manasarm5dedfaf2018-02-07 14:54:54 +053014import re
15from datetime import datetime
George Keishing9fbdf792016-10-18 06:16:09 -050016from robot.api import ExecutionResult
17from robot.result.visitor import ResultVisitor
George Keishing74777bd2017-02-07 01:43:38 -060018from xml.etree import ElementTree
manasarm5dedfaf2018-02-07 14:54:54 +053019
20# Remove the python library path to restore with local project path later.
21save_path_0 = sys.path[0]
22del sys.path[0]
George Keishingc2a6f092019-02-20 12:26:54 -060023sys.path.append(os.path.join(os.path.dirname(__file__), "../../lib"))
manasarm5dedfaf2018-02-07 14:54:54 +053024
25from gen_arg import *
26from gen_print import *
27from gen_valid import *
28
29# Restore sys.path[0].
30sys.path.insert(0, save_path_0)
31
Steven Sombara5e32f22019-03-01 13:33:15 -060032
33this_program = sys.argv[0]
34info = " For more information: " + this_program + ' -h'
35if len(sys.argv) == 1:
36 print (info)
37 sys.exit(1)
38
39
manasarm5dedfaf2018-02-07 14:54:54 +053040parser = argparse.ArgumentParser(
Steven Sombara5e32f22019-03-01 13:33:15 -060041 usage=info,
manasarm5dedfaf2018-02-07 14:54:54 +053042 description="%(prog)s uses a robot framework API to extract test result\
43 data from output.xml generated by robot tests. For more information on the\
44 Robot Framework API, see\
George Keishing11b7af92018-06-11 10:39:01 -050045 http://robot-framework.readthedocs.io/en/3.0/autodoc/robot.result.html",
manasarm5dedfaf2018-02-07 14:54:54 +053046 formatter_class=argparse.ArgumentDefaultsHelpFormatter,
47 prefix_chars='-+')
48
49parser.add_argument(
50 '--source',
51 '-s',
Steven Sombara5e32f22019-03-01 13:33:15 -060052 help='The output.xml robot test result file path. This parameter is \
53 required.')
manasarm5dedfaf2018-02-07 14:54:54 +053054
55parser.add_argument(
56 '--dest',
57 '-d',
Steven Sombara5e32f22019-03-01 13:33:15 -060058 help='The directory path where the generated .csv files will go. This \
59 parameter is required.')
manasarm5dedfaf2018-02-07 14:54:54 +053060
manasarme4f79c92018-02-22 13:02:46 +053061parser.add_argument(
62 '--version_id',
63 help='Driver version of openbmc firmware which was used during test,\
Steven Sombara5e32f22019-03-01 13:33:15 -060064 e.g. "v2.1-215-g6e7eacb". This parameter is required.')
manasarme4f79c92018-02-22 13:02:46 +053065
66parser.add_argument(
67 '--platform',
George Keishing19533d52018-04-09 03:08:03 -050068 help='OpenBMC platform which was used during test,\
Steven Sombara5e32f22019-03-01 13:33:15 -060069 e.g. "Witherspoon". This parameter is required.')
manasarme4f79c92018-02-22 13:02:46 +053070
George Keishing19533d52018-04-09 03:08:03 -050071parser.add_argument(
72 '--level',
73 help='OpenBMC release level which was used during test,\
Steven Sombara5e32f22019-03-01 13:33:15 -060074 e.g. "Master", "OBMC920". This parameter is required.')
75
76parser.add_argument(
77 '--test_phase',
78 help='Name of testing phase, e.g. "DVT", "SVT", etc.\
79 This parameter is optional.',
80 default="FVT")
81
82parser.add_argument(
83 '--processor',
84 help='Name of processor, e.g. "P9". This parameter is optional.',
85 default="OPENPOWER")
86
George Keishing19533d52018-04-09 03:08:03 -050087
manasarm5dedfaf2018-02-07 14:54:54 +053088# Populate stock_list with options we want.
89stock_list = [("test_mode", 0), ("quiet", 0), ("debug", 0)]
90
91
92def exit_function(signal_number=0,
93 frame=None):
manasarm5dedfaf2018-02-07 14:54:54 +053094 r"""
95 Execute whenever the program ends normally or with the signals that we
96 catch (i.e. TERM, INT).
97 """
98
99 dprint_executing()
100
101 dprint_var(signal_number)
102
103 qprint_pgm_footer()
104
105
106def signal_handler(signal_number,
107 frame):
manasarm5dedfaf2018-02-07 14:54:54 +0530108 r"""
109 Handle signals. Without a function to catch a SIGTERM or SIGINT, the
110 program would terminate immediately with return code 143 and without
111 calling the exit_function.
112 """
113
114 # Our convention is to set up exit_function with atexit.register() so
115 # there is no need to explicitly call exit_function from here.
116
117 dprint_executing()
118
119 # Calling exit prevents us from returning to the code that was running
120 # when the signal was received.
121 exit(0)
122
123
124def validate_parms():
manasarm5dedfaf2018-02-07 14:54:54 +0530125 r"""
126 Validate program parameters, etc. Return True or False (i.e. pass/fail)
127 accordingly.
128 """
129
130 if not valid_file_path(source):
131 return False
132
133 if not valid_dir_path(dest):
134 return False
135
136 gen_post_validation(exit_function, signal_handler)
137
138 return True
George Keishing9fbdf792016-10-18 06:16:09 -0500139
140
Steven Sombara5e32f22019-03-01 13:33:15 -0600141def parse_output_xml(xml_file_path, csv_dir_path, version_id, platform, level,
142 test_phase, processor):
manasarm5dedfaf2018-02-07 14:54:54 +0530143 r"""
144 Parse the robot-generated output.xml file and extract various test
145 output data. Put the extracted information into a csv file in the "dest"
146 folder.
147
148 Description of argument(s):
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -0500149 xml_file_path The path to a Robot-generated output.xml
150 file.
151 csv_dir_path The path to the directory that is to
152 contain the .csv files generated by
153 this function.
154 version_id Version of the openbmc firmware
155 (e.g. "v2.1-215-g6e7eacb").
156 platform Platform of the openbmc system.
157 level Release level of the OpenBMC system
George Keishing360db632018-09-06 12:01:28 -0500158 (e.g. "Master").
manasarm5dedfaf2018-02-07 14:54:54 +0530159 """
160
George Keishing74777bd2017-02-07 01:43:38 -0600161 result = ExecutionResult(xml_file_path)
George Keishing9fbdf792016-10-18 06:16:09 -0500162 result.configure(stat_config={'suite_stat_level': 2,
163 'tag_stat_combine': 'tagANDanother'})
164
165 stats = result.statistics
George Keishingf8a9ebe2018-08-06 12:49:11 -0500166 print("--------------------------------------")
167 total_tc = stats.total.critical.passed + stats.total.critical.failed
168 print("Total Test Count:\t %d" % total_tc)
169 print("Total Test Failed:\t %d" % stats.total.critical.failed)
170 print("Total Test Passed:\t %d" % stats.total.critical.passed)
171 print("Test Start Time:\t %s" % result.suite.starttime)
172 print("Test End Time:\t\t %s" % result.suite.endtime)
173 print("--------------------------------------")
George Keishing9fbdf792016-10-18 06:16:09 -0500174
175 # Use ResultVisitor object and save off the test data info
176 class TestResult(ResultVisitor):
177 def __init__(self):
178 self.testData = []
179
180 def visit_test(self, test):
181 self.testData += [test]
182
183 collectDataObj = TestResult()
184 result.visit(collectDataObj)
185
186 # Write the result statistics attributes to CSV file
187 l_csvlist = []
George Keishing74777bd2017-02-07 01:43:38 -0600188
189 # Default Test data
George Keishing9fbdf792016-10-18 06:16:09 -0500190 l_subsys = 'OPENBMC'
Steven Sombara5e32f22019-03-01 13:33:15 -0600191 l_test_type = test_phase
George Keishing19533d52018-04-09 03:08:03 -0500192
George Keishing360db632018-09-06 12:01:28 -0500193 l_pse_rel = 'Master'
George Keishing19533d52018-04-09 03:08:03 -0500194 if level:
195 l_pse_rel = level
196
George Keishing74777bd2017-02-07 01:43:38 -0600197 l_env = 'HW'
Steven Sombara5e32f22019-03-01 13:33:15 -0600198 l_proc = processor
George Keishing74777bd2017-02-07 01:43:38 -0600199 l_platform_type = ""
200 l_func_area = ""
201
Gunnar Mills096cd562018-03-26 10:19:12 -0500202 # System data from XML meta data
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -0500203 # l_system_info = get_system_details(xml_file_path)
manasarme4f79c92018-02-22 13:02:46 +0530204
205 # First let us try to collect information from keyboard input
206 # If keyboard input cannot give both information, then find from xml file.
207 if version_id and platform:
208 l_driver = version_id
209 l_platform_type = platform
George Keishingf8a9ebe2018-08-06 12:49:11 -0500210 print("BMC Version_id:%s" % version_id)
211 print("BMC Platform:%s" % platform)
George Keishing74777bd2017-02-07 01:43:38 -0600212 else:
manasarme4f79c92018-02-22 13:02:46 +0530213 # System data from XML meta data
214 l_system_info = get_system_details(xml_file_path)
215 l_driver = l_system_info[0]
216 l_platform_type = l_system_info[1]
217
218 # Driver version id and platform are mandatorily required for CSV file
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -0500219 # generation. If any one is not avaulable, exit CSV file generation
220 # process.
manasarme4f79c92018-02-22 13:02:46 +0530221 if l_driver and l_platform_type:
George Keishingf8a9ebe2018-08-06 12:49:11 -0500222 print("Driver and system info set.")
manasarme4f79c92018-02-22 13:02:46 +0530223 else:
George Keishingf8a9ebe2018-08-06 12:49:11 -0500224 print("Both driver and system info need to be set.\
225 CSV file is not generated.")
George Keishing74777bd2017-02-07 01:43:38 -0600226 sys.exit()
George Keishing9fbdf792016-10-18 06:16:09 -0500227
228 # Default header
229 l_header = ['test_start', 'test_end', 'subsys', 'test_type',
George Keishing74777bd2017-02-07 01:43:38 -0600230 'test_result', 'test_name', 'pse_rel', 'driver',
231 'env', 'proc', 'platform_type', 'test_func_area']
George Keishing9fbdf792016-10-18 06:16:09 -0500232
233 l_csvlist.append(l_header)
234
235 # Generate CSV file onto the path with current time stamp
George Keishing74777bd2017-02-07 01:43:38 -0600236 l_base_dir = csv_dir_path
George Keishing9fbdf792016-10-18 06:16:09 -0500237 l_timestamp = datetime.utcnow().strftime("%Y-%m-%d-%H-%M-%S")
George Keishing74777bd2017-02-07 01:43:38 -0600238 # Example: 2017-02-20-08-47-22_Witherspoon.csv
239 l_csvfile = l_base_dir + l_timestamp + "_" + l_platform_type + ".csv"
George Keishing9fbdf792016-10-18 06:16:09 -0500240
George Keishingf8a9ebe2018-08-06 12:49:11 -0500241 print("Writing data into csv file:%s" % l_csvfile)
George Keishing9fbdf792016-10-18 06:16:09 -0500242
243 for testcase in collectDataObj.testData:
George Keishing74777bd2017-02-07 01:43:38 -0600244 # Functional Area: Suite Name
245 # Test Name: Test Case Name
246 l_func_area = str(testcase.parent).split(' ', 1)[1]
247 l_test_name = str(testcase)
George Keishing9fbdf792016-10-18 06:16:09 -0500248
249 # Test Result pass=0 fail=1
250 if testcase.status == 'PASS':
251 l_test_result = 0
252 else:
253 l_test_result = 1
254
George Keishing74777bd2017-02-07 01:43:38 -0600255 # Format datetime from robot output.xml to "%Y-%m-%d-%H-%M-%S"
256 l_stime = xml_to_csv_time(testcase.starttime)
257 l_etime = xml_to_csv_time(testcase.endtime)
George Keishing9fbdf792016-10-18 06:16:09 -0500258 # Data Sequence: test_start,test_end,subsys,test_type,
George Keishing74777bd2017-02-07 01:43:38 -0600259 # test_result,test_name,pse_rel,driver,
George Keishing360db632018-09-06 12:01:28 -0500260 # env,proc,platform_type,test_func_area,
George Keishing74777bd2017-02-07 01:43:38 -0600261 l_data = [l_stime, l_etime, l_subsys, l_test_type, l_test_result,
262 l_test_name, l_pse_rel, l_driver, l_env, l_proc,
263 l_platform_type, l_func_area]
George Keishing9fbdf792016-10-18 06:16:09 -0500264 l_csvlist.append(l_data)
265
George Keishinga96e27c2016-12-04 23:05:04 -0600266 # Open the file and write to the CSV file
267 l_file = open(l_csvfile, "w")
268 l_writer = csv.writer(l_file, lineterminator='\n')
269 l_writer.writerows(l_csvlist)
270 l_file.close()
George Keishing9fbdf792016-10-18 06:16:09 -0500271
272
George Keishing74777bd2017-02-07 01:43:38 -0600273def xml_to_csv_time(xml_datetime):
274 r"""
275 Convert the time from %Y%m%d %H:%M:%S.%f format to %Y-%m-%d-%H-%M-%S format
276 and return it.
277
manasarm5dedfaf2018-02-07 14:54:54 +0530278 Description of argument(s):
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -0500279 datetime The date in the following format: %Y%m%d
280 %H:%M:%S.%f (This is the format
281 typically found in an XML file.)
George Keishing74777bd2017-02-07 01:43:38 -0600282
283 The date returned will be in the following format: %Y-%m-%d-%H-%M-%S
284 """
manasarm5dedfaf2018-02-07 14:54:54 +0530285
George Keishing74777bd2017-02-07 01:43:38 -0600286 # 20170206 05:05:19.342
287 l_str = datetime.strptime(xml_datetime, "%Y%m%d %H:%M:%S.%f")
288 # 2017-02-06-05-05-19
289 l_str = l_str.strftime("%Y-%m-%d-%H-%M-%S")
290 return str(l_str)
291
292
293def get_system_details(xml_file_path):
294 r"""
295 Get the system data from output.xml generated by robot and return it.
Gunnar Mills28e403b2017-10-25 16:16:38 -0500296 The list returned will be in the following order: [driver,platform]
George Keishing74777bd2017-02-07 01:43:38 -0600297
manasarm5dedfaf2018-02-07 14:54:54 +0530298 Description of argument(s):
Joy Onyerikwu004ad3c2018-06-11 16:29:56 -0500299 xml_file_path The relative or absolute path to the
300 output.xml file.
George Keishing74777bd2017-02-07 01:43:38 -0600301 """
manasarm5dedfaf2018-02-07 14:54:54 +0530302
manasarme4f79c92018-02-22 13:02:46 +0530303 bmc_version_id = ""
George Keishing74777bd2017-02-07 01:43:38 -0600304 bmc_platform = ""
305 with open(xml_file_path, 'rt') as output:
306 tree = ElementTree.parse(output)
307
308 for node in tree.iter('msg'):
309 # /etc/os-release output is logged in the XML as msg
George Keishing360db632018-09-06 12:01:28 -0500310 # Example: ${output} = VERSION_ID="v1.99.2-71-gbc49f79"
George Keishing74777bd2017-02-07 01:43:38 -0600311 if '${output} = VERSION_ID=' in node.text:
George Keishing360db632018-09-06 12:01:28 -0500312 # Get BMC version (e.g. v1.99.1-96-g2a46570)
manasarme4f79c92018-02-22 13:02:46 +0530313 bmc_version_id = str(node.text.split("VERSION_ID=")[1])[1:-1]
George Keishing74777bd2017-02-07 01:43:38 -0600314
315 # Platform is logged in the XML as msg.
316 # Example: ${bmc_model} = Witherspoon BMC
317 if '${bmc_model} = ' in node.text:
318 bmc_platform = node.text.split(" = ")[1]
319
manasarme4f79c92018-02-22 13:02:46 +0530320 print_vars(bmc_version_id, bmc_platform)
321 return [str(bmc_version_id), str(bmc_platform)]
George Keishing74777bd2017-02-07 01:43:38 -0600322
323
manasarm5dedfaf2018-02-07 14:54:54 +0530324def main():
George Keishing9fbdf792016-10-18 06:16:09 -0500325
manasarm5dedfaf2018-02-07 14:54:54 +0530326 if not gen_get_options(parser, stock_list):
327 return False
George Keishing9fbdf792016-10-18 06:16:09 -0500328
manasarm5dedfaf2018-02-07 14:54:54 +0530329 if not validate_parms():
330 return False
George Keishing9fbdf792016-10-18 06:16:09 -0500331
manasarm5dedfaf2018-02-07 14:54:54 +0530332 qprint_pgm_header()
George Keishing9fbdf792016-10-18 06:16:09 -0500333
Steven Sombara5e32f22019-03-01 13:33:15 -0600334 parse_output_xml(source, dest, version_id, platform, level,
335 test_phase, processor)
George Keishing9fbdf792016-10-18 06:16:09 -0500336
manasarm5dedfaf2018-02-07 14:54:54 +0530337 return True
338
339
340# Main
341
342if not main():
343 exit(1)