admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | ''' |
| 3 | Created on 22-Oct-2012 |
Jon Hall | 65844a3 | 2015-03-09 19:09:37 -0700 | [diff] [blame] | 4 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 5 | @author: Anil Kumar (anilkumar.s@paxterrasolutions.com) |
| 6 | |
| 7 | |
| 8 | TestON is free software: you can redistribute it and/or modify |
| 9 | it under the terms of the GNU General Public License as published by |
| 10 | the Free Software Foundation, either version 2 of the License, or |
| 11 | (at your option) any later version. |
| 12 | |
| 13 | TestON is distributed in the hope that it will be useful, |
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | GNU General Public License for more details. |
| 17 | |
| 18 | You should have received a copy of the GNU General Public License |
Jon Hall | 65844a3 | 2015-03-09 19:09:37 -0700 | [diff] [blame] | 19 | along with TestON. If not, see <http://www.gnu.org/licenses/>. |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 20 | |
| 21 | |
| 22 | |
| 23 | teston is the main module. |
| 24 | |
| 25 | ''' |
| 26 | |
| 27 | import sys |
| 28 | import getpass |
| 29 | import os |
| 30 | import re |
| 31 | import __builtin__ |
| 32 | import new |
| 33 | import xmldict |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 34 | import importlib |
cameron@onlab.us | 5cc6a37 | 2015-05-11 17:18:07 -0700 | [diff] [blame] | 35 | import os |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 36 | module = new.module("test") |
| 37 | import openspeak |
| 38 | global path, drivers_path, core_path, tests_path,logs_path |
| 39 | path = re.sub("(core|bin)$", "", os.getcwd()) |
| 40 | drivers_path = path+"drivers/" |
| 41 | core_path = path+"core" |
| 42 | tests_path = path+"tests" |
| 43 | logs_path = path+"logs/" |
| 44 | config_path = path + "config/" |
| 45 | sys.path.append(path) |
| 46 | sys.path.append( drivers_path) |
| 47 | sys.path.append(core_path ) |
| 48 | sys.path.append(tests_path) |
| 49 | |
| 50 | from core.utilities import Utilities |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 51 | from core.Thread import Thread |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 52 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 53 | |
| 54 | class TestON: |
| 55 | ''' |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 56 | TestON will initiate the specified test. |
| 57 | The main tasks are : |
| 58 | * Initiate the required Component handles for the test. |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 59 | * Create Log file Handles. |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 60 | ''' |
| 61 | def __init__(self,options): |
| 62 | ''' |
| 63 | Initialise the component handles specified in the topology file of the specified test. |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 64 | ''' |
| 65 | # Initialization of the variables. |
| 66 | __builtin__.main = self |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 67 | __builtin__.path = path |
| 68 | __builtin__.utilities = Utilities() |
| 69 | self.TRUE = 1 |
| 70 | self.FALSE = 0 |
| 71 | self.ERROR = -1 |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 72 | self.NORESULT = 2 |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 73 | self.FAIL = False |
| 74 | self.PASS = True |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 75 | self.CASERESULT = self.ERROR |
| 76 | self.STEPRESULT = self.NORESULT |
| 77 | self.stepResults = [] |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 78 | self.init_result = self.TRUE |
| 79 | self.testResult = "Summary" |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 80 | self.stepName = "" |
| 81 | self.stepCache = "" |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 82 | self.EXPERIMENTAL_MODE = False |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 83 | self.test_target = None |
| 84 | self.lastcommand = None |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 85 | self.testDir = tests_path |
| 86 | self.configFile = config_path + "teston.cfg" |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 87 | self.parsingClass = "xmlparser" |
| 88 | self.parserPath = core_path + "/xmlparser" |
| 89 | self.loggerPath = core_path + "/logger" |
| 90 | self.loggerClass = "Logger" |
| 91 | self.logs_path = logs_path |
| 92 | self.driver = '' |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 93 | self.Thread = Thread |
Jon Hall | 65844a3 | 2015-03-09 19:09:37 -0700 | [diff] [blame] | 94 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 95 | self.configparser() |
| 96 | verifyOptions(options) |
| 97 | load_logger() |
| 98 | self.componentDictionary = {} |
| 99 | self.componentDictionary = self.topology ['COMPONENT'] |
| 100 | self.driversList=[] |
| 101 | if type(self.componentDictionary) == str : |
| 102 | self.componentDictionary = dict(self.componentDictionary) |
Jon Hall | 65844a3 | 2015-03-09 19:09:37 -0700 | [diff] [blame] | 103 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 104 | for component in self.componentDictionary : |
| 105 | self.driversList.append(self.componentDictionary[component]['type']) |
Jon Hall | 65844a3 | 2015-03-09 19:09:37 -0700 | [diff] [blame] | 106 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 107 | self.driversList = list(set(self.driversList)) # Removing duplicates. |
| 108 | # Checking the test_target option set for the component or not |
| 109 | if type(self.componentDictionary) == dict: |
| 110 | for component in self.componentDictionary.keys(): |
| 111 | if 'test_target' in self.componentDictionary[component].keys(): |
| 112 | self.test_target = component |
Jon Hall | 65844a3 | 2015-03-09 19:09:37 -0700 | [diff] [blame] | 113 | |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 114 | # Checking for the openspeak file and test script |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 115 | self.logger.initlog(self) |
| 116 | |
| 117 | # Creating Drivers Handles |
| 118 | initString = "\n"+"*" * 30+"\n CASE INIT \n"+"*" * 30+"\n" |
| 119 | self.log.exact(initString) |
| 120 | self.driverObject = {} |
| 121 | self.random_order = 111 # Random order id to connect the components |
| 122 | components_connect_order = {} |
| 123 | #component_list.append() |
| 124 | if type(self.componentDictionary) == dict: |
| 125 | for component in self.componentDictionary.keys(): |
| 126 | self.componentDictionary[component]['connect_order'] = self.componentDictionary[component]['connect_order'] if ('connect_order' in self.componentDictionary[component].keys()) else str(self.get_random()) |
| 127 | components_connect_order[component] = eval(self.componentDictionary[component]['connect_order']) |
| 128 | #Ordering components based on the connect order. |
| 129 | ordered_component_list =sorted(components_connect_order, key=lambda key: components_connect_order[key]) |
| 130 | print ordered_component_list |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 131 | for component in ordered_component_list: |
| 132 | self.componentInit(component) |
| 133 | |
| 134 | def configparser(self): |
| 135 | ''' |
| 136 | It will parse the config file (teston.cfg) and return as dictionary |
| 137 | ''' |
| 138 | matchFileName = re.match(r'(.*)\.cfg', self.configFile, re.M | re.I) |
| 139 | if matchFileName: |
| 140 | xml = open(self.configFile).read() |
| 141 | try : |
| 142 | self.configDict = xmldict.xml_to_dict(xml) |
| 143 | return self.configDict |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 144 | except Exception: |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 145 | print "There is no such file to parse " + self.configFile |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 146 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 147 | def componentInit(self,component): |
| 148 | ''' |
| 149 | This method will initialize specified component |
| 150 | ''' |
| 151 | global driver_options |
| 152 | self.log.info("Creating component Handle: "+component) |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 153 | driver_options = {} |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 154 | if 'COMPONENTS' in self.componentDictionary[component].keys(): |
| 155 | driver_options =dict(self.componentDictionary[component]['COMPONENTS']) |
| 156 | |
| 157 | driver_options['name']=component |
| 158 | driverName = self.componentDictionary[component]['type'] |
| 159 | driver_options ['type'] = driverName |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 160 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 161 | classPath = self.getDriverPath(driverName.lower()) |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 162 | driverModule = importlib.import_module(classPath) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 163 | driverClass = getattr(driverModule, driverName) |
| 164 | driverObject = driverClass() |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 165 | |
kelvin-onlab | 0a28a74 | 2015-05-18 16:03:13 -0700 | [diff] [blame] | 166 | try: |
| 167 | self.componentDictionary[component]['host'] = os.environ[str( self.componentDictionary[component]['host'])] |
| 168 | except KeyError: |
| 169 | self.log.info("Missing OC environment variable! Using stored IPs") |
| 170 | except Exception as inst: |
| 171 | self.log.error("Uncaught exception: " + str(inst)) |
cameron@onlab.us | 5cc6a37 | 2015-05-11 17:18:07 -0700 | [diff] [blame] | 172 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 173 | connect_result = driverObject.connect(user_name = self.componentDictionary[component]['user'] if ('user' in self.componentDictionary[component].keys()) else getpass.getuser(), |
| 174 | ip_address= self.componentDictionary[component]['host'] if ('host' in self.componentDictionary[component].keys()) else 'localhost', |
| 175 | pwd = self.componentDictionary[component]['password'] if ('password' in self.componentDictionary[component].keys()) else 'changeme', |
| 176 | port = self.componentDictionary[component]['port'] if ('port' in self.componentDictionary[component].keys()) else None, |
| 177 | options = driver_options) |
cameron@onlab.us | 5cc6a37 | 2015-05-11 17:18:07 -0700 | [diff] [blame] | 178 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 179 | if not connect_result: |
| 180 | self.log.error("Exiting form the test execution because the connecting to the "+component+" component failed.") |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 181 | self.exit() |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 182 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 183 | vars(self)[component] = driverObject |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 184 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 185 | def run(self): |
| 186 | ''' |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 187 | The Execution of the test script's cases listed in the Test params file will be done here. |
| 188 | And Update each test case result. |
| 189 | This method will return TRUE if it executed all the test cases successfully, |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 190 | else will retun FALSE |
| 191 | ''' |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 192 | self.testCaseResult = {} |
Jon Hall | a118598 | 2014-09-15 14:55:10 -0700 | [diff] [blame] | 193 | self.TOTAL_TC = 0 |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 194 | self.TOTAL_TC_RUN = 0 |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 195 | self.TOTAL_TC_PLANNED = 0 |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 196 | self.TOTAL_TC_NORESULT = 0 |
| 197 | self.TOTAL_TC_FAIL = 0 |
| 198 | self.TOTAL_TC_PASS = 0 |
Jon Hall | a118598 | 2014-09-15 14:55:10 -0700 | [diff] [blame] | 199 | self.TEST_ITERATION = 0 |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 200 | self.stepCount = 0 |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 201 | self.CASERESULT = self.NORESULT |
| 202 | |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 203 | import testparser |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 204 | testFile = self.tests_path + "/"+self.TEST + "/"+self.TEST + ".py" |
| 205 | test = testparser.TestParser(testFile) |
| 206 | self.testscript = test.testscript |
| 207 | self.code = test.getStepCode() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 208 | repeat= int(self.params['repeat']) if ('repeat' in self.params) else 1 |
| 209 | self.TOTAL_TC_PLANNED = len(self.testcases_list)*repeat |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 210 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 211 | result = self.TRUE |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 212 | while(repeat): |
Jon Hall | a118598 | 2014-09-15 14:55:10 -0700 | [diff] [blame] | 213 | for self.CurrentTestCaseNumber in self.testcases_list: |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 214 | result = self.runCase(self.CurrentTestCaseNumber) |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 215 | repeat-=1 |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 216 | return result |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 217 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 218 | def runCase(self,testCaseNumber): |
| 219 | self.CurrentTestCaseNumber = testCaseNumber |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 220 | self.CurrentTestCase = "" |
| 221 | self.stepResults = [] |
| 222 | self.stepName = "" |
| 223 | self.caseExplaination = "" |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 224 | result = self.TRUE |
| 225 | self.stepCount = 0 |
| 226 | self.EXPERIMENTAL_MODE = self.FALSE |
| 227 | self.addCaseHeader() |
| 228 | self.testCaseNumber = str(testCaseNumber) |
| 229 | stopped = False |
| 230 | try : |
| 231 | self.stepList = self.code[self.testCaseNumber].keys() |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 232 | except KeyError: |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 233 | self.log.error("There is no Test-Case "+ self.testCaseNumber) |
| 234 | return self.FALSE |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 235 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 236 | self.stepCount = 0 |
| 237 | while self.stepCount < len(self.code[self.testCaseNumber].keys()): |
| 238 | result = self.runStep(self.stepList,self.code,self.testCaseNumber) |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 239 | if result == self.FALSE: |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 240 | break |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 241 | elif result == self.TRUE: |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 242 | continue |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 243 | if not stopped : |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 244 | if all( self.TRUE == i for i in self.stepResults ): |
| 245 | # ALL PASSED |
| 246 | self.CASERESULT = self.TRUE |
| 247 | elif self.FALSE in self.stepResults: |
| 248 | # AT LEAST ONE FAILED |
| 249 | self.CASERESULT = self.FALSE |
| 250 | elif self.TRUE in self.stepResults: |
| 251 | # AT LEAST ONE PASSED |
| 252 | self.CASERESULT = self.TRUE |
| 253 | else: |
| 254 | self.CASERESULT = self.NORESULT |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 255 | self.testCaseResult[str(self.CurrentTestCaseNumber)] = self.CASERESULT |
| 256 | self.logger.updateCaseResults(self) |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 257 | self.log.wiki( "<p>" + self.caseExplaination + "</p>" ) |
| 258 | self.log.summary( self.caseExplaination ) |
| 259 | self.log.wiki( "<ul>" ) |
| 260 | for line in self.stepCache.splitlines(): |
| 261 | if re.search( " - PASS$", line ): |
| 262 | self.log.wiki( "<li>" + line + " <ac:emoticon ac:name=\"tick\" /></li>\n" ) |
| 263 | elif re.search( " - FAIL$", line ): |
| 264 | self.log.wiki( "<li>" + line + " <ac:emoticon ac:name=\"cross\" /></li>\n" ) |
| 265 | elif re.search( " - No Result$", line ): |
| 266 | self.log.wiki( "<li>" + line + " <ac:emoticon ac:name=\"warning\" /></li>\n" ) |
| 267 | self.log.wiki( "</ul>" ) |
| 268 | self.log.summary( self.stepCache ) |
| 269 | self.stepCache = "" |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 270 | return result |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 271 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 272 | def runStep(self,stepList,code,testCaseNumber): |
| 273 | if not cli.pause: |
| 274 | try : |
| 275 | step = stepList[self.stepCount] |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 276 | self.STEPRESULT = self.NORESULT |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 277 | exec code[testCaseNumber][step] in module.__dict__ |
| 278 | self.stepCount = self.stepCount + 1 |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 279 | if step > 0: |
| 280 | self.stepCache += "\t"+str(testCaseNumber)+"."+str(step)+" "+self.stepName+" - " |
| 281 | if self.STEPRESULT == self.TRUE: |
| 282 | self.stepCache += "PASS\n" |
| 283 | #self.stepCache += "PASS <ac:emoticon ac:name=\"tick\" /></li>\n" |
| 284 | elif self.STEPRESULT == self.FALSE: |
| 285 | self.stepCache += "FAIL\n" |
| 286 | #self.stepCache += "FAIL <ac:emoticon ac:name=\"cross\" /></li>\n" |
| 287 | else: |
| 288 | self.stepCache += "No Result\n" |
| 289 | #self.stepCache += "No Result <ac:emoticon ac:name=\"warning\" /></li>\n" |
| 290 | self.stepResults.append(self.STEPRESULT) |
Jon Hall | 40d2cbd | 2015-06-03 16:24:29 -0700 | [diff] [blame] | 291 | except StandardError as e: |
| 292 | self.log.exception( "\nException in the following section of" + |
| 293 | " code: " + str(testCaseNumber) + "." + |
| 294 | str(step) + ": " + self.stepName ) |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 295 | #print code[testCaseNumber][step] |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 296 | self.stepCount = self.stepCount + 1 |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 297 | self.logger.updateCaseResults(self) |
| 298 | #WIKI results |
| 299 | self.log.wiki( "<ul>" ) |
| 300 | for line in self.stepCache.splitlines(): |
| 301 | if re.search( " - PASS$", line ): |
| 302 | self.log.wiki( "<li>" + line + " <ac:emoticon ac:name=\"tick\" /></li>\n" ) |
| 303 | elif re.search( " - FAIL$", line ): |
| 304 | self.log.wiki( "<li>" + line + " <ac:emoticon ac:name=\"cross\" /></li>\n" ) |
| 305 | elif re.search( " - No Result$", line ): |
| 306 | self.log.wiki( "<li>" + line + " <ac:emoticon ac:name=\"warning\" /></li>\n" ) |
| 307 | self.log.wiki( "</ul>" ) |
| 308 | #summary results |
| 309 | self.log.summary( self.stepCache ) |
| 310 | self.stepCache = "" |
shahshreya | 957feaa | 2015-03-23 16:08:29 -0700 | [diff] [blame] | 311 | self.cleanup() |
Jon Hall | 00539b1 | 2015-04-03 13:55:46 -0700 | [diff] [blame] | 312 | self.exit() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 313 | return main.TRUE |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 314 | if cli.stop: |
| 315 | cli.stop = False |
| 316 | stopped = True |
| 317 | self.TOTAL_TC_NORESULT = self.TOTAL_TC_NORESULT + 1 |
| 318 | self.testCaseResult[str(self.CurrentTestCaseNumber)] = "Stopped" |
| 319 | self.logger.updateCaseResults(self) |
| 320 | result = self.cleanup() |
| 321 | return main.FALSE |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 322 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 323 | def addCaseHeader(self): |
| 324 | caseHeader = "\n"+"*" * 30+"\n Result summary for Testcase"+str(self.CurrentTestCaseNumber)+"\n"+"*" * 30+"\n" |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 325 | self.log.exact(caseHeader) |
| 326 | caseHeader = "\n"+"*" * 40 +"\nStart of Test Case"+str(self.CurrentTestCaseNumber)+" : " |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 327 | for driver in self.componentDictionary.keys(): |
| 328 | vars(self)[driver+'log'].info(caseHeader) |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 329 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 330 | def addCaseFooter(self): |
| 331 | if self.stepCount-1 > 0 : |
| 332 | previousStep = " "+str(self.CurrentTestCaseNumber)+"."+str(self.stepCount-1)+": "+ str(self.stepName) + "" |
| 333 | stepHeader = "\n"+"*" * 40+"\nEnd of Step "+previousStep+"\n"+"*" * 40+"\n" |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 334 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 335 | caseFooter = "\n"+"*" * 40+"\nEnd of Test case "+str(self.CurrentTestCaseNumber)+"\n"+"*" * 40+"\n" |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 336 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 337 | for driver in self.driversList: |
| 338 | vars(self)[driver].write(stepHeader+"\n"+caseFooter) |
| 339 | |
| 340 | def cleanup(self): |
| 341 | ''' |
| 342 | Release all the component handles and the close opened file handles. |
| 343 | This will return TRUE if all the component handles and log handles closed properly, |
| 344 | else return FALSE |
| 345 | |
| 346 | ''' |
| 347 | result = self.TRUE |
| 348 | self.logger.testSummary(self) |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 349 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 350 | #self.reportFile.close() |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 351 | |
admin | 2c7034f | 2013-08-02 15:09:17 -0700 | [diff] [blame] | 352 | #utilities.send_mail() |
Jon Hall | 00539b1 | 2015-04-03 13:55:46 -0700 | [diff] [blame] | 353 | for component in self.componentDictionary.keys(): |
| 354 | try : |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 355 | tempObject = vars(self)[component] |
Jon Hall | 1a77a1e | 2015-04-06 10:41:13 -0700 | [diff] [blame] | 356 | print "Disconnecting from " + str(tempObject.name) + ": " + \ |
| 357 | str(tempObject) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 358 | tempObject.disconnect() |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 359 | #tempObject.execute(cmd="exit",prompt="(.*)",timeout=120) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 360 | |
Jon Hall | 00539b1 | 2015-04-03 13:55:46 -0700 | [diff] [blame] | 361 | except (Exception): |
| 362 | self.log.exception( "Exception while disconnecting from " + |
| 363 | str( component ) ) |
| 364 | result = self.FALSE |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 365 | # Closing all the driver's session files |
| 366 | for driver in self.componentDictionary.keys(): |
| 367 | vars(self)[driver].close_log_handles() |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 368 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 369 | return result |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 370 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 371 | def pause(self): |
| 372 | ''' |
| 373 | This function will pause the test's execution, and will continue after user provide 'resume' command. |
| 374 | ''' |
| 375 | __builtin__.testthread.pause() |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 376 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 377 | def onfail(self,*components): |
| 378 | ''' |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 379 | When test step failed, calling all the components onfail. |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 380 | ''' |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 381 | if not components: |
| 382 | try : |
| 383 | for component in self.componentDictionary.keys(): |
| 384 | tempObject = vars(self)[component] |
| 385 | result = tempObject.onfail() |
| 386 | except(Exception),e: |
| 387 | print str(e) |
| 388 | result = self.FALSE |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 389 | else: |
| 390 | try : |
| 391 | for component in components: |
| 392 | tempObject = vars(self)[component] |
| 393 | result = tempObject.onfail() |
| 394 | except(Exception),e: |
| 395 | print str(e) |
| 396 | result = self.FALSE |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 397 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 398 | def getDriverPath(self,driverName): |
| 399 | ''' |
| 400 | Based on the component 'type' specified in the params , this method will find the absolute path , |
| 401 | by recursively searching the name of the component. |
| 402 | ''' |
| 403 | import commands |
| 404 | |
| 405 | cmd = "find "+drivers_path+" -name "+driverName+".py" |
| 406 | result = commands.getoutput(cmd) |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 407 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 408 | result_array = str(result).split('\n') |
| 409 | result_count = 0 |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 410 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 411 | for drivers_list in result_array: |
| 412 | result_count = result_count+1 |
| 413 | if result_count > 1 : |
| 414 | print "found "+driverName+" "+ str(result_count) + " times"+str(result_array) |
| 415 | self.exit() |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 416 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 417 | result = re.sub("(.*)drivers","",result) |
| 418 | result = re.sub("\.py","",result) |
| 419 | result = re.sub("\.pyc","",result) |
| 420 | result = re.sub("\/",".",result) |
| 421 | result = "drivers"+result |
| 422 | return result |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 423 | |
| 424 | def step(self,stepDesc): |
| 425 | ''' |
| 426 | The step information of the test-case will append to the logs. |
| 427 | ''' |
| 428 | previousStep = " "+str(self.CurrentTestCaseNumber)+"."+str(self.stepCount-1)+": "+ str(self.stepName) + "" |
| 429 | self.stepName = stepDesc |
| 430 | |
| 431 | stepName = " "+str(self.CurrentTestCaseNumber)+"."+str(self.stepCount)+": "+ str(stepDesc) + "" |
| 432 | try : |
| 433 | if self.stepCount == 0: |
| 434 | stepName = " INIT : Initializing the test case :"+self.CurrentTestCase |
| 435 | except AttributeError: |
| 436 | stepName = " INIT : Initializing the test case :"+str(self.CurrentTestCaseNumber) |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 437 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 438 | self.log.step(stepName) |
| 439 | stepHeader = "" |
| 440 | if self.stepCount > 1 : |
| 441 | stepHeader = "\n"+"-"*45+"\nEnd of Step "+previousStep+"\n"+"-"*45+"\n" |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 442 | |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 443 | stepHeader += "\n"+"-"*45+"\nStart of Step"+stepName+"\n"+"-"*45+"\n" |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 444 | for driver in self.componentDictionary.keys(): |
| 445 | vars(self)[driver+'log'].info(stepHeader) |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 446 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 447 | def case(self,testCaseName): |
| 448 | ''' |
| 449 | Test's each test-case information will append to the logs. |
| 450 | ''' |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 451 | self.CurrentTestCase = testCaseName |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 452 | testCaseName = " " + str(testCaseName) + "" |
| 453 | self.log.case(testCaseName) |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 454 | caseHeader = testCaseName+"\n"+"*" * 40+"\n" |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 455 | for driver in self.componentDictionary.keys(): |
| 456 | vars(self)[driver+'log'].info(caseHeader) |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 457 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 458 | def testDesc(self,description): |
| 459 | ''' |
| 460 | Test description will append to the logs. |
| 461 | ''' |
| 462 | description = "Test Description : " + str (description) + "" |
| 463 | self.log.info(description) |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 464 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 465 | def _getTest(self): |
| 466 | ''' |
| 467 | This method will parse the test script to find required test information. |
| 468 | ''' |
| 469 | testFile = self.tests_path + "/"+self.TEST + "/"+self.TEST + ".py" |
| 470 | testFileHandler = open(testFile, 'r') |
| 471 | testFileList = testFileHandler.readlines() |
| 472 | testFileHandler.close() |
| 473 | #self.TOTAL_TC_PLANNED = 0 |
| 474 | counter = 0 |
| 475 | for index in range(len(testFileList)): |
| 476 | lineMatch = re.match('\s+def CASE(\d+)(.*):',testFileList[index],0) |
| 477 | if lineMatch: |
| 478 | counter = counter + 1 |
Jon Hall | a118598 | 2014-09-15 14:55:10 -0700 | [diff] [blame] | 479 | self.TC_PLANNED = len(self.testcases_list) |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 480 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 481 | def response_parser(self,response, return_format): |
| 482 | ''' It will load the default response parser ''' |
| 483 | response_dict = {} |
| 484 | response_dict = self.response_to_dict(response, return_format) |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 485 | return_format_string = self.dict_to_return_format(response,return_format,response_dict) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 486 | return return_format_string |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 487 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 488 | def response_to_dict(self,response,return_format): |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 489 | response_dict = {} |
| 490 | json_match = re.search('^\s*{', response) |
| 491 | xml_match = re.search('^\s*\<', response) |
| 492 | ini_match = re.search('^\s*\[', response) |
| 493 | if json_match : |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 494 | self.log.info(" Response is in 'JSON' format and Converting to '"+return_format+"' format") |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 495 | # Formatting the json string |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 496 | response = re.sub(r"{\s*'?(\w)", r'{"\1', response) |
| 497 | response = re.sub(r",\s*'?(\w)", r',"\1', response) |
| 498 | response = re.sub(r"(\w)'?\s*:", r'\1":', response) |
| 499 | response = re.sub(r":\s*'(\w)'\s*([,}])", r':"\1"\2', response) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 500 | try : |
| 501 | import json |
| 502 | response_dict = json.loads(response) |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 503 | except Exception, e: |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 504 | self.log.exception( e ) |
| 505 | self.log.error("Json Parser is unable to parse the string") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 506 | return response_dict |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 507 | elif ini_match : |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 508 | self.log.info(" Response is in 'INI' format and Converting to '"+return_format+"' format") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 509 | from configobj import ConfigObj |
| 510 | response_file = open("respnse_file.temp",'w') |
| 511 | response_file.write(response) |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 512 | response_file.close() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 513 | response_dict = ConfigObj("respnse_file.temp") |
| 514 | return response_dict |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 515 | elif xml_match : |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 516 | self.log.info(" Response is in 'XML' format and Converting to '"+return_format+"' format") |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 517 | try : |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 518 | response_dict = xmldict.xml_to_dict("<response> "+str(response)+" </response>") |
| 519 | except Exception, e: |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 520 | self.log.exception( e ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 521 | return response_dict |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 522 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 523 | def dict_to_return_format(self,response,return_format,response_dict): |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 524 | if return_format =='table' : |
| 525 | ''' Will return in table format''' |
| 526 | to_do = "Call the table output formatter" |
| 527 | global response_table |
| 528 | response_table = '\n' |
| 529 | response_table = response_table +'\t'.join(response_dict)+"\n" |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 530 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 531 | def get_table(value_to_convert): |
| 532 | ''' This will parse the dictionary recusrsively and print as table format''' |
| 533 | table_data = "" |
| 534 | if type(value_to_convert) == dict : |
| 535 | table_data = table_data +'\t'.join(value_to_convert)+"\n" |
| 536 | for temp_val in value_to_convert.values() : |
| 537 | table_data = table_data + get_table(temp_val) |
| 538 | else : |
| 539 | table_data = table_data + str(value_to_convert) +"\t" |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 540 | return table_data |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 541 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 542 | for value in response_dict.values() : |
| 543 | response_table = response_table + get_table(value) |
Jon Hall | 88e498c | 2015-03-06 09:54:35 -0800 | [diff] [blame] | 544 | # response_table = response_table + '\t'.join(response_dict.values()) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 545 | return response_table |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 546 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 547 | elif return_format =='config': |
| 548 | ''' Will return in config format''' |
| 549 | to_do = 'Call dict to config coverter' |
| 550 | response_string = str(response_dict) |
| 551 | print response_string |
| 552 | response_config = re.sub(",", "\n\t", response_string) |
| 553 | response_config = re.sub("u\'", "\'", response_config) |
| 554 | response_config = re.sub("{", "", response_config) |
| 555 | response_config = re.sub("}", "\n", response_config) |
| 556 | response_config = re.sub(":", " =", response_config) |
| 557 | return "[response]\n\t "+response_config |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 558 | elif return_format == 'xml': |
| 559 | ''' Will return in xml format''' |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 560 | response_xml = xmldict.dict_to_xml(response_dict) |
| 561 | response_xml = re.sub(">\s*<", ">\n<", response_xml) |
| 562 | return "\n"+response_xml |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 563 | elif return_format == 'json': |
| 564 | ''' Will return in json format''' |
| 565 | to_do = 'Call dict to xml coverter' |
| 566 | import json |
| 567 | response_json = json.dumps(response_dict) |
| 568 | return response_json |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 569 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 570 | def get_random(self): |
| 571 | self.random_order = self.random_order + 1 |
| 572 | return self.random_order |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 573 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 574 | def exit(self): |
| 575 | __builtin__.testthread = None |
| 576 | sys.exit() |
| 577 | |
| 578 | def verifyOptions(options): |
| 579 | ''' |
| 580 | This will verify the command line options and set to default values, if any option not given in command line. |
| 581 | ''' |
| 582 | import pprint |
| 583 | pp = pprint.PrettyPrinter(indent=4) |
| 584 | |
Jon Hall | 88e498c | 2015-03-06 09:54:35 -0800 | [diff] [blame] | 585 | # pp.pprint(options) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 586 | verifyTest(options) |
| 587 | verifyExample(options) |
| 588 | verifyTestScript(options) |
| 589 | verifyParams() |
| 590 | verifyLogdir(options) |
| 591 | verifyMail(options) |
| 592 | verifyTestCases(options) |
| 593 | |
| 594 | def verifyTest(options): |
| 595 | if options.testname: |
| 596 | main.TEST = options.testname |
| 597 | main.classPath = "tests."+main.TEST+"."+main.TEST |
| 598 | main.tests_path = tests_path |
| 599 | elif options.example : |
| 600 | main.TEST = options.example |
| 601 | main.tests_path = path+"/examples/" |
| 602 | main.classPath = "examples."+main.TEST+"."+main.TEST |
| 603 | else : |
| 604 | print "Test or Example not specified please specify the --test <test name > or --example <example name>" |
| 605 | self.exit() |
| 606 | |
| 607 | def verifyExample(options): |
| 608 | if options.example: |
| 609 | main.testDir = path+'/examples/' |
| 610 | main.tests_path = path+"/examples/" |
| 611 | main.classPath = "examples."+main.TEST+"."+main.TEST |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 612 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 613 | def verifyLogdir(options): |
Jon Hall | 88e498c | 2015-03-06 09:54:35 -0800 | [diff] [blame] | 614 | # Verifying Log directory option |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 615 | if options.logdir: |
| 616 | main.logdir = options.logdir |
| 617 | else : |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 618 | main.logdir = main.FALSE |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 619 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 620 | def verifyMail(options): |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 621 | # Checking the mailing list |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 622 | if options.mail: |
| 623 | main.mail = options.mail |
| 624 | elif main.params.has_key('mail'): |
| 625 | main.mail = main.params['mail'] |
| 626 | else : |
| 627 | main.mail = 'paxweb@paxterrasolutions.com' |
| 628 | |
| 629 | def verifyTestCases(options): |
Jon Hall | 88e498c | 2015-03-06 09:54:35 -0800 | [diff] [blame] | 630 | # Getting Test cases list |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 631 | if options.testcases: |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 632 | testcases_list = options.testcases |
Jon Hall | 88e498c | 2015-03-06 09:54:35 -0800 | [diff] [blame] | 633 | # sys.exit() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 634 | testcases_list = re.sub("(\[|\])", "", options.testcases) |
| 635 | main.testcases_list = eval(testcases_list+",") |
| 636 | else : |
| 637 | if 'testcases' in main.params.keys(): |
Jon Hall | a118598 | 2014-09-15 14:55:10 -0700 | [diff] [blame] | 638 | temp = eval(main.params['testcases']+",") |
| 639 | list1=[] |
| 640 | if type(temp[0])==list: |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 641 | for test in temp: |
| 642 | for testcase in test: |
| 643 | if type(testcase)==int: |
| 644 | testcase=[testcase] |
| 645 | list1.extend(testcase) |
| 646 | else : |
| 647 | temp=list(temp) |
| 648 | for testcase in temp: |
| 649 | if type(testcase)==int: |
| 650 | testcase=[testcase] |
| 651 | list1.extend(testcase) |
| 652 | main.testcases_list=list1 |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 653 | else : |
| 654 | print "testcases not specifed in params, please provide in params file or 'testcases' commandline argument" |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 655 | sys.exit() |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 656 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 657 | def verifyTestScript(options): |
| 658 | ''' |
| 659 | Verifyies test script. |
| 660 | ''' |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 661 | main.openspeak = openspeak.OpenSpeak() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 662 | openspeakfile = main.testDir+"/" + main.TEST + "/" + main.TEST + ".ospk" |
| 663 | testfile = main.testDir+"/" + main.TEST + "/" + main.TEST + ".py" |
| 664 | if os.path.exists(openspeakfile) : |
| 665 | main.openspeak.compiler(openspeakfile=openspeakfile,writetofile=1) |
| 666 | elif os.path.exists(testfile): |
| 667 | print '' |
| 668 | else: |
| 669 | print "\nThere is no :\""+main.TEST+"\" test, Please Provide OpenSpeak Script/ test script" |
| 670 | __builtin__.testthread = None |
| 671 | main.exit() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 672 | try : |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 673 | testModule = __import__(main.classPath, globals(), locals(), [main.TEST], -1) |
| 674 | except(ImportError): |
Jon Hall | f8ecf73 | 2014-12-02 21:14:16 -0500 | [diff] [blame] | 675 | print "There was an import error, it might mean that there is no test like "+main.TEST |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 676 | main.exit() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 677 | |
| 678 | testClass = getattr(testModule, main.TEST) |
| 679 | main.testObject = testClass() |
| 680 | load_parser() |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 681 | main.params = main.parser.parseParams(main.classPath) |
| 682 | main.topology = main.parser.parseTopology(main.classPath) |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 683 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 684 | def verifyParams(): |
| 685 | try : |
| 686 | main.params = main.params['PARAMS'] |
| 687 | except(KeyError): |
| 688 | print "Error with the params file: Either the file not specified or the format is not correct" |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 689 | main.exit() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 690 | try : |
| 691 | main.topology = main.topology['TOPOLOGY'] |
| 692 | except(KeyError): |
| 693 | print "Error with the Topology file: Either the file not specified or the format is not correct" |
| 694 | main.exit() |
kelvin-onlab | f70fd54 | 2015-05-07 18:41:40 -0700 | [diff] [blame] | 695 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 696 | def load_parser() : |
| 697 | ''' |
| 698 | It facilitates the loading customised parser for topology and params file. |
| 699 | It loads parser mentioned in tab named parser of teston.cfg file. |
| 700 | It also loads default xmlparser if no parser have specified in teston.cfg file. |
| 701 | |
| 702 | ''' |
| 703 | confighash = main.configDict |
| 704 | if 'file' in confighash['config']['parser'] and 'class' in confighash['config']['parser']: |
| 705 | if confighash['config']['parser']['file'] != None or confighash['config']['parser']['class']!= None : |
| 706 | if os.path.exists(confighash['config']['parser']['file']) : |
| 707 | module = re.sub(r".py\s*$","",confighash['config']['parser']['file']) |
| 708 | moduleList = module.split("/") |
| 709 | newModule = ".".join([moduleList[len(moduleList) - 2],moduleList[len(moduleList) - 1]]) |
| 710 | try : |
| 711 | parsingClass = confighash['config']['parser']['class'] |
| 712 | parsingModule = __import__(newModule, globals(), locals(), [parsingClass], -1) |
| 713 | parsingClass = getattr(parsingModule, parsingClass) |
| 714 | main.parser = parsingClass() |
| 715 | #hashobj = main.parser.parseParams(main.classPath) |
| 716 | if hasattr(main.parser,"parseParams") and hasattr(main.parser,"parseTopology") and hasattr(main.parser,"parse") : |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 717 | pass |
| 718 | else: |
| 719 | main.exit() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 720 | except ImportError: |
| 721 | print sys.exc_info()[1] |
| 722 | main.exit() |
| 723 | else : |
| 724 | print "No Such File Exists !!"+ confighash['config']['parser']['file'] +"using default parser" |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 725 | load_defaultParser() |
| 726 | elif confighash['config']['parser']['file'] == None or confighash['config']['parser']['class'] == None : |
| 727 | load_defaultParser() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 728 | else: |
| 729 | load_defaultParser() |
| 730 | |
| 731 | def load_defaultParser(): |
| 732 | ''' |
| 733 | It will load the default parser which is xml parser to parse the params and topology file. |
| 734 | ''' |
| 735 | moduleList = main.parserPath.split("/") |
| 736 | newModule = ".".join([moduleList[len(moduleList) - 2],moduleList[len(moduleList) - 1]]) |
| 737 | try : |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 738 | parsingClass = main.parsingClass |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 739 | parsingModule = __import__(newModule, globals(), locals(), [parsingClass], -1) |
| 740 | parsingClass = getattr(parsingModule, parsingClass) |
| 741 | main.parser = parsingClass() |
| 742 | if hasattr(main.parser,"parseParams") and hasattr(main.parser,"parseTopology") and hasattr(main.parser,"parse") : |
| 743 | pass |
| 744 | else: |
| 745 | main.exit() |
| 746 | |
| 747 | except ImportError: |
| 748 | print sys.exc_info()[1] |
| 749 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 750 | def load_logger() : |
| 751 | ''' |
| 752 | It facilitates the loading customised parser for topology and params file. |
| 753 | It loads parser mentioned in tab named parser of teston.cfg file. |
| 754 | It also loads default xmlparser if no parser have specified in teston.cfg file. |
| 755 | |
| 756 | ''' |
| 757 | confighash = main.configDict |
| 758 | if 'file' in confighash['config']['logger'] and 'class' in confighash['config']['logger']: |
| 759 | if confighash['config']['logger']['file'] != None or confighash['config']['logger']['class']!= None : |
| 760 | if os.path.exists(confighash['config']['logger']['file']) : |
| 761 | module = re.sub(r".py\s*$","",confighash['config']['logger']['file']) |
| 762 | moduleList = module.split("/") |
| 763 | newModule = ".".join([moduleList[len(moduleList) - 2],moduleList[len(moduleList) - 1]]) |
| 764 | try : |
| 765 | loggerClass = confighash['config']['logger']['class'] |
| 766 | loggerModule = __import__(newModule, globals(), locals(), [loggerClass], -1) |
| 767 | loggerClass = getattr(loggerModule, loggerClass) |
| 768 | main.logger = loggerClass() |
| 769 | #hashobj = main.parser.parseParams(main.classPath) |
| 770 | |
| 771 | except ImportError: |
| 772 | print sys.exc_info()[1] |
| 773 | else : |
| 774 | print "No Such File Exists !!"+confighash['config']['logger']['file']+ "Using default logger" |
| 775 | load_defaultlogger() |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 776 | elif confighash['config']['parser']['file'] == None or confighash['config']['parser']['class'] == None : |
| 777 | load_defaultlogger() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 778 | else: |
| 779 | load_defaultlogger() |
| 780 | |
| 781 | def load_defaultlogger(): |
| 782 | ''' |
| 783 | It will load the default parser which is xml parser to parse the params and topology file. |
| 784 | ''' |
| 785 | moduleList = main.loggerPath.split("/") |
| 786 | newModule = ".".join([moduleList[len(moduleList) - 2],moduleList[len(moduleList) - 1]]) |
| 787 | try : |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 788 | loggerClass = main.loggerClass |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 789 | loggerModule = __import__(newModule, globals(), locals(), [loggerClass], -1) |
| 790 | loggerClass = getattr(loggerModule, loggerClass) |
| 791 | main.logger = loggerClass() |
| 792 | |
| 793 | except ImportError: |
| 794 | print sys.exc_info()[1] |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 795 | main.exit() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 796 | |
| 797 | def load_defaultlogger(): |
| 798 | ''' |
| 799 | It will load the default parser which is xml parser to parse the params and topology file. |
| 800 | ''' |
| 801 | moduleList = main.loggerPath.split("/") |
| 802 | newModule = ".".join([moduleList[len(moduleList) - 2],moduleList[len(moduleList) - 1]]) |
| 803 | try : |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 804 | loggerClass = main.loggerClass |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 805 | loggerModule = __import__(newModule, globals(), locals(), [loggerClass], -1) |
| 806 | loggerClass = getattr(loggerModule, loggerClass) |
| 807 | main.logger = loggerClass() |
| 808 | |
| 809 | except ImportError: |
| 810 | print sys.exc_info()[1] |
| 811 | main.exit() |
| 812 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 813 | def _echo(self): |
| 814 | print "THIS IS ECHO" |