blob: 72db4c9c0e508ff93dd865bea45311a87c1c8dc6 [file] [log] [blame]
Jeremy Ronquillo696f4262017-10-17 10:56:26 -07001# /usr/bin/env python
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00002'''
adminbae64d82013-08-01 10:50:15 -07003Created on 07-Jan-2013
Jeremy Ronquillo696f4262017-10-17 10:56:26 -07004Modified 2015 by Open Networking Foundation
Jon Hall81d3d392015-04-24 14:40:35 -07005
Jeremy Songsterae01bba2016-07-11 15:39:17 -07006Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>,
7the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>,
8or the System Testing Guide page at <https://wiki.onosproject.org/x/WYQg>
adminbae64d82013-08-01 10:50:15 -07009
10 TestON is free software: you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation, either version 2 of the License, or
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +000013 (at your option) any later version.
adminbae64d82013-08-01 10:50:15 -070014
15 TestON is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
Jon Hall81d3d392015-04-24 14:40:35 -070021 along with TestON. If not, see <http://www.gnu.org/licenses/>.
adminbae64d82013-08-01 10:50:15 -070022
23
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +000024'''
25
adminbae64d82013-08-01 10:50:15 -070026import logging
27import datetime
28import re
29import os
Jon Hall43060f62020-06-23 13:13:33 -070030import json
adminbae64d82013-08-01 10:50:15 -070031class Logger:
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +000032 '''
adminbae64d82013-08-01 10:50:15 -070033 Add continuous logs and reports of the test.
Jon Hall81d3d392015-04-24 14:40:35 -070034
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +000035 @author: Raghav Kashyap(raghavkashyap@paxterrasolutions.com)
36 '''
Jeremy Ronquillo696f4262017-10-17 10:56:26 -070037 def _printHeader( self, main ):
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +000038 '''
adminbae64d82013-08-01 10:50:15 -070039 Log's header will be append to the Log file
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +000040 '''
Jeremy Ronquillo696f4262017-10-17 10:56:26 -070041 logmsg = "\n" + " " * 32 + "+----------------+\n" + "-" * 30 + " { Script And Files } " + "-" * 30 + "\n" + " " * 32 + "+----------------+\n"
adminbae64d82013-08-01 10:50:15 -070042 logmsg = logmsg + "\n\tScript Log File : " + main.LogFileName + ""
43 logmsg = logmsg + "\n\tReport Log File : " + main.ReportFileName + ""
44 for component in main.componentDictionary.keys():
Jeremy Ronquillo696f4262017-10-17 10:56:26 -070045 logmsg = logmsg + "\n\t" + component + " Session Log : " + main.logdir + "/" + component + ".session" + ""
Jon Hall81d3d392015-04-24 14:40:35 -070046
Jon Halld74d2952018-03-01 13:26:39 -080047 logmsg = logmsg + "\n\tTest Script : " + main.testFile + ""
48 logmsg = logmsg + "\n\tTest Params : " + main.testDir + "/" + main.paramsFile + ""
49 logmsg = logmsg + "\n\tTopology : " + main.testDir + "/" + main.topoFile + ""
Jeremy Ronquillo696f4262017-10-17 10:56:26 -070050 logmsg = logmsg + "\n" + " " * 30 + "+" + "-" * 18 + "+" + "\n" + "-" * 27 + " { Script Exec Params } " + "-" * 27 + "\n" + " " * 30 + "+" + "-" * 18 + "+\n"
Jon Hall43060f62020-06-23 13:13:33 -070051 logmsg += "\n" + json.dumps( main.params, sort_keys=True, indent=4 )
Jeremy Ronquillo696f4262017-10-17 10:56:26 -070052 logmsg = logmsg + "\n\n" + " " * 31 + "+---------------+\n" + "-" * 29 + " { Components Used } " + "-" * 29 + "\n" + " " * 31 + "+---------------+\n"
adminbae64d82013-08-01 10:50:15 -070053 component_list = []
Jeremy Ronquillo696f4262017-10-17 10:56:26 -070054 component_list.append( None )
Jon Hall81d3d392015-04-24 14:40:35 -070055
adminbae64d82013-08-01 10:50:15 -070056 # Listing the components in the order of test_target component should be first.
Jeremy Ronquillo696f4262017-10-17 10:56:26 -070057 if type( main.componentDictionary ) == dict:
adminbae64d82013-08-01 10:50:15 -070058 for key in main.componentDictionary.keys():
Jeremy Ronquillo696f4262017-10-17 10:56:26 -070059 if main.test_target == key:
60 component_list[ 0 ] = key + "-Test Target"
61 else:
62 component_list.append( key )
Jon Hall81d3d392015-04-24 14:40:35 -070063
Jeremy Ronquillo696f4262017-10-17 10:56:26 -070064 for index in range( len( component_list ) ):
65 if index == 0:
66 if component_list[ index ]:
67 logmsg += "\t" + component_list[ index ] + "\n"
68 elif index > 0:
69 logmsg += "\t" + str( component_list[ index ] ) + "\n"
Jon Hall81d3d392015-04-24 14:40:35 -070070
Jeremy Ronquillo696f4262017-10-17 10:56:26 -070071 logmsg = logmsg + "\n\n" + " " * 30 + "+--------+\n" + "-" * 28 + " { Topology } " + "-" * 28 + "\n" + " " * 30 + "+--------+\n"
Jon Hall43060f62020-06-23 13:13:33 -070072 sortedComponents = sorted( main.topology['COMPONENT'].items(), key=lambda (k, v): v[ 'connect_order' ] )
73 logmsg += "\n" + json.dumps( sortedComponents, indent=4 )
Jeremy Ronquillo696f4262017-10-17 10:56:26 -070074 logmsg = logmsg + "\n" + "-" * 60 + "\n"
Jon Hall81d3d392015-04-24 14:40:35 -070075
adminbae64d82013-08-01 10:50:15 -070076 # enter into log file all headers
Jeremy Ronquillo696f4262017-10-17 10:56:26 -070077 logfile = open( main.LogFileName, "w+" )
78 logfile.write( logmsg )
adminbae64d82013-08-01 10:50:15 -070079 print logmsg
80 main.logHeader = logmsg
adminbae64d82013-08-01 10:50:15 -070081 logfile.close()
Jon Hall81d3d392015-04-24 14:40:35 -070082
Jeremy Ronquillo696f4262017-10-17 10:56:26 -070083 # enter into report file all headers
84 main.reportFile = open( main.ReportFileName, "w+" )
85 main.reportFile.write( logmsg )
adminbae64d82013-08-01 10:50:15 -070086 main.reportFile.close()
Jon Hall81d3d392015-04-24 14:40:35 -070087
Jeremy Ronquillo696f4262017-10-17 10:56:26 -070088 # Sumamry file header
89 currentTime = str( main.STARTTIME.strftime( "%d %b %Y %H:%M:%S" ) )
Jon Hall79bec222015-04-30 16:23:30 -070090 main.summaryFile = open( main.SummaryFileName, "w+" )
91 main.summaryFile.write( main.TEST + " at " + currentTime + "\n" )
92 main.summaryFile.close()
93
Jeremy Ronquillo696f4262017-10-17 10:56:26 -070094 # wiki file header
95 currentTime = str( main.STARTTIME.strftime( "%d %b %Y %H:%M:%S" ) )
Jon Hall81d3d392015-04-24 14:40:35 -070096 main.wikiFile = open( main.WikiFileName, "w+" )
Jon Hall79bec222015-04-30 16:23:30 -070097 main.wikiFile.write( main.TEST + " at " + currentTime + "<p></p>\n" )
Jon Hall81d3d392015-04-24 14:40:35 -070098 main.wikiFile.close()
99
Jon Hall026bd712021-08-31 16:30:09 -0700100 # TAP file header
101 main.TAPFile = open( main.TAPFileName, "w+" )
102 main.TAPFile.write( "TAP version 13\n" )
103 main.TAPFile.close()
104
105
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700106 def initlog( self, main ):
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000107 '''
adminbae64d82013-08-01 10:50:15 -0700108 Initialise all the log handles.
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000109 '''
adminbae64d82013-08-01 10:50:15 -0700110 main._getTest()
Jon Hall81d3d392015-04-24 14:40:35 -0700111 main.STARTTIME = datetime.datetime.now()
adminbae64d82013-08-01 10:50:15 -0700112
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700113 currentTime = re.sub( "-|\s|:|\.", "_", str( main.STARTTIME.strftime( "%d %b %Y %H:%M:%S" ) ) )
adminbae64d82013-08-01 10:50:15 -0700114 if main.logdir:
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700115 main.logdir = main.logdir + "/" + main.TEST + "_" + currentTime
adminbae64d82013-08-01 10:50:15 -0700116 else:
117 main.logdir = main.logs_path + main.TEST + "_" + currentTime
Jon Hall81d3d392015-04-24 14:40:35 -0700118
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700119 os.mkdir( main.logdir )
Jon Hall81d3d392015-04-24 14:40:35 -0700120
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700121 main.LogFileName = main.logdir + "/" + main.TEST + "_" + str( currentTime ) + ".log"
122 main.ReportFileName = main.logdir + "/" + main.TEST + "_" + str( currentTime ) + ".rpt"
Jon Hall79bec222015-04-30 16:23:30 -0700123 main.WikiFileName = main.logdir + "/" + main.TEST + "Wiki.txt"
Jon Hall026bd712021-08-31 16:30:09 -0700124 main.TAPFileName = main.logdir + "/" + main.TEST + ".tap"
Jon Hall79bec222015-04-30 16:23:30 -0700125 main.SummaryFileName = main.logdir + "/" + main.TEST + "Summary.txt"
Jon Hall94fd0472014-12-08 11:52:42 -0800126 main.JenkinsCSV = main.logdir + "/" + main.TEST + ".csv"
Devin Lim90803a82017-08-29 13:41:44 -0700127 main.resultFile = main.logdir + "/" + main.TEST + "Result.txt"
You Wang28cb8552019-02-19 16:11:52 -0800128 main.alarmFileName = main.logdir + "/" + main.TEST + "Alarm.txt"
Devin Lim90803a82017-08-29 13:41:44 -0700129
You Wangc2e22b22019-02-28 17:11:11 -0800130 main.TOTAL_TC_SUCCESS_PERCENT = 0
Jon Hall81d3d392015-04-24 14:40:35 -0700131
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700132 # Add log-level - Report
133 logging.addLevelName( 9, "REPORT" )
134 logging.addLevelName( 7, "EXACT" )
135 logging.addLevelName( 11, "CASE" )
136 logging.addLevelName( 12, "STEP" )
137 main.log = logging.getLogger( main.TEST )
138
139 def report( msg ):
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000140 '''
adminbae64d82013-08-01 10:50:15 -0700141 Will append the report message to the logs.
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000142 '''
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700143 main.log._log( 9, msg, "OpenFlowAutoMattion", "OFAutoMation" )
adminbae64d82013-08-01 10:50:15 -0700144 currentTime = datetime.datetime.now()
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700145 currentTime = currentTime.strftime( "%d %b %Y %H:%M:%S" )
146 newmsg = "\n[REPORT] " + "[" + str( currentTime ) + "] " + msg
adminbae64d82013-08-01 10:50:15 -0700147 print newmsg
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700148 main.reportFile = open( main.ReportFileName, "a+" )
149 main.reportFile.write( newmsg )
adminbae64d82013-08-01 10:50:15 -0700150 main.reportFile.close()
Jon Hall81d3d392015-04-24 14:40:35 -0700151
152 main.log.report = report
153
Jon Hall79bec222015-04-30 16:23:30 -0700154 def summary( msg ):
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000155 '''
Jon Hall79bec222015-04-30 16:23:30 -0700156 Will append the message to the txt file for the summary.
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000157 '''
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700158 main.log._log( 6, msg, "OpenFlowAutoMattion", "OFAutoMation" )
159 main.summaryFile = open( main.SummaryFileName, "a+" )
160 main.summaryFile.write( msg + "\n" )
Jon Hall79bec222015-04-30 16:23:30 -0700161 main.summaryFile.close()
162
163 main.log.summary = summary
164
Jon Hall81d3d392015-04-24 14:40:35 -0700165 def wiki( msg ):
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000166 '''
Jon Hall81d3d392015-04-24 14:40:35 -0700167 Will append the message to the txt file for the wiki.
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000168 '''
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700169 main.log._log( 6, msg, "OpenFlowAutoMattion", "OFAutoMation" )
170 main.wikiFile = open( main.WikiFileName, "a+" )
171 main.wikiFile.write( msg + "\n" )
Jon Hall81d3d392015-04-24 14:40:35 -0700172 main.wikiFile.close()
173
174 main.log.wiki = wiki
175
Jon Hall026bd712021-08-31 16:30:09 -0700176 def TAP( msg ):
177 '''
178 Will append the message to the txt file for TAP.
179 '''
180 main.log._log( 6, msg, "OpenFlowAutoMattion", "OFAutoMation" )
181 main.TAPFile = open( main.TAPFileName, "a+" )
182 main.TAPFile.write( msg + "\n" )
183 main.TAPFile.close()
184
185 main.log.TAP = TAP
186
187
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700188 def exact( exmsg ):
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000189 '''
adminbae64d82013-08-01 10:50:15 -0700190 Will append the raw formatted message to the logs
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000191 '''
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700192 main.log._log( 7, exmsg, "OpenFlowAutoMattion", "OFAutoMation" )
193 main.reportFile = open( main.ReportFileName, "a+" )
194 main.reportFile.write( exmsg )
adminbae64d82013-08-01 10:50:15 -0700195 main.reportFile.close()
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700196 logfile = open( main.LogFileName, "a" )
197 logfile.write( "\n" + str( exmsg ) + "\n" )
adminbae64d82013-08-01 10:50:15 -0700198 logfile.close()
199 print exmsg
Jon Hall81d3d392015-04-24 14:40:35 -0700200
201 main.log.exact = exact
202
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700203 def case( msg ):
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000204 '''
adminbae64d82013-08-01 10:50:15 -0700205 Format of the case type log defined here.
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000206 '''
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700207 main.log._log( 9, msg, "OpenFlowAutoMattion", "OFAutoMation" )
adminbae64d82013-08-01 10:50:15 -0700208 currentTime = datetime.datetime.now()
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700209 newmsg = "[" + str( currentTime ) + "] " + "[" + main.TEST + "] " + "[CASE] " + msg
210 logfile = open( main.LogFileName, "a" )
211 logfile.write( "\n" + str( newmsg ) + "\n" )
adminbae64d82013-08-01 10:50:15 -0700212 logfile.close()
213 print newmsg
Jon Hall81d3d392015-04-24 14:40:35 -0700214
Jon Hall4ba53f02015-07-29 13:07:41 -0700215 main.log.case = case
Jon Hall81d3d392015-04-24 14:40:35 -0700216
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700217 def step( msg ):
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000218 '''
adminbae64d82013-08-01 10:50:15 -0700219 Format of the step type log defined here.
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000220 '''
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700221 main.log._log( 9, msg, "OpenFlowAutoMattion", "OFAutoMation" )
adminbae64d82013-08-01 10:50:15 -0700222 currentTime = datetime.datetime.now()
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700223 newmsg = "[" + str( currentTime ) + "] " + "[" + main.TEST + "] " + "[STEP] " + msg
224 logfile = open( main.LogFileName, "a" )
225 logfile.write( "\n" + str( newmsg ) + "\n" )
adminbae64d82013-08-01 10:50:15 -0700226 logfile.close()
227 print newmsg
Jon Hall81d3d392015-04-24 14:40:35 -0700228
229 main.log.step = step
230
You Wang28cb8552019-02-19 16:11:52 -0800231 def alarm( msg ):
232 '''
233 Format of the alarm type log defined here.
234 '''
235 main.log._log( 6, msg, "OpenFlowAutoMattion", "OFAutoMation" )
236 main.alarmFile = open( main.alarmFileName, "a+" )
237 main.alarmFile.write( msg + "\n" )
238 main.alarmFile.close()
239
240 main.log.alarm = alarm
241
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700242 main.LogFileHandler = logging.FileHandler( main.LogFileName )
243 self._printHeader( main )
adminbae64d82013-08-01 10:50:15 -0700244
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700245 # initializing logging module and settig log level
246 main.log.setLevel( logging.INFO )
247 main.log.setLevel( logging.DEBUG ) # Temporary
248 main.LogFileHandler.setLevel( logging.INFO )
Jon Hall81d3d392015-04-24 14:40:35 -0700249
adminbae64d82013-08-01 10:50:15 -0700250 # create console handler with a higher log level
251 main.ConsoleHandler = logging.StreamHandler()
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700252 main.ConsoleHandler.setLevel( logging.INFO )
253 main.ConsoleHandler.setLevel( logging.DEBUG ) # Temporary
adminbae64d82013-08-01 10:50:15 -0700254 # create formatter and add it to the handlers
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700255 # formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
256
Jon Hall0bde9ba2015-03-19 11:32:57 -0700257 class MyFormatter( logging.Formatter ):
258 colors = { 'cyan': '\033[96m', 'purple': '\033[95m',
259 'blue': '\033[94m', 'green': '\033[92m',
260 'yellow': '\033[93m', 'red': '\033[91m',
261 'end': '\033[0m' }
262
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700263 FORMATS = { 'DEFAULT': '%(asctime)s - %(name)s - %(levelname)s - %(message)s' }
Jon Hall0bde9ba2015-03-19 11:32:57 -0700264 if COLORS: # NOTE:colors will only be loaded if command is run from one line
265 # IE: './cli.py run testname'
266 # This is to prevent issues with Jenkins parsing
267 # TODO: Make colors configurable
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700268 levels = { logging.ERROR: colors[ 'red' ] +
269 FORMATS[ 'DEFAULT' ] +
270 colors[ 'end' ],
271 logging.WARN: colors[ 'yellow' ] +
272 FORMATS[ 'DEFAULT' ] +
273 colors[ 'end' ],
274 logging.DEBUG: colors[ 'purple' ] +
275 FORMATS[ 'DEFAULT' ] +
276 colors[ 'end' ] }
Jon Hall0bde9ba2015-03-19 11:32:57 -0700277 FORMATS.update( levels )
278
279 def format( self, record ):
280 self._fmt = self.FORMATS.get( record.levelno,
281 self.FORMATS[ 'DEFAULT' ] )
282 return logging.Formatter.format( self, record )
283 formatter = MyFormatter()
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700284 main.ConsoleHandler.setFormatter( formatter )
285 main.LogFileHandler.setFormatter( formatter )
adminbae64d82013-08-01 10:50:15 -0700286
287 # add the handlers to logger
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700288 main.log.addHandler( main.ConsoleHandler )
289 main.log.addHandler( main.LogFileHandler )
Jon Hall81d3d392015-04-24 14:40:35 -0700290
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700291 def testSummary( self, main ):
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000292 '''
adminbae64d82013-08-01 10:50:15 -0700293 testSummary will take care about the Summary of test.
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000294 '''
295
adminbae64d82013-08-01 10:50:15 -0700296 main.ENDTIME = datetime.datetime.now()
297 main.EXECTIME = main.ENDTIME - main.STARTTIME
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700298 if ( main.TOTAL_TC_PASS == 0 ):
You Wangc2e22b22019-02-28 17:11:11 -0800299 main.TOTAL_TC_SUCCESS_PERCENT = 0
adminbae64d82013-08-01 10:50:15 -0700300 else:
You Wangc2e22b22019-02-28 17:11:11 -0800301 main.TOTAL_TC_SUCCESS_PERCENT = main.TOTAL_TC_PASS * 100 / main.TOTAL_TC_RUN
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700302 if ( main.TOTAL_TC_RUN == 0 ):
adminbae64d82013-08-01 10:50:15 -0700303 main.TOTAL_TC_EXECPERCENT = 0
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700304 else:
305 main.TOTAL_TC_EXECPERCENT = str( ( main.TOTAL_TC_RUN*100 )/main.TOTAL_TC_PLANNED )
306 testResult = "\n\n" + "*" * 37 + "\n" + "\tTest Execution Summary\n" + "\n" + "*" * 37 + " \n"
307 testResult = testResult + "\n Test Start : " + str( main.STARTTIME.strftime( "%d %b %Y %H:%M:%S" ) )
308 testResult = testResult + "\n Test End : " + str( main.ENDTIME.strftime( "%d %b %Y %H:%M:%S" ) )
309 testResult = testResult + "\n Execution Time : " + str( main.EXECTIME )
You Wangc2e22b22019-02-28 17:11:11 -0800310 testResult = testResult + "\n Total Tests Planned : " + str( main.TOTAL_TC_PLANNED )
311 testResult = testResult + "\n Total Tests Run : " + str( main.TOTAL_TC_RUN )
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700312 testResult = testResult + "\n Total Pass : " + str( main.TOTAL_TC_PASS )
313 testResult = testResult + "\n Total Fail : " + str( main.TOTAL_TC_FAIL )
314 testResult = testResult + "\n Total No Result : " + str( main.TOTAL_TC_NORESULT )
You Wangc2e22b22019-02-28 17:11:11 -0800315 testResult = testResult + "\n Success Percentage : " + str( main.TOTAL_TC_SUCCESS_PERCENT ) + "%"
316 testResult = testResult + "\n Execution Percentage : " + str( main.TOTAL_TC_EXECPERCENT ) + "%\n"
Devin Limec989792017-08-15 15:57:55 -0700317 if main.failedCase:
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700318 testResult = testResult + "\n Case Failed : " + str( main.failedCase )
Devin Limec989792017-08-15 15:57:55 -0700319 if main.noResultCase:
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700320 testResult = testResult + "\n Case NoResult : " + str( main.noResultCase )
321 testResult = testResult + "\n Case Executed : " + str( main.executedCase )
322 testResult = testResult + "\n Case Not Executed : " + str( main.leftCase )
323 # main.log.report(testResult)
adminbae64d82013-08-01 10:50:15 -0700324 main.testResult = testResult
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700325 main.log.exact( testResult )
Jon Hall94fd0472014-12-08 11:52:42 -0800326
You Wangc2e22b22019-02-28 17:11:11 -0800327 # Write to alarm log if Success Percentage is lower than expected
328 if 'ALARM' in main.params.keys() and 'minPassPercent' in main.params[ 'ALARM' ].keys():
329 minPassPercent = int( main.params[ 'ALARM' ][ 'minPassPercent' ] )
330 if main.TOTAL_TC_SUCCESS_PERCENT < minPassPercent:
331 main.log.alarm( 'Success percentage: {}% < {}%'.format( main.TOTAL_TC_SUCCESS_PERCENT, minPassPercent ) )
332
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700333 # CSV output needed for Jenkin's plot plugin
334 # NOTE: the elements were orded based on the colors assigned to the data
335 logfile = open( main.JenkinsCSV , "w" )
336 logfile.write( ",".join( [ 'Tests Failed', 'Tests Passed', 'Tests Planned' ] ) + "\n" )
337 logfile.write( ",".join( [ str( int( main.TOTAL_TC_FAIL ) ), str( int( main.TOTAL_TC_PASS ) ), str( int( main.TOTAL_TC_PLANNED ) ) ] ) + "\n" )
Jon Hall94fd0472014-12-08 11:52:42 -0800338 logfile.close()
339
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700340 executedStatus = open( main.resultFile, "w" )
Devin Lim90803a82017-08-29 13:41:44 -0700341 if main.TOTAL_TC_FAIL == 0 and main.TOTAL_TC_NORESULT + main.TOTAL_TC_PASS == main.TOTAL_TC_PLANNED:
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700342 executedStatus.write( "1\n" )
Devin Lim90803a82017-08-29 13:41:44 -0700343 else:
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700344 executedStatus.write( "0\n" )
Devin Lim79af50f2017-10-26 14:26:47 -0700345 executedStatus.write( "[Total]:" + str( main.TOTAL_TC_PLANNED ) + " [Executed]:" + str( main.TOTAL_TC_RUN ) + " [Failed]:" + str( main.TOTAL_TC_FAIL ) + "\n" )
Devin Lim90803a82017-08-29 13:41:44 -0700346 executedStatus.close()
347
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700348 def updateCaseResults( self, main ):
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000349 '''
adminbae64d82013-08-01 10:50:15 -0700350 Update the case result based on the steps execution and asserting each step in the test-case
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000351 '''
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700352 case = str( main.CurrentTestCaseNumber )
353 currentResult = main.testCaseResult.get( case, 2 )
Jon Hall81d3d392015-04-24 14:40:35 -0700354
Jon Hall79bec222015-04-30 16:23:30 -0700355 if currentResult == 2:
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700356 main.TOTAL_TC_RUN = main.TOTAL_TC_RUN + 1
adminbae64d82013-08-01 10:50:15 -0700357 main.TOTAL_TC_NORESULT = main.TOTAL_TC_NORESULT + 1
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700358 main.log.exact( "\n " + "*" * 29 + "\n" + "\n Result: No Assertion Called \n" + "*" * 29 + "\n" )
359 line = "Case " + case + ": " + main.CurrentTestCase + " - No Result"
Jon Hall026bd712021-08-31 16:30:09 -0700360 main.log.TAP( "ok - %s # TODO No assert called" % line )
Jon Hall79bec222015-04-30 16:23:30 -0700361 elif currentResult == 1:
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700362 main.TOTAL_TC_RUN = main.TOTAL_TC_RUN + 1
363 main.TOTAL_TC_PASS = main.TOTAL_TC_PASS + 1
364 main.log.exact( "\n" + "*" * 29 + "\n Result: Pass \n" + "*" * 29 + "\n" )
365 line = "Case " + case + ": " + main.CurrentTestCase + " - PASS"
Jon Hall026bd712021-08-31 16:30:09 -0700366 main.log.TAP( "ok - %s" % line )
Jon Hall79bec222015-04-30 16:23:30 -0700367 elif currentResult == 0:
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700368 main.TOTAL_TC_RUN = main.TOTAL_TC_RUN + 1
adminbae64d82013-08-01 10:50:15 -0700369 main.TOTAL_TC_FAIL = main.TOTAL_TC_FAIL + 1
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700370 main.log.exact( "\n" + "*" * 29 + "\n Result: Failed \n" + "*" * 29 + "\n" )
371 line = "Case " + case + ": " + main.CurrentTestCase + " - FAIL"
Jon Hall026bd712021-08-31 16:30:09 -0700372 main.log.TAP( "not ok - %s" % line )
Jon Hall79bec222015-04-30 16:23:30 -0700373 else:
374 main.log.error( " Unknown result of case " + case +
375 ". Result was: " + currentResult )
Jeremy Ronquillo696f4262017-10-17 10:56:26 -0700376 line = "Case " + case + ": " + main.CurrentTestCase + " - ERROR"
Jon Hall026bd712021-08-31 16:30:09 -0700377 main.log.TAP( "not ok - %s" % line )
Jon Hall79bec222015-04-30 16:23:30 -0700378 main.log.wiki( "<h3>" + line + "</h3>" )
379 main.log.summary( line )