admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | ''' |
| 3 | Created on 23-Oct-2012 |
Jeremy Songster | ae01bba | 2016-07-11 15:39:17 -0700 | [diff] [blame] | 4 | Modified 2015 by ON.Lab |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 5 | |
Jeremy Songster | ae01bba | 2016-07-11 15:39:17 -0700 | [diff] [blame] | 6 | Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>, |
| 7 | the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>, |
| 8 | or the System Testing Guide page at <https://wiki.onosproject.org/x/WYQg> |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 9 | |
| 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 |
| 13 | (at your option) any later version. |
| 14 | |
| 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 Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 21 | along with TestON. If not, see <http://www.gnu.org/licenses/>. |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 22 | |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 23 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 24 | Utilities will take care about the basic functions like : |
| 25 | * Extended assertion, |
| 26 | * parse_args for key-value pair handling |
| 27 | * Parsing the params or topology file. |
| 28 | |
| 29 | ''' |
| 30 | import re |
| 31 | from configobj import ConfigObj |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 32 | from core import ast as ast |
| 33 | import smtplib |
| 34 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 35 | import email |
| 36 | import os |
| 37 | import email.mime.application |
Jon Hall | 095730a | 2015-12-17 14:57:45 -0800 | [diff] [blame] | 38 | import time |
| 39 | import random |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 40 | |
| 41 | class Utilities: |
| 42 | ''' |
| 43 | Utilities will take care about the basic functions like : |
| 44 | * Extended assertion, |
| 45 | * parse_args for key-value pair handling |
| 46 | * Parsing the params or topology file. |
| 47 | ''' |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 48 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 49 | def __init__(self): |
| 50 | self.wrapped = sys.modules[__name__] |
| 51 | |
| 52 | def __getattr__(self, name): |
| 53 | ''' |
| 54 | This will invoke, if the attribute wasn't found the usual ways. |
| 55 | Here it will look for assert_attribute and will execute when AttributeError occurs. |
| 56 | It will return the result of the assert_attribute. |
| 57 | ''' |
| 58 | try: |
| 59 | return getattr(self.wrapped, name) |
| 60 | except AttributeError: |
| 61 | def assertHandling(**kwargs): |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 62 | nameVar = re.match("^assert",name,flags=0) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 63 | matchVar = re.match("assert(_not_|_)(equals|matches|greater|lesser)",name,flags=0) |
| 64 | notVar = 0 |
| 65 | operators = "" |
| 66 | |
| 67 | try : |
| 68 | if matchVar.group(1) == "_not_" and matchVar.group(2) : |
| 69 | notVar = 1 |
| 70 | operators = matchVar.group(2) |
| 71 | elif matchVar.group(1) == "_" and matchVar.group(2): |
| 72 | operators = matchVar.group(2) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 73 | except AttributeError: |
| 74 | if matchVar==None and nameVar: |
| 75 | operators ='equals' |
Jon Hall | 79bec22 | 2015-04-30 16:23:30 -0700 | [diff] [blame] | 76 | result = self._assert(NOT=notVar,operator=operators,**kwargs) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 77 | if result == main.TRUE: |
| 78 | main.log.info("Assertion Passed") |
Jon Hall | 79bec22 | 2015-04-30 16:23:30 -0700 | [diff] [blame] | 79 | main.STEPRESULT = main.TRUE |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 80 | elif result == main.FALSE: |
| 81 | main.log.warn("Assertion Failed") |
Jon Hall | 79bec22 | 2015-04-30 16:23:30 -0700 | [diff] [blame] | 82 | main.STEPRESULT = main.FALSE |
| 83 | else: |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 84 | main.log.error("There is an Error in Assertion") |
Jon Hall | 79bec22 | 2015-04-30 16:23:30 -0700 | [diff] [blame] | 85 | main.STEPRESULT = main.ERROR |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 86 | return result |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 87 | return assertHandling |
Jon Hall | 79bec22 | 2015-04-30 16:23:30 -0700 | [diff] [blame] | 88 | |
Jon Hall | 8ce34e8 | 2015-06-05 10:41:45 -0700 | [diff] [blame] | 89 | def _assert (self,**assertParam): |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 90 | ''' |
| 91 | It will take the arguments : |
Jon Hall | 8ce34e8 | 2015-06-05 10:41:45 -0700 | [diff] [blame] | 92 | expect:'Expected output' |
| 93 | actual:'Actual output' |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 94 | onpass:'Action or string to be triggered or displayed respectively when the assert passed' |
| 95 | onfail:'Action or string to be triggered or displayed respectively when the assert failed' |
| 96 | not:'optional argument to specify the negation of the each assertion type' |
| 97 | operator:'assertion type will be defined by using operator. Like equal , greater, lesser, matches.' |
Jon Hall | 8ce34e8 | 2015-06-05 10:41:45 -0700 | [diff] [blame] | 98 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 99 | It will return the assertion result. |
Jon Hall | 8ce34e8 | 2015-06-05 10:41:45 -0700 | [diff] [blame] | 100 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 101 | ''' |
Jon Hall | 8ce34e8 | 2015-06-05 10:41:45 -0700 | [diff] [blame] | 102 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 103 | arguments = self.parse_args(["EXPECT","ACTUAL","ONPASS","ONFAIL","NOT","OPERATOR"],**assertParam) |
Jon Hall | 8ce34e8 | 2015-06-05 10:41:45 -0700 | [diff] [blame] | 104 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 105 | result = 0 |
| 106 | valuetype = '' |
| 107 | operation = "not "+ str(arguments["OPERATOR"]) if arguments['NOT'] and arguments['NOT'] == 1 else arguments["OPERATOR"] |
| 108 | operators = {'equals':{'STR':'==','NUM':'=='}, 'matches' : '=~', 'greater':'>' ,'lesser':'<'} |
Jon Hall | 8ce34e8 | 2015-06-05 10:41:45 -0700 | [diff] [blame] | 109 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 110 | expectMatch = re.match('^\s*[+-]?0(e0)?\s*$', str(arguments["EXPECT"]), re.I+re.M) |
| 111 | if not ((not expectMatch) and (arguments["EXPECT"]==0)): |
| 112 | valuetype = 'NUM' |
| 113 | else : |
| 114 | if arguments["OPERATOR"] == 'greater' or arguments["OPERATOR"] == 'lesser': |
| 115 | main.log.error("Numeric comparison on strings is not possibele") |
| 116 | return main.ERROR |
Jon Hall | 8ce34e8 | 2015-06-05 10:41:45 -0700 | [diff] [blame] | 117 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 118 | valuetype = 'STR' |
| 119 | arguments["ACTUAL"] = str(arguments["ACTUAL"]) |
| 120 | if arguments["OPERATOR"] != 'matches': |
| 121 | arguments["EXPECT"] = str(arguments["EXPECT"]) |
Jon Hall | 8ce34e8 | 2015-06-05 10:41:45 -0700 | [diff] [blame] | 122 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 123 | try : |
| 124 | opcode = operators[str(arguments["OPERATOR"])][valuetype] if arguments["OPERATOR"] == 'equals' else operators[str(arguments["OPERATOR"])] |
Jon Hall | 8ce34e8 | 2015-06-05 10:41:45 -0700 | [diff] [blame] | 125 | |
Jon Hall | 1306a56 | 2015-09-04 11:21:24 -0700 | [diff] [blame] | 126 | except KeyError as e: |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 127 | print "Key Error in assertion" |
Jon Hall | 1306a56 | 2015-09-04 11:21:24 -0700 | [diff] [blame] | 128 | print e |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 129 | return main.FALSE |
Jon Hall | 8ce34e8 | 2015-06-05 10:41:45 -0700 | [diff] [blame] | 130 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 131 | if opcode == '=~': |
| 132 | try: |
| 133 | assert re.search(str(arguments["EXPECT"]),str(arguments["ACTUAL"])) |
| 134 | result = main.TRUE |
| 135 | except AssertionError: |
| 136 | try : |
Jon Hall | 8ce34e8 | 2015-06-05 10:41:45 -0700 | [diff] [blame] | 137 | assert re.match(str(arguments["EXPECT"]),str(arguments["ACTUAL"])) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 138 | result = main.TRUE |
| 139 | except AssertionError: |
| 140 | main.log.error("Assertion Failed") |
| 141 | result = main.FALSE |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 142 | else : |
| 143 | try: |
| 144 | if str(opcode)=="==": |
| 145 | main.log.info("Verifying the Expected is equal to the actual or not using assert_equal") |
| 146 | if (arguments["EXPECT"] == arguments["ACTUAL"]): |
| 147 | result = main.TRUE |
| 148 | else : |
| 149 | result = main.FALSE |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 150 | elif str(opcode) == ">": |
| 151 | main.log.info("Verifying the Expected is Greater than the actual or not using assert_greater") |
| 152 | if (ast.literal_eval(arguments["EXPECT"]) > ast.literal_eval(arguments["ACTUAL"])) : |
| 153 | result = main.TRUE |
| 154 | else : |
| 155 | result = main.FALSE |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 156 | elif str(opcode) == "<": |
| 157 | main.log.info("Verifying the Expected is Lesser than the actual or not using assert_lesser") |
| 158 | if (ast.literal_eval(arguments["EXPECT"]) < ast.literal_eval(arguments["ACTUAL"])): |
| 159 | result = main.TRUE |
| 160 | else : |
| 161 | result = main.FALSE |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 162 | except AssertionError: |
| 163 | main.log.error("Assertion Failed") |
| 164 | result = main.FALSE |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 165 | result = result if result else 0 |
| 166 | result = not result if arguments["NOT"] and arguments["NOT"] == 1 else result |
| 167 | resultString = "" |
| 168 | if result : |
| 169 | resultString = str(resultString) + "PASS" |
| 170 | main.log.info(arguments["ONPASS"]) |
| 171 | else : |
| 172 | resultString = str(resultString) + "FAIL" |
| 173 | if not isinstance(arguments["ONFAIL"],str): |
| 174 | eval(str(arguments["ONFAIL"])) |
| 175 | else : |
| 176 | main.log.error(arguments["ONFAIL"]) |
| 177 | main.log.report(arguments["ONFAIL"]) |
Jon Hall | 9062761 | 2015-06-09 14:57:02 -0700 | [diff] [blame] | 178 | main.onFailMsg = arguments[ 'ONFAIL' ] |
Jon Hall | 8ce34e8 | 2015-06-05 10:41:45 -0700 | [diff] [blame] | 179 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 180 | msg = arguments["ON" + str(resultString)] |
| 181 | |
| 182 | if not isinstance(msg,str): |
| 183 | try: |
| 184 | eval(str(msg)) |
Jon Hall | 1306a56 | 2015-09-04 11:21:24 -0700 | [diff] [blame] | 185 | except SyntaxError as e: |
| 186 | print "function definition is not right" |
| 187 | print e |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 188 | |
| 189 | main.last_result = result |
Jon Hall | 80577e7 | 2015-09-29 14:07:25 -0700 | [diff] [blame] | 190 | if main.stepResults[2]: |
| 191 | main.stepResults[2][-1] = result |
| 192 | try: |
| 193 | main.stepResults[3][-1] = arguments[ 'ONFAIL' ] |
| 194 | except AttributeError: |
| 195 | pass |
| 196 | else: |
| 197 | main.log.warn( "Assertion called before a test step" ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 198 | return result |
Jon Hall | 8ce34e8 | 2015-06-05 10:41:45 -0700 | [diff] [blame] | 199 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 200 | def parse_args(self,args, **kwargs): |
| 201 | ''' |
| 202 | It will accept the (key,value) pair and will return the (key,value) pairs with keys in uppercase. |
| 203 | ''' |
| 204 | newArgs = {} |
| 205 | for key,value in kwargs.iteritems(): |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 206 | if isinstance(args,list) and str.upper(key) in args: |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 207 | for each in args: |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 208 | if each==str.upper(key): |
| 209 | newArgs [str(each)] = value |
| 210 | elif each != str.upper(key) and (newArgs.has_key(str(each)) == False ): |
| 211 | newArgs[str(each)] = None |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 212 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 213 | return newArgs |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 214 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 215 | def send_mail(self): |
| 216 | # Create a text/plain message |
| 217 | msg = email.mime.Multipart.MIMEMultipart() |
| 218 | try : |
| 219 | if main.test_target: |
Jon Hall | 2507978 | 2015-10-13 13:54:39 -0700 | [diff] [blame] | 220 | sub = "Result summary of \"" + main.TEST + "\" run on component \"" +\ |
| 221 | main.test_target + "\" Version \"" +\ |
| 222 | vars( main )[main.test_target].get_version() + "\": " +\ |
| 223 | str( main.TOTAL_TC_SUCCESS ) + "% Passed" |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 224 | else : |
Jon Hall | 2507978 | 2015-10-13 13:54:39 -0700 | [diff] [blame] | 225 | sub = "Result summary of \"" + main.TEST + "\": " +\ |
| 226 | str( main.TOTAL_TC_SUCCESS ) + "% Passed" |
Jon Hall | 1306a56 | 2015-09-04 11:21:24 -0700 | [diff] [blame] | 227 | except ( KeyError, AttributeError ): |
Jon Hall | 2507978 | 2015-10-13 13:54:39 -0700 | [diff] [blame] | 228 | sub = "Result summary of \"" + main.TEST + "\": " +\ |
| 229 | str( main.TOTAL_TC_SUCCESS ) + "% Passed" |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 230 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 231 | msg['Subject'] = sub |
Jon Hall | 2507978 | 2015-10-13 13:54:39 -0700 | [diff] [blame] | 232 | msg['From'] = main.sender |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 233 | msg['To'] = main.mail |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 234 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 235 | # The main body is just another attachment |
Jon Hall | 2507978 | 2015-10-13 13:54:39 -0700 | [diff] [blame] | 236 | body = email.mime.Text.MIMEText( main.logHeader + "\n" + |
| 237 | main.testResult) |
| 238 | msg.attach( body ) |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 239 | |
Jon Hall | 2507978 | 2015-10-13 13:54:39 -0700 | [diff] [blame] | 240 | # Attachments |
| 241 | for filename in os.listdir( main.logdir ): |
| 242 | filepath = main.logdir + "/" + filename |
| 243 | fp = open( filepath, 'rb' ) |
| 244 | att = email.mime.application.MIMEApplication( fp.read(), |
| 245 | _subtype="" ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 246 | fp.close() |
Jon Hall | 2507978 | 2015-10-13 13:54:39 -0700 | [diff] [blame] | 247 | att.add_header( 'Content-Disposition', |
| 248 | 'attachment', |
| 249 | filename=filename ) |
| 250 | msg.attach( att ) |
| 251 | try: |
| 252 | smtp = smtplib.SMTP( main.smtp ) |
| 253 | smtp.starttls() |
| 254 | smtp.login( main.sender, main.senderPwd ) |
| 255 | smtp.sendmail( msg['From'], [msg['To']], msg.as_string() ) |
| 256 | smtp.quit() |
| 257 | except Exception: |
| 258 | main.log.exception( "Error sending email" ) |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 259 | return main.TRUE |
| 260 | |
Jon Hall | 2507978 | 2015-10-13 13:54:39 -0700 | [diff] [blame] | 261 | def send_warning_email( self, subject=None ): |
| 262 | try: |
| 263 | if not subject: |
| 264 | subject = main.TEST + " PAUSED!" |
| 265 | # Create a text/plain message |
| 266 | msg = email.mime.Multipart.MIMEMultipart() |
| 267 | |
| 268 | msg['Subject'] = subject |
| 269 | msg['From'] = main.sender |
| 270 | msg['To'] = main.mail |
| 271 | |
| 272 | smtp = smtplib.SMTP( main.smtp ) |
| 273 | smtp.starttls() |
| 274 | smtp.login( main.sender, main.senderPwd ) |
| 275 | smtp.sendmail( msg['From'], [msg['To']], msg.as_string() ) |
| 276 | smtp.quit() |
| 277 | except Exception: |
| 278 | main.log.exception( "" ) |
| 279 | return main.FALSE |
| 280 | return main.TRUE |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 281 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 282 | def parse(self,fileName): |
| 283 | ''' |
| 284 | This will parse the params or topo or cfg file and return content in the file as Dictionary |
| 285 | ''' |
| 286 | self.fileName = fileName |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 287 | matchFileName = re.match(r'(.*)\.(cfg|params|topo)',self.fileName,re.M|re.I) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 288 | if matchFileName: |
| 289 | try : |
| 290 | parsedInfo = ConfigObj(self.fileName) |
| 291 | return parsedInfo |
Jon Hall | 1306a56 | 2015-09-04 11:21:24 -0700 | [diff] [blame] | 292 | except StandardError: |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 293 | print "There is no such file to parse "+fileName |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 294 | else: |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 295 | return 0 |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 296 | |
Jon Hall | 095730a | 2015-12-17 14:57:45 -0800 | [diff] [blame] | 297 | def retry( self, f, retValue, args=(), kwargs={}, |
| 298 | sleep=1, attempts=2, randomTime=False ): |
| 299 | """ |
| 300 | Given a function and bad return values, retry will retry a function |
| 301 | until successful or give up after a certain number of attempts. |
| 302 | |
| 303 | Arguments: |
| 304 | f - a callable object |
| 305 | retValue - Return value(s) of f to retry on. This can be a list or an |
| 306 | object. |
| 307 | args - A tuple containing the arguments of f. |
| 308 | kwargs - A dictionary containing the keyword arguments of f. |
| 309 | sleep - Time in seconds to sleep between retries. If random is True, |
| 310 | this is the max time to wait. Defaults to 1 second. |
| 311 | attempts - Max number of attempts before returning. If set to 1, |
| 312 | f will only be called once. Defaults to 2 trys. |
| 313 | random - Boolean indicating if the wait time is random between 0 |
| 314 | and sleep or exactly sleep seconds. Defaults to False. |
| 315 | """ |
| 316 | # TODO: be able to pass in a conditional statement(s). For example: |
| 317 | # retCondition = "< 7" |
| 318 | # Then we do something like 'if eval( "ret " + retCondition ):break' |
| 319 | try: |
| 320 | assert attempts > 0, "attempts must be more than 1" |
| 321 | assert sleep >= 0, "sleep must be >= 0" |
| 322 | if not isinstance( retValue, list ): |
| 323 | retValue = [ retValue ] |
| 324 | for i in range( 0, attempts ): |
| 325 | ret = f( *args, **kwargs ) |
| 326 | if ret not in retValue: |
| 327 | # NOTE that False in [ 0 ] == True |
| 328 | break |
| 329 | if randomTime: |
| 330 | sleeptime = random.randint( 0, sleep ) |
| 331 | else: |
| 332 | sleeptime = sleep |
| 333 | time.sleep( sleeptime ) |
| 334 | return ret |
| 335 | except AssertionError: |
| 336 | main.log.exception( "Invalid arguements for retry: " ) |
| 337 | main.cleanup() |
| 338 | main.exit() |
| 339 | except Exception: |
| 340 | main.log.exception( "Uncaught exception in retry: " ) |
| 341 | main.cleanup() |
| 342 | main.exit() |
| 343 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 344 | |
| 345 | if __name__ != "__main__": |
| 346 | import sys |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 347 | |
| 348 | sys.modules[__name__] = Utilities() |