Jon Hall | 05b2b43 | 2014-10-08 19:53:25 -0400 | [diff] [blame] | 1 | #!/usr/bin/env python |
andrewonlab | e8e56fd | 2014-10-09 17:12:44 -0400 | [diff] [blame] | 2 | |
Jon Hall | 05b2b43 | 2014-10-08 19:53:25 -0400 | [diff] [blame] | 3 | ''' |
andrewonlab | e8e56fd | 2014-10-09 17:12:44 -0400 | [diff] [blame] | 4 | This driver interacts with ONOS bench, the OSGi platform |
| 5 | that configures the ONOS nodes. (aka ONOS-next) |
| 6 | |
| 7 | Please follow the coding style demonstrated by existing |
| 8 | functions and document properly. |
| 9 | |
| 10 | If you are a contributor to the driver, please |
| 11 | list your email here for future contact: |
| 12 | |
| 13 | jhall@onlab.us |
| 14 | andrew@onlab.us |
| 15 | |
| 16 | OCT 9 2014 |
| 17 | |
Jon Hall | 05b2b43 | 2014-10-08 19:53:25 -0400 | [diff] [blame] | 18 | ''' |
andrewonlab | e8e56fd | 2014-10-09 17:12:44 -0400 | [diff] [blame] | 19 | |
andrewonlab | 7735d85 | 2014-10-09 13:02:47 -0400 | [diff] [blame] | 20 | import sys |
Jon Hall | 05b2b43 | 2014-10-08 19:53:25 -0400 | [diff] [blame] | 21 | import time |
| 22 | import pexpect |
| 23 | import re |
| 24 | import traceback |
andrewonlab | 7735d85 | 2014-10-09 13:02:47 -0400 | [diff] [blame] | 25 | import os.path |
andrewonlab | 6e20c34 | 2014-10-10 18:08:48 -0400 | [diff] [blame] | 26 | import pydoc |
Jon Hall | 05b2b43 | 2014-10-08 19:53:25 -0400 | [diff] [blame] | 27 | sys.path.append("../") |
| 28 | from drivers.common.clidriver import CLI |
| 29 | |
| 30 | class OnosDriver(CLI): |
| 31 | |
| 32 | def __init__(self): |
andrewonlab | 6e20c34 | 2014-10-10 18:08:48 -0400 | [diff] [blame] | 33 | ''' |
| 34 | Initialize client |
| 35 | ''' |
Jon Hall | 05b2b43 | 2014-10-08 19:53:25 -0400 | [diff] [blame] | 36 | super(CLI, self).__init__() |
| 37 | |
| 38 | def connect(self,**connectargs): |
| 39 | ''' |
| 40 | Creates ssh handle for ONOS "bench". |
| 41 | ''' |
| 42 | try: |
| 43 | for key in connectargs: |
| 44 | vars(self)[key] = connectargs[key] |
| 45 | self.home = "~/ONOS" |
| 46 | for key in self.options: |
| 47 | if key == "home": |
| 48 | self.home = self.options['home'] |
| 49 | break |
| 50 | |
| 51 | |
| 52 | self.name = self.options['name'] |
Jon Hall | ea7818b | 2014-10-09 14:30:59 -0400 | [diff] [blame] | 53 | self.handle = super(OnosDriver,self).connect( |
| 54 | user_name = self.user_name, |
| 55 | ip_address = self.ip_address, |
| 56 | port = self.port, |
| 57 | pwd = self.pwd, |
| 58 | home = self.home) |
Jon Hall | ea7818b | 2014-10-09 14:30:59 -0400 | [diff] [blame] | 59 | |
| 60 | self.handle.sendline("cd "+ self.home) |
| 61 | self.handle.expect("\$") |
Jon Hall | 05b2b43 | 2014-10-08 19:53:25 -0400 | [diff] [blame] | 62 | if self.handle: |
| 63 | return self.handle |
| 64 | else : |
| 65 | main.log.info("NO ONOS HANDLE") |
| 66 | return main.FALSE |
| 67 | except pexpect.EOF: |
| 68 | main.log.error(self.name + ": EOF exception found") |
| 69 | main.log.error(self.name + ": " + self.handle.before) |
| 70 | main.cleanup() |
| 71 | main.exit() |
| 72 | except: |
| 73 | main.log.info(self.name + ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::") |
| 74 | main.log.error( traceback.print_exc() ) |
| 75 | main.log.info(":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::") |
| 76 | main.cleanup() |
| 77 | main.exit() |
| 78 | |
| 79 | def disconnect(self): |
| 80 | ''' |
| 81 | Called when Test is complete to disconnect the ONOS handle. |
| 82 | ''' |
| 83 | response = '' |
| 84 | try: |
Jon Hall | ffb386d | 2014-11-21 13:43:38 -0800 | [diff] [blame] | 85 | self.handle.sendline("") |
Jon Hall | f8d1098 | 2014-10-22 12:23:38 -0400 | [diff] [blame] | 86 | self.handle.expect("\$") |
Jon Hall | 05b2b43 | 2014-10-08 19:53:25 -0400 | [diff] [blame] | 87 | self.handle.sendline("exit") |
| 88 | self.handle.expect("closed") |
| 89 | except pexpect.EOF: |
| 90 | main.log.error(self.name + ": EOF exception found") |
| 91 | main.log.error(self.name + ": " + self.handle.before) |
| 92 | except: |
| 93 | main.log.error(self.name + ": Connection failed to the host") |
| 94 | response = main.FALSE |
| 95 | return response |
andrew@onlab.us | 9e2cd0f | 2014-10-08 20:32:32 -0400 | [diff] [blame] | 96 | |
| 97 | def onos_package(self): |
| 98 | ''' |
| 99 | Produce a self-contained tar.gz file that can be deployed |
| 100 | and executed on any platform with Java 7 JRE. |
| 101 | ''' |
andrew@onlab.us | 9e2cd0f | 2014-10-08 20:32:32 -0400 | [diff] [blame] | 102 | |
| 103 | try: |
| 104 | self.handle.sendline("onos-package") |
Jon Hall | ea7818b | 2014-10-09 14:30:59 -0400 | [diff] [blame] | 105 | self.handle.expect("onos-package") |
andrewonlab | e990790 | 2014-11-25 15:49:06 -0500 | [diff] [blame] | 106 | self.handle.expect("tar.gz",timeout=30) |
andrew@onlab.us | 9e2cd0f | 2014-10-08 20:32:32 -0400 | [diff] [blame] | 107 | handle = str(self.handle.before) |
| 108 | main.log.info("onos-package command returned: "+ |
| 109 | handle) |
andrewonlab | 0748d2a | 2014-10-09 13:24:17 -0400 | [diff] [blame] | 110 | #As long as the sendline does not time out, |
| 111 | #return true. However, be careful to interpret |
| 112 | #the results of the onos-package command return |
| 113 | return main.TRUE |
andrew@onlab.us | 9e2cd0f | 2014-10-08 20:32:32 -0400 | [diff] [blame] | 114 | |
andrewonlab | 7735d85 | 2014-10-09 13:02:47 -0400 | [diff] [blame] | 115 | except pexpect.EOF: |
andrew@onlab.us | 9e2cd0f | 2014-10-08 20:32:32 -0400 | [diff] [blame] | 116 | main.log.error(self.name + ": EOF exception found") |
| 117 | main.log.error(self.name + ": " + self.handle.before) |
| 118 | except: |
| 119 | main.log.error("Failed to package ONOS") |
| 120 | main.cleanup() |
| 121 | main.exit() |
| 122 | |
andrewonlab | 8790abb | 2014-11-06 13:51:54 -0500 | [diff] [blame] | 123 | def onos_build(self): |
| 124 | ''' |
| 125 | Use the pre defined script to build onos via mvn |
| 126 | ''' |
| 127 | |
| 128 | try: |
| 129 | self.handle.sendline("onos-build") |
| 130 | self.handle.expect("onos-build") |
| 131 | i = self.handle.expect([ |
| 132 | "BUILD SUCCESS", |
| 133 | "ERROR", |
| 134 | "BUILD FAILED"], timeout=120) |
| 135 | handle = str(self.handle.before) |
| 136 | |
| 137 | main.log.info("onos-build command returned: "+ |
| 138 | handle) |
| 139 | |
| 140 | if i == 0: |
| 141 | return main.TRUE |
| 142 | else: |
| 143 | return handle |
| 144 | |
| 145 | except pexpect.EOF: |
| 146 | main.log.error(self.name + ": EOF exception found") |
| 147 | main.log.error(self.name + ": " + self.handle.before) |
| 148 | except: |
| 149 | main.log.error("Failed to build ONOS") |
| 150 | main.cleanup() |
| 151 | main.exit() |
| 152 | |
Jon Hall | de9d9aa | 2014-10-08 20:36:02 -0400 | [diff] [blame] | 153 | def clean_install(self): |
| 154 | ''' |
| 155 | Runs mvn clean install in the root of the ONOS directory. |
| 156 | This will clean all ONOS artifacts then compile each module |
andrew@onlab.us | 9e2cd0f | 2014-10-08 20:32:32 -0400 | [diff] [blame] | 157 | |
Jon Hall | de9d9aa | 2014-10-08 20:36:02 -0400 | [diff] [blame] | 158 | Returns: main.TRUE on success |
| 159 | On Failure, exits the test |
| 160 | ''' |
| 161 | try: |
Jon Hall | ea7818b | 2014-10-09 14:30:59 -0400 | [diff] [blame] | 162 | main.log.info("Running 'mvn clean install' on " + str(self.name) + |
| 163 | ". This may take some time.") |
| 164 | self.handle.sendline("cd "+ self.home) |
| 165 | self.handle.expect("\$") |
| 166 | |
Jon Hall | ffb386d | 2014-11-21 13:43:38 -0800 | [diff] [blame] | 167 | self.handle.sendline("") |
Jon Hall | ea7818b | 2014-10-09 14:30:59 -0400 | [diff] [blame] | 168 | self.handle.expect("\$") |
Jon Hall | de9d9aa | 2014-10-08 20:36:02 -0400 | [diff] [blame] | 169 | self.handle.sendline("mvn clean install") |
Jon Hall | ea7818b | 2014-10-09 14:30:59 -0400 | [diff] [blame] | 170 | self.handle.expect("mvn clean install") |
Jon Hall | de9d9aa | 2014-10-08 20:36:02 -0400 | [diff] [blame] | 171 | while 1: |
| 172 | i=self.handle.expect([ |
| 173 | 'There\sis\sinsufficient\smemory\sfor\sthe\sJava\s\ |
| 174 | Runtime\sEnvironment\sto\scontinue', |
| 175 | 'BUILD\sFAILURE', |
| 176 | 'BUILD\sSUCCESS', |
| 177 | 'ONOS\$', |
| 178 | pexpect.TIMEOUT],timeout=600) |
| 179 | if i == 0: |
| 180 | main.log.error(self.name + ":There is insufficient memory \ |
| 181 | for the Java Runtime Environment to continue.") |
| 182 | #return main.FALSE |
| 183 | main.cleanup() |
| 184 | main.exit() |
| 185 | if i == 1: |
| 186 | main.log.error(self.name + ": Build failure!") |
| 187 | #return main.FALSE |
| 188 | main.cleanup() |
| 189 | main.exit() |
| 190 | elif i == 2: |
| 191 | main.log.info(self.name + ": Build success!") |
| 192 | elif i == 3: |
| 193 | main.log.info(self.name + ": Build complete") |
Jon Hall | f8ef52c | 2014-10-09 19:37:33 -0400 | [diff] [blame] | 194 | #Print the build time |
| 195 | for line in self.handle.before.splitlines(): |
| 196 | if "Total time:" in line: |
| 197 | main.log.info(line) |
Jon Hall | ffb386d | 2014-11-21 13:43:38 -0800 | [diff] [blame] | 198 | self.handle.sendline("") |
Jon Hall | de9d9aa | 2014-10-08 20:36:02 -0400 | [diff] [blame] | 199 | self.handle.expect("\$", timeout=60) |
| 200 | return main.TRUE |
| 201 | elif i == 4: |
| 202 | main.log.error(self.name + ": mvn clean install TIMEOUT!") |
| 203 | #return main.FALSE |
| 204 | main.cleanup() |
| 205 | main.exit() |
| 206 | else: |
| 207 | main.log.error(self.name + ": unexpected response from \ |
| 208 | mvn clean install") |
| 209 | #return main.FALSE |
| 210 | main.cleanup() |
| 211 | main.exit() |
| 212 | except pexpect.EOF: |
| 213 | main.log.error(self.name + ": EOF exception found") |
| 214 | main.log.error(self.name + ": " + self.handle.before) |
| 215 | main.cleanup() |
| 216 | main.exit() |
| 217 | except: |
| 218 | main.log.info(self.name + ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::") |
| 219 | main.log.error( traceback.print_exc() ) |
| 220 | main.log.info(":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::") |
| 221 | main.cleanup() |
| 222 | main.exit() |
Jon Hall | acabffd | 2014-10-09 12:36:53 -0400 | [diff] [blame] | 223 | |
| 224 | def git_pull(self, comp1=""): |
| 225 | ''' |
| 226 | Assumes that "git pull" works without login |
| 227 | |
| 228 | This function will perform a git pull on the ONOS instance. |
| 229 | If used as git_pull("NODE") it will do git pull + NODE. This is |
| 230 | for the purpose of pulling from other nodes if necessary. |
| 231 | |
| 232 | Otherwise, this function will perform a git pull in the |
| 233 | ONOS repository. If it has any problems, it will return main.ERROR |
Shreya Shah | ee15f6c | 2014-10-28 18:12:30 -0400 | [diff] [blame] | 234 | If it successfully does a git_pull, it will return a 1 (main.TRUE) |
| 235 | If it has no updates, it will return 3. |
Jon Hall | acabffd | 2014-10-09 12:36:53 -0400 | [diff] [blame] | 236 | |
| 237 | ''' |
| 238 | try: |
| 239 | # main.log.info(self.name + ": Stopping ONOS") |
| 240 | #self.stop() |
| 241 | self.handle.sendline("cd " + self.home) |
| 242 | self.handle.expect("ONOS\$") |
| 243 | if comp1=="": |
| 244 | self.handle.sendline("git pull") |
| 245 | else: |
| 246 | self.handle.sendline("git pull " + comp1) |
| 247 | |
| 248 | uptodate = 0 |
| 249 | i=self.handle.expect(['fatal', |
| 250 | 'Username\sfor\s(.*):\s', |
| 251 | '\sfile(s*) changed,\s', |
| 252 | 'Already up-to-date', |
| 253 | 'Aborting', |
| 254 | 'You\sare\snot\scurrently\son\sa\sbranch', |
| 255 | 'You\sasked\sme\sto\spull\swithout\stelling\sme\swhich\sbranch\syou', |
| 256 | 'Pull\sis\snot\spossible\sbecause\syou\shave\sunmerged\sfiles', |
| 257 | pexpect.TIMEOUT], |
| 258 | timeout=300) |
| 259 | #debug |
Jon Hall | 81e29af | 2014-11-04 20:41:23 -0500 | [diff] [blame] | 260 | #main.log.report(self.name +": DEBUG: \n"+"git pull response: " + str(self.handle.before) + str(self.handle.after)) |
Jon Hall | acabffd | 2014-10-09 12:36:53 -0400 | [diff] [blame] | 261 | if i==0: |
| 262 | main.log.error(self.name + ": Git pull had some issue...") |
| 263 | return main.ERROR |
| 264 | elif i==1: |
| 265 | main.log.error(self.name + ": Git Pull Asking for username. ") |
| 266 | return main.ERROR |
| 267 | elif i==2: |
| 268 | main.log.info(self.name + ": Git Pull - pulling repository now") |
| 269 | self.handle.expect("ONOS\$", 120) |
Shreya Shah | ee15f6c | 2014-10-28 18:12:30 -0400 | [diff] [blame] | 270 | return main.TRUE # So that only when git pull is done, we do mvn clean compile |
Jon Hall | acabffd | 2014-10-09 12:36:53 -0400 | [diff] [blame] | 271 | elif i==3: |
| 272 | main.log.info(self.name + ": Git Pull - Already up to date") |
Shreya Shah | ee15f6c | 2014-10-28 18:12:30 -0400 | [diff] [blame] | 273 | return i |
Jon Hall | acabffd | 2014-10-09 12:36:53 -0400 | [diff] [blame] | 274 | elif i==4: |
| 275 | main.log.info(self.name + ": Git Pull - Aborting... Are there conflicting git files?") |
| 276 | return main.ERROR |
| 277 | elif i==5: |
| 278 | main.log.info(self.name + ": Git Pull - You are not currently on a branch so git pull failed!") |
| 279 | return main.ERROR |
| 280 | elif i==6: |
| 281 | main.log.info(self.name + ": Git Pull - You have not configured an upstream branch to pull from. Git pull failed!") |
| 282 | return main.ERROR |
| 283 | elif i==7: |
| 284 | main.log.info(self.name + ": Git Pull - Pull is not possible because you have unmerged files.") |
| 285 | return main.ERROR |
| 286 | elif i==8: |
| 287 | main.log.error(self.name + ": Git Pull - TIMEOUT") |
| 288 | main.log.error(self.name + " Response was: " + str(self.handle.before)) |
| 289 | return main.ERROR |
| 290 | else: |
| 291 | main.log.error(self.name + ": Git Pull - Unexpected response, check for pull errors") |
| 292 | return main.ERROR |
| 293 | except pexpect.EOF: |
| 294 | main.log.error(self.name + ": EOF exception found") |
| 295 | main.log.error(self.name + ": " + self.handle.before) |
| 296 | main.cleanup() |
| 297 | main.exit() |
| 298 | except: |
| 299 | main.log.info(self.name + ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::") |
| 300 | main.log.error( traceback.print_exc() ) |
| 301 | main.log.info(":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::") |
| 302 | main.cleanup() |
| 303 | main.exit() |
| 304 | |
| 305 | def git_checkout(self, branch="master"): |
| 306 | ''' |
| 307 | Assumes that "git pull" works without login |
| 308 | |
| 309 | This function will perform a git git checkout on the ONOS instance. |
| 310 | If used as git_checkout("branch") it will do git checkout of the "branch". |
| 311 | |
| 312 | Otherwise, this function will perform a git checkout of the master |
| 313 | branch of the ONOS repository. If it has any problems, it will return |
| 314 | main.ERROR. |
| 315 | If the branch was already the specified branch, or the git checkout was |
| 316 | successful then the function will return main.TRUE. |
| 317 | |
| 318 | ''' |
| 319 | try: |
Jon Hall | acabffd | 2014-10-09 12:36:53 -0400 | [diff] [blame] | 320 | self.handle.sendline("cd " + self.home) |
| 321 | self.handle.expect("ONOS\$") |
Jon Hall | 81e29af | 2014-11-04 20:41:23 -0500 | [diff] [blame] | 322 | main.log.info(self.name + ": Checking out git branch: " + branch + "...") |
| 323 | cmd = "git checkout "+branch |
| 324 | self.handle.sendline(cmd) |
| 325 | self.handle.expect(cmd) |
| 326 | i=self.handle.expect(['fatal', |
| 327 | 'Username\sfor\s(.*):\s', |
| 328 | 'Already\son\s\'', |
| 329 | 'Switched\sto\sbranch\s\'' + str(branch), |
| 330 | pexpect.TIMEOUT, |
| 331 | 'error: Your local changes to the following files would be overwritten by checkout:', |
| 332 | 'error: you need to resolve your current index first'],timeout=60) |
Jon Hall | acabffd | 2014-10-09 12:36:53 -0400 | [diff] [blame] | 333 | |
| 334 | if i==0: |
| 335 | main.log.error(self.name + ": Git checkout had some issue...") |
Jon Hall | 81e29af | 2014-11-04 20:41:23 -0500 | [diff] [blame] | 336 | main.log.error(self.name + ": " + self.handle.before) |
Jon Hall | acabffd | 2014-10-09 12:36:53 -0400 | [diff] [blame] | 337 | return main.ERROR |
| 338 | elif i==1: |
Jon Hall | 81e29af | 2014-11-04 20:41:23 -0500 | [diff] [blame] | 339 | main.log.error(self.name + ": Git checkout asking for username."\ |
| 340 | +" Please configure your local git repository to be able "\ |
| 341 | +"to access your remote repository passwordlessly") |
Jon Hall | acabffd | 2014-10-09 12:36:53 -0400 | [diff] [blame] | 342 | return main.ERROR |
| 343 | elif i==2: |
| 344 | main.log.info(self.name + ": Git Checkout %s : Already on this branch" %branch) |
| 345 | self.handle.expect("ONOS\$") |
Jon Hall | 81e29af | 2014-11-04 20:41:23 -0500 | [diff] [blame] | 346 | #main.log.info("DEBUG: after checkout cmd = "+ self.handle.before) |
Jon Hall | acabffd | 2014-10-09 12:36:53 -0400 | [diff] [blame] | 347 | return main.TRUE |
| 348 | elif i==3: |
| 349 | main.log.info(self.name + ": Git checkout %s - Switched to this branch" %branch) |
| 350 | self.handle.expect("ONOS\$") |
Jon Hall | 81e29af | 2014-11-04 20:41:23 -0500 | [diff] [blame] | 351 | #main.log.info("DEBUG: after checkout cmd = "+ self.handle.before) |
Jon Hall | acabffd | 2014-10-09 12:36:53 -0400 | [diff] [blame] | 352 | return main.TRUE |
| 353 | elif i==4: |
| 354 | main.log.error(self.name + ": Git Checkout- TIMEOUT") |
| 355 | main.log.error(self.name + " Response was: " + str(self.handle.before)) |
| 356 | return main.ERROR |
Jon Hall | 81e29af | 2014-11-04 20:41:23 -0500 | [diff] [blame] | 357 | elif i==5: |
| 358 | self.handle.expect("Aborting") |
| 359 | main.log.error(self.name + ": Git checkout error: \n" + \ |
| 360 | "Your local changes to the following files would be overwritten by checkout:" + \ |
| 361 | str(self.handle.before)) |
| 362 | self.handle.expect("ONOS\$") |
| 363 | return main.ERROR |
| 364 | elif i==6: |
| 365 | main.log.error(self.name + ": Git checkout error: \n" + \ |
| 366 | "You need to resolve your current index first:" + \ |
| 367 | str(self.handle.before)) |
| 368 | self.handle.expect("ONOS\$") |
| 369 | return main.ERROR |
Jon Hall | acabffd | 2014-10-09 12:36:53 -0400 | [diff] [blame] | 370 | else: |
| 371 | main.log.error(self.name + ": Git Checkout - Unexpected response, check for pull errors") |
Jon Hall | 81e29af | 2014-11-04 20:41:23 -0500 | [diff] [blame] | 372 | main.log.error(self.name + ": " + self.handle.before) |
Jon Hall | acabffd | 2014-10-09 12:36:53 -0400 | [diff] [blame] | 373 | return main.ERROR |
| 374 | |
| 375 | except pexpect.EOF: |
| 376 | main.log.error(self.name + ": EOF exception found") |
| 377 | main.log.error(self.name + ": " + self.handle.before) |
| 378 | main.cleanup() |
| 379 | main.exit() |
| 380 | except: |
| 381 | main.log.info(self.name + ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::") |
| 382 | main.log.error( traceback.print_exc() ) |
| 383 | main.log.info(":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::") |
| 384 | main.cleanup() |
| 385 | main.exit() |
andrewonlab | 95ca146 | 2014-10-09 14:04:24 -0400 | [diff] [blame] | 386 | |
Jon Hall | fd19120 | 2014-11-07 18:36:09 -0500 | [diff] [blame] | 387 | def get_version(self, report=False): |
Jon Hall | 45ec092 | 2014-10-10 19:33:49 -0400 | [diff] [blame] | 388 | ''' |
| 389 | Writes the COMMIT number to the report to be parsed by Jenkins data collecter. |
| 390 | ''' |
| 391 | try: |
| 392 | self.handle.sendline("export TERM=xterm-256color") |
| 393 | self.handle.expect("xterm-256color") |
| 394 | self.handle.expect("\$") |
Jon Hall | ffb386d | 2014-11-21 13:43:38 -0800 | [diff] [blame] | 395 | self.handle.sendline("") |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 396 | self.handle.expect("\$") |
| 397 | self.handle.sendline("cd " + self.home + "; git log -1 --pretty=fuller --decorate=short | grep -A 6 \"commit\" --color=never") |
Jon Hall | 73cf9cc | 2014-11-20 22:28:38 -0800 | [diff] [blame] | 398 | #NOTE: for some reason there are backspaces inserted in this phrase when run from Jenkins on some tests |
Jon Hall | ffb386d | 2014-11-21 13:43:38 -0800 | [diff] [blame] | 399 | self.handle.expect("never") |
Jon Hall | 45ec092 | 2014-10-10 19:33:49 -0400 | [diff] [blame] | 400 | self.handle.expect("\$") |
| 401 | response=(self.name +": \n"+ str(self.handle.before + self.handle.after)) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 402 | self.handle.sendline("cd " + self.home) |
| 403 | self.handle.expect("\$") |
Jon Hall | 45ec092 | 2014-10-10 19:33:49 -0400 | [diff] [blame] | 404 | lines=response.splitlines() |
| 405 | for line in lines: |
Jon Hall | fd19120 | 2014-11-07 18:36:09 -0500 | [diff] [blame] | 406 | print line |
| 407 | if report: |
| 408 | for line in lines[2:-1]: |
andrewonlab | ac5810a | 2014-11-18 14:33:03 -0500 | [diff] [blame] | 409 | #Bracket replacement is for Wiki-compliant |
| 410 | #formatting. '<' or '>' are interpreted |
| 411 | #as xml specific tags that cause errors |
| 412 | line = line.replace("<","[") |
| 413 | line = line.replace(">","]") |
Jon Hall | b1290e8 | 2014-11-18 16:17:48 -0500 | [diff] [blame] | 414 | main.log.report("\t" + line) |
Jon Hall | fd19120 | 2014-11-07 18:36:09 -0500 | [diff] [blame] | 415 | return lines[2] |
Jon Hall | 45ec092 | 2014-10-10 19:33:49 -0400 | [diff] [blame] | 416 | except pexpect.EOF: |
| 417 | main.log.error(self.name + ": EOF exception found") |
| 418 | main.log.error(self.name + ": " + self.handle.before) |
| 419 | main.cleanup() |
| 420 | main.exit() |
Jon Hall | 368769f | 2014-11-19 15:43:35 -0800 | [diff] [blame] | 421 | except pexpect.TIMEOUT: |
| 422 | main.log.error(self.name + ": TIMEOUT exception found") |
| 423 | main.log.error(self.name + ": " + self.handle.before) |
| 424 | main.cleanup() |
| 425 | main.exit() |
Jon Hall | 45ec092 | 2014-10-10 19:33:49 -0400 | [diff] [blame] | 426 | except: |
| 427 | main.log.info(self.name + ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::") |
| 428 | main.log.error( traceback.print_exc() ) |
| 429 | main.log.info(":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::") |
| 430 | main.cleanup() |
| 431 | main.exit() |
| 432 | |
andrewonlab | ba44bcf | 2014-10-16 16:54:41 -0400 | [diff] [blame] | 433 | def create_cell_file(self, bench_ip, file_name, mn_ip_addrs, |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 434 | extra_feature_string, *onos_ip_addrs): |
andrewonlab | 9428209 | 2014-10-10 13:00:11 -0400 | [diff] [blame] | 435 | ''' |
| 436 | Creates a cell file based on arguments |
| 437 | Required: |
| 438 | * Bench IP address (bench_ip) |
| 439 | - Needed to copy the cell file over |
| 440 | * File name of the cell file (file_name) |
| 441 | * Mininet IP address (mn_ip_addrs) |
| 442 | - Note that only 1 ip address is |
| 443 | supported currently |
| 444 | * ONOS IP addresses (onos_ip_addrs) |
| 445 | - Must be passed in as last arguments |
| 446 | |
| 447 | NOTE: Assumes cells are located at: |
| 448 | ~/<self.home>/tools/test/cells/ |
| 449 | ''' |
| 450 | |
| 451 | #Variable initialization |
| 452 | cell_directory = self.home + "/tools/test/cells/" |
| 453 | #We want to create the cell file in the dependencies directory |
| 454 | #of TestON first, then copy over to ONOS bench |
| 455 | temp_directory = "/tmp/" |
| 456 | #Create the cell file in the directory for writing (w+) |
| 457 | cell_file = open(temp_directory+file_name , 'w+') |
andrewonlab | d494049 | 2014-10-24 12:21:27 -0400 | [diff] [blame] | 458 | |
| 459 | comment = "" |
| 460 | comment_string = "#"+ comment |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 461 | #Feature string is hardcoded environment variables |
| 462 | #That you may wish to use by default on startup. |
| 463 | #Note that you may not want certain features listed |
| 464 | #on here. |
andrewonlab | ba44bcf | 2014-10-16 16:54:41 -0400 | [diff] [blame] | 465 | core_feature_string = "export ONOS_FEATURES=webconsole,onos-api,"+\ |
| 466 | "onos-cli,onos-openflow,onos-app-mobility,onos-app-tvue,"+\ |
| 467 | "onos-app-proxyarp,"+extra_feature_string |
andrewonlab | 9428209 | 2014-10-10 13:00:11 -0400 | [diff] [blame] | 468 | mn_string = "export OCN=" |
| 469 | onos_string = "export OC" |
| 470 | temp_count = 1 |
| 471 | |
| 472 | #Create ONOS_NIC ip address prefix |
| 473 | temp_onos_ip = onos_ip_addrs[0] |
| 474 | temp_list = [] |
| 475 | temp_list = temp_onos_ip.split(".") |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 476 | #Omit last element of list to format for NIC |
andrewonlab | 9428209 | 2014-10-10 13:00:11 -0400 | [diff] [blame] | 477 | temp_list = temp_list[:-1] |
| 478 | #Structure the nic string ip |
andrewonlab | d494049 | 2014-10-24 12:21:27 -0400 | [diff] [blame] | 479 | nic_addr = ".".join(temp_list) + ".*" |
andrewonlab | 9428209 | 2014-10-10 13:00:11 -0400 | [diff] [blame] | 480 | onos_nic_string = "export ONOS_NIC="+nic_addr |
| 481 | |
| 482 | try: |
| 483 | #Start writing to file |
andrewonlab | d494049 | 2014-10-24 12:21:27 -0400 | [diff] [blame] | 484 | cell_file.write(onos_nic_string + "\n") |
andrewonlab | 9428209 | 2014-10-10 13:00:11 -0400 | [diff] [blame] | 485 | |
| 486 | for arg in onos_ip_addrs: |
| 487 | #For each argument in onos_ip_addrs, write to file |
| 488 | #Output should look like the following: |
andrewonlab | d494049 | 2014-10-24 12:21:27 -0400 | [diff] [blame] | 489 | # export OC1="10.128.20.11" |
| 490 | # export OC2="10.128.20.12" |
andrewonlab | 9428209 | 2014-10-10 13:00:11 -0400 | [diff] [blame] | 491 | cell_file.write(onos_string + str(temp_count) + |
andrewonlab | d494049 | 2014-10-24 12:21:27 -0400 | [diff] [blame] | 492 | "=" + "\"" + arg + "\"" + "\n" ) |
andrewonlab | 9428209 | 2014-10-10 13:00:11 -0400 | [diff] [blame] | 493 | temp_count = temp_count + 1 |
| 494 | |
andrewonlab | d494049 | 2014-10-24 12:21:27 -0400 | [diff] [blame] | 495 | cell_file.write(mn_string +"\""+ mn_ip_addrs +"\""+ "\n") |
| 496 | cell_file.write(core_feature_string + "\n") |
andrewonlab | 9428209 | 2014-10-10 13:00:11 -0400 | [diff] [blame] | 497 | cell_file.close() |
| 498 | |
| 499 | #We use os.system to send the command to TestON cluster |
| 500 | #to account for the case in which TestON is not located |
| 501 | #on the same cluster as the ONOS bench |
| 502 | #Note that even if TestON is located on the same cluster |
| 503 | #as ONOS bench, you must setup passwordless ssh |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 504 | #between TestON and ONOS bench in order to automate the test. |
andrewonlab | 9428209 | 2014-10-10 13:00:11 -0400 | [diff] [blame] | 505 | os.system("scp "+temp_directory+file_name+ |
| 506 | " admin@"+bench_ip+":"+cell_directory) |
| 507 | |
andrewonlab | 2a6c934 | 2014-10-16 13:40:15 -0400 | [diff] [blame] | 508 | return main.TRUE |
| 509 | |
andrewonlab | 9428209 | 2014-10-10 13:00:11 -0400 | [diff] [blame] | 510 | except pexpect.EOF: |
| 511 | main.log.error(self.name + ": EOF exception found") |
| 512 | main.log.error(self.name + ": " + self.handle.before) |
| 513 | main.cleanup() |
| 514 | main.exit() |
| 515 | except: |
| 516 | main.log.info(self.name + ":::::::::") |
| 517 | main.log.error( traceback.print_exc() ) |
| 518 | main.log.info(":::::::") |
| 519 | main.cleanup() |
| 520 | main.exit() |
| 521 | |
andrewonlab | 95ca146 | 2014-10-09 14:04:24 -0400 | [diff] [blame] | 522 | def set_cell(self, cellname): |
| 523 | ''' |
| 524 | Calls 'cell <name>' to set the environment variables on ONOSbench |
| 525 | ''' |
| 526 | try: |
| 527 | if not cellname: |
| 528 | main.log.error("Must define cellname") |
| 529 | main.cleanup() |
| 530 | main.exit() |
| 531 | else: |
| 532 | self.handle.sendline("cell "+str(cellname)) |
| 533 | #Expect the cellname in the ONOS_CELL variable. |
| 534 | #Note that this variable name is subject to change |
| 535 | # and that this driver will have to change accordingly |
| 536 | self.handle.expect("ONOS_CELL="+str(cellname)) |
| 537 | handle_before = self.handle.before |
| 538 | handle_after = self.handle.after |
andrewonlab | c03bf6c | 2014-10-09 14:56:18 -0400 | [diff] [blame] | 539 | #Get the rest of the handle |
| 540 | self.handle.sendline("") |
| 541 | self.handle.expect("\$") |
| 542 | handle_more = self.handle.before |
andrewonlab | 95ca146 | 2014-10-09 14:04:24 -0400 | [diff] [blame] | 543 | |
| 544 | main.log.info("Cell call returned: "+handle_before+ |
andrewonlab | c03bf6c | 2014-10-09 14:56:18 -0400 | [diff] [blame] | 545 | handle_after + handle_more) |
andrewonlab | 95ca146 | 2014-10-09 14:04:24 -0400 | [diff] [blame] | 546 | |
| 547 | return main.TRUE |
| 548 | |
| 549 | except pexpect.EOF: |
| 550 | main.log.error(self.name + ": EOF exception found") |
| 551 | main.log.error(self.name + ": " + self.handle.before) |
| 552 | main.cleanup() |
| 553 | main.exit() |
| 554 | except: |
| 555 | main.log.info(self.name+" ::::::") |
| 556 | main.log.error( traceback.print_exc()) |
| 557 | main.log.info(self.name+" ::::::") |
| 558 | main.cleanup() |
| 559 | main.exit() |
| 560 | |
andrewonlab | c03bf6c | 2014-10-09 14:56:18 -0400 | [diff] [blame] | 561 | def verify_cell(self): |
| 562 | ''' |
| 563 | Calls 'onos-verify-cell' to check for cell installation |
| 564 | ''' |
andrewonlab | 8d0d7d7 | 2014-10-09 16:33:15 -0400 | [diff] [blame] | 565 | #TODO: Add meaningful expect value |
| 566 | |
andrewonlab | c03bf6c | 2014-10-09 14:56:18 -0400 | [diff] [blame] | 567 | try: |
| 568 | #Clean handle by sending empty and expecting $ |
| 569 | self.handle.sendline("") |
| 570 | self.handle.expect("\$") |
| 571 | self.handle.sendline("onos-verify-cell") |
| 572 | self.handle.expect("\$") |
| 573 | handle_before = self.handle.before |
| 574 | handle_after = self.handle.after |
| 575 | #Get the rest of the handle |
| 576 | self.handle.sendline("") |
| 577 | self.handle.expect("\$") |
| 578 | handle_more = self.handle.before |
| 579 | |
| 580 | main.log.info("Verify cell returned: "+handle_before+ |
| 581 | handle_after + handle_more) |
| 582 | |
| 583 | return main.TRUE |
Jon Hall | 7993bfc | 2014-10-09 16:30:14 -0400 | [diff] [blame] | 584 | except pexpect.EOF: |
| 585 | main.log.error(self.name + ": EOF exception found") |
| 586 | main.log.error(self.name + ": " + self.handle.before) |
| 587 | main.cleanup() |
| 588 | main.exit() |
| 589 | except: |
| 590 | main.log.info(self.name+" ::::::") |
| 591 | main.log.error( traceback.print_exc()) |
| 592 | main.log.info(self.name+" ::::::") |
| 593 | main.cleanup() |
| 594 | main.exit() |
| 595 | |
andrewonlab | 05e362f | 2014-10-10 00:40:57 -0400 | [diff] [blame] | 596 | def onos_cli(self, ONOS_ip, cmdstr): |
| 597 | ''' |
| 598 | Uses 'onos' command to send various ONOS CLI arguments. |
| 599 | Required: |
| 600 | * ONOS_ip: specify the ip of the cell machine |
andrewonlab | 9428209 | 2014-10-10 13:00:11 -0400 | [diff] [blame] | 601 | * cmdstr: specify the command string to send |
andrewonlab | 6e20c34 | 2014-10-10 18:08:48 -0400 | [diff] [blame] | 602 | |
| 603 | This function is intended to expose the entire karaf |
| 604 | CLI commands for ONOS. Try to use this function first |
| 605 | before attempting to write a ONOS CLI specific driver |
| 606 | function. |
| 607 | You can see a list of available 'cmdstr' arguments |
| 608 | by starting onos, and typing in 'onos' to enter the |
| 609 | onos> CLI. Then, type 'help' to see the list of |
| 610 | available commands. |
andrewonlab | 05e362f | 2014-10-10 00:40:57 -0400 | [diff] [blame] | 611 | ''' |
| 612 | try: |
| 613 | if not ONOS_ip: |
| 614 | main.log.error("You must specify the IP address") |
| 615 | return main.FALSE |
| 616 | if not cmdstr: |
| 617 | main.log.error("You must specify the command string") |
| 618 | return main.FALSE |
| 619 | |
| 620 | cmdstr = str(cmdstr) |
| 621 | self.handle.sendline("") |
| 622 | self.handle.expect("\$") |
| 623 | |
| 624 | self.handle.sendline("onos -w " + ONOS_ip + " " + cmdstr) |
| 625 | self.handle.expect("\$") |
| 626 | |
Shreya Shah | a73aaad | 2014-10-27 18:03:09 -0400 | [diff] [blame] | 627 | handle_before = self.handle.before |
| 628 | print "handle_before = ", self.handle.before |
andrewonlab | 05e362f | 2014-10-10 00:40:57 -0400 | [diff] [blame] | 629 | handle_after = str(self.handle.after) |
| 630 | |
Shreya Shah | a73aaad | 2014-10-27 18:03:09 -0400 | [diff] [blame] | 631 | #self.handle.sendline("") |
| 632 | #self.handle.expect("\$") |
| 633 | #handle_more = str(self.handle.before) |
andrewonlab | 05e362f | 2014-10-10 00:40:57 -0400 | [diff] [blame] | 634 | |
| 635 | main.log.info("Command sent successfully") |
| 636 | |
andrewonlab | 9428209 | 2014-10-10 13:00:11 -0400 | [diff] [blame] | 637 | #Obtain return handle that consists of result from |
| 638 | #the onos command. The string may need to be |
| 639 | #configured further. |
Shreya Shah | a73aaad | 2014-10-27 18:03:09 -0400 | [diff] [blame] | 640 | #return_string = handle_before + handle_after |
| 641 | return_string = handle_before |
| 642 | print "return_string = ", return_string |
andrewonlab | 05e362f | 2014-10-10 00:40:57 -0400 | [diff] [blame] | 643 | return return_string |
| 644 | |
| 645 | except pexpect.EOF: |
| 646 | main.log.error(self.name + ": EOF exception found") |
| 647 | main.log.error(self.name + ": " + self.handle.before) |
| 648 | main.cleanup() |
| 649 | main.exit() |
| 650 | except: |
| 651 | main.log.info(self.name+" ::::::") |
| 652 | main.log.error( traceback.print_exc()) |
| 653 | main.log.info(self.name+" ::::::") |
| 654 | main.cleanup() |
| 655 | main.exit() |
Jon Hall | 7993bfc | 2014-10-09 16:30:14 -0400 | [diff] [blame] | 656 | |
| 657 | def onos_install(self, options="-f", node = ""): |
| 658 | ''' |
| 659 | Installs ONOS bits on the designated cell machine. |
| 660 | If -f option is provided, it also forces an uninstall. |
| 661 | Presently, install also includes onos-push-bits and |
| 662 | onos-config within. |
| 663 | The node option allows you to selectively only push the jar |
| 664 | files to certain onos nodes |
| 665 | |
| 666 | Returns: main.TRUE on success and main.FALSE on failure |
| 667 | ''' |
| 668 | try: |
andrewonlab | 114768a | 2014-11-14 12:44:44 -0500 | [diff] [blame] | 669 | if options: |
| 670 | self.handle.sendline("onos-install " + options + " " + node) |
| 671 | else: |
| 672 | self.handle.sendline("onos-install "+node) |
Jon Hall | 7993bfc | 2014-10-09 16:30:14 -0400 | [diff] [blame] | 673 | self.handle.expect("onos-install ") |
| 674 | #NOTE: this timeout may need to change depending on the network and size of ONOS |
| 675 | i=self.handle.expect(["Network\sis\sunreachable", |
| 676 | "onos\sstart/running,\sprocess", |
andrewonlab | d9a73a7 | 2014-11-14 17:28:21 -0500 | [diff] [blame] | 677 | "ONOS\sis\salready\sinstalled", |
Jon Hall | 7993bfc | 2014-10-09 16:30:14 -0400 | [diff] [blame] | 678 | pexpect.TIMEOUT],timeout=60) |
| 679 | |
Jon Hall | 7993bfc | 2014-10-09 16:30:14 -0400 | [diff] [blame] | 680 | if i == 0: |
| 681 | main.log.warn("Network is unreachable") |
| 682 | return main.FALSE |
| 683 | elif i == 1: |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 684 | main.log.info("ONOS was installed on " + node + " and started") |
Jon Hall | 7993bfc | 2014-10-09 16:30:14 -0400 | [diff] [blame] | 685 | return main.TRUE |
andrewonlab | d9a73a7 | 2014-11-14 17:28:21 -0500 | [diff] [blame] | 686 | elif i == 2: |
| 687 | main.log.info("ONOS is already installed on "+node) |
| 688 | return main.TRUE |
| 689 | elif i == 3: |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 690 | main.log.info("Installation of ONOS on " + node + " timed out") |
Jon Hall | 7993bfc | 2014-10-09 16:30:14 -0400 | [diff] [blame] | 691 | return main.FALSE |
andrewonlab | c03bf6c | 2014-10-09 14:56:18 -0400 | [diff] [blame] | 692 | |
andrewonlab | d9a73a7 | 2014-11-14 17:28:21 -0500 | [diff] [blame] | 693 | |
andrewonlab | c03bf6c | 2014-10-09 14:56:18 -0400 | [diff] [blame] | 694 | except pexpect.EOF: |
| 695 | main.log.error(self.name + ": EOF exception found") |
| 696 | main.log.error(self.name + ": " + self.handle.before) |
| 697 | main.cleanup() |
| 698 | main.exit() |
| 699 | except: |
| 700 | main.log.info(self.name+" ::::::") |
| 701 | main.log.error( traceback.print_exc()) |
| 702 | main.log.info(self.name+" ::::::") |
| 703 | main.cleanup() |
| 704 | main.exit() |
andrewonlab | 95ca146 | 2014-10-09 14:04:24 -0400 | [diff] [blame] | 705 | |
andrewonlab | 8d0d7d7 | 2014-10-09 16:33:15 -0400 | [diff] [blame] | 706 | def onos_start(self, node_ip): |
| 707 | ''' |
| 708 | Calls onos command: 'onos-service [<node-ip>] start' |
andrewonlab | e8e56fd | 2014-10-09 17:12:44 -0400 | [diff] [blame] | 709 | This command is a remote management of the ONOS upstart daemon |
andrewonlab | 8d0d7d7 | 2014-10-09 16:33:15 -0400 | [diff] [blame] | 710 | ''' |
| 711 | |
| 712 | try: |
| 713 | self.handle.sendline("") |
| 714 | self.handle.expect("\$") |
| 715 | self.handle.sendline("onos-service "+str(node_ip)+ |
| 716 | " start") |
| 717 | i = self.handle.expect([ |
| 718 | "Job\sis\salready\srunning", |
| 719 | "start/running", |
| 720 | "Unknown\sinstance", |
Shreya Shah | d01153d | 2014-10-23 15:08:56 -0400 | [diff] [blame] | 721 | pexpect.TIMEOUT],timeout=120) |
andrewonlab | 8d0d7d7 | 2014-10-09 16:33:15 -0400 | [diff] [blame] | 722 | |
| 723 | if i == 0: |
| 724 | main.log.info("Service is already running") |
| 725 | return main.TRUE |
| 726 | elif i == 1: |
| 727 | main.log.info("ONOS service started") |
| 728 | return main.TRUE |
| 729 | else: |
| 730 | main.log.error("ONOS service failed to start") |
| 731 | main.cleanup() |
| 732 | main.exit() |
andrewonlab | 8d0d7d7 | 2014-10-09 16:33:15 -0400 | [diff] [blame] | 733 | except pexpect.EOF: |
| 734 | main.log.error(self.name + ": EOF exception found") |
| 735 | main.log.error(self.name + ": " + self.handle.before) |
| 736 | main.cleanup() |
| 737 | main.exit() |
| 738 | except: |
| 739 | main.log.info(self.name+" ::::::") |
| 740 | main.log.error( traceback.print_exc()) |
| 741 | main.log.info(self.name+" ::::::") |
| 742 | main.cleanup() |
| 743 | main.exit() |
| 744 | |
andrewonlab | 2b30bd3 | 2014-10-09 16:48:55 -0400 | [diff] [blame] | 745 | def onos_stop(self, node_ip): |
| 746 | ''' |
| 747 | Calls onos command: 'onos-service [<node-ip>] stop' |
andrewonlab | e8e56fd | 2014-10-09 17:12:44 -0400 | [diff] [blame] | 748 | This command is a remote management of the ONOS upstart daemon |
andrewonlab | 2b30bd3 | 2014-10-09 16:48:55 -0400 | [diff] [blame] | 749 | ''' |
| 750 | try: |
| 751 | self.handle.sendline("") |
| 752 | self.handle.expect("\$") |
| 753 | self.handle.sendline("onos-service "+str(node_ip)+ |
| 754 | " stop") |
| 755 | i = self.handle.expect([ |
| 756 | "stop/waiting", |
| 757 | "Unknown\sinstance", |
| 758 | pexpect.TIMEOUT],timeout=60) |
| 759 | |
| 760 | if i == 0: |
| 761 | main.log.info("ONOS service stopped") |
| 762 | return main.TRUE |
| 763 | elif i == 1: |
| 764 | main.log.info("Unknown ONOS instance specified: "+ |
| 765 | str(node_ip)) |
| 766 | return main.FALSE |
| 767 | else: |
| 768 | main.log.error("ONOS service failed to stop") |
| 769 | return main.FALSE |
| 770 | |
| 771 | except pexpect.EOF: |
| 772 | main.log.error(self.name + ": EOF exception found") |
| 773 | main.log.error(self.name + ": " + self.handle.before) |
| 774 | main.cleanup() |
| 775 | main.exit() |
| 776 | except: |
| 777 | main.log.info(self.name+" ::::::") |
| 778 | main.log.error( traceback.print_exc()) |
| 779 | main.log.info(self.name+" ::::::") |
| 780 | main.cleanup() |
| 781 | main.exit() |
andrewonlab | 99d3f7f | 2014-11-13 17:45:08 -0500 | [diff] [blame] | 782 | |
andrewonlab | a6f7d88 | 2014-11-13 17:32:24 -0500 | [diff] [blame] | 783 | def onos_uninstall(self, node_ip=""): |
andrewonlab | c8d4797 | 2014-10-09 16:52:36 -0400 | [diff] [blame] | 784 | ''' |
| 785 | Calls the command: 'onos-uninstall' |
andrewonlab | e8e56fd | 2014-10-09 17:12:44 -0400 | [diff] [blame] | 786 | Uninstalls ONOS from the designated cell machine, stopping |
| 787 | if needed |
andrewonlab | c8d4797 | 2014-10-09 16:52:36 -0400 | [diff] [blame] | 788 | ''' |
| 789 | try: |
| 790 | self.handle.sendline("") |
| 791 | self.handle.expect("\$") |
Jon Hall | 73cf9cc | 2014-11-20 22:28:38 -0800 | [diff] [blame] | 792 | self.handle.sendline( "onos-uninstall "+str(node_ip) ) |
andrewonlab | c8d4797 | 2014-10-09 16:52:36 -0400 | [diff] [blame] | 793 | self.handle.expect("\$") |
| 794 | |
andrewonlab | 9dfd208 | 2014-11-13 17:44:03 -0500 | [diff] [blame] | 795 | main.log.info("ONOS "+node_ip+" was uninstalled") |
| 796 | |
andrewonlab | c8d4797 | 2014-10-09 16:52:36 -0400 | [diff] [blame] | 797 | #onos-uninstall command does not return any text |
| 798 | return main.TRUE |
| 799 | |
| 800 | except pexpect.EOF: |
| 801 | main.log.error(self.name + ": EOF exception found") |
| 802 | main.log.error(self.name + ": " + self.handle.before) |
| 803 | main.cleanup() |
| 804 | main.exit() |
| 805 | except: |
| 806 | main.log.info(self.name+" ::::::") |
| 807 | main.log.error( traceback.print_exc()) |
| 808 | main.log.info(self.name+" ::::::") |
| 809 | main.cleanup() |
| 810 | main.exit() |
andrewonlab | 2b30bd3 | 2014-10-09 16:48:55 -0400 | [diff] [blame] | 811 | |
andrewonlab | e8e56fd | 2014-10-09 17:12:44 -0400 | [diff] [blame] | 812 | def onos_kill(self, node_ip): |
| 813 | ''' |
| 814 | Calls the command: 'onos-kill [<node-ip>]' |
| 815 | "Remotely, and unceremoniously kills the ONOS instance running on |
| 816 | the specified cell machine" - Tom V |
| 817 | ''' |
| 818 | |
| 819 | try: |
| 820 | self.handle.sendline("") |
| 821 | self.handle.expect("\$") |
| 822 | self.handle.sendline("onos-kill " + str(node_ip)) |
| 823 | i = self.handle.expect([ |
| 824 | "\$", |
| 825 | "No\sroute\sto\shost", |
| 826 | "password:", |
| 827 | pexpect.TIMEOUT], timeout=20) |
| 828 | |
| 829 | if i == 0: |
| 830 | main.log.info("ONOS instance "+str(node_ip)+" was killed") |
| 831 | return main.TRUE |
| 832 | elif i == 1: |
| 833 | main.log.info("No route to host") |
| 834 | return main.FALSE |
| 835 | elif i == 2: |
| 836 | main.log.info("Passwordless login for host: "+str(node_ip)+ |
| 837 | " not configured") |
| 838 | return main.FALSE |
| 839 | else: |
| 840 | main.log.info("ONOS instasnce was not killed") |
| 841 | return main.FALSE |
| 842 | |
| 843 | except pexpect.EOF: |
| 844 | main.log.error(self.name + ": EOF exception found") |
| 845 | main.log.error(self.name + ": " + self.handle.before) |
| 846 | main.cleanup() |
| 847 | main.exit() |
| 848 | except: |
| 849 | main.log.info(self.name+" ::::::") |
| 850 | main.log.error( traceback.print_exc()) |
| 851 | main.log.info(self.name+" ::::::") |
| 852 | main.cleanup() |
| 853 | main.exit() |
| 854 | |
andrewonlab | 19fbdca | 2014-11-14 12:55:59 -0500 | [diff] [blame] | 855 | def onos_remove_raft_logs(self): |
| 856 | ''' |
| 857 | Removes Raft / Copy cat files from ONOS to ensure |
Jon Hall | fcc8862 | 2014-11-25 13:09:54 -0500 | [diff] [blame] | 858 | a cleaner environment. |
| 859 | |
andrewonlab | 19fbdca | 2014-11-14 12:55:59 -0500 | [diff] [blame] | 860 | Description: |
Jon Hall | fcc8862 | 2014-11-25 13:09:54 -0500 | [diff] [blame] | 861 | Stops all ONOS defined in the cell, |
andrewonlab | 19fbdca | 2014-11-14 12:55:59 -0500 | [diff] [blame] | 862 | wipes the raft / copycat log files |
| 863 | ''' |
| 864 | try: |
| 865 | self.handle.sendline("") |
| 866 | self.handle.expect("\$") |
| 867 | self.handle.sendline("onos-remove-raft-logs") |
Jon Hall | fcc8862 | 2014-11-25 13:09:54 -0500 | [diff] [blame] | 868 | #Sometimes this command hangs |
andrewonlab | eb7b107 | 2014-11-25 15:50:07 -0500 | [diff] [blame] | 869 | i = self.handle.expect(["\$", pexpect.TIMEOUT], |
| 870 | timeout=120) |
Jon Hall | fcc8862 | 2014-11-25 13:09:54 -0500 | [diff] [blame] | 871 | if i == 1: |
andrewonlab | eb7b107 | 2014-11-25 15:50:07 -0500 | [diff] [blame] | 872 | i = self.handle.expect(["\$", pexpect.TIMEOUT], |
| 873 | timeout=120) |
Jon Hall | fcc8862 | 2014-11-25 13:09:54 -0500 | [diff] [blame] | 874 | if i == 1: |
| 875 | return main.FALSE |
shahshreya | e6c7cf4 | 2014-11-26 16:39:01 -0800 | [diff] [blame] | 876 | self.handle.sendline("") |
| 877 | self.handle.expect("\$") |
andrewonlab | 19fbdca | 2014-11-14 12:55:59 -0500 | [diff] [blame] | 878 | return main.TRUE |
| 879 | |
| 880 | except pexpect.EOF: |
| 881 | main.log.error(self.name + ": EOF exception found") |
| 882 | main.log.error(self.name + ": " + self.handle.before) |
| 883 | main.cleanup() |
| 884 | main.exit() |
| 885 | except: |
| 886 | main.log.info(self.name+" ::::::") |
| 887 | main.log.error( traceback.print_exc()) |
| 888 | main.log.info(self.name+" ::::::") |
| 889 | main.cleanup() |
| 890 | main.exit() |
Jon Hall | fcc8862 | 2014-11-25 13:09:54 -0500 | [diff] [blame] | 891 | |
andrewonlab | 9428209 | 2014-10-10 13:00:11 -0400 | [diff] [blame] | 892 | def onos_start_network(self, mntopo): |
| 893 | ''' |
| 894 | Calls the command 'onos-start-network [<mininet-topo>] |
| 895 | "remotely starts the specified topology on the cell's |
| 896 | mininet machine against all controllers configured in the |
| 897 | cell." |
| 898 | * Specify mininet topology file name for mntopo |
| 899 | * Topo files should be placed at: |
| 900 | ~/<your-onos-directory>/tools/test/topos |
| 901 | |
| 902 | NOTE: This function will take you to the mininet prompt |
| 903 | ''' |
| 904 | try: |
| 905 | if not mntopo: |
| 906 | main.log.error("You must specify a topo file to execute") |
| 907 | return main.FALSE |
| 908 | |
| 909 | mntopo = str(mntopo) |
| 910 | self.handle.sendline("") |
| 911 | self.handle.expect("\$") |
| 912 | |
| 913 | self.handle.sendline("onos-start-network " + mntopo) |
| 914 | self.handle.expect("mininet>") |
| 915 | main.log.info("Network started, entered mininet prompt") |
| 916 | |
| 917 | #TODO: Think about whether return is necessary or not |
| 918 | |
| 919 | except pexpect.EOF: |
| 920 | main.log.error(self.name + ": EOF exception found") |
| 921 | main.log.error(self.name + ": " + self.handle.before) |
| 922 | main.cleanup() |
| 923 | main.exit() |
| 924 | except: |
| 925 | main.log.info(self.name+" ::::::") |
| 926 | main.log.error( traceback.print_exc()) |
| 927 | main.log.info(self.name+" ::::::") |
| 928 | main.cleanup() |
| 929 | main.exit() |
| 930 | |
| 931 | |
Jon Hall | 7993bfc | 2014-10-09 16:30:14 -0400 | [diff] [blame] | 932 | def isup(self, node = ""): |
| 933 | ''' |
Jon Hall | 77f53ce | 2014-10-13 18:02:06 -0400 | [diff] [blame] | 934 | Run's onos-wait-for-start which only returns once ONOS is at run |
| 935 | level 100(ready for use) |
andrewonlab | 8d0d7d7 | 2014-10-09 16:33:15 -0400 | [diff] [blame] | 936 | |
Jon Hall | 7993bfc | 2014-10-09 16:30:14 -0400 | [diff] [blame] | 937 | Returns: main.TRUE if ONOS is running and main.FALSE on timeout |
| 938 | ''' |
| 939 | try: |
| 940 | self.handle.sendline("onos-wait-for-start " + node ) |
| 941 | self.handle.expect("onos-wait-for-start") |
| 942 | #NOTE: this timeout is arbitrary" |
Jon Hall | 73cf9cc | 2014-11-20 22:28:38 -0800 | [diff] [blame] | 943 | i = self.handle.expect(["\$", pexpect.TIMEOUT], timeout = 120) |
Jon Hall | 7993bfc | 2014-10-09 16:30:14 -0400 | [diff] [blame] | 944 | if i == 0: |
| 945 | main.log.info(self.name + ": " + node + " is up") |
| 946 | return main.TRUE |
| 947 | elif i == 1: |
| 948 | #NOTE: since this function won't return until ONOS is ready, |
| 949 | # we will kill it on timeout |
Jon Hall | 73cf9cc | 2014-11-20 22:28:38 -0800 | [diff] [blame] | 950 | main.log.error("ONOS has not started yet") |
| 951 | self.handle.send("\x03") #Control-C |
Jon Hall | 7993bfc | 2014-10-09 16:30:14 -0400 | [diff] [blame] | 952 | self.handle.expect("\$") |
| 953 | return main.FALSE |
| 954 | except pexpect.EOF: |
| 955 | main.log.error(self.name + ": EOF exception found") |
| 956 | main.log.error(self.name + ": " + self.handle.before) |
| 957 | main.cleanup() |
| 958 | main.exit() |
| 959 | except: |
| 960 | main.log.info(self.name+" ::::::") |
| 961 | main.log.error( traceback.print_exc()) |
| 962 | main.log.info(self.name+" ::::::") |
| 963 | main.cleanup() |
| 964 | main.exit() |
andrewonlab | 05e362f | 2014-10-10 00:40:57 -0400 | [diff] [blame] | 965 | |
andrewonlab | b66dfa1 | 2014-12-02 15:51:10 -0500 | [diff] [blame] | 966 | def push_test_intents_shell(self, dpid_src, dpid_dst, num_intents, |
| 967 | dir_file, onos_ip, num_mult="", app_id="", report=True): |
| 968 | ''' |
| 969 | Description: |
| 970 | Use the linux prompt to push test intents to |
| 971 | better parallelize the results than the CLI |
| 972 | Required: |
| 973 | * dpid_src: specify source dpid |
| 974 | * dpid_dst: specify destination dpid |
| 975 | * num_intents: specify number of intents to push |
| 976 | * dir_file: specify directory and file name to save |
| 977 | results |
| 978 | * onos_ip: specify the IP of ONOS to install on |
| 979 | NOTE: |
| 980 | You must invoke this command at linux shell prompt |
| 981 | ''' |
| 982 | try: |
| 983 | #Create the string to sendline |
| 984 | base_cmd = "onos "+str(onos_ip)+" push-test-intents " |
| 985 | add_dpid = base_cmd + str(dpid_src) + " " + str(dpid_dst) |
| 986 | if not num_mult: |
| 987 | add_intents = add_dpid + " " + str(num_intents) |
| 988 | elif num_mult: |
| 989 | add_intents = add_dpid + " " + str(num_intents) + " " +\ |
| 990 | str(num_mult) |
| 991 | if app_id: |
| 992 | add_app = add_intents + " " + str(app_id) |
| 993 | else: |
| 994 | add_app = add_intents |
| 995 | |
| 996 | send_cmd = add_app + " > " + str(dir_file) + " &" |
| 997 | main.log.info("Send cmd: "+send_cmd) |
| 998 | |
| 999 | self.handle.sendline(send_cmd) |
| 1000 | |
| 1001 | except pexpect.EOF: |
| 1002 | main.log.error(self.name + ": EOF exception found") |
| 1003 | main.log.error(self.name + ": " + self.handle.before) |
| 1004 | main.cleanup() |
| 1005 | main.exit() |
| 1006 | except: |
| 1007 | main.log.info(self.name+" ::::::") |
| 1008 | main.log.error( traceback.print_exc()) |
| 1009 | main.log.info(self.name+" ::::::") |
| 1010 | main.cleanup() |
| 1011 | main.exit() |
andrewonlab | 05e362f | 2014-10-10 00:40:57 -0400 | [diff] [blame] | 1012 | |
Shreya Shah | a73aaad | 2014-10-27 18:03:09 -0400 | [diff] [blame] | 1013 | def get_topology(self,topology_output): |
Jon Hall | 77f53ce | 2014-10-13 18:02:06 -0400 | [diff] [blame] | 1014 | ''' |
| 1015 | parses the onos:topology output |
| 1016 | Returns: a topology dict populated by the key values found in |
| 1017 | the cli command. |
| 1018 | ''' |
| 1019 | |
| 1020 | try: |
| 1021 | #call the cli to get the topology summary |
Shreya Shah | a73aaad | 2014-10-27 18:03:09 -0400 | [diff] [blame] | 1022 | #cmdstr = "onos:topology" |
| 1023 | #cli_result = self.onos_cli(ip, cmdstr) |
| 1024 | #print "cli_result = ", cli_result |
Jon Hall | 77f53ce | 2014-10-13 18:02:06 -0400 | [diff] [blame] | 1025 | |
| 1026 | #Parse the output |
| 1027 | topology = {} |
| 1028 | #for line in cli_result.split("\n"): |
Shreya Shah | a73aaad | 2014-10-27 18:03:09 -0400 | [diff] [blame] | 1029 | for line in topology_output.splitlines(): |
Jon Hall | 77f53ce | 2014-10-13 18:02:06 -0400 | [diff] [blame] | 1030 | if not line.startswith("time="): |
| 1031 | continue |
| 1032 | #else |
| 1033 | print line |
| 1034 | for var in line.split(","): |
Shreya Shah | a73aaad | 2014-10-27 18:03:09 -0400 | [diff] [blame] | 1035 | #print "'"+var+"'" |
| 1036 | #print "'"+var.strip()+"'" |
Jon Hall | 77f53ce | 2014-10-13 18:02:06 -0400 | [diff] [blame] | 1037 | key, value = var.strip().split("=") |
| 1038 | topology[key] = value |
Shreya Shah | a73aaad | 2014-10-27 18:03:09 -0400 | [diff] [blame] | 1039 | print "topology = ", topology |
Jon Hall | 77f53ce | 2014-10-13 18:02:06 -0400 | [diff] [blame] | 1040 | devices = topology.get('devices', False) |
Shreya Shah | a73aaad | 2014-10-27 18:03:09 -0400 | [diff] [blame] | 1041 | print "devices = ", devices |
Jon Hall | 77f53ce | 2014-10-13 18:02:06 -0400 | [diff] [blame] | 1042 | links = topology.get('links', False) |
Shreya Shah | a73aaad | 2014-10-27 18:03:09 -0400 | [diff] [blame] | 1043 | print "links = ", links |
Jon Hall | 77f53ce | 2014-10-13 18:02:06 -0400 | [diff] [blame] | 1044 | clusters = topology.get('clusters', False) |
Shreya Shah | a73aaad | 2014-10-27 18:03:09 -0400 | [diff] [blame] | 1045 | print "clusters = ", clusters |
Jon Hall | 77f53ce | 2014-10-13 18:02:06 -0400 | [diff] [blame] | 1046 | paths = topology.get('paths', False) |
Shreya Shah | a73aaad | 2014-10-27 18:03:09 -0400 | [diff] [blame] | 1047 | print "paths = ", paths |
Jon Hall | 77f53ce | 2014-10-13 18:02:06 -0400 | [diff] [blame] | 1048 | |
| 1049 | return topology |
| 1050 | except pexpect.EOF: |
| 1051 | main.log.error(self.name + ": EOF exception found") |
| 1052 | main.log.error(self.name + ": " + self.handle.before) |
| 1053 | main.cleanup() |
| 1054 | main.exit() |
| 1055 | except: |
| 1056 | main.log.info(self.name+" ::::::") |
| 1057 | main.log.error( traceback.print_exc()) |
| 1058 | main.log.info(self.name+" ::::::") |
| 1059 | main.cleanup() |
| 1060 | main.exit() |
Shreya Shah | a73aaad | 2014-10-27 18:03:09 -0400 | [diff] [blame] | 1061 | |
| 1062 | |
Jon Hall | 77f53ce | 2014-10-13 18:02:06 -0400 | [diff] [blame] | 1063 | |
Shreya Shah | a73aaad | 2014-10-27 18:03:09 -0400 | [diff] [blame] | 1064 | def check_status(self, topology_result, numoswitch, numolink, log_level="info"): |
Jon Hall | 77f53ce | 2014-10-13 18:02:06 -0400 | [diff] [blame] | 1065 | ''' |
| 1066 | Checks the number of swithes & links that ONOS sees against the |
| 1067 | supplied values. By default this will report to main.log, but the |
| 1068 | log level can be specifid. |
| 1069 | |
| 1070 | Params: ip = ip used for the onos cli |
| 1071 | numoswitch = expected number of switches |
| 1072 | numlink = expected number of links |
| 1073 | log_level = level to log to. Currently accepts 'info', 'warn' and 'report' |
| 1074 | |
| 1075 | |
| 1076 | log_level can |
| 1077 | |
| 1078 | Returns: main.TRUE if the number of switchs and links are correct, |
| 1079 | main.FALSE if the numer of switches and links is incorrect, |
| 1080 | and main.ERROR otherwise |
| 1081 | ''' |
| 1082 | |
| 1083 | try: |
Shreya Shah | a73aaad | 2014-10-27 18:03:09 -0400 | [diff] [blame] | 1084 | topology = self.get_topology(topology_result) |
Jon Hall | 77f53ce | 2014-10-13 18:02:06 -0400 | [diff] [blame] | 1085 | if topology == {}: |
| 1086 | return main.ERROR |
| 1087 | output = "" |
| 1088 | #Is the number of switches is what we expected |
| 1089 | devices = topology.get('devices',False) |
| 1090 | links = topology.get('links',False) |
| 1091 | if devices == False or links == False: |
| 1092 | return main.ERROR |
| 1093 | switch_check = ( int(devices) == int(numoswitch) ) |
| 1094 | #Is the number of links is what we expected |
| 1095 | link_check = ( int(links) == int(numolink) ) |
| 1096 | if (switch_check and link_check): |
| 1097 | #We expected the correct numbers |
| 1098 | output = output + "The number of links and switches match "\ |
| 1099 | + "what was expected" |
| 1100 | result = main.TRUE |
| 1101 | else: |
| 1102 | output = output + \ |
| 1103 | "The number of links and switches does not match what was expected" |
| 1104 | result = main.FALSE |
| 1105 | output = output + "\n ONOS sees %i devices (%i expected) and %i links (%i expected)"\ |
| 1106 | % ( int(devices), int(numoswitch), int(links), int(numolink) ) |
| 1107 | if log_level == "report": |
| 1108 | main.log.report(output) |
| 1109 | elif log_level == "warn": |
| 1110 | main.log.warn(output) |
| 1111 | else: |
| 1112 | main.log.info(output) |
| 1113 | return result |
| 1114 | except pexpect.EOF: |
| 1115 | main.log.error(self.name + ": EOF exception found") |
| 1116 | main.log.error(self.name + ": " + self.handle.before) |
| 1117 | main.cleanup() |
| 1118 | main.exit() |
| 1119 | except: |
| 1120 | main.log.info(self.name+" ::::::") |
| 1121 | main.log.error( traceback.print_exc()) |
| 1122 | main.log.info(self.name+" ::::::") |
| 1123 | main.cleanup() |
| 1124 | main.exit() |
andrewonlab | ba44bcf | 2014-10-16 16:54:41 -0400 | [diff] [blame] | 1125 | |
andrewonlab | 970399c | 2014-11-07 13:09:32 -0500 | [diff] [blame] | 1126 | def tshark_pcap(self, interface, dir_file): |
| 1127 | ''' |
| 1128 | Capture all packet activity and store in specified |
| 1129 | directory/file |
| 1130 | |
| 1131 | Required: |
| 1132 | * interface: interface to capture |
| 1133 | * dir: directory/filename to store pcap |
| 1134 | ''' |
| 1135 | self.handle.sendline("") |
| 1136 | self.handle.expect("\$") |
| 1137 | |
| 1138 | self.handle.sendline("tshark -i "+str(interface)+ |
andrewonlab | 5d7a8f3 | 2014-11-10 13:07:56 -0500 | [diff] [blame] | 1139 | " -t e -w "+str(dir_file)+ " &") |
| 1140 | self.handle.sendline("\r") |
andrewonlab | 970399c | 2014-11-07 13:09:32 -0500 | [diff] [blame] | 1141 | self.handle.expect("Capturing on") |
andrewonlab | 5d7a8f3 | 2014-11-10 13:07:56 -0500 | [diff] [blame] | 1142 | self.handle.sendline("\r") |
| 1143 | self.handle.expect("\$") |
andrewonlab | 970399c | 2014-11-07 13:09:32 -0500 | [diff] [blame] | 1144 | |
| 1145 | main.log.info("Tshark started capturing files on "+ |
| 1146 | str(interface)+ " and saving to directory: "+ |
andrewonlab | 5d7a8f3 | 2014-11-10 13:07:56 -0500 | [diff] [blame] | 1147 | str(dir_file)) |
Shreya Shah | a73aaad | 2014-10-27 18:03:09 -0400 | [diff] [blame] | 1148 | |
shahshreya | 4d79aab | 2014-11-07 15:20:41 -0800 | [diff] [blame] | 1149 | |
shahshreya | e6c7cf4 | 2014-11-26 16:39:01 -0800 | [diff] [blame] | 1150 | def run_onos_topo_cfg(self, instance_name, json_file): |
shahshreya | 4d79aab | 2014-11-07 15:20:41 -0800 | [diff] [blame] | 1151 | ''' |
shahshreya | e6c7cf4 | 2014-11-26 16:39:01 -0800 | [diff] [blame] | 1152 | On ONOS bench, run this command: ./~/ONOS/tools/test/bin/onos-topo-cfg $OC1 filename |
shahshreya | 4d79aab | 2014-11-07 15:20:41 -0800 | [diff] [blame] | 1153 | which starts the rest and copies the json file to the onos instance |
| 1154 | ''' |
shahshreya | e6c7cf4 | 2014-11-26 16:39:01 -0800 | [diff] [blame] | 1155 | try: |
| 1156 | self.handle.sendline("") |
| 1157 | self.handle.expect("\$") |
| 1158 | self.handle.sendline("cd ~/ONOS/tools/test/bin") |
| 1159 | self.handle.expect("/bin$") |
| 1160 | cmd = "./onos-topo-cfg " +instance_name +" " +json_file |
| 1161 | print "cmd = ", cmd |
| 1162 | self.handle.sendline(cmd) |
| 1163 | self.handle.expect("$") |
| 1164 | self.handle.sendline("cd ~") |
| 1165 | self.handle.expect("\$") |
| 1166 | return main.TRUE |
| 1167 | except: |
| 1168 | return main.FALSE |
| 1169 | |
andrewonlab | ba44bcf | 2014-10-16 16:54:41 -0400 | [diff] [blame] | 1170 | def tshark_grep(self, grep, directory, interface='eth0'): |
| 1171 | ''' |
| 1172 | Required: |
| 1173 | * grep string |
| 1174 | * directory to store results |
| 1175 | Optional: |
| 1176 | * interface - default: eth0 |
| 1177 | Description: |
| 1178 | Uses tshark command to grep specific group of packets |
| 1179 | and stores the results to specified directory. |
| 1180 | The timestamp is hardcoded to be in epoch |
| 1181 | ''' |
| 1182 | self.handle.sendline("") |
| 1183 | self.handle.expect("\$") |
andrewonlab | efd7f3d | 2014-10-21 16:02:31 -0400 | [diff] [blame] | 1184 | self.handle.sendline("") |
andrewonlab | ba44bcf | 2014-10-16 16:54:41 -0400 | [diff] [blame] | 1185 | self.handle.sendline("tshark -i "+str(interface)+ |
andrewonlab | d494049 | 2014-10-24 12:21:27 -0400 | [diff] [blame] | 1186 | " -t e | grep --line-buffered \""+str(grep)+"\" >"+directory+" &") |
andrewonlab | ba44bcf | 2014-10-16 16:54:41 -0400 | [diff] [blame] | 1187 | self.handle.sendline("\r") |
| 1188 | self.handle.expect("Capturing on") |
| 1189 | self.handle.sendline("\r") |
| 1190 | self.handle.expect("\$") |
| 1191 | |
| 1192 | def tshark_stop(self): |
| 1193 | ''' |
| 1194 | Removes wireshark files from /tmp and kills all tshark processes |
| 1195 | ''' |
andrewonlab | 5ba0d9e | 2014-10-24 13:32:23 -0400 | [diff] [blame] | 1196 | #Remove all pcap from previous captures |
| 1197 | self.execute(cmd="sudo rm /tmp/wireshark*") |
andrewonlab | ba44bcf | 2014-10-16 16:54:41 -0400 | [diff] [blame] | 1198 | self.handle.sendline("") |
| 1199 | self.handle.sendline("sudo kill -9 `ps -ef | grep \"tshark -i\" |"+ |
| 1200 | " grep -v grep | awk '{print $2}'`") |
| 1201 | self.handle.sendline("") |
| 1202 | main.log.info("Tshark stopped") |
| 1203 | |
andrewonlab | 0c38a4a | 2014-10-28 18:35:35 -0400 | [diff] [blame] | 1204 | def ptpd(self, args): |
| 1205 | ''' |
| 1206 | Initiate ptp with user-specified args. |
| 1207 | Required: |
| 1208 | * args: specify string of args after command |
| 1209 | 'sudo ptpd' |
| 1210 | ''' |
| 1211 | try: |
| 1212 | self.handle.sendline("sudo ptpd "+str(args)) |
andrewonlab | 978dff6 | 2014-10-29 16:53:35 -0400 | [diff] [blame] | 1213 | i = self.handle.expect([ |
andrewonlab | 0c38a4a | 2014-10-28 18:35:35 -0400 | [diff] [blame] | 1214 | "Multiple", |
| 1215 | "Error", |
| 1216 | "\$"]) |
| 1217 | self.handle.expect("\$") |
andrewonlab | ba44bcf | 2014-10-16 16:54:41 -0400 | [diff] [blame] | 1218 | |
andrewonlab | 0c38a4a | 2014-10-28 18:35:35 -0400 | [diff] [blame] | 1219 | if i == 0: |
| 1220 | handle = self.handle.before |
| 1221 | main.log.info("ptpd returned an error: "+ |
| 1222 | str(handle)) |
| 1223 | return handle |
| 1224 | elif i == 1: |
| 1225 | handle = self.handle.before |
| 1226 | main.log.error("ptpd returned an error: "+ |
| 1227 | str(handle)) |
| 1228 | return handle |
| 1229 | else: |
| 1230 | return main.TRUE |
| 1231 | |
| 1232 | except pexpect.EOF: |
| 1233 | main.log.error(self.name + ": EOF exception found") |
| 1234 | main.log.error(self.name + ": " + self.handle.before) |
| 1235 | main.cleanup() |
| 1236 | main.exit() |
| 1237 | except: |
| 1238 | main.log.info(self.name+" ::::::") |
| 1239 | main.log.error( traceback.print_exc()) |
| 1240 | main.log.info(self.name+" ::::::") |
| 1241 | main.cleanup() |
| 1242 | main.exit() |
andrewonlab | ba44bcf | 2014-10-16 16:54:41 -0400 | [diff] [blame] | 1243 | |
andrewonlab | 5d7a8f3 | 2014-11-10 13:07:56 -0500 | [diff] [blame] | 1244 | def cp_logs_to_dir(self, log_to_copy, |
| 1245 | dest_dir, copy_file_name=""): |
| 1246 | ''' |
| 1247 | Copies logs to a desired directory. |
| 1248 | Current implementation of ONOS deletes its karaf |
| 1249 | logs on every iteration. For debugging purposes, |
| 1250 | you may want to use this function to capture |
| 1251 | certain karaf logs. (or any other logs if needed) |
| 1252 | Localtime will be attached to the filename |
| 1253 | |
| 1254 | Required: |
| 1255 | * log_to_copy: specify directory and log name to |
| 1256 | copy. |
| 1257 | ex) /opt/onos/log/karaf.log.1 |
| 1258 | For copying multiple files, leave copy_file_name |
| 1259 | empty and only specify dest_dir - |
| 1260 | ex) /opt/onos/log/karaf* |
| 1261 | * dest_dir: specify directory to copy to. |
| 1262 | ex) /tmp/ |
| 1263 | Optional: |
| 1264 | * copy_file_name: If you want to rename the log |
| 1265 | file, specify copy_file_name. This will not work |
| 1266 | with multiple file copying |
| 1267 | ''' |
| 1268 | try: |
| 1269 | localtime = time.strftime('%x %X') |
| 1270 | localtime = localtime.replace("/","") |
| 1271 | localtime = localtime.replace(" ","_") |
| 1272 | localtime = localtime.replace(":","") |
| 1273 | if dest_dir[-1:] != "/": |
| 1274 | dest_dir += "/" |
| 1275 | |
| 1276 | if copy_file_name: |
| 1277 | self.handle.sendline("cp "+str(log_to_copy)+ |
| 1278 | " "+str(dest_dir)+str(copy_file_name)+ |
| 1279 | localtime) |
| 1280 | self.handle.expect("cp") |
| 1281 | self.handle.expect("\$") |
| 1282 | else: |
| 1283 | self.handle.sendline("cp "+str(log_to_copy)+ |
| 1284 | " "+str(dest_dir)) |
| 1285 | self.handle.expect("cp") |
| 1286 | self.handle.expect("\$") |
| 1287 | |
| 1288 | return self.handle.before |
| 1289 | |
| 1290 | except pexpect.EOF: |
| 1291 | main.log.error("Copying files failed") |
| 1292 | main.log.error(self.name + ": EOF exception found") |
| 1293 | main.log.error(self.name + ": " + self.handle.before) |
| 1294 | except: |
| 1295 | main.log.error("Copying files failed") |
| 1296 | main.log.info(self.name+" ::::::") |
| 1297 | main.log.error( traceback.print_exc()) |
| 1298 | main.log.info(self.name+" ::::::") |
| 1299 | |