andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | |
| 3 | ''' |
| 4 | This driver enters the onos> prompt to issue commands. |
| 5 | |
| 6 | Please follow the coding style demonstrated by existing |
| 7 | functions and document properly. |
| 8 | |
| 9 | If you are a contributor to the driver, please |
| 10 | list your email here for future contact: |
| 11 | |
| 12 | jhall@onlab.us |
| 13 | andrew@onlab.us |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 14 | shreya@onlab.us |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 15 | |
| 16 | OCT 13 2014 |
| 17 | |
| 18 | ''' |
| 19 | |
| 20 | import sys |
| 21 | import time |
| 22 | import pexpect |
| 23 | import re |
| 24 | import traceback |
| 25 | import os.path |
| 26 | import pydoc |
Jon Hall | a001c39 | 2014-10-17 18:50:59 -0400 | [diff] [blame] | 27 | import re |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 28 | sys.path.append("../") |
| 29 | from drivers.common.clidriver import CLI |
| 30 | |
| 31 | class OnosCliDriver(CLI): |
| 32 | |
| 33 | def __init__(self): |
| 34 | ''' |
| 35 | Initialize client |
| 36 | ''' |
| 37 | super(CLI, self).__init__() |
| 38 | |
| 39 | def connect(self,**connectargs): |
| 40 | ''' |
| 41 | Creates ssh handle for ONOS cli. |
| 42 | ''' |
| 43 | try: |
| 44 | for key in connectargs: |
| 45 | vars(self)[key] = connectargs[key] |
| 46 | self.home = "~/ONOS" |
| 47 | for key in self.options: |
| 48 | if key == "home": |
| 49 | self.home = self.options['home'] |
| 50 | break |
| 51 | |
| 52 | |
| 53 | self.name = self.options['name'] |
| 54 | self.handle = super(OnosCliDriver,self).connect( |
| 55 | user_name = self.user_name, |
| 56 | ip_address = self.ip_address, |
| 57 | port = self.port, |
| 58 | pwd = self.pwd, |
| 59 | home = self.home) |
| 60 | |
| 61 | self.handle.sendline("cd "+ self.home) |
| 62 | self.handle.expect("\$") |
| 63 | if self.handle: |
| 64 | return self.handle |
| 65 | else : |
| 66 | main.log.info("NO ONOS HANDLE") |
| 67 | return main.FALSE |
| 68 | except pexpect.EOF: |
| 69 | main.log.error(self.name + ": EOF exception found") |
| 70 | main.log.error(self.name + ": " + self.handle.before) |
| 71 | main.cleanup() |
| 72 | main.exit() |
| 73 | except: |
| 74 | main.log.info(self.name + ":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::") |
| 75 | main.log.error( traceback.print_exc() ) |
| 76 | main.log.info(":::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::") |
| 77 | main.cleanup() |
| 78 | main.exit() |
| 79 | |
| 80 | def disconnect(self): |
| 81 | ''' |
| 82 | Called when Test is complete to disconnect the ONOS handle. |
| 83 | ''' |
| 84 | response = '' |
| 85 | try: |
andrewonlab | 2a6c934 | 2014-10-16 13:40:15 -0400 | [diff] [blame] | 86 | self.handle.sendline("") |
Jon Hall | 7e5b917 | 2014-10-22 12:32:47 -0400 | [diff] [blame] | 87 | i = self.handle.expect(["onos>","\$"]) |
| 88 | if i == 0: |
| 89 | self.handle.sendline("system:shutdown") |
| 90 | self.handle.expect("Confirm") |
| 91 | self.handle.sendline("yes") |
| 92 | self.handle.expect("\$") |
| 93 | self.handle.sendline("\n") |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 94 | self.handle.expect("\$") |
Jon Hall | 7e5b917 | 2014-10-22 12:32:47 -0400 | [diff] [blame] | 95 | self.handle.sendline("exit") |
| 96 | self.handle.expect("closed") |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 97 | |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 98 | except pexpect.EOF: |
| 99 | main.log.error(self.name + ": EOF exception found") |
| 100 | main.log.error(self.name + ": " + self.handle.before) |
| 101 | except: |
| 102 | main.log.error(self.name + ": Connection failed to the host") |
| 103 | response = main.FALSE |
| 104 | return response |
| 105 | |
| 106 | def set_cell(self, cellname): |
| 107 | ''' |
| 108 | Calls 'cell <name>' to set the environment variables on ONOSbench |
| 109 | |
| 110 | Before issuing any cli commands, set the environment variable first. |
| 111 | ''' |
| 112 | try: |
| 113 | if not cellname: |
| 114 | main.log.error("Must define cellname") |
| 115 | main.cleanup() |
| 116 | main.exit() |
| 117 | else: |
| 118 | self.handle.sendline("cell "+str(cellname)) |
| 119 | #Expect the cellname in the ONOS_CELL variable. |
| 120 | #Note that this variable name is subject to change |
| 121 | # and that this driver will have to change accordingly |
| 122 | self.handle.expect("ONOS_CELL="+str(cellname)) |
| 123 | handle_before = self.handle.before |
| 124 | handle_after = self.handle.after |
| 125 | #Get the rest of the handle |
| 126 | self.handle.sendline("") |
| 127 | self.handle.expect("\$") |
| 128 | handle_more = self.handle.before |
| 129 | |
| 130 | main.log.info("Cell call returned: "+handle_before+ |
| 131 | handle_after + handle_more) |
| 132 | |
| 133 | return main.TRUE |
| 134 | |
| 135 | except pexpect.EOF: |
| 136 | main.log.error(self.name + ": EOF exception found") |
| 137 | main.log.error(self.name + ": " + self.handle.before) |
| 138 | main.cleanup() |
| 139 | main.exit() |
| 140 | except: |
| 141 | main.log.info(self.name+" ::::::") |
| 142 | main.log.error( traceback.print_exc()) |
| 143 | main.log.info(self.name+" ::::::") |
| 144 | main.cleanup() |
| 145 | main.exit() |
| 146 | |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 147 | def start_onos_cli(self, ONOS_ip): |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 148 | try: |
| 149 | self.handle.sendline("") |
| 150 | self.handle.expect("\$") |
| 151 | |
| 152 | #Wait for onos start (-w) and enter onos cli |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 153 | self.handle.sendline("onos -w "+str(ONOS_ip)) |
andrewonlab | 2a7ea9b | 2014-10-24 12:21:05 -0400 | [diff] [blame] | 154 | i = self.handle.expect([ |
| 155 | "onos>", |
| 156 | pexpect.TIMEOUT],timeout=60) |
| 157 | |
| 158 | if i == 0: |
| 159 | main.log.info(str(ONOS_ip)+" CLI Started successfully") |
| 160 | return main.TRUE |
| 161 | else: |
andrewonlab | 3a7c3c7 | 2014-10-24 17:21:03 -0400 | [diff] [blame] | 162 | #If failed, send ctrl+c to process and try again |
andrewonlab | f47993a | 2014-10-24 17:56:01 -0400 | [diff] [blame] | 163 | main.log.info("Starting CLI failed. Retrying...") |
andrewonlab | 3a7c3c7 | 2014-10-24 17:21:03 -0400 | [diff] [blame] | 164 | self.handle.sendline("\x03") |
| 165 | self.handle.sendline("onos -w "+str(ONOS_ip)) |
| 166 | i = self.handle.expect(["onos>",pexpect.TIMEOUT], |
| 167 | timeout=30) |
| 168 | if i == 0: |
| 169 | return main.TRUE |
| 170 | else: |
| 171 | main.log.error("Connection to CLI "+\ |
andrewonlab | 2a7ea9b | 2014-10-24 12:21:05 -0400 | [diff] [blame] | 172 | str(ONOS_ip)+" timeout") |
andrewonlab | 3a7c3c7 | 2014-10-24 17:21:03 -0400 | [diff] [blame] | 173 | return main.FALSE |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 174 | |
| 175 | except pexpect.EOF: |
| 176 | main.log.error(self.name + ": EOF exception found") |
| 177 | main.log.error(self.name + ": " + self.handle.before) |
| 178 | main.cleanup() |
| 179 | main.exit() |
| 180 | except: |
| 181 | main.log.info(self.name+" ::::::") |
| 182 | main.log.error( traceback.print_exc()) |
| 183 | main.log.info(self.name+" ::::::") |
| 184 | main.cleanup() |
| 185 | main.exit() |
| 186 | |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 187 | def sendline(self, cmd_str): |
| 188 | ''' |
| 189 | Send a completely user specified string to |
| 190 | the onos> prompt. Use this function if you have |
| 191 | a very specific command to send. |
| 192 | |
| 193 | Warning: There are no sanity checking to commands |
| 194 | sent using this method. |
| 195 | ''' |
| 196 | try: |
| 197 | self.handle.sendline("") |
| 198 | self.handle.expect("onos>") |
| 199 | |
| 200 | self.handle.sendline(cmd_str) |
| 201 | self.handle.expect("onos>") |
| 202 | |
| 203 | handle = self.handle.before |
| 204 | |
| 205 | self.handle.sendline("") |
| 206 | self.handle.expect("onos>") |
| 207 | |
| 208 | handle += self.handle.before |
| 209 | handle += self.handle.after |
| 210 | |
| 211 | main.log.info("Command sent.") |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 212 | ansi_escape = re.compile(r'\x1b[^m]*m') |
| 213 | handle = ansi_escape.sub('', handle) |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 214 | |
| 215 | return handle |
| 216 | except pexpect.EOF: |
| 217 | main.log.error(self.name + ": EOF exception found") |
| 218 | main.log.error(self.name + ": " + self.handle.before) |
| 219 | main.cleanup() |
| 220 | main.exit() |
| 221 | except: |
| 222 | main.log.info(self.name+" ::::::") |
| 223 | main.log.error( traceback.print_exc()) |
| 224 | main.log.info(self.name+" ::::::") |
| 225 | main.cleanup() |
| 226 | main.exit() |
| 227 | |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 228 | #IMPORTANT NOTE: |
| 229 | #For all cli commands, naming convention should match |
| 230 | #the cli command replacing ':' with '_'. |
| 231 | #Ex) onos:topology > onos_topology |
| 232 | # onos:links > onos_links |
| 233 | # feature:list > feature_list |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 234 | |
| 235 | def add_node(self, node_id, ONOS_ip, tcp_port=""): |
| 236 | ''' |
| 237 | Adds a new cluster node by ID and address information. |
| 238 | Required: |
| 239 | * node_id |
| 240 | * ONOS_ip |
| 241 | Optional: |
| 242 | * tcp_port |
| 243 | ''' |
| 244 | try: |
| 245 | self.handle.sendline("") |
| 246 | self.handle.expect("onos>") |
| 247 | |
| 248 | self.handle.sendline("add-node "+ |
| 249 | str(node_id)+" "+ |
| 250 | str(ONOS_ip)+" "+ |
| 251 | str(tcp_port)) |
| 252 | |
| 253 | i = self.handle.expect([ |
| 254 | "Error", |
| 255 | "onos>" ]) |
| 256 | |
| 257 | #Clear handle to get previous output |
| 258 | self.handle.sendline("") |
| 259 | self.handle.expect("onos>") |
| 260 | |
| 261 | handle = self.handle.before |
| 262 | |
| 263 | if i == 0: |
| 264 | main.log.error("Error in adding node") |
| 265 | main.log.error(handle) |
| 266 | return main.FALSE |
| 267 | else: |
| 268 | main.log.info("Node "+str(ONOS_ip)+" added") |
| 269 | return main.TRUE |
| 270 | |
| 271 | except pexpect.EOF: |
| 272 | main.log.error(self.name + ": EOF exception found") |
| 273 | main.log.error(self.name + ": " + self.handle.before) |
| 274 | main.cleanup() |
| 275 | main.exit() |
| 276 | except: |
| 277 | main.log.info(self.name+" ::::::") |
| 278 | main.log.error( traceback.print_exc()) |
| 279 | main.log.info(self.name+" ::::::") |
| 280 | main.cleanup() |
| 281 | main.exit() |
| 282 | |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 283 | def remove_node(self, node_id): |
| 284 | ''' |
| 285 | Removes a cluster by ID |
| 286 | Issues command: 'remove-node [<node-id>]' |
| 287 | Required: |
| 288 | * node_id |
| 289 | ''' |
| 290 | try: |
| 291 | self.handle.sendline("") |
| 292 | self.handle.expect("onos>") |
| 293 | |
| 294 | self.handle.sendline("remove-node "+str(node_id)) |
| 295 | self.handle.expect("onos>") |
| 296 | |
| 297 | return main.TRUE |
| 298 | |
| 299 | except pexpect.EOF: |
| 300 | main.log.error(self.name + ": EOF exception found") |
| 301 | main.log.error(self.name + ": " + self.handle.before) |
| 302 | main.cleanup() |
| 303 | main.exit() |
| 304 | except: |
| 305 | main.log.info(self.name+" ::::::") |
| 306 | main.log.error( traceback.print_exc()) |
| 307 | main.log.info(self.name+" ::::::") |
| 308 | main.cleanup() |
| 309 | main.exit() |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 310 | |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 311 | def nodes(self): |
| 312 | ''' |
| 313 | List the nodes currently visible |
| 314 | Issues command: 'nodes' |
| 315 | Returns: entire handle of list of nodes |
| 316 | ''' |
| 317 | try: |
| 318 | self.handle.sendline("") |
| 319 | self.handle.expect("onos>") |
| 320 | |
| 321 | self.handle.sendline("nodes") |
| 322 | self.handle.expect("onos>") |
| 323 | |
| 324 | self.handle.sendline("") |
| 325 | self.handle.expect("onos>") |
| 326 | |
| 327 | handle = self.handle.before |
| 328 | |
| 329 | return handle |
| 330 | |
| 331 | except pexpect.EOF: |
| 332 | main.log.error(self.name + ": EOF exception found") |
| 333 | main.log.error(self.name + ": " + self.handle.before) |
| 334 | main.cleanup() |
| 335 | main.exit() |
| 336 | except: |
| 337 | main.log.info(self.name+" ::::::") |
| 338 | main.log.error( traceback.print_exc()) |
| 339 | main.log.info(self.name+" ::::::") |
| 340 | main.cleanup() |
| 341 | main.exit() |
| 342 | |
andrewonlab | 38d6ae2 | 2014-10-15 14:23:45 -0400 | [diff] [blame] | 343 | def topology(self): |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 344 | ''' |
| 345 | Shows the current state of the topology |
| 346 | by issusing command: 'onos> onos:topology' |
| 347 | ''' |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 348 | try: |
| 349 | self.handle.sendline("") |
| 350 | self.handle.expect("onos>") |
andrewonlab | 38d6ae2 | 2014-10-15 14:23:45 -0400 | [diff] [blame] | 351 | #either onos:topology or 'topology' will work in CLI |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 352 | self.handle.sendline("onos:topology") |
| 353 | self.handle.expect("onos>") |
| 354 | |
| 355 | handle = self.handle.before |
| 356 | |
| 357 | main.log.info("onos:topology returned: " + |
| 358 | str(handle)) |
| 359 | |
| 360 | return handle |
| 361 | |
| 362 | except pexpect.EOF: |
| 363 | main.log.error(self.name + ": EOF exception found") |
| 364 | main.log.error(self.name + ": " + self.handle.before) |
| 365 | main.cleanup() |
| 366 | main.exit() |
| 367 | except: |
| 368 | main.log.info(self.name+" ::::::") |
| 369 | main.log.error( traceback.print_exc()) |
| 370 | main.log.info(self.name+" ::::::") |
| 371 | main.cleanup() |
| 372 | main.exit() |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 373 | |
| 374 | def feature_install(self, feature_str): |
| 375 | ''' |
| 376 | Installs a specified feature |
| 377 | by issuing command: 'onos> feature:install <feature_str>' |
| 378 | ''' |
| 379 | try: |
| 380 | self.handle.sendline("") |
| 381 | self.handle.expect("onos>") |
| 382 | |
| 383 | self.handle.sendline("feature:install "+str(feature_str)) |
| 384 | self.handle.expect("onos>") |
| 385 | |
| 386 | return main.TRUE |
| 387 | |
| 388 | except pexpect.EOF: |
| 389 | main.log.error(self.name + ": EOF exception found") |
| 390 | main.log.error(self.name + ": " + self.handle.before) |
| 391 | main.cleanup() |
| 392 | main.exit() |
| 393 | except: |
| 394 | main.log.info(self.name+" ::::::") |
| 395 | main.log.error( traceback.print_exc()) |
| 396 | main.log.info(self.name+" ::::::") |
| 397 | main.cleanup() |
| 398 | main.exit() |
| 399 | |
| 400 | def feature_uninstall(self, feature_str): |
| 401 | ''' |
| 402 | Uninstalls a specified feature |
| 403 | by issuing command: 'onos> feature:uninstall <feature_str>' |
| 404 | ''' |
| 405 | try: |
| 406 | self.handle.sendline("") |
| 407 | self.handle.expect("onos>") |
| 408 | |
| 409 | self.handle.sendline("feature:uninstall "+str(feature_str)) |
| 410 | self.handle.expect("onos>") |
| 411 | |
| 412 | return main.TRUE |
| 413 | |
| 414 | except pexpect.EOF: |
| 415 | main.log.error(self.name + ": EOF exception found") |
| 416 | main.log.error(self.name + ": " + self.handle.before) |
| 417 | main.cleanup() |
| 418 | main.exit() |
| 419 | except: |
| 420 | main.log.info(self.name+" ::::::") |
| 421 | main.log.error( traceback.print_exc()) |
| 422 | main.log.info(self.name+" ::::::") |
| 423 | main.cleanup() |
| 424 | main.exit() |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 425 | |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 426 | def devices(self, json_format=True, grep_str=""): |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 427 | ''' |
Jon Hall | 7b02d95 | 2014-10-17 20:14:54 -0400 | [diff] [blame] | 428 | Lists all infrastructure devices or switches |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 429 | Optional argument: |
| 430 | * grep_str - pass in a string to grep |
| 431 | ''' |
| 432 | try: |
| 433 | self.handle.sendline("") |
| 434 | self.handle.expect("onos>") |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 435 | |
| 436 | if json_format: |
| 437 | if not grep_str: |
| 438 | self.handle.sendline("devices -j") |
| 439 | self.handle.expect("devices -j") |
| 440 | self.handle.expect("onos>") |
| 441 | else: |
| 442 | self.handle.sendline("devices -j | grep '"+ |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 443 | str(grep_str)+"'") |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 444 | self.handle.expect("devices -j | grep '"+str(grep_str)+"'") |
| 445 | self.handle.expect("onos>") |
Jon Hall | a001c39 | 2014-10-17 18:50:59 -0400 | [diff] [blame] | 446 | handle = self.handle.before |
Jon Hall | d815ce4 | 2014-10-17 19:52:30 -0400 | [diff] [blame] | 447 | ''' |
| 448 | handle variable here contains some ANSI escape color code sequences at the end which are invisible in the print command output |
| 449 | To make that escape sequence visible, use repr() function. The repr(handle) output when printed shows the ANSI escape sequences. |
Jon Hall | 5227ce8 | 2014-10-17 20:09:51 -0400 | [diff] [blame] | 450 | In json.loads(somestring), this somestring variable is actually repr(somestring) and json.loads would fail with the escape sequence. |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 451 | So we take off that escape sequence using |
Jon Hall | d815ce4 | 2014-10-17 19:52:30 -0400 | [diff] [blame] | 452 | ansi_escape = re.compile(r'\r\r\n\x1b[^m]*m') |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 453 | handle1 = ansi_escape.sub('', handle) |
Jon Hall | d815ce4 | 2014-10-17 19:52:30 -0400 | [diff] [blame] | 454 | ''' |
| 455 | #print "repr(handle) =", repr(handle) |
Jon Hall | a001c39 | 2014-10-17 18:50:59 -0400 | [diff] [blame] | 456 | ansi_escape = re.compile(r'\r\r\n\x1b[^m]*m') |
| 457 | handle1 = ansi_escape.sub('', handle) |
Jon Hall | d815ce4 | 2014-10-17 19:52:30 -0400 | [diff] [blame] | 458 | #print "repr(handle1) = ", repr(handle1) |
Jon Hall | a001c39 | 2014-10-17 18:50:59 -0400 | [diff] [blame] | 459 | return handle1 |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 460 | else: |
| 461 | if not grep_str: |
| 462 | self.handle.sendline("devices") |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 463 | self.handle.expect("onos>") |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 464 | else: |
| 465 | self.handle.sendline("devices | grep '"+ |
| 466 | str(grep_str)+"'") |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 467 | self.handle.expect("onos>") |
Jon Hall | cd70729 | 2014-10-17 19:06:17 -0400 | [diff] [blame] | 468 | handle = self.handle.before |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 469 | #print "handle =",handle |
Jon Hall | cd70729 | 2014-10-17 19:06:17 -0400 | [diff] [blame] | 470 | return handle |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 471 | except pexpect.EOF: |
| 472 | main.log.error(self.name + ": EOF exception found") |
| 473 | main.log.error(self.name + ": " + self.handle.before) |
| 474 | main.cleanup() |
| 475 | main.exit() |
| 476 | except: |
| 477 | main.log.info(self.name+" ::::::") |
| 478 | main.log.error( traceback.print_exc()) |
| 479 | main.log.info(self.name+" ::::::") |
| 480 | main.cleanup() |
| 481 | main.exit() |
| 482 | |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 483 | def links(self, json_format=True, grep_str=""): |
| 484 | ''' |
| 485 | Lists all core links |
| 486 | Optional argument: |
| 487 | * grep_str - pass in a string to grep |
| 488 | ''' |
| 489 | try: |
| 490 | self.handle.sendline("") |
| 491 | self.handle.expect("onos>") |
| 492 | |
| 493 | if json_format: |
| 494 | if not grep_str: |
| 495 | self.handle.sendline("links -j") |
| 496 | self.handle.expect("links -j") |
| 497 | self.handle.expect("onos>") |
| 498 | else: |
| 499 | self.handle.sendline("links -j | grep '"+ |
| 500 | str(grep_str)+"'") |
| 501 | self.handle.expect("links -j | grep '"+str(grep_str)+"'") |
| 502 | self.handle.expect("onos>") |
Jon Hall | cd70729 | 2014-10-17 19:06:17 -0400 | [diff] [blame] | 503 | handle = self.handle.before |
Jon Hall | d815ce4 | 2014-10-17 19:52:30 -0400 | [diff] [blame] | 504 | ''' |
| 505 | handle variable here contains some ANSI escape color code sequences at the end which are invisible in the print command output |
| 506 | To make that escape sequence visible, use repr() function. The repr(handle) output when printed shows the ANSI escape sequences. |
Jon Hall | 5227ce8 | 2014-10-17 20:09:51 -0400 | [diff] [blame] | 507 | In json.loads(somestring), this somestring variable is actually repr(somestring) and json.loads would fail with the escape sequence. |
Jon Hall | d815ce4 | 2014-10-17 19:52:30 -0400 | [diff] [blame] | 508 | So we take off that escape sequence using |
| 509 | ansi_escape = re.compile(r'\r\r\n\x1b[^m]*m') |
| 510 | handle1 = ansi_escape.sub('', handle) |
| 511 | ''' |
| 512 | #print "repr(handle) =", repr(handle) |
Jon Hall | a001c39 | 2014-10-17 18:50:59 -0400 | [diff] [blame] | 513 | ansi_escape = re.compile(r'\r\r\n\x1b[^m]*m') |
| 514 | handle1 = ansi_escape.sub('', handle) |
Jon Hall | d815ce4 | 2014-10-17 19:52:30 -0400 | [diff] [blame] | 515 | #print "repr(handle1) = ", repr(handle1) |
Jon Hall | a001c39 | 2014-10-17 18:50:59 -0400 | [diff] [blame] | 516 | return handle1 |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 517 | else: |
| 518 | if not grep_str: |
| 519 | self.handle.sendline("links") |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 520 | self.handle.expect("onos>") |
| 521 | self.handle.sendline("") |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 522 | self.handle.expect("onos>") |
| 523 | else: |
| 524 | self.handle.sendline("links | grep '"+ |
| 525 | str(grep_str)+"'") |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 526 | self.handle.expect("onos>") |
| 527 | self.handle.sendline("") |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 528 | self.handle.expect("onos>") |
Jon Hall | a001c39 | 2014-10-17 18:50:59 -0400 | [diff] [blame] | 529 | handle = self.handle.before |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 530 | #print "handle =",handle |
Jon Hall | a001c39 | 2014-10-17 18:50:59 -0400 | [diff] [blame] | 531 | return handle |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 532 | except pexpect.EOF: |
| 533 | main.log.error(self.name + ": EOF exception found") |
| 534 | main.log.error(self.name + ": " + self.handle.before) |
| 535 | main.cleanup() |
| 536 | main.exit() |
| 537 | except: |
| 538 | main.log.info(self.name+" ::::::") |
| 539 | main.log.error( traceback.print_exc()) |
| 540 | main.log.info(self.name+" ::::::") |
| 541 | main.cleanup() |
| 542 | main.exit() |
| 543 | |
| 544 | |
| 545 | def ports(self, json_format=True, grep_str=""): |
| 546 | ''' |
| 547 | Lists all ports |
| 548 | Optional argument: |
| 549 | * grep_str - pass in a string to grep |
| 550 | ''' |
| 551 | try: |
| 552 | self.handle.sendline("") |
| 553 | self.handle.expect("onos>") |
| 554 | |
| 555 | if json_format: |
| 556 | if not grep_str: |
| 557 | self.handle.sendline("ports -j") |
| 558 | self.handle.expect("ports -j") |
| 559 | self.handle.expect("onos>") |
| 560 | else: |
| 561 | self.handle.sendline("ports -j | grep '"+ |
| 562 | str(grep_str)+"'") |
| 563 | self.handle.expect("ports -j | grep '"+str(grep_str)+"'") |
| 564 | self.handle.expect("onos>") |
Jon Hall | cd70729 | 2014-10-17 19:06:17 -0400 | [diff] [blame] | 565 | handle = self.handle.before |
Jon Hall | d815ce4 | 2014-10-17 19:52:30 -0400 | [diff] [blame] | 566 | ''' |
| 567 | handle variable here contains some ANSI escape color code sequences at the end which are invisible in the print command output |
| 568 | To make that escape sequence visible, use repr() function. The repr(handle) output when printed shows the ANSI escape sequences. |
Jon Hall | 5227ce8 | 2014-10-17 20:09:51 -0400 | [diff] [blame] | 569 | In json.loads(somestring), this somestring variable is actually repr(somestring) and json.loads would fail with the escape sequence. |
Shreya Shah | 0c525cc | 2014-10-17 20:20:24 -0400 | [diff] [blame] | 570 | So we take off that escape sequence using the following commads: |
Jon Hall | d815ce4 | 2014-10-17 19:52:30 -0400 | [diff] [blame] | 571 | ansi_escape = re.compile(r'\r\r\n\x1b[^m]*m') |
| 572 | handle1 = ansi_escape.sub('', handle) |
| 573 | ''' |
| 574 | #print "repr(handle) =", repr(handle) |
Jon Hall | a001c39 | 2014-10-17 18:50:59 -0400 | [diff] [blame] | 575 | ansi_escape = re.compile(r'\r\r\n\x1b[^m]*m') |
| 576 | handle1 = ansi_escape.sub('', handle) |
Jon Hall | d815ce4 | 2014-10-17 19:52:30 -0400 | [diff] [blame] | 577 | #print "repr(handle1) = ", repr(handle1) |
Jon Hall | a001c39 | 2014-10-17 18:50:59 -0400 | [diff] [blame] | 578 | return handle1 |
| 579 | |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 580 | else: |
| 581 | if not grep_str: |
| 582 | self.handle.sendline("ports") |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 583 | self.handle.expect("onos>") |
| 584 | self.handle.sendline("") |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 585 | self.handle.expect("onos>") |
| 586 | else: |
| 587 | self.handle.sendline("ports | grep '"+ |
| 588 | str(grep_str)+"'") |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 589 | self.handle.expect("onos>") |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 590 | self.handle.sendline("") |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 591 | self.handle.expect("onos>") |
Jon Hall | a001c39 | 2014-10-17 18:50:59 -0400 | [diff] [blame] | 592 | handle = self.handle.before |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 593 | #print "handle =",handle |
Jon Hall | cd70729 | 2014-10-17 19:06:17 -0400 | [diff] [blame] | 594 | return handle |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 595 | except pexpect.EOF: |
| 596 | main.log.error(self.name + ": EOF exception found") |
| 597 | main.log.error(self.name + ": " + self.handle.before) |
| 598 | main.cleanup() |
| 599 | main.exit() |
| 600 | except: |
| 601 | main.log.info(self.name+" ::::::") |
| 602 | main.log.error( traceback.print_exc()) |
| 603 | main.log.info(self.name+" ::::::") |
| 604 | main.cleanup() |
| 605 | main.exit() |
| 606 | |
| 607 | |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 608 | def roles(self, json_format=True, grep_str=""): |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 609 | ''' |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 610 | Lists all devices and the controllers with roles assigned to them |
| 611 | Optional argument: |
| 612 | * grep_str - pass in a string to grep |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 613 | ''' |
| 614 | try: |
| 615 | self.handle.sendline("") |
| 616 | self.handle.expect("onos>") |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 617 | |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 618 | if json_format: |
| 619 | if not grep_str: |
| 620 | self.handle.sendline("roles -j") |
| 621 | self.handle.expect("roles -j") |
| 622 | self.handle.expect("onos>") |
| 623 | else: |
| 624 | self.handle.sendline("roles -j | grep '"+ |
| 625 | str(grep_str)+"'") |
| 626 | self.handle.expect("roles -j | grep '"+str(grep_str)+"'") |
| 627 | self.handle.expect("onos>") |
| 628 | handle = self.handle.before |
| 629 | ''' |
| 630 | handle variable here contains some ANSI escape color code sequences at the end which are invisible in the print command output |
| 631 | To make that escape sequence visible, use repr() function. The repr(handle) output when printed shows the ANSI escape sequences. |
| 632 | In json.loads(somestring), this somestring variable is actually repr(somestring) and json.loads would fail with the escape sequence. |
| 633 | So we take off that escape sequence using the following commads: |
| 634 | ansi_escape = re.compile(r'\r\r\n\x1b[^m]*m') |
| 635 | handle1 = ansi_escape.sub('', handle) |
| 636 | ''' |
| 637 | #print "repr(handle) =", repr(handle) |
| 638 | ansi_escape = re.compile(r'\r\r\n\x1b[^m]*m') |
| 639 | handle1 = ansi_escape.sub('', handle) |
| 640 | #print "repr(handle1) = ", repr(handle1) |
| 641 | return handle1 |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 642 | |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 643 | else: |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 644 | if not grep_str: |
| 645 | self.handle.sendline("roles") |
| 646 | self.handle.expect("onos>") |
| 647 | self.handle.sendline("") |
| 648 | self.handle.expect("onos>") |
| 649 | else: |
| 650 | self.handle.sendline("roles | grep '"+ |
| 651 | str(grep_str)+"'") |
| 652 | self.handle.expect("onos>") |
| 653 | self.handle.sendline("") |
| 654 | self.handle.expect("onos>") |
| 655 | handle = self.handle.before |
| 656 | #print "handle =",handle |
| 657 | return handle |
| 658 | except pexpect.EOF: |
| 659 | main.log.error(self.name + ": EOF exception found") |
| 660 | main.log.error(self.name + ": " + self.handle.before) |
| 661 | main.cleanup() |
| 662 | main.exit() |
| 663 | except: |
| 664 | main.log.info(self.name+" ::::::") |
| 665 | main.log.error( traceback.print_exc()) |
| 666 | main.log.info(self.name+" ::::::") |
| 667 | main.cleanup() |
| 668 | main.exit() |
| 669 | |
| 670 | def get_role(self, device_id): |
| 671 | ''' |
| 672 | Given the a string containing the json representation of the "roles" cli command and a |
| 673 | partial or whole device id, returns a json object containing the |
| 674 | roles output for the first device whose id contains "device_id" |
| 675 | |
| 676 | Returns: |
| 677 | Dict of the role assignments for the given device or |
| 678 | None if not match |
| 679 | ''' |
| 680 | try: |
| 681 | import json |
| 682 | if device_id == None: |
| 683 | return None |
| 684 | else: |
| 685 | raw_roles = self.roles() |
| 686 | roles_json = json.loads(raw_roles) |
| 687 | #search json for the device with id then return the device |
| 688 | for device in roles_json: |
Jon Hall | 720653a | 2014-10-28 19:02:37 -0400 | [diff] [blame] | 689 | #print device |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 690 | if str(device_id) in device['id']: |
| 691 | return device |
| 692 | return None |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 693 | |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -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 | 2a6c934 | 2014-10-16 13:40:15 -0400 | [diff] [blame] | 705 | |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 706 | def paths(self, src_id, dst_id): |
| 707 | ''' |
| 708 | Returns string of paths, and the cost. |
| 709 | Issues command: onos:paths <src> <dst> |
| 710 | ''' |
| 711 | try: |
| 712 | self.handle.sendline("") |
| 713 | self.handle.expect("onos>") |
| 714 | |
| 715 | self.handle.sendline("onos:paths "+ |
| 716 | str(src_id) + " " + str(dst_id)) |
| 717 | i = self.handle.expect([ |
| 718 | "Error", |
| 719 | "onos>"]) |
| 720 | |
| 721 | self.handle.sendline("") |
| 722 | self.handle.expect("onos>") |
| 723 | |
| 724 | handle = self.handle.before |
| 725 | |
| 726 | if i == 0: |
| 727 | main.log.error("Error in getting paths") |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 728 | return (handle, "Error") |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 729 | else: |
| 730 | path = handle.split(";")[0] |
| 731 | cost = handle.split(";")[1] |
| 732 | return (path, cost) |
| 733 | |
| 734 | except pexpect.EOF: |
| 735 | main.log.error(self.name + ": EOF exception found") |
| 736 | main.log.error(self.name + ": " + self.handle.before) |
| 737 | main.cleanup() |
| 738 | main.exit() |
| 739 | except: |
| 740 | main.log.info(self.name+" ::::::") |
| 741 | main.log.error( traceback.print_exc()) |
| 742 | main.log.info(self.name+" ::::::") |
| 743 | main.cleanup() |
| 744 | main.exit() |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 745 | |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 746 | def hosts(self, json_format=True, grep_str=""): |
| 747 | ''' |
| 748 | Lists all discovered hosts |
| 749 | Optional argument: |
| 750 | * grep_str - pass in a string to grep |
| 751 | ''' |
| 752 | try: |
| 753 | self.handle.sendline("") |
| 754 | self.handle.expect("onos>") |
| 755 | |
| 756 | if json_format: |
| 757 | if not grep_str: |
| 758 | self.handle.sendline("hosts -j") |
| 759 | self.handle.expect("hosts -j") |
| 760 | self.handle.expect("onos>") |
| 761 | else: |
| 762 | self.handle.sendline("hosts -j | grep '"+ |
| 763 | str(grep_str)+"'") |
| 764 | self.handle.expect("hosts -j | grep '"+str(grep_str)+"'") |
| 765 | self.handle.expect("onos>") |
| 766 | handle = self.handle.before |
| 767 | ''' |
| 768 | handle variable here contains some ANSI escape color code sequences at the end which are invisible in the print command output |
| 769 | To make that escape sequence visible, use repr() function. The repr(handle) output when printed shows the ANSI escape sequences. |
| 770 | In json.loads(somestring), this somestring variable is actually repr(somestring) and json.loads would fail with the escape sequence. |
| 771 | So we take off that escape sequence using |
| 772 | ansi_escape = re.compile(r'\r\r\n\x1b[^m]*m') |
| 773 | handle1 = ansi_escape.sub('', handle) |
| 774 | ''' |
| 775 | #print "repr(handle) =", repr(handle) |
| 776 | ansi_escape = re.compile(r'\r\r\n\x1b[^m]*m') |
| 777 | handle1 = ansi_escape.sub('', handle) |
| 778 | #print "repr(handle1) = ", repr(handle1) |
| 779 | return handle1 |
| 780 | else: |
| 781 | if not grep_str: |
| 782 | self.handle.sendline("hosts") |
| 783 | self.handle.expect("onos>") |
| 784 | else: |
| 785 | self.handle.sendline("hosts | grep '"+ |
| 786 | str(grep_str)+"'") |
| 787 | self.handle.expect("onos>") |
| 788 | handle = self.handle.before |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 789 | #print "handle =",handle |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 790 | return handle |
| 791 | except pexpect.EOF: |
| 792 | main.log.error(self.name + ": EOF exception found") |
| 793 | main.log.error(self.name + ": " + self.handle.before) |
| 794 | main.cleanup() |
| 795 | main.exit() |
| 796 | except: |
| 797 | main.log.info(self.name+" ::::::") |
| 798 | main.log.error( traceback.print_exc()) |
| 799 | main.log.info(self.name+" ::::::") |
| 800 | main.cleanup() |
| 801 | main.exit() |
| 802 | |
| 803 | def get_host(self, mac): |
| 804 | ''' |
| 805 | Return the first host from the hosts api whose 'id' contains 'mac' |
| 806 | Note: mac must be a colon seperated mac address, but could be a partial mac address |
| 807 | Return None if there is no match |
| 808 | ''' |
| 809 | import json |
| 810 | try: |
| 811 | if mac == None: |
| 812 | return None |
| 813 | else: |
| 814 | mac = mac |
| 815 | raw_hosts = self.hosts() |
| 816 | hosts_json = json.loads(raw_hosts) |
| 817 | #search json for the host with mac then return the device |
| 818 | for host in hosts_json: |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 819 | #print "%s in %s?" % (mac, host['id']) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 820 | if mac in host['id']: |
| 821 | return host |
| 822 | return None |
| 823 | except pexpect.EOF: |
| 824 | main.log.error(self.name + ": EOF exception found") |
| 825 | main.log.error(self.name + ": " + self.handle.before) |
| 826 | main.cleanup() |
| 827 | main.exit() |
| 828 | except: |
| 829 | main.log.info(self.name+" ::::::") |
| 830 | main.log.error( traceback.print_exc()) |
| 831 | main.log.info(self.name+" ::::::") |
| 832 | main.cleanup() |
| 833 | main.exit() |
| 834 | |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 835 | |
| 836 | def get_hosts_id(self, host_list): |
| 837 | ''' |
| 838 | Obtain list of hosts |
| 839 | Issues command: 'onos> hosts' |
| 840 | |
| 841 | Required: |
| 842 | * host_list: List of hosts obtained by Mininet |
| 843 | IMPORTANT: |
| 844 | This function assumes that you started your |
| 845 | topology with the option '--mac'. |
| 846 | Furthermore, it assumes that value of VLAN is '-1' |
| 847 | Description: |
| 848 | Converts mininet hosts (h1, h2, h3...) into |
| 849 | ONOS format (00:00:00:00:00:01/-1 , ...) |
| 850 | ''' |
| 851 | |
| 852 | try: |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 853 | onos_host_list = [] |
| 854 | |
| 855 | for host in host_list: |
| 856 | host = host.replace("h", "") |
| 857 | host_hex = hex(int(host)).zfill(12) |
| 858 | host_hex = str(host_hex).replace('x','0') |
| 859 | i = iter(str(host_hex)) |
| 860 | host_hex = ":".join(a+b for a,b in zip(i,i)) |
| 861 | host_hex = host_hex + "/-1" |
| 862 | onos_host_list.append(host_hex) |
| 863 | |
| 864 | return onos_host_list |
| 865 | |
| 866 | except pexpect.EOF: |
| 867 | main.log.error(self.name + ": EOF exception found") |
| 868 | main.log.error(self.name + ": " + self.handle.before) |
| 869 | main.cleanup() |
| 870 | main.exit() |
| 871 | except: |
| 872 | main.log.info(self.name+" ::::::") |
| 873 | main.log.error( traceback.print_exc()) |
| 874 | main.log.info(self.name+" ::::::") |
| 875 | main.cleanup() |
| 876 | main.exit() |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 877 | |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 878 | def add_host_intent(self, host_id_one, host_id_two): |
| 879 | ''' |
| 880 | Required: |
| 881 | * host_id_one: ONOS host id for host1 |
| 882 | * host_id_two: ONOS host id for host2 |
| 883 | Description: |
| 884 | Adds a host-to-host intent (bidrectional) by |
| 885 | specifying the two hosts. |
| 886 | ''' |
| 887 | try: |
| 888 | self.handle.sendline("") |
| 889 | self.handle.expect("onos>") |
| 890 | |
| 891 | self.handle.sendline("add-host-intent "+ |
| 892 | str(host_id_one) + " " + str(host_id_two)) |
| 893 | self.handle.expect("onos>") |
| 894 | |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 895 | handle = self.handle.before |
Shreya Shah | 4f25fdf | 2014-10-29 19:55:35 -0400 | [diff] [blame] | 896 | print "handle =", handle |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 897 | |
| 898 | main.log.info("Intent installed between "+ |
| 899 | str(host_id_one) + " and " + str(host_id_two)) |
| 900 | |
| 901 | return handle |
| 902 | |
| 903 | except pexpect.EOF: |
| 904 | main.log.error(self.name + ": EOF exception found") |
| 905 | main.log.error(self.name + ": " + self.handle.before) |
| 906 | main.cleanup() |
| 907 | main.exit() |
| 908 | except: |
| 909 | main.log.info(self.name+" ::::::") |
| 910 | main.log.error( traceback.print_exc()) |
| 911 | main.log.info(self.name+" ::::::") |
| 912 | main.cleanup() |
| 913 | main.exit() |
| 914 | |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 915 | def add_optical_intent(self, ingress_device, egress_device): |
| 916 | ''' |
| 917 | Required: |
| 918 | * ingress_device: device id of ingress device |
| 919 | * egress_device: device id of egress device |
| 920 | Optional: |
| 921 | TODO: Still needs to be implemented via dev side |
| 922 | ''' |
| 923 | try: |
| 924 | self.handle.sendline("add-optical-intent "+ |
| 925 | str(ingress_device) + " " + str(egress_device)) |
| 926 | self.handle.expect("add-optical-intent") |
| 927 | i = self.handle.expect([ |
| 928 | "Error", |
| 929 | "onos>"]) |
| 930 | |
| 931 | handle = self.handle.before |
| 932 | |
| 933 | #If error, return error message |
| 934 | if i == 0: |
| 935 | return handle |
| 936 | else: |
| 937 | return main.TRUE |
| 938 | |
| 939 | except pexpect.EOF: |
| 940 | main.log.error(self.name + ": EOF exception found") |
| 941 | main.log.error(self.name + ": " + self.handle.before) |
| 942 | main.cleanup() |
| 943 | main.exit() |
| 944 | except: |
| 945 | main.log.info(self.name+" ::::::") |
| 946 | main.log.error( traceback.print_exc()) |
| 947 | main.log.info(self.name+" ::::::") |
| 948 | main.cleanup() |
| 949 | main.exit() |
| 950 | |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 951 | def add_point_intent(self, ingress_device, port_ingress, |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 952 | egress_device, port_egress, ethType="", ethSrc="", |
| 953 | ethDst=""): |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 954 | ''' |
| 955 | Required: |
| 956 | * ingress_device: device id of ingress device |
| 957 | * egress_device: device id of egress device |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 958 | Optional: |
| 959 | * ethType: specify ethType |
| 960 | * ethSrc: specify ethSrc (i.e. src mac addr) |
| 961 | * ethDst: specify ethDst (i.e. dst mac addr) |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 962 | Description: |
| 963 | Adds a point-to-point intent (uni-directional) by |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 964 | specifying device id's and optional fields |
| 965 | |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 966 | NOTE: This function may change depending on the |
| 967 | options developers provide for point-to-point |
| 968 | intent via cli |
| 969 | ''' |
| 970 | try: |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 971 | cmd = "" |
| 972 | |
| 973 | #If there are no optional arguments |
| 974 | if not ethType and not ethSrc and not ethDst: |
| 975 | cmd = "add-point-intent "+\ |
| 976 | str(ingress_device) + "/" + str(port_ingress) + " " +\ |
| 977 | str(egress_device) + "/" + str(port_egress) |
| 978 | |
| 979 | else: |
andrewonlab | 9a130be | 2014-10-22 12:44:56 -0400 | [diff] [blame] | 980 | cmd = "add-point-intent " |
| 981 | |
andrewonlab | 0c0a677 | 2014-10-22 12:31:18 -0400 | [diff] [blame] | 982 | if ethType: |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 983 | cmd += " --ethType " + str(ethType) |
| 984 | if ethSrc: |
| 985 | cmd += " --ethSrc " + str(ethSrc) |
| 986 | if ethDst: |
| 987 | cmd += " --ethDst " + str(ethDst) |
andrewonlab | 9a130be | 2014-10-22 12:44:56 -0400 | [diff] [blame] | 988 | |
| 989 | cmd += " "+str(ingress_device) + "/" + str(port_ingress) + " " +\ |
| 990 | str(egress_device) + "/" + str(port_egress) |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 991 | |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 992 | #print "cmd = ", cmd |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 993 | #self.handle.sendline("") |
| 994 | #self.handle.expect("onos>") |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 995 | |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 996 | self.handle.sendline(cmd) |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 997 | i = self.handle.expect([ |
| 998 | "Error", |
| 999 | "onos>"]) |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 1000 | |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 1001 | self.handle.sendline("intents") |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1002 | self.handle.expect("onos>") |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 1003 | Intenthandle = self.handle.before |
| 1004 | #print "Intenthandle = ", Intenthandle |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1005 | |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 1006 | #self.handle.sendline("flows") |
| 1007 | #self.handle.expect("onos>") |
| 1008 | #Flowhandle = self.handle.before |
| 1009 | #print "Flowhandle = ", Flowhandle |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1010 | |
| 1011 | if i == 0: |
| 1012 | main.log.error("Error in adding point-to-point intent") |
| 1013 | return handle |
| 1014 | else: |
| 1015 | return main.TRUE |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 1016 | |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1017 | except pexpect.EOF: |
| 1018 | main.log.error(self.name + ": EOF exception found") |
| 1019 | main.log.error(self.name + ": " + self.handle.before) |
| 1020 | main.cleanup() |
| 1021 | main.exit() |
| 1022 | except: |
| 1023 | main.log.info(self.name+" ::::::") |
| 1024 | main.log.error( traceback.print_exc()) |
| 1025 | main.log.info(self.name+" ::::::") |
| 1026 | main.cleanup() |
| 1027 | main.exit() |
| 1028 | |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1029 | def remove_intent(self, intent_id): |
| 1030 | ''' |
| 1031 | Remove intent for specified intent id |
| 1032 | ''' |
| 1033 | try: |
| 1034 | self.handle.sendline("") |
| 1035 | self.handle.expect("onos>") |
| 1036 | |
| 1037 | self.handle.sendline("remove-intent "+str(intent_id)) |
| 1038 | i = self.handle.expect([ |
| 1039 | "Error", |
| 1040 | "onos>"]) |
| 1041 | |
| 1042 | handle = self.handle.before |
| 1043 | |
| 1044 | if i == 0: |
| 1045 | main.log.error("Error in removing intent") |
| 1046 | return handle |
| 1047 | else: |
| 1048 | return handle |
| 1049 | |
| 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() |
| 1061 | |
andrewonlab | 377693f | 2014-10-21 16:00:30 -0400 | [diff] [blame] | 1062 | def intents(self, json_format = False): |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1063 | ''' |
andrewonlab | 377693f | 2014-10-21 16:00:30 -0400 | [diff] [blame] | 1064 | Optional: |
| 1065 | * json_format: enable output formatting in json |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1066 | Description: |
| 1067 | Obtain intents currently installed |
| 1068 | ''' |
| 1069 | try: |
andrewonlab | 377693f | 2014-10-21 16:00:30 -0400 | [diff] [blame] | 1070 | if json_format: |
| 1071 | self.handle.sendline("intents -j") |
| 1072 | self.handle.expect("intents -j") |
| 1073 | self.handle.expect("onos>") |
andrewonlab | 377693f | 2014-10-21 16:00:30 -0400 | [diff] [blame] | 1074 | handle = self.handle.before |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1075 | |
andrewonlab | 377693f | 2014-10-21 16:00:30 -0400 | [diff] [blame] | 1076 | else: |
| 1077 | self.handle.sendline("") |
| 1078 | self.handle.expect("onos>") |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1079 | |
andrewonlab | 377693f | 2014-10-21 16:00:30 -0400 | [diff] [blame] | 1080 | self.handle.sendline("intents") |
| 1081 | self.handle.expect("onos>") |
andrewonlab | 377693f | 2014-10-21 16:00:30 -0400 | [diff] [blame] | 1082 | handle = self.handle.before |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1083 | |
| 1084 | return handle |
| 1085 | |
| 1086 | except pexpect.EOF: |
| 1087 | main.log.error(self.name + ": EOF exception found") |
| 1088 | main.log.error(self.name + ": " + self.handle.before) |
| 1089 | main.cleanup() |
| 1090 | main.exit() |
| 1091 | except: |
| 1092 | main.log.info(self.name+" ::::::") |
| 1093 | main.log.error( traceback.print_exc()) |
| 1094 | main.log.info(self.name+" ::::::") |
| 1095 | main.cleanup() |
| 1096 | main.exit() |
| 1097 | |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 1098 | def flows(self, json_format = False): |
| 1099 | ''' |
| 1100 | Optional: |
| 1101 | * json_format: enable output formatting in json |
| 1102 | Description: |
| 1103 | Obtain flows currently installed |
| 1104 | ''' |
| 1105 | try: |
| 1106 | if json_format: |
| 1107 | self.handle.sendline("flows -j") |
| 1108 | self.handle.expect("flows -j") |
| 1109 | self.handle.expect("onos>") |
| 1110 | handle = self.handle.before |
| 1111 | |
| 1112 | else: |
| 1113 | self.handle.sendline("") |
| 1114 | self.handle.expect("onos>") |
| 1115 | self.handle.sendline("flows") |
| 1116 | self.handle.expect("onos>") |
| 1117 | handle = self.handle.before |
| 1118 | |
| 1119 | return handle |
| 1120 | |
| 1121 | except pexpect.EOF: |
| 1122 | main.log.error(self.name + ": EOF exception found") |
| 1123 | main.log.error(self.name + ": " + self.handle.before) |
| 1124 | main.cleanup() |
| 1125 | main.exit() |
| 1126 | except: |
| 1127 | main.log.info(self.name+" ::::::") |
| 1128 | main.log.error( traceback.print_exc()) |
| 1129 | main.log.info(self.name+" ::::::") |
| 1130 | main.cleanup() |
| 1131 | main.exit() |
| 1132 | |
| 1133 | |
| 1134 | |
andrewonlab | 867212a | 2014-10-22 20:13:38 -0400 | [diff] [blame] | 1135 | def topology_events_metrics(self, json_format=True): |
| 1136 | ''' |
| 1137 | Description:Returns topology metrics |
| 1138 | Optional: |
| 1139 | * json_format: enable json formatting of output |
| 1140 | ''' |
| 1141 | try: |
| 1142 | if json_format: |
| 1143 | self.handle.sendline("topology-events-metrics -j") |
| 1144 | self.handle.expect("topology-events-metrics -j") |
| 1145 | self.handle.expect("onos>") |
| 1146 | |
| 1147 | handle = self.handle.before |
| 1148 | |
| 1149 | #Some color thing that we want to escape |
| 1150 | ansi_escape = re.compile(r'\r\r\n\x1b[^m]*m') |
| 1151 | handle = ansi_escape.sub('', handle) |
| 1152 | |
| 1153 | else: |
| 1154 | self.handle.sendline("topology-events-metrics") |
| 1155 | self.handle.expect("topology-events-metrics") |
| 1156 | self.handle.expect("onos>") |
| 1157 | |
| 1158 | handle = self.handle.before |
| 1159 | |
| 1160 | return handle |
| 1161 | |
| 1162 | except pexpect.EOF: |
| 1163 | main.log.error(self.name + ": EOF exception found") |
| 1164 | main.log.error(self.name + ": " + self.handle.before) |
| 1165 | main.cleanup() |
| 1166 | main.exit() |
| 1167 | except: |
| 1168 | main.log.info(self.name+" ::::::") |
| 1169 | main.log.error( traceback.print_exc()) |
| 1170 | main.log.info(self.name+" ::::::") |
| 1171 | main.cleanup() |
| 1172 | main.exit() |
| 1173 | |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 1174 | #Wrapper functions **************** |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 1175 | #Wrapper functions use existing driver |
| 1176 | #functions and extends their use case. |
| 1177 | #For example, we may use the output of |
| 1178 | #a normal driver function, and parse it |
| 1179 | #using a wrapper function |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 1180 | |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1181 | def get_all_intents_id(self): |
| 1182 | ''' |
| 1183 | Description: |
| 1184 | Obtain all intent id's in a list |
| 1185 | ''' |
| 1186 | try: |
| 1187 | #Obtain output of intents function |
| 1188 | intents_str = self.intents() |
| 1189 | all_intent_list = [] |
| 1190 | intent_id_list = [] |
| 1191 | |
| 1192 | #Parse the intents output for ID's |
| 1193 | intents_list = [s.strip() for s in intents_str.splitlines()] |
| 1194 | for intents in intents_list: |
| 1195 | if "onos>" in intents: |
| 1196 | continue |
| 1197 | elif "intents" in intents: |
| 1198 | continue |
| 1199 | else: |
| 1200 | line_list = intents.split(" ") |
| 1201 | all_intent_list.append(line_list[0]) |
| 1202 | |
| 1203 | all_intent_list = all_intent_list[1:-2] |
| 1204 | |
| 1205 | for intents in all_intent_list: |
| 1206 | if not intents: |
| 1207 | continue |
| 1208 | else: |
| 1209 | intent_id_list.append(intents) |
| 1210 | |
| 1211 | return intent_id_list |
| 1212 | |
| 1213 | except pexpect.EOF: |
| 1214 | main.log.error(self.name + ": EOF exception found") |
| 1215 | main.log.error(self.name + ": " + self.handle.before) |
| 1216 | main.cleanup() |
| 1217 | main.exit() |
| 1218 | except: |
| 1219 | main.log.info(self.name+" ::::::") |
| 1220 | main.log.error( traceback.print_exc()) |
| 1221 | main.log.info(self.name+" ::::::") |
| 1222 | main.cleanup() |
| 1223 | main.exit() |
| 1224 | |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 1225 | def get_all_devices_id(self): |
| 1226 | ''' |
| 1227 | Use 'devices' function to obtain list of all devices |
| 1228 | and parse the result to obtain a list of all device |
| 1229 | id's. Returns this list. Returns empty list if no |
| 1230 | devices exist |
| 1231 | List is ordered sequentially |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 1232 | |
| 1233 | This function may be useful if you are not sure of the |
| 1234 | device id, and wish to execute other commands using |
| 1235 | the ids. By obtaining the list of device ids on the fly, |
| 1236 | you can iterate through the list to get mastership, etc. |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 1237 | ''' |
| 1238 | try: |
| 1239 | #Call devices and store result string |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1240 | devices_str = self.devices(json_format=False) |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 1241 | id_list = [] |
| 1242 | |
| 1243 | if not devices_str: |
| 1244 | main.log.info("There are no devices to get id from") |
| 1245 | return id_list |
| 1246 | |
| 1247 | #Split the string into list by comma |
| 1248 | device_list = devices_str.split(",") |
| 1249 | #Get temporary list of all arguments with string 'id=' |
| 1250 | temp_list = [dev for dev in device_list if "id=" in dev] |
| 1251 | #Split list further into arguments before and after string |
| 1252 | # 'id='. Get the latter portion (the actual device id) and |
| 1253 | # append to id_list |
| 1254 | for arg in temp_list: |
| 1255 | id_list.append(arg.split("id=")[1]) |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 1256 | return id_list |
| 1257 | |
| 1258 | except pexpect.EOF: |
| 1259 | main.log.error(self.name + ": EOF exception found") |
| 1260 | main.log.error(self.name + ": " + self.handle.before) |
| 1261 | main.cleanup() |
| 1262 | main.exit() |
| 1263 | except: |
| 1264 | main.log.info(self.name+" ::::::") |
| 1265 | main.log.error( traceback.print_exc()) |
| 1266 | main.log.info(self.name+" ::::::") |
| 1267 | main.cleanup() |
| 1268 | main.exit() |
| 1269 | |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 1270 | def get_all_nodes_id(self): |
| 1271 | ''' |
| 1272 | Uses 'nodes' function to obtain list of all nodes |
| 1273 | and parse the result of nodes to obtain just the |
| 1274 | node id's. |
| 1275 | Returns: |
| 1276 | list of node id's |
| 1277 | ''' |
| 1278 | try: |
| 1279 | nodes_str = self.nodes() |
| 1280 | id_list = [] |
| 1281 | |
| 1282 | if not nodes_str: |
| 1283 | main.log.info("There are no nodes to get id from") |
| 1284 | return id_list |
| 1285 | |
| 1286 | #Sample nodes_str output |
| 1287 | #id=local, address=127.0.0.1:9876, state=ACTIVE * |
| 1288 | |
| 1289 | #Split the string into list by comma |
| 1290 | nodes_list = nodes_str.split(",") |
| 1291 | temp_list = [node for node in nodes_list if "id=" in node] |
| 1292 | for arg in temp_list: |
| 1293 | id_list.append(arg.split("id=")[1]) |
| 1294 | |
| 1295 | return id_list |
| 1296 | |
| 1297 | except pexpect.EOF: |
| 1298 | main.log.error(self.name + ": EOF exception found") |
| 1299 | main.log.error(self.name + ": " + self.handle.before) |
| 1300 | main.cleanup() |
| 1301 | main.exit() |
| 1302 | except: |
| 1303 | main.log.info(self.name+" ::::::") |
| 1304 | main.log.error( traceback.print_exc()) |
| 1305 | main.log.info(self.name+" ::::::") |
| 1306 | main.cleanup() |
| 1307 | main.exit() |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 1308 | |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 1309 | def get_device(self, dpid=None): |
| 1310 | ''' |
| 1311 | Return the first device from the devices api whose 'id' contains 'dpid' |
| 1312 | Return None if there is no match |
| 1313 | ''' |
| 1314 | import json |
| 1315 | try: |
| 1316 | if dpid == None: |
| 1317 | return None |
| 1318 | else: |
| 1319 | dpid = dpid.replace(':', '') |
| 1320 | raw_devices = self.devices() |
| 1321 | devices_json = json.loads(raw_devices) |
| 1322 | #search json for the device with dpid then return the device |
| 1323 | for device in devices_json: |
| 1324 | #print "%s in %s?" % (dpid, device['id']) |
| 1325 | if dpid in device['id']: |
| 1326 | return device |
| 1327 | return None |
| 1328 | except pexpect.EOF: |
| 1329 | main.log.error(self.name + ": EOF exception found") |
| 1330 | main.log.error(self.name + ": " + self.handle.before) |
| 1331 | main.cleanup() |
| 1332 | main.exit() |
| 1333 | except: |
| 1334 | main.log.info(self.name+" ::::::") |
| 1335 | main.log.error( traceback.print_exc()) |
| 1336 | main.log.info(self.name+" ::::::") |
| 1337 | main.cleanup() |
| 1338 | main.exit() |
| 1339 | |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 1340 | def check_status(self, ip, numoswitch, numolink, log_level="info"): |
| 1341 | ''' |
| 1342 | Checks the number of swithes & links that ONOS sees against the |
| 1343 | supplied values. By default this will report to main.log, but the |
| 1344 | log level can be specifid. |
| 1345 | |
| 1346 | Params: ip = ip used for the onos cli |
| 1347 | numoswitch = expected number of switches |
| 1348 | numlink = expected number of links |
| 1349 | log_level = level to log to. Currently accepts 'info', 'warn' and 'report' |
| 1350 | |
| 1351 | |
| 1352 | log_level can |
| 1353 | |
| 1354 | Returns: main.TRUE if the number of switchs and links are correct, |
| 1355 | main.FALSE if the numer of switches and links is incorrect, |
| 1356 | and main.ERROR otherwise |
| 1357 | ''' |
| 1358 | |
| 1359 | try: |
| 1360 | topology = self.get_topology(ip) |
| 1361 | if topology == {}: |
| 1362 | return main.ERROR |
| 1363 | output = "" |
| 1364 | #Is the number of switches is what we expected |
| 1365 | devices = topology.get('devices',False) |
| 1366 | links = topology.get('links',False) |
| 1367 | if devices == False or links == False: |
| 1368 | return main.ERROR |
| 1369 | switch_check = ( int(devices) == int(numoswitch) ) |
| 1370 | #Is the number of links is what we expected |
| 1371 | link_check = ( int(links) == int(numolink) ) |
| 1372 | if (switch_check and link_check): |
| 1373 | #We expected the correct numbers |
| 1374 | output = output + "The number of links and switches match "\ |
| 1375 | + "what was expected" |
| 1376 | result = main.TRUE |
| 1377 | else: |
| 1378 | output = output + \ |
| 1379 | "The number of links and switches does not match what was expected" |
| 1380 | result = main.FALSE |
| 1381 | output = output + "\n ONOS sees %i devices (%i expected) and %i links (%i expected)"\ |
| 1382 | % ( int(devices), int(numoswitch), int(links), int(numolink) ) |
| 1383 | if log_level == "report": |
| 1384 | main.log.report(output) |
| 1385 | elif log_level == "warn": |
| 1386 | main.log.warn(output) |
| 1387 | else: |
| 1388 | main.log.info(output) |
| 1389 | return result |
| 1390 | except pexpect.EOF: |
| 1391 | main.log.error(self.name + ": EOF exception found") |
| 1392 | main.log.error(self.name + ": " + self.handle.before) |
| 1393 | main.cleanup() |
| 1394 | main.exit() |
| 1395 | except: |
| 1396 | main.log.info(self.name+" ::::::") |
| 1397 | main.log.error( traceback.print_exc()) |
| 1398 | main.log.info(self.name+" ::::::") |
| 1399 | main.cleanup() |
| 1400 | main.exit() |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 1401 | |
| 1402 | def device_role(self, device_id, onos_node, role="master"): |
| 1403 | ''' |
| 1404 | Calls the device-role cli command. |
| 1405 | device_id must be the id of a device as seen in the onos devices command |
| 1406 | onos_node is the ip of one of the onos nodes in the cluster |
| 1407 | role must be either master, standby, or none |
| 1408 | |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 1409 | Returns main.TRUE or main.FALSE based argument varification. |
| 1410 | When device-role supports errors this should be extended to |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 1411 | support that output |
| 1412 | ''' |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 1413 | try: |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 1414 | #print "beginning device_role... \n\tdevice_id:" + device_id |
| 1415 | #print "\tonos_node: " + onos_node |
| 1416 | #print "\trole: "+ role |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 1417 | if role.lower() == "master" or \ |
| 1418 | role.lower() == "standby" or \ |
| 1419 | role.lower() == "none": |
| 1420 | self.handle.sendline("") |
| 1421 | self.handle.expect("onos>") |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 1422 | self.handle.sendline("device-role " + |
| 1423 | str(device_id) + " " + |
| 1424 | str(onos_node) + " " + |
| 1425 | str(role)) |
| 1426 | i= self.handle.expect(["Error","onos>"]) |
| 1427 | if i == 0: |
| 1428 | output = str(self.handle.before) |
| 1429 | self.handle.expect("onos>") |
| 1430 | output = output + str(self.handle.before) |
| 1431 | main.log.error(self.name + ": " + |
| 1432 | output + '\033[0m')#end color output to escape any colours from the cli |
| 1433 | return main.ERROR |
| 1434 | self.handle.sendline("") |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 1435 | self.handle.expect("onos>") |
| 1436 | return main.TRUE |
| 1437 | else: |
| 1438 | return main.FALSE |
| 1439 | |
| 1440 | except pexpect.EOF: |
| 1441 | main.log.error(self.name + ": EOF exception found") |
| 1442 | main.log.error(self.name + ": " + self.handle.before) |
| 1443 | main.cleanup() |
| 1444 | main.exit() |
| 1445 | except: |
| 1446 | main.log.info(self.name+" ::::::") |
| 1447 | main.log.error( traceback.print_exc()) |
| 1448 | main.log.info(self.name+" ::::::") |
| 1449 | main.cleanup() |
| 1450 | main.exit() |
| 1451 | |
| 1452 | |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 1453 | #*********************************** |