andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 4 | This driver enters the onos> prompt to issue commands. |
| 5 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 6 | Please follow the coding style demonstrated by existing |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 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 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 18 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 19 | import sys |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 20 | import pexpect |
| 21 | import re |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 22 | import json |
| 23 | import types |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 24 | import time |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 25 | sys.path.append( "../" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 26 | from drivers.common.clidriver import CLI |
| 27 | |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 28 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 29 | class OnosCliDriver( CLI ): |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 30 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 31 | def __init__( self ): |
| 32 | """ |
| 33 | Initialize client |
| 34 | """ |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 35 | self.name = None |
| 36 | self.home = None |
| 37 | self.handle = None |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 38 | super( CLI, self ).__init__() |
| 39 | |
| 40 | def connect( self, **connectargs ): |
| 41 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 42 | Creates ssh handle for ONOS cli. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 43 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 44 | try: |
| 45 | for key in connectargs: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 46 | vars( self )[ key ] = connectargs[ key ] |
andrew@onlab.us | 658ec01 | 2015-03-11 15:13:09 -0700 | [diff] [blame] | 47 | self.home = "~/onos" |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 48 | for key in self.options: |
| 49 | if key == "home": |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 50 | self.home = self.options[ 'home' ] |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 51 | break |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 52 | if self.home is None or self.home == "": |
Jon Hall | e94919c | 2015-03-23 11:42:57 -0700 | [diff] [blame] | 53 | self.home = "~/onos" |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 54 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 55 | self.name = self.options[ 'name' ] |
| 56 | self.handle = super( OnosCliDriver, self ).connect( |
kelvin-onlab | 08679eb | 2015-01-21 16:11:48 -0800 | [diff] [blame] | 57 | user_name=self.user_name, |
| 58 | ip_address=self.ip_address, |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 59 | port=self.port, |
| 60 | pwd=self.pwd, |
| 61 | home=self.home ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 62 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 63 | self.handle.sendline( "cd " + self.home ) |
| 64 | self.handle.expect( "\$" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 65 | if self.handle: |
| 66 | return self.handle |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 67 | else: |
| 68 | main.log.info( "NO ONOS HANDLE" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 69 | return main.FALSE |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 70 | except TypeError: |
| 71 | main.log.exception( self.name + ": Object not as expected" ) |
| 72 | return None |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 73 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 74 | main.log.error( self.name + ": EOF exception found" ) |
| 75 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 76 | main.cleanup() |
| 77 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 78 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 79 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 80 | main.cleanup() |
| 81 | main.exit() |
| 82 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 83 | def disconnect( self ): |
| 84 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 85 | Called when Test is complete to disconnect the ONOS handle. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 86 | """ |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 87 | response = main.TRUE |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 88 | try: |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 89 | if self.handle: |
| 90 | i = self.logout() |
| 91 | if i == main.TRUE: |
| 92 | self.handle.sendline( "" ) |
| 93 | self.handle.expect( "\$" ) |
| 94 | self.handle.sendline( "exit" ) |
| 95 | self.handle.expect( "closed" ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 96 | except TypeError: |
| 97 | main.log.exception( self.name + ": Object not as expected" ) |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 98 | response = main.FALSE |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 99 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 100 | main.log.error( self.name + ": EOF exception found" ) |
| 101 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 102 | except ValueError: |
Jon Hall | 1a77a1e | 2015-04-06 10:41:13 -0700 | [diff] [blame] | 103 | main.log.exception( "Exception in disconnect of " + self.name ) |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 104 | response = main.TRUE |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 105 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 106 | main.log.exception( self.name + ": Connection failed to the host" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 107 | response = main.FALSE |
| 108 | return response |
| 109 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 110 | def logout( self ): |
| 111 | """ |
andrewonlab | 38d2b4a | 2014-11-13 16:28:47 -0500 | [diff] [blame] | 112 | Sends 'logout' command to ONOS cli |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 113 | Returns main.TRUE if exited CLI and |
| 114 | main.FALSE on timeout (not guranteed you are disconnected) |
| 115 | None on TypeError |
| 116 | Exits test on unknown error or pexpect exits unexpectedly |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 117 | """ |
andrewonlab | 38d2b4a | 2014-11-13 16:28:47 -0500 | [diff] [blame] | 118 | try: |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 119 | if self.handle: |
| 120 | self.handle.sendline( "" ) |
| 121 | i = self.handle.expect( [ "onos>", "\$", pexpect.TIMEOUT ], |
| 122 | timeout=10 ) |
| 123 | if i == 0: # In ONOS CLI |
| 124 | self.handle.sendline( "logout" ) |
| 125 | self.handle.expect( "\$" ) |
| 126 | return main.TRUE |
| 127 | elif i == 1: # not in CLI |
| 128 | return main.TRUE |
| 129 | elif i == 3: # Timeout |
| 130 | return main.FALSE |
| 131 | else: |
andrewonlab | 9627f43 | 2014-11-14 12:45:10 -0500 | [diff] [blame] | 132 | return main.TRUE |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 133 | except TypeError: |
| 134 | main.log.exception( self.name + ": Object not as expected" ) |
| 135 | return None |
andrewonlab | 38d2b4a | 2014-11-13 16:28:47 -0500 | [diff] [blame] | 136 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 137 | main.log.error( self.name + ": eof exception found" ) |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 138 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 38d2b4a | 2014-11-13 16:28:47 -0500 | [diff] [blame] | 139 | main.cleanup() |
| 140 | main.exit() |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 141 | except ValueError: |
Jon Hall | 5aa168b | 2015-03-23 14:23:09 -0700 | [diff] [blame] | 142 | main.log.error( self.name + |
| 143 | "ValueError exception in logout method" ) |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 144 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 145 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 38d2b4a | 2014-11-13 16:28:47 -0500 | [diff] [blame] | 146 | main.cleanup() |
| 147 | main.exit() |
| 148 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 149 | def setCell( self, cellname ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 150 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 151 | Calls 'cell <name>' to set the environment variables on ONOSbench |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 152 | |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 153 | Before issuing any cli commands, set the environment variable first. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 154 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 155 | try: |
| 156 | if not cellname: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 157 | main.log.error( "Must define cellname" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 158 | main.cleanup() |
| 159 | main.exit() |
| 160 | else: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 161 | self.handle.sendline( "cell " + str( cellname ) ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 162 | # Expect the cellname in the ONOSCELL variable. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 163 | # Note that this variable name is subject to change |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 164 | # and that this driver will have to change accordingly |
Cameron Franke | 9c94fb0 | 2015-01-21 10:20:20 -0800 | [diff] [blame] | 165 | self.handle.expect(str(cellname)) |
andrew@onlab.us | c400b11 | 2015-01-21 15:33:19 -0800 | [diff] [blame] | 166 | handleBefore = self.handle.before |
| 167 | handleAfter = self.handle.after |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 168 | # Get the rest of the handle |
Cameron Franke | 9c94fb0 | 2015-01-21 10:20:20 -0800 | [diff] [blame] | 169 | self.handle.sendline("") |
| 170 | self.handle.expect("\$") |
andrew@onlab.us | c400b11 | 2015-01-21 15:33:19 -0800 | [diff] [blame] | 171 | handleMore = self.handle.before |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 172 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 173 | main.log.info( "Cell call returned: " + handleBefore + |
| 174 | handleAfter + handleMore ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 175 | |
| 176 | return main.TRUE |
| 177 | |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 178 | except TypeError: |
| 179 | main.log.exception( self.name + ": Object not as expected" ) |
| 180 | return None |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 181 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 182 | main.log.error( self.name + ": eof exception found" ) |
| 183 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 184 | main.cleanup() |
| 185 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 186 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 187 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 188 | main.cleanup() |
| 189 | main.exit() |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 190 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 191 | def startOnosCli( self, ONOSIp, karafTimeout="" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 192 | """ |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 193 | karafTimeout is an optional argument. karafTimeout value passed |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 194 | by user would be used to set the current karaf shell idle timeout. |
| 195 | Note that when ever this property is modified the shell will exit and |
Hari Krishna | d7b9c20 | 2015-01-05 10:38:14 -0800 | [diff] [blame] | 196 | the subsequent login would reflect new idle timeout. |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 197 | Below is an example to start a session with 60 seconds idle timeout |
| 198 | ( input value is in milliseconds ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 199 | |
Hari Krishna | 25d42f7 | 2015-01-05 15:08:28 -0800 | [diff] [blame] | 200 | tValue = "60000" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 201 | main.ONOScli1.startOnosCli( ONOSIp, karafTimeout=tValue ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 202 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 203 | Note: karafTimeout is left as str so that this could be read |
| 204 | and passed to startOnosCli from PARAMS file as str. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 205 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 206 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 207 | self.handle.sendline( "" ) |
| 208 | x = self.handle.expect( [ |
| 209 | "\$", "onos>" ], timeout=10 ) |
andrewonlab | 48829f6 | 2014-11-17 13:49:01 -0500 | [diff] [blame] | 210 | |
| 211 | if x == 1: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 212 | main.log.info( "ONOS cli is already running" ) |
andrewonlab | 48829f6 | 2014-11-17 13:49:01 -0500 | [diff] [blame] | 213 | return main.TRUE |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 214 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 215 | # Wait for onos start ( -w ) and enter onos cli |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 216 | self.handle.sendline( "onos -w " + str( ONOSIp ) ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 217 | i = self.handle.expect( [ |
| 218 | "onos>", |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 219 | pexpect.TIMEOUT ], timeout=60 ) |
andrewonlab | 2a7ea9b | 2014-10-24 12:21:05 -0400 | [diff] [blame] | 220 | |
| 221 | if i == 0: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 222 | main.log.info( str( ONOSIp ) + " CLI Started successfully" ) |
Hari Krishna | e36ef21 | 2015-01-04 14:09:13 -0800 | [diff] [blame] | 223 | if karafTimeout: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 224 | self.handle.sendline( |
Hari Krishna | ac4e178 | 2015-01-26 12:09:12 -0800 | [diff] [blame] | 225 | "config:property-set -p org.apache.karaf.shell\ |
| 226 | sshIdleTimeout " + |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 227 | karafTimeout ) |
| 228 | self.handle.expect( "\$" ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 229 | self.handle.sendline( "onos -w " + str( ONOSIp ) ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 230 | self.handle.expect( "onos>" ) |
andrewonlab | 2a7ea9b | 2014-10-24 12:21:05 -0400 | [diff] [blame] | 231 | return main.TRUE |
| 232 | else: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 233 | # If failed, send ctrl+c to process and try again |
| 234 | main.log.info( "Starting CLI failed. Retrying..." ) |
| 235 | self.handle.send( "\x03" ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 236 | self.handle.sendline( "onos -w " + str( ONOSIp ) ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 237 | i = self.handle.expect( [ "onos>", pexpect.TIMEOUT ], |
| 238 | timeout=30 ) |
andrewonlab | 3a7c3c7 | 2014-10-24 17:21:03 -0400 | [diff] [blame] | 239 | if i == 0: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 240 | main.log.info( str( ONOSIp ) + " CLI Started " + |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 241 | "successfully after retry attempt" ) |
Hari Krishna | e36ef21 | 2015-01-04 14:09:13 -0800 | [diff] [blame] | 242 | if karafTimeout: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 243 | self.handle.sendline( |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 244 | "config:property-set -p org.apache.karaf.shell\ |
| 245 | sshIdleTimeout " + |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 246 | karafTimeout ) |
| 247 | self.handle.expect( "\$" ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 248 | self.handle.sendline( "onos -w " + str( ONOSIp ) ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 249 | self.handle.expect( "onos>" ) |
andrewonlab | 3a7c3c7 | 2014-10-24 17:21:03 -0400 | [diff] [blame] | 250 | return main.TRUE |
| 251 | else: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 252 | main.log.error( "Connection to CLI " + |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 253 | str( ONOSIp ) + " timeout" ) |
andrewonlab | 3a7c3c7 | 2014-10-24 17:21:03 -0400 | [diff] [blame] | 254 | return main.FALSE |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 255 | |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 256 | except TypeError: |
| 257 | main.log.exception( self.name + ": Object not as expected" ) |
| 258 | return None |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 259 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 260 | main.log.error( self.name + ": EOF exception found" ) |
| 261 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 262 | main.cleanup() |
| 263 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 264 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 265 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 266 | main.cleanup() |
| 267 | main.exit() |
| 268 | |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 269 | def log( self, cmdStr, level="" ): |
kelvin-onlab | 9f54103 | 2015-02-04 16:19:53 -0800 | [diff] [blame] | 270 | """ |
| 271 | log the commands in the onos CLI. |
kelvin-onlab | 338f551 | 2015-02-06 10:53:16 -0800 | [diff] [blame] | 272 | returns main.TRUE on success |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 273 | returns main.FALSE if Error occurred |
kelvin-onlab | 338f551 | 2015-02-06 10:53:16 -0800 | [diff] [blame] | 274 | Available level: DEBUG, TRACE, INFO, WARN, ERROR |
| 275 | Level defaults to INFO |
kelvin-onlab | 9f54103 | 2015-02-04 16:19:53 -0800 | [diff] [blame] | 276 | """ |
| 277 | try: |
kelvin-onlab | 338f551 | 2015-02-06 10:53:16 -0800 | [diff] [blame] | 278 | lvlStr = "" |
| 279 | if level: |
| 280 | lvlStr = "--level=" + level |
| 281 | |
kelvin-onlab | 9f54103 | 2015-02-04 16:19:53 -0800 | [diff] [blame] | 282 | self.handle.sendline( "" ) |
| 283 | self.handle.expect( "onos>" ) |
kelvin-onlab | 338f551 | 2015-02-06 10:53:16 -0800 | [diff] [blame] | 284 | self.handle.sendline( "log:log " + lvlStr + " " + cmdStr ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 285 | self.handle.expect( "log:log" ) |
kelvin-onlab | 9f54103 | 2015-02-04 16:19:53 -0800 | [diff] [blame] | 286 | self.handle.expect( "onos>" ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 287 | |
kelvin-onlab | 9f54103 | 2015-02-04 16:19:53 -0800 | [diff] [blame] | 288 | response = self.handle.before |
| 289 | if re.search( "Error", response ): |
| 290 | return main.FALSE |
| 291 | return main.TRUE |
| 292 | |
| 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() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 298 | except Exception: |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 299 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 300 | main.cleanup() |
| 301 | main.exit() |
| 302 | |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 303 | def sendline( self, cmdStr, debug=False ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 304 | """ |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 305 | Send a completely user specified string to |
| 306 | the onos> prompt. Use this function if you have |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 307 | a very specific command to send. |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 308 | |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 309 | Warning: There are no sanity checking to commands |
| 310 | sent using this method. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 311 | """ |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 312 | try: |
kelvin-onlab | 338f551 | 2015-02-06 10:53:16 -0800 | [diff] [blame] | 313 | logStr = "\"Sending CLI command: '" + cmdStr + "'\"" |
| 314 | self.log( logStr ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 315 | self.handle.sendline( cmdStr ) |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 316 | i = self.handle.expect( ["onos>", "\$", pexpect.TIMEOUT] ) |
| 317 | response = self.handle.before |
| 318 | if i == 2: |
| 319 | self.handle.sendline() |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 320 | self.handle.expect( ["\$", pexpect.TIMEOUT] ) |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 321 | response += self.handle.before |
| 322 | print response |
| 323 | try: |
| 324 | print self.handle.after |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 325 | except TypeError: |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 326 | pass |
| 327 | # TODO: do something with i |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 328 | main.log.info( "Command '" + str( cmdStr ) + "' sent to " |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 329 | + self.name + "." ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 330 | if debug: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 331 | main.log.debug( self.name + ": Raw output" ) |
| 332 | main.log.debug( self.name + ": " + repr( response ) ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 333 | |
| 334 | # Remove ANSI color control strings from output |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 335 | ansiEscape = re.compile( r'\x1b[^m]*m' ) |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 336 | response = ansiEscape.sub( '', response ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 337 | if debug: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 338 | main.log.debug( self.name + ": ansiEscape output" ) |
| 339 | main.log.debug( self.name + ": " + repr( response ) ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 340 | |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 341 | # Remove extra return chars that get added |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 342 | response = re.sub( r"\s\r", "", response ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 343 | if debug: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 344 | main.log.debug( self.name + ": Removed extra returns " + |
| 345 | "from output" ) |
| 346 | main.log.debug( self.name + ": " + repr( response ) ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 347 | |
| 348 | # Strip excess whitespace |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 349 | response = response.strip() |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 350 | if debug: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 351 | main.log.debug( self.name + ": parsed and stripped output" ) |
| 352 | main.log.debug( self.name + ": " + repr( response ) ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 353 | |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 354 | # parse for just the output, remove the cmd from response |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 355 | output = response.split( cmdStr.strip(), 1 ) |
| 356 | if debug: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 357 | main.log.debug( self.name + ": split output" ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 358 | for r in output: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 359 | main.log.debug( self.name + ": " + repr( r ) ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 360 | return output[1].strip() |
| 361 | except IndexError: |
| 362 | main.log.exception( self.name + ": Object not as expected" ) |
| 363 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 364 | except TypeError: |
| 365 | main.log.exception( self.name + ": Object not as expected" ) |
| 366 | return None |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 367 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 368 | main.log.error( self.name + ": EOF exception found" ) |
| 369 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 370 | main.cleanup() |
| 371 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 372 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 373 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 374 | main.cleanup() |
| 375 | main.exit() |
| 376 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 377 | # IMPORTANT NOTE: |
| 378 | # For all cli commands, naming convention should match |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 379 | # the cli command changing 'a:b' with 'aB'. |
| 380 | # Ex ) onos:topology > onosTopology |
| 381 | # onos:links > onosLinks |
| 382 | # feature:list > featureList |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 383 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 384 | def addNode( self, nodeId, ONOSIp, tcpPort="" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 385 | """ |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 386 | Adds a new cluster node by ID and address information. |
| 387 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 388 | * nodeId |
| 389 | * ONOSIp |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 390 | Optional: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 391 | * tcpPort |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 392 | """ |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 393 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 394 | cmdStr = "add-node " + str( nodeId ) + " " +\ |
| 395 | str( ONOSIp ) + " " + str( tcpPort ) |
| 396 | handle = self.sendline( cmdStr ) |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 397 | if re.search( "Error", handle ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 398 | main.log.error( "Error in adding node" ) |
| 399 | main.log.error( handle ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 400 | return main.FALSE |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 401 | else: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 402 | main.log.info( "Node " + str( ONOSIp ) + " added" ) |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 403 | return main.TRUE |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 404 | except TypeError: |
| 405 | main.log.exception( self.name + ": Object not as expected" ) |
| 406 | return None |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 407 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 408 | main.log.error( self.name + ": EOF exception found" ) |
| 409 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 410 | main.cleanup() |
| 411 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 412 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 413 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 414 | main.cleanup() |
| 415 | main.exit() |
| 416 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 417 | def removeNode( self, nodeId ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 418 | """ |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 419 | Removes a cluster by ID |
| 420 | Issues command: 'remove-node [<node-id>]' |
| 421 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 422 | * nodeId |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 423 | """ |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 424 | try: |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 425 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 426 | cmdStr = "remove-node " + str( nodeId ) |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 427 | handle = self.sendline( cmdStr ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 428 | if re.search( "Error", handle ): |
| 429 | main.log.error( "Error in removing node" ) |
| 430 | main.log.error( handle ) |
| 431 | return main.FALSE |
| 432 | else: |
| 433 | return main.TRUE |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 434 | except TypeError: |
| 435 | main.log.exception( self.name + ": Object not as expected" ) |
| 436 | return None |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 437 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 438 | main.log.error( self.name + ": EOF exception found" ) |
| 439 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 440 | main.cleanup() |
| 441 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 442 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 443 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 444 | main.cleanup() |
| 445 | main.exit() |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 446 | |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 447 | def nodes( self, jsonFormat=True): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 448 | """ |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 449 | List the nodes currently visible |
| 450 | Issues command: 'nodes' |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 451 | Optional argument: |
| 452 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 453 | """ |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 454 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 455 | cmdStr = "nodes" |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 456 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 457 | cmdStr += " -j" |
| 458 | output = self.sendline( cmdStr ) |
| 459 | return output |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 460 | except TypeError: |
| 461 | main.log.exception( self.name + ": Object not as expected" ) |
| 462 | return None |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 463 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 464 | main.log.error( self.name + ": EOF exception found" ) |
| 465 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 466 | main.cleanup() |
| 467 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 468 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 469 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 470 | main.cleanup() |
| 471 | main.exit() |
| 472 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 473 | def topology( self ): |
| 474 | """ |
Hari Krishna | ef1bd4e | 2015-03-12 16:55:30 -0700 | [diff] [blame] | 475 | Definition: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 476 | Returns the output of topology command. |
Hari Krishna | ef1bd4e | 2015-03-12 16:55:30 -0700 | [diff] [blame] | 477 | Return: |
| 478 | topology = current ONOS topology |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 479 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 480 | try: |
Hari Krishna | ef1bd4e | 2015-03-12 16:55:30 -0700 | [diff] [blame] | 481 | cmdStr = "topology -j" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 482 | handle = self.sendline( cmdStr ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 483 | main.log.info( cmdStr + " returned: " + str( handle ) ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 484 | return handle |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 485 | except TypeError: |
| 486 | main.log.exception( self.name + ": Object not as expected" ) |
| 487 | return None |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 488 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 489 | main.log.error( self.name + ": EOF exception found" ) |
| 490 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 491 | main.cleanup() |
| 492 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 493 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 494 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 495 | main.cleanup() |
| 496 | main.exit() |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 497 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 498 | def featureInstall( self, featureStr ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 499 | """ |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 500 | Installs a specified feature by issuing command: |
| 501 | 'feature:install <feature_str>' |
| 502 | NOTE: This is now deprecated, you should use the activateApp method |
| 503 | instead |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 504 | """ |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 505 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 506 | cmdStr = "feature:install " + str( featureStr ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 507 | handle = self.sendline( cmdStr ) |
| 508 | if re.search( "Error", handle ): |
| 509 | main.log.error( "Error in installing feature" ) |
| 510 | main.log.error( handle ) |
| 511 | return main.FALSE |
| 512 | else: |
| 513 | return main.TRUE |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 514 | except TypeError: |
| 515 | main.log.exception( self.name + ": Object not as expected" ) |
| 516 | return None |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 517 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 518 | main.log.error( self.name + ": EOF exception found" ) |
| 519 | main.log.error( self.name + ": " + self.handle.before ) |
| 520 | main.log.report( "Failed to install feature" ) |
| 521 | main.log.report( "Exiting test" ) |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 522 | main.cleanup() |
| 523 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 524 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 525 | main.log.exception( self.name + ": Uncaught exception!" ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 526 | main.log.report( "Failed to install feature" ) |
| 527 | main.log.report( "Exiting test" ) |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 528 | main.cleanup() |
| 529 | main.exit() |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 530 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 531 | def featureUninstall( self, featureStr ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 532 | """ |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 533 | Uninstalls a specified feature by issuing command: |
| 534 | 'feature:uninstall <feature_str>' |
| 535 | NOTE: This is now deprecated, you should use the deactivateApp method |
| 536 | instead |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 537 | """ |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 538 | try: |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 539 | cmdStr = 'feature:list -i | grep "' + featureStr + '"' |
| 540 | handle = self.sendline( cmdStr ) |
| 541 | if handle != '': |
| 542 | cmdStr = "feature:uninstall " + str( featureStr ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 543 | output = self.sendline( cmdStr ) |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 544 | # TODO: Check for possible error responses from karaf |
| 545 | else: |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 546 | main.log.info( "Feature needs to be installed before " + |
| 547 | "uninstalling it" ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 548 | return main.TRUE |
| 549 | if re.search( "Error", output ): |
| 550 | main.log.error( "Error in uninstalling feature" ) |
| 551 | main.log.error( output ) |
| 552 | return main.FALSE |
| 553 | else: |
| 554 | return main.TRUE |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 555 | except TypeError: |
| 556 | main.log.exception( self.name + ": Object not as expected" ) |
| 557 | return None |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 558 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 559 | main.log.error( self.name + ": EOF exception found" ) |
| 560 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 561 | main.cleanup() |
| 562 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 563 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 564 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 565 | main.cleanup() |
| 566 | main.exit() |
Jon Hall | ffb386d | 2014-11-21 13:43:38 -0800 | [diff] [blame] | 567 | |
jenkins | 7ead5a8 | 2015-03-13 10:28:21 -0700 | [diff] [blame] | 568 | def deviceRemove( self, deviceId ): |
| 569 | """ |
| 570 | Removes particular device from storage |
| 571 | |
| 572 | TODO: refactor this function |
| 573 | """ |
| 574 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 575 | cmdStr = "device-remove " + str( deviceId ) |
| 576 | handle = self.sendline( cmdStr ) |
| 577 | if re.search( "Error", handle ): |
| 578 | main.log.error( "Error in removing device" ) |
| 579 | main.log.error( handle ) |
| 580 | return main.FALSE |
| 581 | else: |
| 582 | return main.TRUE |
jenkins | 7ead5a8 | 2015-03-13 10:28:21 -0700 | [diff] [blame] | 583 | except TypeError: |
| 584 | main.log.exception( self.name + ": Object not as expected" ) |
| 585 | return None |
| 586 | except pexpect.EOF: |
| 587 | main.log.error( self.name + ": EOF exception found" ) |
| 588 | main.log.error( self.name + ": " + self.handle.before ) |
| 589 | main.cleanup() |
| 590 | main.exit() |
| 591 | except Exception: |
| 592 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 593 | main.cleanup() |
| 594 | main.exit() |
jenkins | 7ead5a8 | 2015-03-13 10:28:21 -0700 | [diff] [blame] | 595 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 596 | def devices( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 597 | """ |
Jon Hall | 7b02d95 | 2014-10-17 20:14:54 -0400 | [diff] [blame] | 598 | Lists all infrastructure devices or switches |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 599 | Optional argument: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 600 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 601 | """ |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 602 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 603 | cmdStr = "devices" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 604 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 605 | cmdStr += " -j" |
| 606 | handle = self.sendline( cmdStr ) |
| 607 | return handle |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 608 | except TypeError: |
| 609 | main.log.exception( self.name + ": Object not as expected" ) |
| 610 | return None |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 611 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 612 | main.log.error( self.name + ": EOF exception found" ) |
| 613 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 614 | main.cleanup() |
| 615 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 616 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 617 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 618 | main.cleanup() |
| 619 | main.exit() |
| 620 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 621 | def balanceMasters( self ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 622 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 623 | This balances the devices across all controllers |
| 624 | by issuing command: 'onos> onos:balance-masters' |
| 625 | If required this could be extended to return devices balanced output. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 626 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 627 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 628 | cmdStr = "onos:balance-masters" |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 629 | handle = self.sendline( cmdStr ) |
| 630 | if re.search( "Error", handle ): |
| 631 | main.log.error( "Error in balancing masters" ) |
| 632 | main.log.error( handle ) |
| 633 | return main.FALSE |
| 634 | else: |
| 635 | return main.TRUE |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 636 | except TypeError: |
| 637 | main.log.exception( self.name + ": Object not as expected" ) |
| 638 | return None |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 639 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 640 | main.log.error( self.name + ": EOF exception found" ) |
| 641 | main.log.error( self.name + ": " + self.handle.before ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 642 | main.cleanup() |
| 643 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 644 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 645 | main.log.exception( self.name + ": Uncaught exception!" ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 646 | main.cleanup() |
| 647 | main.exit() |
| 648 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 649 | def links( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 650 | """ |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 651 | Lists all core links |
| 652 | Optional argument: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 653 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 654 | """ |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 655 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 656 | cmdStr = "links" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 657 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 658 | cmdStr += " -j" |
| 659 | handle = self.sendline( cmdStr ) |
| 660 | return handle |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 661 | except TypeError: |
| 662 | main.log.exception( self.name + ": Object not as expected" ) |
| 663 | return None |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 664 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 665 | main.log.error( self.name + ": EOF exception found" ) |
| 666 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 667 | main.cleanup() |
| 668 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 669 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 670 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 671 | main.cleanup() |
| 672 | main.exit() |
| 673 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 674 | def ports( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 675 | """ |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 676 | Lists all ports |
| 677 | Optional argument: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 678 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 679 | """ |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 680 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 681 | cmdStr = "ports" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 682 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 683 | cmdStr += " -j" |
| 684 | handle = self.sendline( cmdStr ) |
| 685 | return handle |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 686 | except TypeError: |
| 687 | main.log.exception( self.name + ": Object not as expected" ) |
| 688 | return None |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 689 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 690 | main.log.error( self.name + ": EOF exception found" ) |
| 691 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 692 | main.cleanup() |
| 693 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 694 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 695 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 696 | main.cleanup() |
| 697 | main.exit() |
| 698 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 699 | def roles( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 700 | """ |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 701 | Lists all devices and the controllers with roles assigned to them |
| 702 | Optional argument: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 703 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 704 | """ |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 705 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 706 | cmdStr = "roles" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 707 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 708 | cmdStr += " -j" |
| 709 | handle = self.sendline( cmdStr ) |
| 710 | return handle |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 711 | except TypeError: |
| 712 | main.log.exception( self.name + ": Object not as expected" ) |
| 713 | return None |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 714 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 715 | main.log.error( self.name + ": EOF exception found" ) |
| 716 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 717 | main.cleanup() |
| 718 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 719 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 720 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 721 | main.cleanup() |
| 722 | main.exit() |
| 723 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 724 | def getRole( self, deviceId ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 725 | """ |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 726 | Given the a string containing the json representation of the "roles" |
| 727 | cli command and a partial or whole device id, returns a json object |
| 728 | containing the roles output for the first device whose id contains |
| 729 | "device_id" |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 730 | |
| 731 | Returns: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 732 | A dict of the role assignments for the given device or |
| 733 | None if no match |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 734 | """ |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 735 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 736 | if deviceId is None: |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 737 | return None |
| 738 | else: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 739 | rawRoles = self.roles() |
| 740 | rolesJson = json.loads( rawRoles ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 741 | # search json for the device with id then return the device |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 742 | for device in rolesJson: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 743 | # print device |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 744 | if str( deviceId ) in device[ 'id' ]: |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 745 | return device |
| 746 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 747 | except TypeError: |
| 748 | main.log.exception( self.name + ": Object not as expected" ) |
| 749 | return None |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 750 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 751 | main.log.error( self.name + ": EOF exception found" ) |
| 752 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 753 | main.cleanup() |
| 754 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 755 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 756 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 757 | main.cleanup() |
| 758 | main.exit() |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 759 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 760 | def rolesNotNull( self ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 761 | """ |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 762 | Iterates through each device and checks if there is a master assigned |
| 763 | Returns: main.TRUE if each device has a master |
| 764 | main.FALSE any device has no master |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 765 | """ |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 766 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 767 | rawRoles = self.roles() |
| 768 | rolesJson = json.loads( rawRoles ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 769 | # search json for the device with id then return the device |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 770 | for device in rolesJson: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 771 | # print device |
| 772 | if device[ 'master' ] == "none": |
| 773 | main.log.warn( "Device has no master: " + str( device ) ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 774 | return main.FALSE |
| 775 | return main.TRUE |
| 776 | |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 777 | except TypeError: |
| 778 | main.log.exception( self.name + ": Object not as expected" ) |
| 779 | return None |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 780 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 781 | main.log.error( self.name + ": EOF exception found" ) |
| 782 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 783 | main.cleanup() |
| 784 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 785 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 786 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 787 | main.cleanup() |
| 788 | main.exit() |
| 789 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 790 | def paths( self, srcId, dstId ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 791 | """ |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 792 | Returns string of paths, and the cost. |
| 793 | Issues command: onos:paths <src> <dst> |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 794 | """ |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 795 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 796 | cmdStr = "onos:paths " + str( srcId ) + " " + str( dstId ) |
| 797 | handle = self.sendline( cmdStr ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 798 | if re.search( "Error", handle ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 799 | main.log.error( "Error in getting paths" ) |
| 800 | return ( handle, "Error" ) |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 801 | else: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 802 | path = handle.split( ";" )[ 0 ] |
| 803 | cost = handle.split( ";" )[ 1 ] |
| 804 | return ( path, cost ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 805 | except TypeError: |
| 806 | main.log.exception( self.name + ": Object not as expected" ) |
| 807 | return ( handle, "Error" ) |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 808 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 809 | main.log.error( self.name + ": EOF exception found" ) |
| 810 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 811 | main.cleanup() |
| 812 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 813 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 814 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 815 | main.cleanup() |
| 816 | main.exit() |
Jon Hall | ffb386d | 2014-11-21 13:43:38 -0800 | [diff] [blame] | 817 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 818 | def hosts( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 819 | """ |
Jon Hall | ffb386d | 2014-11-21 13:43:38 -0800 | [diff] [blame] | 820 | Lists all discovered hosts |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 821 | Optional argument: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 822 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 823 | """ |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 824 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 825 | cmdStr = "hosts" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 826 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 827 | cmdStr += " -j" |
| 828 | handle = self.sendline( cmdStr ) |
| 829 | return handle |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 830 | except TypeError: |
| 831 | main.log.exception( self.name + ": Object not as expected" ) |
| 832 | return None |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 833 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 834 | main.log.error( self.name + ": EOF exception found" ) |
| 835 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 836 | main.cleanup() |
| 837 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 838 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 839 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 840 | main.cleanup() |
| 841 | main.exit() |
| 842 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 843 | def getHost( self, mac ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 844 | """ |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 845 | Return the first host from the hosts api whose 'id' contains 'mac' |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 846 | |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 847 | Note: mac must be a colon separated mac address, but could be a |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 848 | partial mac address |
| 849 | |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 850 | Return None if there is no match |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 851 | """ |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 852 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 853 | if mac is None: |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 854 | return None |
| 855 | else: |
| 856 | mac = mac |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 857 | rawHosts = self.hosts() |
| 858 | hostsJson = json.loads( rawHosts ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 859 | # search json for the host with mac then return the device |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 860 | for host in hostsJson: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 861 | # print "%s in %s?" % ( mac, host[ 'id' ] ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 862 | if not host: |
| 863 | pass |
| 864 | elif mac in host[ 'id' ]: |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 865 | return host |
| 866 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 867 | except TypeError: |
| 868 | main.log.exception( self.name + ": Object not as expected" ) |
| 869 | return None |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 870 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 871 | main.log.error( self.name + ": EOF exception found" ) |
| 872 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 873 | main.cleanup() |
| 874 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 875 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 876 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 877 | main.cleanup() |
| 878 | main.exit() |
| 879 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 880 | def getHostsId( self, hostList ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 881 | """ |
| 882 | Obtain list of hosts |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 883 | Issues command: 'onos> hosts' |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 884 | |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 885 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 886 | * hostList: List of hosts obtained by Mininet |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 887 | IMPORTANT: |
| 888 | This function assumes that you started your |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 889 | topology with the option '--mac'. |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 890 | Furthermore, it assumes that value of VLAN is '-1' |
| 891 | Description: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 892 | Converts mininet hosts ( h1, h2, h3... ) into |
| 893 | ONOS format ( 00:00:00:00:00:01/-1 , ... ) |
| 894 | """ |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 895 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 896 | onosHostList = [] |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 897 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 898 | for host in hostList: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 899 | host = host.replace( "h", "" ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 900 | hostHex = hex( int( host ) ).zfill( 12 ) |
| 901 | hostHex = str( hostHex ).replace( 'x', '0' ) |
| 902 | i = iter( str( hostHex ) ) |
| 903 | hostHex = ":".join( a + b for a, b in zip( i, i ) ) |
| 904 | hostHex = hostHex + "/-1" |
| 905 | onosHostList.append( hostHex ) |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 906 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 907 | return onosHostList |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 908 | |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 909 | except TypeError: |
| 910 | main.log.exception( self.name + ": Object not as expected" ) |
| 911 | return None |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 912 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 913 | main.log.error( self.name + ": EOF exception found" ) |
| 914 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 915 | main.cleanup() |
| 916 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 917 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 918 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 919 | main.cleanup() |
| 920 | main.exit() |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 921 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 922 | def addHostIntent( self, hostIdOne, hostIdTwo ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 923 | """ |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 924 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 925 | * hostIdOne: ONOS host id for host1 |
| 926 | * hostIdTwo: ONOS host id for host2 |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 927 | Description: |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 928 | Adds a host-to-host intent ( bidirectional ) by |
Jon Hall | b1290e8 | 2014-11-18 16:17:48 -0500 | [diff] [blame] | 929 | specifying the two hosts. |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 930 | Returns: |
| 931 | A string of the intent id or None on Error |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 932 | """ |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 933 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 934 | cmdStr = "add-host-intent " + str( hostIdOne ) +\ |
| 935 | " " + str( hostIdTwo ) |
| 936 | handle = self.sendline( cmdStr ) |
Hari Krishna | ac4e178 | 2015-01-26 12:09:12 -0800 | [diff] [blame] | 937 | if re.search( "Error", handle ): |
| 938 | main.log.error( "Error in adding Host intent" ) |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 939 | main.log.debug( "Response from ONOS was: " + repr( handle ) ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 940 | return None |
Hari Krishna | ac4e178 | 2015-01-26 12:09:12 -0800 | [diff] [blame] | 941 | else: |
| 942 | main.log.info( "Host intent installed between " + |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 943 | str( hostIdOne ) + " and " + str( hostIdTwo ) ) |
| 944 | match = re.search('id=0x([\da-f]+),', handle) |
| 945 | if match: |
| 946 | return match.group()[3:-1] |
| 947 | else: |
| 948 | main.log.error( "Error, intent ID not found" ) |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 949 | main.log.debug( "Response from ONOS was: " + |
| 950 | repr( handle ) ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 951 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 952 | except TypeError: |
| 953 | main.log.exception( self.name + ": Object not as expected" ) |
| 954 | return None |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 955 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 956 | main.log.error( self.name + ": EOF exception found" ) |
| 957 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 958 | main.cleanup() |
| 959 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 960 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 961 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 962 | main.cleanup() |
| 963 | main.exit() |
| 964 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 965 | def addOpticalIntent( self, ingressDevice, egressDevice ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 966 | """ |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 967 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 968 | * ingressDevice: device id of ingress device |
| 969 | * egressDevice: device id of egress device |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 970 | Optional: |
| 971 | TODO: Still needs to be implemented via dev side |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 972 | Description: |
| 973 | Adds an optical intent by specifying an ingress and egress device |
| 974 | Returns: |
| 975 | A string of the intent id or None on error |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 976 | """ |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 977 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 978 | cmdStr = "add-optical-intent " + str( ingressDevice ) +\ |
| 979 | " " + str( egressDevice ) |
| 980 | handle = self.sendline( cmdStr ) |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 981 | # If error, return error message |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 982 | if re.search( "Error", handle ): |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 983 | main.log.error( "Error in adding Optical intent" ) |
| 984 | return None |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 985 | else: |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 986 | main.log.info( "Optical intent installed between " + |
| 987 | str( ingressDevice ) + " and " + |
| 988 | str( egressDevice ) ) |
| 989 | match = re.search('id=0x([\da-f]+),', handle) |
| 990 | if match: |
| 991 | return match.group()[3:-1] |
| 992 | else: |
| 993 | main.log.error( "Error, intent ID not found" ) |
| 994 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 995 | except TypeError: |
| 996 | main.log.exception( self.name + ": Object not as expected" ) |
| 997 | return None |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 998 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 999 | main.log.error( self.name + ": EOF exception found" ) |
| 1000 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 1001 | main.cleanup() |
| 1002 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1003 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1004 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 1005 | main.cleanup() |
| 1006 | main.exit() |
| 1007 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1008 | def addPointIntent( |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1009 | self, |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1010 | ingressDevice, |
| 1011 | egressDevice, |
| 1012 | portIngress="", |
| 1013 | portEgress="", |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1014 | ethType="", |
| 1015 | ethSrc="", |
| 1016 | ethDst="", |
| 1017 | bandwidth="", |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1018 | lambdaAlloc=False, |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1019 | ipProto="", |
| 1020 | ipSrc="", |
| 1021 | ipDst="", |
| 1022 | tcpSrc="", |
| 1023 | tcpDst="" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1024 | """ |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1025 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1026 | * ingressDevice: device id of ingress device |
| 1027 | * egressDevice: device id of egress device |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 1028 | Optional: |
| 1029 | * ethType: specify ethType |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1030 | * ethSrc: specify ethSrc ( i.e. src mac addr ) |
| 1031 | * ethDst: specify ethDst ( i.e. dst mac addr ) |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 1032 | * bandwidth: specify bandwidth capacity of link |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1033 | * lambdaAlloc: if True, intent will allocate lambda |
andrewonlab | 40ccd8b | 2014-11-06 16:23:34 -0500 | [diff] [blame] | 1034 | for the specified intent |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1035 | * ipProto: specify ip protocol |
andrewonlab | f77e0cb | 2014-11-11 17:17:59 -0500 | [diff] [blame] | 1036 | * ipSrc: specify ip source address |
| 1037 | * ipDst: specify ip destination address |
| 1038 | * tcpSrc: specify tcp source port |
| 1039 | * tcpDst: specify tcp destination port |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1040 | Description: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1041 | Adds a point-to-point intent ( uni-directional ) by |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 1042 | specifying device id's and optional fields |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1043 | Returns: |
| 1044 | A string of the intent id or None on error |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 1045 | |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1046 | NOTE: This function may change depending on the |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1047 | options developers provide for point-to-point |
| 1048 | intent via cli |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1049 | """ |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1050 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1051 | # If there are no optional arguments |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 1052 | if not ethType and not ethSrc and not ethDst\ |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1053 | and not bandwidth and not lambdaAlloc \ |
andrewonlab | fa4ff50 | 2014-11-11 16:41:30 -0500 | [diff] [blame] | 1054 | and not ipProto and not ipSrc and not ipDst \ |
| 1055 | and not tcpSrc and not tcpDst: |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1056 | cmd = "add-point-intent" |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1057 | |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 1058 | else: |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1059 | cmd = "add-point-intent" |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1060 | |
andrewonlab | 0c0a677 | 2014-10-22 12:31:18 -0400 | [diff] [blame] | 1061 | if ethType: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1062 | cmd += " --ethType " + str( ethType ) |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 1063 | if ethSrc: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1064 | cmd += " --ethSrc " + str( ethSrc ) |
| 1065 | if ethDst: |
| 1066 | cmd += " --ethDst " + str( ethDst ) |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 1067 | if bandwidth: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1068 | cmd += " --bandwidth " + str( bandwidth ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1069 | if lambdaAlloc: |
andrewonlab | fa4ff50 | 2014-11-11 16:41:30 -0500 | [diff] [blame] | 1070 | cmd += " --lambda " |
| 1071 | if ipProto: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1072 | cmd += " --ipProto " + str( ipProto ) |
andrewonlab | fa4ff50 | 2014-11-11 16:41:30 -0500 | [diff] [blame] | 1073 | if ipSrc: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1074 | cmd += " --ipSrc " + str( ipSrc ) |
andrewonlab | fa4ff50 | 2014-11-11 16:41:30 -0500 | [diff] [blame] | 1075 | if ipDst: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1076 | cmd += " --ipDst " + str( ipDst ) |
andrewonlab | fa4ff50 | 2014-11-11 16:41:30 -0500 | [diff] [blame] | 1077 | if tcpSrc: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1078 | cmd += " --tcpSrc " + str( tcpSrc ) |
andrewonlab | fa4ff50 | 2014-11-11 16:41:30 -0500 | [diff] [blame] | 1079 | if tcpDst: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1080 | cmd += " --tcpDst " + str( tcpDst ) |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 1081 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1082 | # Check whether the user appended the port |
| 1083 | # or provided it as an input |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1084 | if "/" in ingressDevice: |
| 1085 | cmd += " " + str( ingressDevice ) |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1086 | else: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1087 | if not portIngress: |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1088 | main.log.error( "You must specify the ingress port" ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1089 | # TODO: perhaps more meaningful return |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1090 | # Would it make sense to throw an exception and exit |
| 1091 | # the test? |
| 1092 | return None |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1093 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1094 | cmd += " " + \ |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1095 | str( ingressDevice ) + "/" +\ |
| 1096 | str( portIngress ) + " " |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1097 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1098 | if "/" in egressDevice: |
| 1099 | cmd += " " + str( egressDevice ) |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1100 | else: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1101 | if not portEgress: |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1102 | main.log.error( "You must specify the egress port" ) |
| 1103 | return None |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1104 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1105 | cmd += " " +\ |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1106 | str( egressDevice ) + "/" +\ |
| 1107 | str( portEgress ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1108 | |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1109 | handle = self.sendline( cmd ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1110 | # If error, return error message |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1111 | if re.search( "Error", handle ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1112 | main.log.error( "Error in adding point-to-point intent" ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1113 | return None |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1114 | else: |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1115 | # TODO: print out all the options in this message? |
| 1116 | main.log.info( "Point-to-point intent installed between " + |
| 1117 | str( ingressDevice ) + " and " + |
| 1118 | str( egressDevice ) ) |
| 1119 | match = re.search('id=0x([\da-f]+),', handle) |
| 1120 | if match: |
| 1121 | return match.group()[3:-1] |
| 1122 | else: |
| 1123 | main.log.error( "Error, intent ID not found" ) |
| 1124 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1125 | except TypeError: |
| 1126 | main.log.exception( self.name + ": Object not as expected" ) |
| 1127 | return None |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1128 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1129 | main.log.error( self.name + ": EOF exception found" ) |
| 1130 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1131 | main.cleanup() |
| 1132 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1133 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1134 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1135 | main.cleanup() |
| 1136 | main.exit() |
| 1137 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1138 | def addMultipointToSinglepointIntent( |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1139 | self, |
shahshreya | c2f9707 | 2015-03-19 17:04:29 -0700 | [diff] [blame] | 1140 | ingressDeviceList, |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1141 | egressDevice, |
shahshreya | c2f9707 | 2015-03-19 17:04:29 -0700 | [diff] [blame] | 1142 | portIngressList=None, |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1143 | portEgress="", |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1144 | ethType="", |
| 1145 | ethSrc="", |
| 1146 | ethDst="", |
| 1147 | bandwidth="", |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1148 | lambdaAlloc=False, |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1149 | ipProto="", |
| 1150 | ipSrc="", |
| 1151 | ipDst="", |
| 1152 | tcpSrc="", |
| 1153 | tcpDst="", |
| 1154 | setEthSrc="", |
| 1155 | setEthDst="" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1156 | """ |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1157 | Note: |
shahshreya | 70622b1 | 2015-03-19 17:19:00 -0700 | [diff] [blame] | 1158 | This function assumes the format of all ingress devices |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 1159 | is same. That is, all ingress devices include port numbers |
| 1160 | with a "/" or all ingress devices could specify device |
| 1161 | ids and port numbers seperately. |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1162 | Required: |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 1163 | * ingressDeviceList: List of device ids of ingress device |
shahshreya | c2f9707 | 2015-03-19 17:04:29 -0700 | [diff] [blame] | 1164 | ( Atleast 2 ingress devices required in the list ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1165 | * egressDevice: device id of egress device |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1166 | Optional: |
| 1167 | * ethType: specify ethType |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1168 | * ethSrc: specify ethSrc ( i.e. src mac addr ) |
| 1169 | * ethDst: specify ethDst ( i.e. dst mac addr ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1170 | * bandwidth: specify bandwidth capacity of link |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1171 | * lambdaAlloc: if True, intent will allocate lambda |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1172 | for the specified intent |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1173 | * ipProto: specify ip protocol |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1174 | * ipSrc: specify ip source address |
| 1175 | * ipDst: specify ip destination address |
| 1176 | * tcpSrc: specify tcp source port |
| 1177 | * tcpDst: specify tcp destination port |
| 1178 | * setEthSrc: action to Rewrite Source MAC Address |
| 1179 | * setEthDst: action to Rewrite Destination MAC Address |
| 1180 | Description: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1181 | Adds a multipoint-to-singlepoint intent ( uni-directional ) by |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1182 | specifying device id's and optional fields |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1183 | Returns: |
| 1184 | A string of the intent id or None on error |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1185 | |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1186 | NOTE: This function may change depending on the |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1187 | options developers provide for multipoint-to-singlepoint |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1188 | intent via cli |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1189 | """ |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1190 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1191 | # If there are no optional arguments |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1192 | if not ethType and not ethSrc and not ethDst\ |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1193 | and not bandwidth and not lambdaAlloc\ |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1194 | and not ipProto and not ipSrc and not ipDst\ |
| 1195 | and not tcpSrc and not tcpDst and not setEthSrc\ |
| 1196 | and not setEthDst: |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1197 | cmd = "add-multi-to-single-intent" |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1198 | |
| 1199 | else: |
| 1200 | cmd = "add-multi-to-single-intent" |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1201 | |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1202 | if ethType: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1203 | cmd += " --ethType " + str( ethType ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1204 | if ethSrc: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1205 | cmd += " --ethSrc " + str( ethSrc ) |
| 1206 | if ethDst: |
| 1207 | cmd += " --ethDst " + str( ethDst ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1208 | if bandwidth: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1209 | cmd += " --bandwidth " + str( bandwidth ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1210 | if lambdaAlloc: |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1211 | cmd += " --lambda " |
| 1212 | if ipProto: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1213 | cmd += " --ipProto " + str( ipProto ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1214 | if ipSrc: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1215 | cmd += " --ipSrc " + str( ipSrc ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1216 | if ipDst: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1217 | cmd += " --ipDst " + str( ipDst ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1218 | if tcpSrc: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1219 | cmd += " --tcpSrc " + str( tcpSrc ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1220 | if tcpDst: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1221 | cmd += " --tcpDst " + str( tcpDst ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1222 | if setEthSrc: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1223 | cmd += " --setEthSrc " + str( setEthSrc ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1224 | if setEthDst: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1225 | cmd += " --setEthDst " + str( setEthDst ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1226 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1227 | # Check whether the user appended the port |
| 1228 | # or provided it as an input |
shahshreya | c2f9707 | 2015-03-19 17:04:29 -0700 | [diff] [blame] | 1229 | |
| 1230 | if portIngressList is None: |
| 1231 | for ingressDevice in ingressDeviceList: |
| 1232 | if "/" in ingressDevice: |
| 1233 | cmd += " " + str( ingressDevice ) |
| 1234 | else: |
| 1235 | main.log.error( "You must specify " + |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 1236 | "the ingress port" ) |
shahshreya | c2f9707 | 2015-03-19 17:04:29 -0700 | [diff] [blame] | 1237 | # TODO: perhaps more meaningful return |
| 1238 | return main.FALSE |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1239 | else: |
Jon Hall | 71ce4e7 | 2015-03-23 14:05:58 -0700 | [diff] [blame] | 1240 | if len( ingressDeviceList ) == len( portIngressList ): |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 1241 | for ingressDevice, portIngress in zip( ingressDeviceList, |
| 1242 | portIngressList ): |
shahshreya | 70622b1 | 2015-03-19 17:19:00 -0700 | [diff] [blame] | 1243 | cmd += " " + \ |
| 1244 | str( ingressDevice ) + "/" +\ |
| 1245 | str( portIngress ) + " " |
kelvin-onlab | 3814381 | 2015-04-01 15:03:01 -0700 | [diff] [blame] | 1246 | else: |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 1247 | main.log.error( "Device list and port list does not " + |
| 1248 | "have the same length" ) |
kelvin-onlab | 3814381 | 2015-04-01 15:03:01 -0700 | [diff] [blame] | 1249 | return main.FALSE |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1250 | if "/" in egressDevice: |
| 1251 | cmd += " " + str( egressDevice ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1252 | else: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1253 | if not portEgress: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1254 | main.log.error( "You must specify " + |
| 1255 | "the egress port" ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1256 | return main.FALSE |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1257 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1258 | cmd += " " +\ |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1259 | str( egressDevice ) + "/" +\ |
| 1260 | str( portEgress ) |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1261 | handle = self.sendline( cmd ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1262 | # If error, return error message |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1263 | if re.search( "Error", handle ): |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1264 | main.log.error( "Error in adding multipoint-to-singlepoint " + |
| 1265 | "intent" ) |
| 1266 | return None |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1267 | else: |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1268 | match = re.search('id=0x([\da-f]+),', handle) |
| 1269 | if match: |
| 1270 | return match.group()[3:-1] |
| 1271 | else: |
| 1272 | main.log.error( "Error, intent ID not found" ) |
| 1273 | return None |
| 1274 | except TypeError: |
| 1275 | main.log.exception( self.name + ": Object not as expected" ) |
| 1276 | return None |
| 1277 | except pexpect.EOF: |
| 1278 | main.log.error( self.name + ": EOF exception found" ) |
| 1279 | main.log.error( self.name + ": " + self.handle.before ) |
| 1280 | main.cleanup() |
| 1281 | main.exit() |
| 1282 | except Exception: |
| 1283 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 1284 | main.cleanup() |
| 1285 | main.exit() |
| 1286 | |
| 1287 | def addSinglepointToMultipointIntent( |
| 1288 | self, |
| 1289 | ingressDevice, |
| 1290 | egressDeviceList, |
| 1291 | portIngress="", |
| 1292 | portEgressList=None, |
| 1293 | ethType="", |
| 1294 | ethSrc="", |
| 1295 | ethDst="", |
| 1296 | bandwidth="", |
| 1297 | lambdaAlloc=False, |
| 1298 | ipProto="", |
| 1299 | ipSrc="", |
| 1300 | ipDst="", |
| 1301 | tcpSrc="", |
| 1302 | tcpDst="", |
| 1303 | setEthSrc="", |
| 1304 | setEthDst="" ): |
| 1305 | """ |
| 1306 | Note: |
| 1307 | This function assumes the format of all egress devices |
| 1308 | is same. That is, all egress devices include port numbers |
| 1309 | with a "/" or all egress devices could specify device |
| 1310 | ids and port numbers seperately. |
| 1311 | Required: |
| 1312 | * EgressDeviceList: List of device ids of egress device |
| 1313 | ( Atleast 2 eress devices required in the list ) |
| 1314 | * ingressDevice: device id of ingress device |
| 1315 | Optional: |
| 1316 | * ethType: specify ethType |
| 1317 | * ethSrc: specify ethSrc ( i.e. src mac addr ) |
| 1318 | * ethDst: specify ethDst ( i.e. dst mac addr ) |
| 1319 | * bandwidth: specify bandwidth capacity of link |
| 1320 | * lambdaAlloc: if True, intent will allocate lambda |
| 1321 | for the specified intent |
| 1322 | * ipProto: specify ip protocol |
| 1323 | * ipSrc: specify ip source address |
| 1324 | * ipDst: specify ip destination address |
| 1325 | * tcpSrc: specify tcp source port |
| 1326 | * tcpDst: specify tcp destination port |
| 1327 | * setEthSrc: action to Rewrite Source MAC Address |
| 1328 | * setEthDst: action to Rewrite Destination MAC Address |
| 1329 | Description: |
| 1330 | Adds a singlepoint-to-multipoint intent ( uni-directional ) by |
| 1331 | specifying device id's and optional fields |
| 1332 | Returns: |
| 1333 | A string of the intent id or None on error |
| 1334 | |
| 1335 | NOTE: This function may change depending on the |
| 1336 | options developers provide for singlepoint-to-multipoint |
| 1337 | intent via cli |
| 1338 | """ |
| 1339 | try: |
| 1340 | # If there are no optional arguments |
| 1341 | if not ethType and not ethSrc and not ethDst\ |
| 1342 | and not bandwidth and not lambdaAlloc\ |
| 1343 | and not ipProto and not ipSrc and not ipDst\ |
| 1344 | and not tcpSrc and not tcpDst and not setEthSrc\ |
| 1345 | and not setEthDst: |
| 1346 | cmd = "add-single-to-multi-intent" |
| 1347 | |
| 1348 | else: |
| 1349 | cmd = "add-single-to-multi-intent" |
| 1350 | |
| 1351 | if ethType: |
| 1352 | cmd += " --ethType " + str( ethType ) |
| 1353 | if ethSrc: |
| 1354 | cmd += " --ethSrc " + str( ethSrc ) |
| 1355 | if ethDst: |
| 1356 | cmd += " --ethDst " + str( ethDst ) |
| 1357 | if bandwidth: |
| 1358 | cmd += " --bandwidth " + str( bandwidth ) |
| 1359 | if lambdaAlloc: |
| 1360 | cmd += " --lambda " |
| 1361 | if ipProto: |
| 1362 | cmd += " --ipProto " + str( ipProto ) |
| 1363 | if ipSrc: |
| 1364 | cmd += " --ipSrc " + str( ipSrc ) |
| 1365 | if ipDst: |
| 1366 | cmd += " --ipDst " + str( ipDst ) |
| 1367 | if tcpSrc: |
| 1368 | cmd += " --tcpSrc " + str( tcpSrc ) |
| 1369 | if tcpDst: |
| 1370 | cmd += " --tcpDst " + str( tcpDst ) |
| 1371 | if setEthSrc: |
| 1372 | cmd += " --setEthSrc " + str( setEthSrc ) |
| 1373 | if setEthDst: |
| 1374 | cmd += " --setEthDst " + str( setEthDst ) |
| 1375 | |
| 1376 | # Check whether the user appended the port |
| 1377 | # or provided it as an input |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 1378 | |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1379 | if "/" in ingressDevice: |
| 1380 | cmd += " " + str( ingressDevice ) |
| 1381 | else: |
| 1382 | if not portIngress: |
| 1383 | main.log.error( "You must specify " + |
| 1384 | "the Ingress port" ) |
| 1385 | return main.FALSE |
| 1386 | |
| 1387 | cmd += " " +\ |
| 1388 | str( ingressDevice ) + "/" +\ |
| 1389 | str( portIngress ) |
| 1390 | |
| 1391 | if portEgressList is None: |
| 1392 | for egressDevice in egressDeviceList: |
| 1393 | if "/" in egressDevice: |
| 1394 | cmd += " " + str( egressDevice ) |
| 1395 | else: |
| 1396 | main.log.error( "You must specify " + |
| 1397 | "the egress port" ) |
| 1398 | # TODO: perhaps more meaningful return |
| 1399 | return main.FALSE |
| 1400 | else: |
| 1401 | if len( egressDeviceList ) == len( portEgressList ): |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 1402 | for egressDevice, portEgress in zip( egressDeviceList, |
| 1403 | portEgressList ): |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1404 | cmd += " " + \ |
| 1405 | str( egressDevice ) + "/" +\ |
| 1406 | str( portEgress ) |
kelvin-onlab | 3814381 | 2015-04-01 15:03:01 -0700 | [diff] [blame] | 1407 | else: |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 1408 | main.log.error( "Device list and port list does not " + |
| 1409 | "have the same length" ) |
kelvin-onlab | 3814381 | 2015-04-01 15:03:01 -0700 | [diff] [blame] | 1410 | return main.FALSE |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1411 | handle = self.sendline( cmd ) |
| 1412 | # If error, return error message |
| 1413 | if re.search( "Error", handle ): |
| 1414 | main.log.error( "Error in adding singlepoint-to-multipoint " + |
| 1415 | "intent" ) |
shahshreya | c2f9707 | 2015-03-19 17:04:29 -0700 | [diff] [blame] | 1416 | return None |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1417 | else: |
| 1418 | match = re.search('id=0x([\da-f]+),', handle) |
| 1419 | if match: |
| 1420 | return match.group()[3:-1] |
| 1421 | else: |
| 1422 | main.log.error( "Error, intent ID not found" ) |
| 1423 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1424 | except TypeError: |
| 1425 | main.log.exception( self.name + ": Object not as expected" ) |
| 1426 | return None |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1427 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1428 | main.log.error( self.name + ": EOF exception found" ) |
| 1429 | main.log.error( self.name + ": " + self.handle.before ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1430 | main.cleanup() |
| 1431 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1432 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1433 | main.log.exception( self.name + ": Uncaught exception!" ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1434 | main.cleanup() |
| 1435 | main.exit() |
| 1436 | |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1437 | def addMplsIntent( |
| 1438 | self, |
| 1439 | ingressDevice, |
| 1440 | egressDevice, |
Hari Krishna | 87a17f1 | 2015-04-13 17:42:23 -0700 | [diff] [blame] | 1441 | ingressPort="", |
| 1442 | egressPort="", |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1443 | ethType="", |
| 1444 | ethSrc="", |
| 1445 | ethDst="", |
| 1446 | bandwidth="", |
| 1447 | lambdaAlloc=False, |
| 1448 | ipProto="", |
| 1449 | ipSrc="", |
| 1450 | ipDst="", |
| 1451 | tcpSrc="", |
| 1452 | tcpDst="", |
Hari Krishna | 87a17f1 | 2015-04-13 17:42:23 -0700 | [diff] [blame] | 1453 | ingressLabel="", |
Hari Krishna | dfff667 | 2015-04-13 17:53:27 -0700 | [diff] [blame] | 1454 | egressLabel="", |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1455 | priority=""): |
| 1456 | """ |
| 1457 | Required: |
| 1458 | * ingressDevice: device id of ingress device |
| 1459 | * egressDevice: device id of egress device |
| 1460 | Optional: |
| 1461 | * ethType: specify ethType |
| 1462 | * ethSrc: specify ethSrc ( i.e. src mac addr ) |
| 1463 | * ethDst: specify ethDst ( i.e. dst mac addr ) |
| 1464 | * bandwidth: specify bandwidth capacity of link |
| 1465 | * lambdaAlloc: if True, intent will allocate lambda |
| 1466 | for the specified intent |
| 1467 | * ipProto: specify ip protocol |
| 1468 | * ipSrc: specify ip source address |
| 1469 | * ipDst: specify ip destination address |
| 1470 | * tcpSrc: specify tcp source port |
| 1471 | * tcpDst: specify tcp destination port |
| 1472 | * ingressLabel: Ingress MPLS label |
| 1473 | * egressLabel: Egress MPLS label |
| 1474 | Description: |
| 1475 | Adds MPLS intent by |
| 1476 | specifying device id's and optional fields |
| 1477 | Returns: |
| 1478 | A string of the intent id or None on error |
| 1479 | |
| 1480 | NOTE: This function may change depending on the |
| 1481 | options developers provide for MPLS |
| 1482 | intent via cli |
| 1483 | """ |
| 1484 | try: |
| 1485 | # If there are no optional arguments |
| 1486 | if not ethType and not ethSrc and not ethDst\ |
| 1487 | and not bandwidth and not lambdaAlloc \ |
| 1488 | and not ipProto and not ipSrc and not ipDst \ |
| 1489 | and not tcpSrc and not tcpDst and not ingressLabel \ |
| 1490 | and not egressLabel: |
| 1491 | cmd = "add-mpls-intent" |
| 1492 | |
| 1493 | else: |
| 1494 | cmd = "add-mpls-intent" |
| 1495 | |
| 1496 | if ethType: |
| 1497 | cmd += " --ethType " + str( ethType ) |
| 1498 | if ethSrc: |
| 1499 | cmd += " --ethSrc " + str( ethSrc ) |
| 1500 | if ethDst: |
| 1501 | cmd += " --ethDst " + str( ethDst ) |
| 1502 | if bandwidth: |
| 1503 | cmd += " --bandwidth " + str( bandwidth ) |
| 1504 | if lambdaAlloc: |
| 1505 | cmd += " --lambda " |
| 1506 | if ipProto: |
| 1507 | cmd += " --ipProto " + str( ipProto ) |
| 1508 | if ipSrc: |
| 1509 | cmd += " --ipSrc " + str( ipSrc ) |
| 1510 | if ipDst: |
| 1511 | cmd += " --ipDst " + str( ipDst ) |
| 1512 | if tcpSrc: |
| 1513 | cmd += " --tcpSrc " + str( tcpSrc ) |
| 1514 | if tcpDst: |
| 1515 | cmd += " --tcpDst " + str( tcpDst ) |
| 1516 | if ingressLabel: |
| 1517 | cmd += " --ingressLabel " + str( ingressLabel ) |
| 1518 | if egressLabel: |
| 1519 | cmd += " --egressLabel " + str( egressLabel ) |
| 1520 | if priority: |
| 1521 | cmd += " --priority " + str( priority ) |
| 1522 | |
| 1523 | # Check whether the user appended the port |
| 1524 | # or provided it as an input |
| 1525 | if "/" in ingressDevice: |
| 1526 | cmd += " " + str( ingressDevice ) |
| 1527 | else: |
Hari Krishna | 87a17f1 | 2015-04-13 17:42:23 -0700 | [diff] [blame] | 1528 | if not ingressPort: |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1529 | main.log.error( "You must specify the ingress port" ) |
| 1530 | return None |
| 1531 | |
| 1532 | cmd += " " + \ |
| 1533 | str( ingressDevice ) + "/" +\ |
Hari Krishna | 87a17f1 | 2015-04-13 17:42:23 -0700 | [diff] [blame] | 1534 | str( ingressPort ) + " " |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1535 | |
| 1536 | if "/" in egressDevice: |
| 1537 | cmd += " " + str( egressDevice ) |
| 1538 | else: |
Hari Krishna | 87a17f1 | 2015-04-13 17:42:23 -0700 | [diff] [blame] | 1539 | if not egressPort: |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1540 | main.log.error( "You must specify the egress port" ) |
| 1541 | return None |
| 1542 | |
| 1543 | cmd += " " +\ |
| 1544 | str( egressDevice ) + "/" +\ |
Hari Krishna | 87a17f1 | 2015-04-13 17:42:23 -0700 | [diff] [blame] | 1545 | str( egressPort ) |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1546 | |
| 1547 | handle = self.sendline( cmd ) |
| 1548 | # If error, return error message |
| 1549 | if re.search( "Error", handle ): |
| 1550 | main.log.error( "Error in adding mpls intent" ) |
| 1551 | return None |
| 1552 | else: |
| 1553 | # TODO: print out all the options in this message? |
| 1554 | main.log.info( "MPLS intent installed between " + |
| 1555 | str( ingressDevice ) + " and " + |
| 1556 | str( egressDevice ) ) |
| 1557 | match = re.search('id=0x([\da-f]+),', handle) |
| 1558 | if match: |
| 1559 | return match.group()[3:-1] |
| 1560 | else: |
| 1561 | main.log.error( "Error, intent ID not found" ) |
| 1562 | return None |
| 1563 | except TypeError: |
| 1564 | main.log.exception( self.name + ": Object not as expected" ) |
| 1565 | return None |
| 1566 | except pexpect.EOF: |
| 1567 | main.log.error( self.name + ": EOF exception found" ) |
| 1568 | main.log.error( self.name + ": " + self.handle.before ) |
| 1569 | main.cleanup() |
| 1570 | main.exit() |
| 1571 | except Exception: |
| 1572 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 1573 | main.cleanup() |
| 1574 | main.exit() |
| 1575 | |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1576 | def removeIntent( self, intentId, app='org.onosproject.cli', |
| 1577 | purge=False, sync=False ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1578 | """ |
shahshreya | 1c818fc | 2015-02-26 13:44:08 -0800 | [diff] [blame] | 1579 | Remove intent for specified application id and intent id |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 1580 | Optional args:- |
shahshreya | 1c818fc | 2015-02-26 13:44:08 -0800 | [diff] [blame] | 1581 | -s or --sync: Waits for the removal before returning |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 1582 | -p or --purge: Purge the intent from the store after removal |
| 1583 | |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1584 | Returns: |
| 1585 | main.False on error and |
| 1586 | cli output otherwise |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1587 | """ |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1588 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1589 | cmdStr = "remove-intent" |
shahshreya | 1c818fc | 2015-02-26 13:44:08 -0800 | [diff] [blame] | 1590 | if purge: |
| 1591 | cmdStr += " -p" |
| 1592 | if sync: |
| 1593 | cmdStr += " -s" |
| 1594 | |
| 1595 | cmdStr += " " + app + " " + str( intentId ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1596 | handle = self.sendline( cmdStr ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1597 | if re.search( "Error", handle ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1598 | main.log.error( "Error in removing intent" ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1599 | return main.FALSE |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1600 | else: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1601 | # TODO: Should this be main.TRUE |
| 1602 | return handle |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1603 | except TypeError: |
| 1604 | main.log.exception( self.name + ": Object not as expected" ) |
| 1605 | return None |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1606 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1607 | main.log.error( self.name + ": EOF exception found" ) |
| 1608 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1609 | main.cleanup() |
| 1610 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1611 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1612 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1613 | main.cleanup() |
| 1614 | main.exit() |
| 1615 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1616 | def routes( self, jsonFormat=False ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1617 | """ |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1618 | NOTE: This method should be used after installing application: |
| 1619 | onos-app-sdnip |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 1620 | Optional: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1621 | * jsonFormat: enable output formatting in json |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 1622 | Description: |
| 1623 | Obtain all routes in the system |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1624 | """ |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 1625 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1626 | cmdStr = "routes" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1627 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1628 | cmdStr += " -j" |
| 1629 | handle = self.sendline( cmdStr ) |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 1630 | return handle |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1631 | except TypeError: |
| 1632 | main.log.exception( self.name + ": Object not as expected" ) |
| 1633 | return None |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 1634 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1635 | main.log.error( self.name + ": EOF exception found" ) |
| 1636 | main.log.error( self.name + ": " + self.handle.before ) |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 1637 | main.cleanup() |
| 1638 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1639 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1640 | main.log.exception( self.name + ": Uncaught exception!" ) |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 1641 | main.cleanup() |
| 1642 | main.exit() |
| 1643 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1644 | def intents( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1645 | """ |
andrewonlab | 377693f | 2014-10-21 16:00:30 -0400 | [diff] [blame] | 1646 | Optional: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1647 | * jsonFormat: enable output formatting in json |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1648 | Description: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1649 | Obtain intents currently installed |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1650 | """ |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1651 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1652 | cmdStr = "intents" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1653 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1654 | cmdStr += " -j" |
| 1655 | handle = self.sendline( cmdStr ) |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1656 | return handle |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1657 | except TypeError: |
| 1658 | main.log.exception( self.name + ": Object not as expected" ) |
| 1659 | return None |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1660 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1661 | main.log.error( self.name + ": EOF exception found" ) |
| 1662 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1663 | main.cleanup() |
| 1664 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1665 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1666 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1667 | main.cleanup() |
| 1668 | main.exit() |
| 1669 | |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1670 | def getIntentState(self, intentsId, intentsJson=None): |
| 1671 | """ |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1672 | Check intent state. |
| 1673 | Accepts a single intent ID (string type) or a list of intent IDs. |
| 1674 | Returns the state(string type) of the id if a single intent ID is |
| 1675 | accepted. |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1676 | Returns a dictionary with intent IDs as the key and its |
| 1677 | corresponding states as the values |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1678 | Parameters: |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1679 | intentId: intent ID (string type) |
| 1680 | intentsJson: parsed json object from the onos:intents api |
| 1681 | Returns: |
| 1682 | state = An intent's state- INSTALL,WITHDRAWN etc. |
| 1683 | stateDict = Dictionary of intent's state. intent ID as the keys and |
| 1684 | state as the values. |
| 1685 | """ |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1686 | try: |
| 1687 | state = "State is Undefined" |
| 1688 | if not intentsJson: |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1689 | intentsJsonTemp = json.loads( self.intents() ) |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1690 | else: |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1691 | intentsJsonTemp = json.loads( intentsJson ) |
| 1692 | if isinstance( intentsId, types.StringType ): |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1693 | for intent in intentsJsonTemp: |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 1694 | if intentsId == intent[ 'id' ]: |
| 1695 | state = intent[ 'state' ] |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1696 | return state |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1697 | main.log.info( "Cannot find intent ID" + str( intentsId ) + |
| 1698 | " on the list" ) |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1699 | return state |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1700 | elif isinstance( intentsId, types.ListType ): |
kelvin-onlab | 07dbd01 | 2015-03-04 16:29:39 -0800 | [diff] [blame] | 1701 | dictList = [] |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 1702 | for i in xrange( len( intentsId ) ): |
kelvin-onlab | 07dbd01 | 2015-03-04 16:29:39 -0800 | [diff] [blame] | 1703 | stateDict = {} |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1704 | for intents in intentsJsonTemp: |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 1705 | if intentsId[ i ] == intents[ 'id' ]: |
| 1706 | stateDict[ 'state' ] = intents[ 'state' ] |
| 1707 | stateDict[ 'id' ] = intentsId[ i ] |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1708 | dictList.append( stateDict ) |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1709 | break |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1710 | if len( intentsId ) != len( dictList ): |
| 1711 | main.log.info( "Cannot find some of the intent ID state" ) |
kelvin-onlab | 07dbd01 | 2015-03-04 16:29:39 -0800 | [diff] [blame] | 1712 | return dictList |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1713 | else: |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 1714 | main.log.info( "Invalid intents ID entry" ) |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1715 | return None |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1716 | except TypeError: |
| 1717 | main.log.exception( self.name + ": Object not as expected" ) |
| 1718 | return None |
| 1719 | except pexpect.EOF: |
| 1720 | main.log.error( self.name + ": EOF exception found" ) |
| 1721 | main.log.error( self.name + ": " + self.handle.before ) |
| 1722 | main.cleanup() |
| 1723 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1724 | except Exception: |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1725 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 1726 | main.cleanup() |
| 1727 | main.exit() |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 1728 | |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 1729 | def checkIntentState( self, intentsId, expectedState = 'INSTALLED' ): |
| 1730 | """ |
| 1731 | Description: |
| 1732 | Check intents state |
| 1733 | Required: |
| 1734 | intentsId - List of intents ID to be checked |
| 1735 | Optional: |
| 1736 | expectedState - Check this expected state of each intents state |
| 1737 | in the list. Defaults to INSTALLED |
| 1738 | Return: |
| 1739 | Returns main.TRUE only if all intent are the same as expectedState, |
| 1740 | , otherwise,returns main.FALSE. |
| 1741 | """ |
| 1742 | try: |
| 1743 | # Generating a dictionary: intent id as a key and state as value |
| 1744 | intentsDict = self.getIntentState( intentsId ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 1745 | #print "len of intentsDict ", str( len( intentsDict ) ) |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 1746 | if len( intentsId ) != len( intentsDict ): |
| 1747 | main.log.info( self.name + "There is something wrong " + |
| 1748 | "getting intents state" ) |
| 1749 | return main.FALSE |
| 1750 | returnValue = main.TRUE |
| 1751 | for intents in intentsDict: |
| 1752 | if intents.get( 'state' ) != expectedState: |
| 1753 | main.log.info( self.name + " : " + intents.get( 'id' ) + |
| 1754 | " actual state = " + intents.get( 'state' ) |
| 1755 | + " does not equal expected state = " |
| 1756 | + expectedState ) |
| 1757 | returnValue = main.FALSE |
| 1758 | if returnValue == main.TRUE: |
| 1759 | main.log.info( self.name + ": All " + |
| 1760 | str( len( intentsDict ) ) + |
| 1761 | " intents are in " + expectedState + " state") |
| 1762 | return returnValue |
| 1763 | except TypeError: |
| 1764 | main.log.exception( self.name + ": Object not as expected" ) |
| 1765 | return None |
| 1766 | except pexpect.EOF: |
| 1767 | main.log.error( self.name + ": EOF exception found" ) |
| 1768 | main.log.error( self.name + ": " + self.handle.before ) |
| 1769 | main.cleanup() |
| 1770 | main.exit() |
| 1771 | except Exception: |
| 1772 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 1773 | main.cleanup() |
| 1774 | main.exit() |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 1775 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1776 | def flows( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1777 | """ |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 1778 | Optional: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1779 | * jsonFormat: enable output formatting in json |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 1780 | Description: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1781 | Obtain flows currently installed |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1782 | """ |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 1783 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1784 | cmdStr = "flows" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1785 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1786 | cmdStr += " -j" |
| 1787 | handle = self.sendline( cmdStr ) |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 1788 | if re.search( "Error:", handle ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1789 | main.log.error( self.name + ".flows() response: " + |
| 1790 | str( handle ) ) |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 1791 | return handle |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1792 | except TypeError: |
| 1793 | main.log.exception( self.name + ": Object not as expected" ) |
| 1794 | return None |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 1795 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1796 | main.log.error( self.name + ": EOF exception found" ) |
| 1797 | main.log.error( self.name + ": " + self.handle.before ) |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 1798 | main.cleanup() |
| 1799 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1800 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1801 | main.log.exception( self.name + ": Uncaught exception!" ) |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 1802 | main.cleanup() |
| 1803 | main.exit() |
| 1804 | |
kelvin-onlab | 4df89f2 | 2015-04-13 18:10:23 -0700 | [diff] [blame] | 1805 | def checkFlowsState( self ): |
| 1806 | """ |
| 1807 | Description: |
| 1808 | Check the if all the current flows are in ADDED state or |
| 1809 | PENDING_ADD state |
| 1810 | Return: |
| 1811 | returnValue - Returns main.TRUE only if all flows are in |
| 1812 | ADDED state or PENDING_ADD, return main.FALSE |
| 1813 | otherwise. |
| 1814 | """ |
| 1815 | try: |
| 1816 | tempFlows = json.loads( self.flows() ) |
kelvin-onlab | f0594d7 | 2015-05-19 17:25:12 -0700 | [diff] [blame] | 1817 | #print tempFlows[0] |
kelvin-onlab | 4df89f2 | 2015-04-13 18:10:23 -0700 | [diff] [blame] | 1818 | returnValue = main.TRUE |
kelvin-onlab | f0594d7 | 2015-05-19 17:25:12 -0700 | [diff] [blame] | 1819 | |
kelvin-onlab | 4df89f2 | 2015-04-13 18:10:23 -0700 | [diff] [blame] | 1820 | for device in tempFlows: |
| 1821 | for flow in device.get( 'flows' ): |
| 1822 | if flow.get( 'state' ) != 'ADDED' and flow.get( 'state' ) != \ |
| 1823 | 'PENDING_ADD': |
kelvin-onlab | f2ec6e0 | 2015-05-27 14:15:28 -0700 | [diff] [blame] | 1824 | |
kelvin-onlab | 4df89f2 | 2015-04-13 18:10:23 -0700 | [diff] [blame] | 1825 | main.log.info( self.name + ": flow Id: " + |
kelvin-onlab | f2ec6e0 | 2015-05-27 14:15:28 -0700 | [diff] [blame] | 1826 | str( flow.get( 'groupId' ) ) + |
| 1827 | " | state:" + |
| 1828 | str( flow.get( 'state' ) ) ) |
kelvin-onlab | 4df89f2 | 2015-04-13 18:10:23 -0700 | [diff] [blame] | 1829 | returnValue = main.FALSE |
kelvin-onlab | f0594d7 | 2015-05-19 17:25:12 -0700 | [diff] [blame] | 1830 | |
kelvin-onlab | 4df89f2 | 2015-04-13 18:10:23 -0700 | [diff] [blame] | 1831 | return returnValue |
| 1832 | except TypeError: |
| 1833 | main.log.exception( self.name + ": Object not as expected" ) |
| 1834 | return None |
| 1835 | except pexpect.EOF: |
| 1836 | main.log.error( self.name + ": EOF exception found" ) |
| 1837 | main.log.error( self.name + ": " + self.handle.before ) |
| 1838 | main.cleanup() |
| 1839 | main.exit() |
| 1840 | except Exception: |
| 1841 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 1842 | main.cleanup() |
| 1843 | main.exit() |
| 1844 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1845 | def pushTestIntents( self, dpidSrc, dpidDst, numIntents, |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1846 | numMult="", appId="", report=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1847 | """ |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 1848 | Description: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1849 | Push a number of intents in a batch format to |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 1850 | a specific point-to-point intent definition |
| 1851 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1852 | * dpidSrc: specify source dpid |
| 1853 | * dpidDst: specify destination dpid |
| 1854 | * numIntents: specify number of intents to push |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 1855 | Optional: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1856 | * numMult: number multiplier for multiplying |
andrewonlab | b66dfa1 | 2014-12-02 15:51:10 -0500 | [diff] [blame] | 1857 | the number of intents specified |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1858 | * appId: specify the application id init to further |
andrewonlab | b66dfa1 | 2014-12-02 15:51:10 -0500 | [diff] [blame] | 1859 | modularize the intents |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 1860 | * report: default True, returns latency information |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1861 | """ |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 1862 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1863 | cmd = "push-test-intents " +\ |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1864 | str( dpidSrc ) + " " + str( dpidDst ) + " " +\ |
| 1865 | str( numIntents ) |
| 1866 | if numMult: |
| 1867 | cmd += " " + str( numMult ) |
| 1868 | # If app id is specified, then numMult |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1869 | # must exist because of the way this command |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1870 | if appId: |
| 1871 | cmd += " " + str( appId ) |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1872 | handle = self.sendline( cmd ) |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 1873 | if report: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1874 | latResult = [] |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1875 | main.log.info( handle ) |
| 1876 | # Split result by newline |
| 1877 | newline = handle.split( "\r\r\n" ) |
| 1878 | # Ignore the first object of list, which is empty |
| 1879 | newline = newline[ 1: ] |
| 1880 | # Some sloppy parsing method to get the latency |
andrewonlab | b66dfa1 | 2014-12-02 15:51:10 -0500 | [diff] [blame] | 1881 | for result in newline: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1882 | result = result.split( ": " ) |
| 1883 | # Append the first result of second parse |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1884 | latResult.append( result[ 1 ].split( " " )[ 0 ] ) |
| 1885 | main.log.info( latResult ) |
| 1886 | return latResult |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 1887 | else: |
| 1888 | return main.TRUE |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1889 | except TypeError: |
| 1890 | main.log.exception( self.name + ": Object not as expected" ) |
| 1891 | return None |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 1892 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1893 | main.log.error( self.name + ": EOF exception found" ) |
| 1894 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 1895 | main.cleanup() |
| 1896 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1897 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1898 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 1899 | main.cleanup() |
| 1900 | main.exit() |
| 1901 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1902 | def intentsEventsMetrics( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1903 | """ |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1904 | Description:Returns topology metrics |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 1905 | Optional: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1906 | * jsonFormat: enable json formatting of output |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1907 | """ |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 1908 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1909 | cmdStr = "intents-events-metrics" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1910 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1911 | cmdStr += " -j" |
| 1912 | handle = self.sendline( cmdStr ) |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 1913 | return handle |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1914 | except TypeError: |
| 1915 | main.log.exception( self.name + ": Object not as expected" ) |
| 1916 | return None |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 1917 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1918 | main.log.error( self.name + ": EOF exception found" ) |
| 1919 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 1920 | main.cleanup() |
| 1921 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1922 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1923 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 1924 | main.cleanup() |
| 1925 | main.exit() |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 1926 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1927 | def topologyEventsMetrics( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1928 | """ |
| 1929 | Description:Returns topology metrics |
andrewonlab | 867212a | 2014-10-22 20:13:38 -0400 | [diff] [blame] | 1930 | Optional: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1931 | * jsonFormat: enable json formatting of output |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1932 | """ |
andrewonlab | 867212a | 2014-10-22 20:13:38 -0400 | [diff] [blame] | 1933 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1934 | cmdStr = "topology-events-metrics" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1935 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1936 | cmdStr += " -j" |
| 1937 | handle = self.sendline( cmdStr ) |
jenkins | 7ead5a8 | 2015-03-13 10:28:21 -0700 | [diff] [blame] | 1938 | if handle: |
| 1939 | return handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1940 | elif jsonFormat: |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 1941 | # Return empty json |
jenkins | 7ead5a8 | 2015-03-13 10:28:21 -0700 | [diff] [blame] | 1942 | return '{}' |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1943 | else: |
| 1944 | return handle |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1945 | except TypeError: |
| 1946 | main.log.exception( self.name + ": Object not as expected" ) |
| 1947 | return None |
andrewonlab | 867212a | 2014-10-22 20:13:38 -0400 | [diff] [blame] | 1948 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1949 | main.log.error( self.name + ": EOF exception found" ) |
| 1950 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 867212a | 2014-10-22 20:13:38 -0400 | [diff] [blame] | 1951 | main.cleanup() |
| 1952 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1953 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1954 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 867212a | 2014-10-22 20:13:38 -0400 | [diff] [blame] | 1955 | main.cleanup() |
| 1956 | main.exit() |
| 1957 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1958 | # Wrapper functions **************** |
| 1959 | # Wrapper functions use existing driver |
| 1960 | # functions and extends their use case. |
| 1961 | # For example, we may use the output of |
| 1962 | # a normal driver function, and parse it |
| 1963 | # using a wrapper function |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 1964 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1965 | def getAllIntentsId( self ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1966 | """ |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1967 | Description: |
| 1968 | Obtain all intent id's in a list |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1969 | """ |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1970 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1971 | # Obtain output of intents function |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1972 | intentsStr = self.intents(jsonFormat=False) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1973 | intentIdList = [] |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1974 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1975 | # Parse the intents output for ID's |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1976 | intentsList = [ s.strip() for s in intentsStr.splitlines() ] |
| 1977 | for intents in intentsList: |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1978 | match = re.search('id=0x([\da-f]+),', intents) |
| 1979 | if match: |
| 1980 | tmpId = match.group()[3:-1] |
| 1981 | intentIdList.append( tmpId ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1982 | return intentIdList |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1983 | |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1984 | except TypeError: |
| 1985 | main.log.exception( self.name + ": Object not as expected" ) |
| 1986 | return None |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1987 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1988 | main.log.error( self.name + ": EOF exception found" ) |
| 1989 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1990 | main.cleanup() |
| 1991 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1992 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1993 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1994 | main.cleanup() |
| 1995 | main.exit() |
| 1996 | |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 1997 | def FlowAddedCount( self, deviceId ): |
| 1998 | """ |
| 1999 | Determine the number of flow rules for the given device id that are |
| 2000 | in the added state |
| 2001 | """ |
| 2002 | try: |
| 2003 | cmdStr = "flows any " + str( deviceId ) + " | " +\ |
| 2004 | "grep 'state=ADDED' | wc -l" |
| 2005 | handle = self.sendline( cmdStr ) |
| 2006 | return handle |
| 2007 | except pexpect.EOF: |
| 2008 | main.log.error( self.name + ": EOF exception found" ) |
| 2009 | main.log.error( self.name + ": " + self.handle.before ) |
| 2010 | main.cleanup() |
| 2011 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2012 | except Exception: |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 2013 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 2014 | main.cleanup() |
| 2015 | main.exit() |
| 2016 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2017 | def getAllDevicesId( self ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2018 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 2019 | Use 'devices' function to obtain list of all devices |
| 2020 | and parse the result to obtain a list of all device |
| 2021 | id's. Returns this list. Returns empty list if no |
| 2022 | devices exist |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2023 | List is ordered sequentially |
| 2024 | |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 2025 | This function may be useful if you are not sure of the |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2026 | device id, and wish to execute other commands using |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 2027 | the ids. By obtaining the list of device ids on the fly, |
| 2028 | you can iterate through the list to get mastership, etc. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2029 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 2030 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2031 | # Call devices and store result string |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2032 | devicesStr = self.devices( jsonFormat=False ) |
| 2033 | idList = [] |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2034 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2035 | if not devicesStr: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2036 | main.log.info( "There are no devices to get id from" ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2037 | return idList |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2038 | |
| 2039 | # Split the string into list by comma |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2040 | deviceList = devicesStr.split( "," ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2041 | # Get temporary list of all arguments with string 'id=' |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2042 | tempList = [ dev for dev in deviceList if "id=" in dev ] |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2043 | # Split list further into arguments before and after string |
| 2044 | # 'id='. Get the latter portion ( the actual device id ) and |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2045 | # append to idList |
| 2046 | for arg in tempList: |
| 2047 | idList.append( arg.split( "id=" )[ 1 ] ) |
| 2048 | return idList |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 2049 | |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2050 | except TypeError: |
| 2051 | main.log.exception( self.name + ": Object not as expected" ) |
| 2052 | return None |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 2053 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2054 | main.log.error( self.name + ": EOF exception found" ) |
| 2055 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 2056 | main.cleanup() |
| 2057 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2058 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2059 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 2060 | main.cleanup() |
| 2061 | main.exit() |
| 2062 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2063 | def getAllNodesId( self ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2064 | """ |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 2065 | Uses 'nodes' function to obtain list of all nodes |
| 2066 | and parse the result of nodes to obtain just the |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2067 | node id's. |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 2068 | Returns: |
| 2069 | list of node id's |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2070 | """ |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 2071 | try: |
Jon Hall | 5aa168b | 2015-03-23 14:23:09 -0700 | [diff] [blame] | 2072 | nodesStr = self.nodes( jsonFormat=True ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2073 | idList = [] |
Jon Hall | 5aa168b | 2015-03-23 14:23:09 -0700 | [diff] [blame] | 2074 | # Sample nodesStr output |
| 2075 | # id=local, address=127.0.0.1:9876, state=ACTIVE * |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2076 | if not nodesStr: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2077 | main.log.info( "There are no nodes to get id from" ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2078 | return idList |
Jon Hall | 5aa168b | 2015-03-23 14:23:09 -0700 | [diff] [blame] | 2079 | nodesJson = json.loads( nodesStr ) |
| 2080 | idList = [ node.get('id') for node in nodesJson ] |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2081 | return idList |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2082 | |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2083 | except TypeError: |
| 2084 | main.log.exception( self.name + ": Object not as expected" ) |
| 2085 | return None |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 2086 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2087 | main.log.error( self.name + ": EOF exception found" ) |
| 2088 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 2089 | main.cleanup() |
| 2090 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2091 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2092 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 2093 | main.cleanup() |
| 2094 | main.exit() |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 2095 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2096 | def getDevice( self, dpid=None ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2097 | """ |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 2098 | Return the first device from the devices api whose 'id' contains 'dpid' |
| 2099 | Return None if there is no match |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2100 | """ |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 2101 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2102 | if dpid is None: |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 2103 | return None |
| 2104 | else: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2105 | dpid = dpid.replace( ':', '' ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2106 | rawDevices = self.devices() |
| 2107 | devicesJson = json.loads( rawDevices ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2108 | # search json for the device with dpid then return the device |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2109 | for device in devicesJson: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2110 | # print "%s in %s?" % ( dpid, device[ 'id' ] ) |
| 2111 | if dpid in device[ 'id' ]: |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 2112 | return device |
| 2113 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2114 | except TypeError: |
| 2115 | main.log.exception( self.name + ": Object not as expected" ) |
| 2116 | return None |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 2117 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2118 | main.log.error( self.name + ": EOF exception found" ) |
| 2119 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 2120 | main.cleanup() |
| 2121 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2122 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2123 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 2124 | main.cleanup() |
| 2125 | main.exit() |
| 2126 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2127 | def checkStatus( self, ip, numoswitch, numolink, logLevel="info" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2128 | """ |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2129 | Checks the number of switches & links that ONOS sees against the |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2130 | supplied values. By default this will report to main.log, but the |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2131 | log level can be specified. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2132 | |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2133 | Params: ip = ip used for the onos cli |
| 2134 | numoswitch = expected number of switches |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2135 | numolink = expected number of links |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2136 | logLevel = level to log to. Currently accepts |
| 2137 | 'info', 'warn' and 'report' |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2138 | |
| 2139 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2140 | logLevel can |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2141 | |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2142 | Returns: main.TRUE if the number of switches and links are correct, |
| 2143 | main.FALSE if the number of switches and links is incorrect, |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2144 | and main.ERROR otherwise |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2145 | """ |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2146 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2147 | topology = self.getTopology( ip ) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2148 | if topology == {}: |
| 2149 | return main.ERROR |
| 2150 | output = "" |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2151 | # Is the number of switches is what we expected |
| 2152 | devices = topology.get( 'devices', False ) |
| 2153 | links = topology.get( 'links', False ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 2154 | if devices is False or links is False: |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2155 | return main.ERROR |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2156 | switchCheck = ( int( devices ) == int( numoswitch ) ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2157 | # Is the number of links is what we expected |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2158 | linkCheck = ( int( links ) == int( numolink ) ) |
| 2159 | if ( switchCheck and linkCheck ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2160 | # We expected the correct numbers |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2161 | output += "The number of links and switches match " +\ |
| 2162 | "what was expected" |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2163 | result = main.TRUE |
| 2164 | else: |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2165 | output += "The number of links and switches does not match " +\ |
| 2166 | "what was expected" |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2167 | result = main.FALSE |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2168 | output = output + "\n ONOS sees %i devices (%i expected) \ |
| 2169 | and %i links (%i expected)" % ( |
| 2170 | int( devices ), int( numoswitch ), int( links ), |
| 2171 | int( numolink ) ) |
| 2172 | if logLevel == "report": |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2173 | main.log.report( output ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2174 | elif logLevel == "warn": |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2175 | main.log.warn( output ) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2176 | else: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 2177 | main.log.info( self.name + ": " + output ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2178 | return result |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2179 | except TypeError: |
| 2180 | main.log.exception( self.name + ": Object not as expected" ) |
| 2181 | return None |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2182 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2183 | main.log.error( self.name + ": EOF exception found" ) |
| 2184 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2185 | main.cleanup() |
| 2186 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2187 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2188 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2189 | main.cleanup() |
| 2190 | main.exit() |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2191 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2192 | def deviceRole( self, deviceId, onosNode, role="master" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2193 | """ |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2194 | Calls the device-role cli command. |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2195 | deviceId must be the id of a device as seen in the onos devices command |
| 2196 | onosNode is the ip of one of the onos nodes in the cluster |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2197 | role must be either master, standby, or none |
| 2198 | |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2199 | Returns: |
| 2200 | main.TRUE or main.FALSE based on argument verification and |
| 2201 | main.ERROR if command returns and error |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2202 | """ |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2203 | try: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2204 | if role.lower() == "master" or role.lower() == "standby" or\ |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2205 | role.lower() == "none": |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2206 | cmdStr = "device-role " +\ |
| 2207 | str( deviceId ) + " " +\ |
| 2208 | str( onosNode ) + " " +\ |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2209 | str( role ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2210 | handle = self.sendline( cmdStr ) |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2211 | if re.search( "Error", handle ): |
| 2212 | # end color output to escape any colours |
| 2213 | # from the cli |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2214 | main.log.error( self.name + ": " + |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2215 | handle + '\033[0m' ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2216 | return main.ERROR |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2217 | return main.TRUE |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2218 | else: |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2219 | main.log.error( "Invalid 'role' given to device_role(). " + |
| 2220 | "Value was '" + str(role) + "'." ) |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2221 | return main.FALSE |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2222 | except TypeError: |
| 2223 | main.log.exception( self.name + ": Object not as expected" ) |
| 2224 | return None |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2225 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2226 | main.log.error( self.name + ": EOF exception found" ) |
| 2227 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2228 | main.cleanup() |
| 2229 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2230 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2231 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2232 | main.cleanup() |
| 2233 | main.exit() |
| 2234 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2235 | def clusters( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2236 | """ |
Jon Hall | 73cf9cc | 2014-11-20 22:28:38 -0800 | [diff] [blame] | 2237 | Lists all clusters |
Jon Hall | ffb386d | 2014-11-21 13:43:38 -0800 | [diff] [blame] | 2238 | Optional argument: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2239 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2240 | """ |
Jon Hall | 73cf9cc | 2014-11-20 22:28:38 -0800 | [diff] [blame] | 2241 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2242 | cmdStr = "clusters" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2243 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2244 | cmdStr += " -j" |
| 2245 | handle = self.sendline( cmdStr ) |
| 2246 | return handle |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2247 | except TypeError: |
| 2248 | main.log.exception( self.name + ": Object not as expected" ) |
| 2249 | return None |
Jon Hall | 73cf9cc | 2014-11-20 22:28:38 -0800 | [diff] [blame] | 2250 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2251 | main.log.error( self.name + ": EOF exception found" ) |
| 2252 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 73cf9cc | 2014-11-20 22:28:38 -0800 | [diff] [blame] | 2253 | main.cleanup() |
| 2254 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2255 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2256 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 73cf9cc | 2014-11-20 22:28:38 -0800 | [diff] [blame] | 2257 | main.cleanup() |
| 2258 | main.exit() |
| 2259 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2260 | def electionTestLeader( self ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2261 | """ |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2262 | CLI command to get the current leader for the Election test application |
| 2263 | NOTE: Requires installation of the onos-app-election feature |
| 2264 | Returns: Node IP of the leader if one exists |
| 2265 | None if none exists |
| 2266 | Main.FALSE on error |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2267 | """ |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2268 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2269 | cmdStr = "election-test-leader" |
| 2270 | response = self.sendline( cmdStr ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2271 | # Leader |
| 2272 | leaderPattern = "The\scurrent\sleader\sfor\sthe\sElection\s" +\ |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2273 | "app\sis\s(?P<node>.+)\." |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2274 | nodeSearch = re.search( leaderPattern, response ) |
| 2275 | if nodeSearch: |
| 2276 | node = nodeSearch.group( 'node' ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2277 | main.log.info( "Election-test-leader on " + str( self.name ) + |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2278 | " found " + node + " as the leader" ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2279 | return node |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2280 | # no leader |
| 2281 | nullPattern = "There\sis\scurrently\sno\sleader\selected\sfor\s" +\ |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2282 | "the\sElection\sapp" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2283 | nullSearch = re.search( nullPattern, response ) |
| 2284 | if nullSearch: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2285 | main.log.info( "Election-test-leader found no leader on " + |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2286 | self.name ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2287 | return None |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2288 | # error |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2289 | errorPattern = "Command\snot\sfound" |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2290 | if re.search( errorPattern, response ): |
| 2291 | main.log.error( "Election app is not loaded on " + self.name ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2292 | # TODO: Should this be main.ERROR? |
Jon Hall | 669173b | 2014-12-17 11:36:30 -0800 | [diff] [blame] | 2293 | return main.FALSE |
| 2294 | else: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 2295 | main.log.error( "Error in electionTestLeader on " + self.name + |
| 2296 | ": " + "unexpected response" ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2297 | main.log.error( repr( response ) ) |
Jon Hall | 669173b | 2014-12-17 11:36:30 -0800 | [diff] [blame] | 2298 | return main.FALSE |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2299 | except TypeError: |
| 2300 | main.log.exception( self.name + ": Object not as expected" ) |
| 2301 | return main.FALSE |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2302 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2303 | main.log.error( self.name + ": EOF exception found" ) |
| 2304 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2305 | main.cleanup() |
| 2306 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2307 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2308 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2309 | main.cleanup() |
| 2310 | main.exit() |
| 2311 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2312 | def electionTestRun( self ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2313 | """ |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2314 | CLI command to run for leadership of the Election test application. |
| 2315 | NOTE: Requires installation of the onos-app-election feature |
| 2316 | Returns: Main.TRUE on success |
| 2317 | Main.FALSE on error |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2318 | """ |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2319 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2320 | cmdStr = "election-test-run" |
| 2321 | response = self.sendline( cmdStr ) |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2322 | # success |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2323 | successPattern = "Entering\sleadership\selections\sfor\sthe\s" +\ |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2324 | "Election\sapp." |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2325 | search = re.search( successPattern, response ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2326 | if search: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2327 | main.log.info( self.name + " entering leadership elections " + |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2328 | "for the Election app." ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2329 | return main.TRUE |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2330 | # error |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2331 | errorPattern = "Command\snot\sfound" |
| 2332 | if re.search( errorPattern, response ): |
| 2333 | main.log.error( "Election app is not loaded on " + self.name ) |
Jon Hall | 669173b | 2014-12-17 11:36:30 -0800 | [diff] [blame] | 2334 | return main.FALSE |
| 2335 | else: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 2336 | main.log.error( "Error in electionTestRun on " + self.name + |
| 2337 | ": " + "unexpected response" ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2338 | main.log.error( repr( response ) ) |
Jon Hall | 669173b | 2014-12-17 11:36:30 -0800 | [diff] [blame] | 2339 | return main.FALSE |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2340 | except TypeError: |
| 2341 | main.log.exception( self.name + ": Object not as expected" ) |
| 2342 | return main.FALSE |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2343 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2344 | main.log.error( self.name + ": EOF exception found" ) |
| 2345 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2346 | main.cleanup() |
| 2347 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2348 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2349 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2350 | main.cleanup() |
| 2351 | main.exit() |
| 2352 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2353 | def electionTestWithdraw( self ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2354 | """ |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2355 | * CLI command to withdraw the local node from leadership election for |
| 2356 | * the Election test application. |
| 2357 | #NOTE: Requires installation of the onos-app-election feature |
| 2358 | Returns: Main.TRUE on success |
| 2359 | Main.FALSE on error |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2360 | """ |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2361 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2362 | cmdStr = "election-test-withdraw" |
| 2363 | response = self.sendline( cmdStr ) |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2364 | # success |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2365 | successPattern = "Withdrawing\sfrom\sleadership\selections\sfor" +\ |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2366 | "\sthe\sElection\sapp." |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2367 | if re.search( successPattern, response ): |
| 2368 | main.log.info( self.name + " withdrawing from leadership " + |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2369 | "elections for the Election app." ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2370 | return main.TRUE |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2371 | # error |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2372 | errorPattern = "Command\snot\sfound" |
| 2373 | if re.search( errorPattern, response ): |
| 2374 | main.log.error( "Election app is not loaded on " + self.name ) |
Jon Hall | 669173b | 2014-12-17 11:36:30 -0800 | [diff] [blame] | 2375 | return main.FALSE |
| 2376 | else: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 2377 | main.log.error( "Error in electionTestWithdraw on " + |
| 2378 | self.name + ": " + "unexpected response" ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2379 | main.log.error( repr( response ) ) |
Jon Hall | 669173b | 2014-12-17 11:36:30 -0800 | [diff] [blame] | 2380 | return main.FALSE |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2381 | except TypeError: |
| 2382 | main.log.exception( self.name + ": Object not as expected" ) |
| 2383 | return main.FALSE |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2384 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2385 | main.log.error( self.name + ": EOF exception found" ) |
| 2386 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2387 | main.cleanup() |
| 2388 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2389 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2390 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2391 | main.cleanup() |
| 2392 | main.exit() |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2393 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2394 | def getDevicePortsEnabledCount( self, dpid ): |
| 2395 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2396 | Get the count of all enabled ports on a particular device/switch |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2397 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2398 | try: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2399 | dpid = str( dpid ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2400 | cmdStr = "onos:ports -e " + dpid + " | wc -l" |
| 2401 | output = self.sendline( cmdStr ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2402 | if re.search( "No such device", output ): |
| 2403 | main.log.error( "Error in getting ports" ) |
| 2404 | return ( output, "Error" ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2405 | else: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2406 | return output |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2407 | except TypeError: |
| 2408 | main.log.exception( self.name + ": Object not as expected" ) |
| 2409 | return ( output, "Error" ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2410 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2411 | main.log.error( self.name + ": EOF exception found" ) |
| 2412 | main.log.error( self.name + ": " + self.handle.before ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2413 | main.cleanup() |
| 2414 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2415 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2416 | main.log.exception( self.name + ": Uncaught exception!" ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2417 | main.cleanup() |
| 2418 | main.exit() |
| 2419 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2420 | def getDeviceLinksActiveCount( self, dpid ): |
| 2421 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2422 | Get the count of all enabled ports on a particular device/switch |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2423 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2424 | try: |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2425 | dpid = str( dpid ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2426 | cmdStr = "onos:links " + dpid + " | grep ACTIVE | wc -l" |
| 2427 | output = self.sendline( cmdStr ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2428 | if re.search( "No such device", output ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2429 | main.log.error( "Error in getting ports " ) |
| 2430 | return ( output, "Error " ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2431 | else: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2432 | return output |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2433 | except TypeError: |
| 2434 | main.log.exception( self.name + ": Object not as expected" ) |
| 2435 | return ( output, "Error " ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2436 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2437 | main.log.error( self.name + ": EOF exception found" ) |
| 2438 | main.log.error( self.name + ": " + self.handle.before ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2439 | main.cleanup() |
| 2440 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2441 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2442 | main.log.exception( self.name + ": Uncaught exception!" ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2443 | main.cleanup() |
| 2444 | main.exit() |
| 2445 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2446 | def getAllIntentIds( self ): |
| 2447 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2448 | Return a list of all Intent IDs |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2449 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2450 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2451 | cmdStr = "onos:intents | grep id=" |
| 2452 | output = self.sendline( cmdStr ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2453 | if re.search( "Error", output ): |
| 2454 | main.log.error( "Error in getting ports" ) |
| 2455 | return ( output, "Error" ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2456 | else: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2457 | return output |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2458 | except TypeError: |
| 2459 | main.log.exception( self.name + ": Object not as expected" ) |
| 2460 | return ( output, "Error" ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2461 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2462 | main.log.error( self.name + ": EOF exception found" ) |
| 2463 | main.log.error( self.name + ": " + self.handle.before ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2464 | main.cleanup() |
| 2465 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2466 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2467 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2468 | main.cleanup() |
| 2469 | main.exit() |
| 2470 | |
Jon Hall | 7350995 | 2015-02-24 16:42:56 -0800 | [diff] [blame] | 2471 | def intentSummary( self ): |
| 2472 | """ |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2473 | Returns a dictionary containing the current intent states and the count |
Jon Hall | 7350995 | 2015-02-24 16:42:56 -0800 | [diff] [blame] | 2474 | """ |
| 2475 | try: |
| 2476 | intents = self.intents( ) |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 2477 | states = [] |
Jon Hall | 5aa168b | 2015-03-23 14:23:09 -0700 | [diff] [blame] | 2478 | for intent in json.loads( intents ): |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 2479 | states.append( intent.get( 'state', None ) ) |
| 2480 | out = [ ( i, states.count( i ) ) for i in set( states ) ] |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2481 | main.log.info( dict( out ) ) |
Jon Hall | 7350995 | 2015-02-24 16:42:56 -0800 | [diff] [blame] | 2482 | return dict( out ) |
| 2483 | except TypeError: |
| 2484 | main.log.exception( self.name + ": Object not as expected" ) |
| 2485 | return None |
| 2486 | except pexpect.EOF: |
| 2487 | main.log.error( self.name + ": EOF exception found" ) |
| 2488 | main.log.error( self.name + ": " + self.handle.before ) |
| 2489 | main.cleanup() |
| 2490 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2491 | except Exception: |
Jon Hall | 7350995 | 2015-02-24 16:42:56 -0800 | [diff] [blame] | 2492 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2493 | main.cleanup() |
| 2494 | main.exit() |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2495 | |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 2496 | def leaders( self, jsonFormat=True ): |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2497 | """ |
| 2498 | Returns the output of the leaders command. |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 2499 | Optional argument: |
| 2500 | * jsonFormat - boolean indicating if you want output in json |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2501 | """ |
| 2502 | # FIXME: add json output |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 2503 | # Sample JSON |
| 2504 | # { |
| 2505 | # "electedTime": "13m ago", |
| 2506 | # "epoch": 4, |
| 2507 | # "leader": "10.128.30.17", |
| 2508 | # "topic": "intent-partition-3" |
| 2509 | # }, |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2510 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2511 | cmdStr = "onos:leaders" |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 2512 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2513 | cmdStr += " -j" |
| 2514 | output = self.sendline( cmdStr ) |
| 2515 | return output |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2516 | except TypeError: |
| 2517 | main.log.exception( self.name + ": Object not as expected" ) |
| 2518 | return None |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2519 | except pexpect.EOF: |
| 2520 | main.log.error( self.name + ": EOF exception found" ) |
| 2521 | main.log.error( self.name + ": " + self.handle.before ) |
| 2522 | main.cleanup() |
| 2523 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 2524 | except Exception: |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2525 | main.log.exception( self.name + ": Uncaught exception!" ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2526 | main.cleanup() |
| 2527 | main.exit() |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2528 | |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 2529 | def pendingMap( self, jsonFormat=True ): |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2530 | """ |
| 2531 | Returns the output of the intent Pending map. |
| 2532 | """ |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2533 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2534 | cmdStr = "onos:intents -p" |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 2535 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2536 | cmdStr += " -j" |
| 2537 | output = self.sendline( cmdStr ) |
| 2538 | return output |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2539 | except TypeError: |
| 2540 | main.log.exception( self.name + ": Object not as expected" ) |
| 2541 | return None |
| 2542 | except pexpect.EOF: |
| 2543 | main.log.error( self.name + ": EOF exception found" ) |
| 2544 | main.log.error( self.name + ": " + self.handle.before ) |
| 2545 | main.cleanup() |
| 2546 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 2547 | except Exception: |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2548 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2549 | main.cleanup() |
| 2550 | main.exit() |
| 2551 | |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 2552 | def partitions( self, jsonFormat=True ): |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2553 | """ |
| 2554 | Returns the output of the raft partitions command for ONOS. |
| 2555 | """ |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 2556 | # Sample JSON |
| 2557 | # { |
| 2558 | # "leader": "tcp://10.128.30.11:7238", |
| 2559 | # "members": [ |
| 2560 | # "tcp://10.128.30.11:7238", |
| 2561 | # "tcp://10.128.30.17:7238", |
| 2562 | # "tcp://10.128.30.13:7238", |
| 2563 | # ], |
| 2564 | # "name": "p1", |
| 2565 | # "term": 3 |
| 2566 | # }, |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2567 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2568 | cmdStr = "onos:partitions" |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 2569 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2570 | cmdStr += " -j" |
| 2571 | output = self.sendline( cmdStr ) |
| 2572 | return output |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2573 | except TypeError: |
| 2574 | main.log.exception( self.name + ": Object not as expected" ) |
| 2575 | return None |
| 2576 | except pexpect.EOF: |
| 2577 | main.log.error( self.name + ": EOF exception found" ) |
| 2578 | main.log.error( self.name + ": " + self.handle.before ) |
| 2579 | main.cleanup() |
| 2580 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 2581 | except Exception: |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2582 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2583 | main.cleanup() |
| 2584 | main.exit() |
| 2585 | |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 2586 | def apps( self, jsonFormat=True ): |
| 2587 | """ |
| 2588 | Returns the output of the apps command for ONOS. This command lists |
| 2589 | information about installed ONOS applications |
| 2590 | """ |
| 2591 | # Sample JSON object |
| 2592 | # [{"name":"org.onosproject.openflow","id":0,"version":"1.2.0", |
| 2593 | # "description":"ONOS OpenFlow protocol southbound providers", |
| 2594 | # "origin":"ON.Lab","permissions":"[]","featuresRepo":"", |
| 2595 | # "features":"[onos-openflow]","state":"ACTIVE"}] |
| 2596 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2597 | cmdStr = "onos:apps" |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 2598 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2599 | cmdStr += " -j" |
| 2600 | output = self.sendline( cmdStr ) |
| 2601 | assert "Error executing command" not in output |
| 2602 | return output |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 2603 | # FIXME: look at specific exceptions/Errors |
| 2604 | except AssertionError: |
| 2605 | main.log.error( "Error in processing onos:app command: " + |
| 2606 | str( output ) ) |
| 2607 | return None |
| 2608 | except TypeError: |
| 2609 | main.log.exception( self.name + ": Object not as expected" ) |
| 2610 | return None |
| 2611 | except pexpect.EOF: |
| 2612 | main.log.error( self.name + ": EOF exception found" ) |
| 2613 | main.log.error( self.name + ": " + self.handle.before ) |
| 2614 | main.cleanup() |
| 2615 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 2616 | except Exception: |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 2617 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2618 | main.cleanup() |
| 2619 | main.exit() |
| 2620 | |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2621 | def appStatus( self, appName ): |
| 2622 | """ |
| 2623 | Uses the onos:apps cli command to return the status of an application. |
| 2624 | Returns: |
| 2625 | "ACTIVE" - If app is installed and activated |
| 2626 | "INSTALLED" - If app is installed and deactivated |
| 2627 | "UNINSTALLED" - If app is not installed |
| 2628 | None - on error |
| 2629 | """ |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2630 | try: |
| 2631 | if not isinstance( appName, types.StringType ): |
| 2632 | main.log.error( self.name + ".appStatus(): appName must be" + |
| 2633 | " a string" ) |
| 2634 | return None |
| 2635 | output = self.apps( jsonFormat=True ) |
| 2636 | appsJson = json.loads( output ) |
| 2637 | state = None |
| 2638 | for app in appsJson: |
| 2639 | if appName == app.get('name'): |
| 2640 | state = app.get('state') |
| 2641 | break |
| 2642 | if state == "ACTIVE" or state == "INSTALLED": |
| 2643 | return state |
| 2644 | elif state is None: |
| 2645 | return "UNINSTALLED" |
| 2646 | elif state: |
| 2647 | main.log.error( "Unexpected state from 'onos:apps': " + |
| 2648 | str( state ) ) |
| 2649 | return state |
| 2650 | except TypeError: |
| 2651 | main.log.exception( self.name + ": Object not as expected" ) |
| 2652 | return None |
| 2653 | except pexpect.EOF: |
| 2654 | main.log.error( self.name + ": EOF exception found" ) |
| 2655 | main.log.error( self.name + ": " + self.handle.before ) |
| 2656 | main.cleanup() |
| 2657 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 2658 | except Exception: |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2659 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2660 | main.cleanup() |
| 2661 | main.exit() |
| 2662 | |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 2663 | def app( self, appName, option ): |
| 2664 | """ |
| 2665 | Interacts with the app command for ONOS. This command manages |
| 2666 | application inventory. |
| 2667 | """ |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 2668 | try: |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2669 | # Validate argument types |
| 2670 | valid = True |
| 2671 | if not isinstance( appName, types.StringType ): |
| 2672 | main.log.error( self.name + ".app(): appName must be a " + |
| 2673 | "string" ) |
| 2674 | valid = False |
| 2675 | if not isinstance( option, types.StringType ): |
| 2676 | main.log.error( self.name + ".app(): option must be a string" ) |
| 2677 | valid = False |
| 2678 | if not valid: |
| 2679 | return main.FALSE |
| 2680 | # Validate Option |
| 2681 | option = option.lower() |
| 2682 | # NOTE: Install may become a valid option |
| 2683 | if option == "activate": |
| 2684 | pass |
| 2685 | elif option == "deactivate": |
| 2686 | pass |
| 2687 | elif option == "uninstall": |
| 2688 | pass |
| 2689 | else: |
| 2690 | # Invalid option |
| 2691 | main.log.error( "The ONOS app command argument only takes " + |
| 2692 | "the values: (activate|deactivate|uninstall)" + |
| 2693 | "; was given '" + option + "'") |
| 2694 | return main.FALSE |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2695 | cmdStr = "onos:app " + option + " " + appName |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 2696 | output = self.sendline( cmdStr ) |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 2697 | if "Error executing command" in output: |
| 2698 | main.log.error( "Error in processing onos:app command: " + |
| 2699 | str( output ) ) |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2700 | return main.FALSE |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 2701 | elif "No such application" in output: |
| 2702 | main.log.error( "The application '" + appName + |
| 2703 | "' is not installed in ONOS" ) |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2704 | return main.FALSE |
| 2705 | elif "Command not found:" in output: |
| 2706 | main.log.error( "Error in processing onos:app command: " + |
| 2707 | str( output ) ) |
| 2708 | return main.FALSE |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2709 | elif "Unsupported command:" in output: |
| 2710 | main.log.error( "Incorrect command given to 'app': " + |
| 2711 | str( output ) ) |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 2712 | # NOTE: we may need to add more checks here |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2713 | # else: Command was successful |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 2714 | # main.log.debug( "app response: " + repr( output ) ) |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 2715 | return main.TRUE |
| 2716 | except TypeError: |
| 2717 | main.log.exception( self.name + ": Object not as expected" ) |
| 2718 | return main.ERROR |
| 2719 | except pexpect.EOF: |
| 2720 | main.log.error( self.name + ": EOF exception found" ) |
| 2721 | main.log.error( self.name + ": " + self.handle.before ) |
| 2722 | main.cleanup() |
| 2723 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 2724 | except Exception: |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 2725 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2726 | main.cleanup() |
| 2727 | main.exit() |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2728 | |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2729 | def activateApp( self, appName, check=True ): |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2730 | """ |
| 2731 | Activate an app that is already installed in ONOS |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2732 | appName is the hierarchical app name, not the feature name |
| 2733 | If check is True, method will check the status of the app after the |
| 2734 | command is issued |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2735 | Returns main.TRUE if the command was successfully sent |
| 2736 | main.FALSE if the cli responded with an error or given |
| 2737 | incorrect input |
| 2738 | """ |
| 2739 | try: |
| 2740 | if not isinstance( appName, types.StringType ): |
| 2741 | main.log.error( self.name + ".activateApp(): appName must be" + |
| 2742 | " a string" ) |
| 2743 | return main.FALSE |
| 2744 | status = self.appStatus( appName ) |
| 2745 | if status == "INSTALLED": |
| 2746 | response = self.app( appName, "activate" ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2747 | if check and response == main.TRUE: |
| 2748 | for i in range(10): # try 10 times then give up |
| 2749 | # TODO: Check with Thomas about this delay |
| 2750 | status = self.appStatus( appName ) |
| 2751 | if status == "ACTIVE": |
| 2752 | return main.TRUE |
| 2753 | else: |
Jon Hall | 050e1bd | 2015-03-30 13:33:02 -0700 | [diff] [blame] | 2754 | main.log.debug( "The state of application " + |
| 2755 | appName + " is " + status ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2756 | time.sleep( 1 ) |
| 2757 | return main.FALSE |
| 2758 | else: # not 'check' or command didn't succeed |
| 2759 | return response |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2760 | elif status == "ACTIVE": |
| 2761 | return main.TRUE |
| 2762 | elif status == "UNINSTALLED": |
| 2763 | main.log.error( self.name + ": Tried to activate the " + |
| 2764 | "application '" + appName + "' which is not " + |
| 2765 | "installed." ) |
| 2766 | else: |
| 2767 | main.log.error( "Unexpected return value from appStatus: " + |
| 2768 | str( status ) ) |
| 2769 | return main.ERROR |
| 2770 | except TypeError: |
| 2771 | main.log.exception( self.name + ": Object not as expected" ) |
| 2772 | return main.ERROR |
| 2773 | except pexpect.EOF: |
| 2774 | main.log.error( self.name + ": EOF exception found" ) |
| 2775 | main.log.error( self.name + ": " + self.handle.before ) |
| 2776 | main.cleanup() |
| 2777 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 2778 | except Exception: |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2779 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2780 | main.cleanup() |
| 2781 | main.exit() |
| 2782 | |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2783 | def deactivateApp( self, appName, check=True ): |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2784 | """ |
| 2785 | Deactivate an app that is already activated in ONOS |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2786 | appName is the hierarchical app name, not the feature name |
| 2787 | If check is True, method will check the status of the app after the |
| 2788 | command is issued |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2789 | Returns main.TRUE if the command was successfully sent |
| 2790 | main.FALSE if the cli responded with an error or given |
| 2791 | incorrect input |
| 2792 | """ |
| 2793 | try: |
| 2794 | if not isinstance( appName, types.StringType ): |
| 2795 | main.log.error( self.name + ".deactivateApp(): appName must " + |
| 2796 | "be a string" ) |
| 2797 | return main.FALSE |
| 2798 | status = self.appStatus( appName ) |
| 2799 | if status == "INSTALLED": |
| 2800 | return main.TRUE |
| 2801 | elif status == "ACTIVE": |
| 2802 | response = self.app( appName, "deactivate" ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2803 | if check and response == main.TRUE: |
| 2804 | for i in range(10): # try 10 times then give up |
| 2805 | status = self.appStatus( appName ) |
| 2806 | if status == "INSTALLED": |
| 2807 | return main.TRUE |
| 2808 | else: |
| 2809 | time.sleep( 1 ) |
| 2810 | return main.FALSE |
| 2811 | else: # not check or command didn't succeed |
| 2812 | return response |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2813 | elif status == "UNINSTALLED": |
| 2814 | main.log.warn( self.name + ": Tried to deactivate the " + |
| 2815 | "application '" + appName + "' which is not " + |
| 2816 | "installed." ) |
| 2817 | return main.TRUE |
| 2818 | else: |
| 2819 | main.log.error( "Unexpected return value from appStatus: " + |
| 2820 | str( status ) ) |
| 2821 | return main.ERROR |
| 2822 | except TypeError: |
| 2823 | main.log.exception( self.name + ": Object not as expected" ) |
| 2824 | return main.ERROR |
| 2825 | except pexpect.EOF: |
| 2826 | main.log.error( self.name + ": EOF exception found" ) |
| 2827 | main.log.error( self.name + ": " + self.handle.before ) |
| 2828 | main.cleanup() |
| 2829 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 2830 | except Exception: |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2831 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2832 | main.cleanup() |
| 2833 | main.exit() |
| 2834 | |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2835 | def uninstallApp( self, appName, check=True ): |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2836 | """ |
| 2837 | Uninstall an app that is already installed in ONOS |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2838 | appName is the hierarchical app name, not the feature name |
| 2839 | If check is True, method will check the status of the app after the |
| 2840 | command is issued |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2841 | Returns main.TRUE if the command was successfully sent |
| 2842 | main.FALSE if the cli responded with an error or given |
| 2843 | incorrect input |
| 2844 | """ |
| 2845 | # TODO: check with Thomas about the state machine for apps |
| 2846 | try: |
| 2847 | if not isinstance( appName, types.StringType ): |
| 2848 | main.log.error( self.name + ".uninstallApp(): appName must " + |
| 2849 | "be a string" ) |
| 2850 | return main.FALSE |
| 2851 | status = self.appStatus( appName ) |
| 2852 | if status == "INSTALLED": |
| 2853 | response = self.app( appName, "uninstall" ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2854 | if check and response == main.TRUE: |
| 2855 | for i in range(10): # try 10 times then give up |
| 2856 | status = self.appStatus( appName ) |
| 2857 | if status == "UNINSTALLED": |
| 2858 | return main.TRUE |
| 2859 | else: |
| 2860 | time.sleep( 1 ) |
| 2861 | return main.FALSE |
| 2862 | else: # not check or command didn't succeed |
| 2863 | return response |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2864 | elif status == "ACTIVE": |
| 2865 | main.log.warn( self.name + ": Tried to uninstall the " + |
| 2866 | "application '" + appName + "' which is " + |
| 2867 | "currently active." ) |
| 2868 | response = self.app( appName, "uninstall" ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2869 | if check and response == main.TRUE: |
| 2870 | for i in range(10): # try 10 times then give up |
| 2871 | status = self.appStatus( appName ) |
| 2872 | if status == "UNINSTALLED": |
| 2873 | return main.TRUE |
| 2874 | else: |
| 2875 | time.sleep( 1 ) |
| 2876 | return main.FALSE |
| 2877 | else: # not check or command didn't succeed |
| 2878 | return response |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2879 | elif status == "UNINSTALLED": |
| 2880 | return main.TRUE |
| 2881 | else: |
| 2882 | main.log.error( "Unexpected return value from appStatus: " + |
| 2883 | str( status ) ) |
| 2884 | return main.ERROR |
| 2885 | except TypeError: |
| 2886 | main.log.exception( self.name + ": Object not as expected" ) |
| 2887 | return main.ERROR |
| 2888 | except pexpect.EOF: |
| 2889 | main.log.error( self.name + ": EOF exception found" ) |
| 2890 | main.log.error( self.name + ": " + self.handle.before ) |
| 2891 | main.cleanup() |
| 2892 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 2893 | except Exception: |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 2894 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2895 | main.cleanup() |
| 2896 | main.exit() |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2897 | |
| 2898 | def appIDs( self, jsonFormat=True ): |
| 2899 | """ |
| 2900 | Show the mappings between app id and app names given by the 'app-ids' |
| 2901 | cli command |
| 2902 | """ |
| 2903 | try: |
| 2904 | cmdStr = "app-ids" |
| 2905 | if jsonFormat: |
| 2906 | cmdStr += " -j" |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2907 | output = self.sendline( cmdStr ) |
| 2908 | assert "Error executing command" not in output |
| 2909 | return output |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2910 | except AssertionError: |
| 2911 | main.log.error( "Error in processing onos:app-ids command: " + |
| 2912 | str( output ) ) |
| 2913 | return None |
| 2914 | except TypeError: |
| 2915 | main.log.exception( self.name + ": Object not as expected" ) |
| 2916 | return None |
| 2917 | except pexpect.EOF: |
| 2918 | main.log.error( self.name + ": EOF exception found" ) |
| 2919 | main.log.error( self.name + ": " + self.handle.before ) |
| 2920 | main.cleanup() |
| 2921 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 2922 | except Exception: |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2923 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2924 | main.cleanup() |
| 2925 | main.exit() |
| 2926 | |
| 2927 | def appToIDCheck( self ): |
| 2928 | """ |
| 2929 | This method will check that each application's ID listed in 'apps' is |
| 2930 | the same as the ID listed in 'app-ids'. The check will also check that |
| 2931 | there are no duplicate IDs issued. Note that an app ID should be |
| 2932 | a globaly unique numerical identifier for app/app-like features. Once |
| 2933 | an ID is registered, the ID is never freed up so that if an app is |
| 2934 | reinstalled it will have the same ID. |
| 2935 | |
| 2936 | Returns: main.TRUE if the check passes and |
| 2937 | main.FALSE if the check fails or |
| 2938 | main.ERROR if there is some error in processing the test |
| 2939 | """ |
| 2940 | try: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 2941 | bail = False |
| 2942 | ids = self.appIDs( jsonFormat=True ) |
| 2943 | if ids: |
| 2944 | ids = json.loads( ids ) |
| 2945 | else: |
| 2946 | main.log.error( "app-ids returned nothing:" + repr( ids ) ) |
| 2947 | bail = True |
| 2948 | apps = self.apps( jsonFormat=True ) |
| 2949 | if apps: |
| 2950 | apps = json.loads( apps ) |
| 2951 | else: |
| 2952 | main.log.error( "apps returned nothing:" + repr( apps ) ) |
| 2953 | bail = True |
| 2954 | if bail: |
| 2955 | return main.FALSE |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2956 | result = main.TRUE |
| 2957 | for app in apps: |
| 2958 | appID = app.get( 'id' ) |
| 2959 | if appID is None: |
| 2960 | main.log.error( "Error parsing app: " + str( app ) ) |
| 2961 | result = main.FALSE |
| 2962 | appName = app.get( 'name' ) |
| 2963 | if appName is None: |
| 2964 | main.log.error( "Error parsing app: " + str( app ) ) |
| 2965 | result = main.FALSE |
| 2966 | # get the entry in ids that has the same appID |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 2967 | current = filter( lambda item: item[ 'id' ] == appID, ids ) |
Jon Hall | 050e1bd | 2015-03-30 13:33:02 -0700 | [diff] [blame] | 2968 | # main.log.debug( "Comparing " + str( app ) + " to " + |
| 2969 | # str( current ) ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 2970 | if not current: # if ids doesn't have this id |
| 2971 | result = main.FALSE |
| 2972 | main.log.error( "'app-ids' does not have the ID for " + |
| 2973 | str( appName ) + " that apps does." ) |
| 2974 | elif len( current ) > 1: |
| 2975 | # there is more than one app with this ID |
| 2976 | result = main.FALSE |
| 2977 | # We will log this later in the method |
| 2978 | elif not current[0][ 'name' ] == appName: |
| 2979 | currentName = current[0][ 'name' ] |
| 2980 | result = main.FALSE |
| 2981 | main.log.error( "'app-ids' has " + str( currentName ) + |
| 2982 | " registered under id:" + str( appID ) + |
| 2983 | " but 'apps' has " + str( appName ) ) |
| 2984 | else: |
| 2985 | pass # id and name match! |
| 2986 | # now make sure that app-ids has no duplicates |
| 2987 | idsList = [] |
| 2988 | namesList = [] |
| 2989 | for item in ids: |
| 2990 | idsList.append( item[ 'id' ] ) |
| 2991 | namesList.append( item[ 'name' ] ) |
| 2992 | if len( idsList ) != len( set( idsList ) ) or\ |
| 2993 | len( namesList ) != len( set( namesList ) ): |
| 2994 | main.log.error( "'app-ids' has some duplicate entries: \n" |
| 2995 | + json.dumps( ids, |
| 2996 | sort_keys=True, |
| 2997 | indent=4, |
| 2998 | separators=( ',', ': ' ) ) ) |
| 2999 | result = main.FALSE |
| 3000 | return result |
| 3001 | except ( ValueError, TypeError ): |
| 3002 | main.log.exception( self.name + ": Object not as expected" ) |
| 3003 | return main.ERROR |
| 3004 | except pexpect.EOF: |
| 3005 | main.log.error( self.name + ": EOF exception found" ) |
| 3006 | main.log.error( self.name + ": " + self.handle.before ) |
| 3007 | main.cleanup() |
| 3008 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3009 | except Exception: |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3010 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3011 | main.cleanup() |
| 3012 | main.exit() |
| 3013 | |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 3014 | def getCfg( self, component=None, propName=None, short=False, |
| 3015 | jsonFormat=True ): |
| 3016 | """ |
| 3017 | Get configuration settings from onos cli |
| 3018 | Optional arguments: |
| 3019 | component - Optionally only list configurations for a specific |
| 3020 | component. If None, all components with configurations |
| 3021 | are displayed. Case Sensitive string. |
| 3022 | propName - If component is specified, propName option will show |
| 3023 | only this specific configuration from that component. |
| 3024 | Case Sensitive string. |
| 3025 | jsonFormat - Returns output as json. Note that this will override |
| 3026 | the short option |
| 3027 | short - Short, less verbose, version of configurations. |
| 3028 | This is overridden by the json option |
| 3029 | returns: |
| 3030 | Output from cli as a string or None on error |
| 3031 | """ |
| 3032 | try: |
| 3033 | baseStr = "cfg" |
| 3034 | cmdStr = " get" |
| 3035 | componentStr = "" |
| 3036 | if component: |
| 3037 | componentStr += " " + component |
| 3038 | if propName: |
| 3039 | componentStr += " " + propName |
| 3040 | if jsonFormat: |
| 3041 | baseStr += " -j" |
| 3042 | elif short: |
| 3043 | baseStr += " -s" |
| 3044 | output = self.sendline( baseStr + cmdStr + componentStr ) |
| 3045 | assert "Error executing command" not in output |
| 3046 | return output |
| 3047 | except AssertionError: |
| 3048 | main.log.error( "Error in processing 'cfg get' command: " + |
| 3049 | str( output ) ) |
| 3050 | return None |
| 3051 | except TypeError: |
| 3052 | main.log.exception( self.name + ": Object not as expected" ) |
| 3053 | return None |
| 3054 | except pexpect.EOF: |
| 3055 | main.log.error( self.name + ": EOF exception found" ) |
| 3056 | main.log.error( self.name + ": " + self.handle.before ) |
| 3057 | main.cleanup() |
| 3058 | main.exit() |
| 3059 | except Exception: |
| 3060 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3061 | main.cleanup() |
| 3062 | main.exit() |
| 3063 | |
| 3064 | def setCfg( self, component, propName, value=None, check=True ): |
| 3065 | """ |
| 3066 | Set/Unset configuration settings from ONOS cli |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3067 | Required arguments: |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 3068 | component - The case sensitive name of the component whose |
| 3069 | property is to be set |
| 3070 | propName - The case sensitive name of the property to be set/unset |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3071 | Optional arguments: |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 3072 | value - The value to set the property to. If None, will unset the |
| 3073 | property and revert it to it's default value(if applicable) |
| 3074 | check - Boolean, Check whether the option was successfully set this |
| 3075 | only applies when a value is given. |
| 3076 | returns: |
| 3077 | main.TRUE on success or main.FALSE on failure. If check is False, |
| 3078 | will return main.TRUE unless there is an error |
| 3079 | """ |
| 3080 | try: |
| 3081 | baseStr = "cfg" |
| 3082 | cmdStr = " set " + str( component ) + " " + str( propName ) |
| 3083 | if value is not None: |
| 3084 | cmdStr += " " + str( value ) |
| 3085 | output = self.sendline( baseStr + cmdStr ) |
| 3086 | assert "Error executing command" not in output |
| 3087 | if value and check: |
| 3088 | results = self.getCfg( component=str( component ), |
| 3089 | propName=str( propName ), |
| 3090 | jsonFormat=True ) |
| 3091 | # Check if current value is what we just set |
| 3092 | try: |
| 3093 | jsonOutput = json.loads( results ) |
| 3094 | current = jsonOutput[ 'value' ] |
| 3095 | except ( ValueError, TypeError ): |
| 3096 | main.log.exception( "Error parsing cfg output" ) |
| 3097 | main.log.error( "output:" + repr( results ) ) |
| 3098 | return main.FALSE |
| 3099 | if current == str( value ): |
| 3100 | return main.TRUE |
| 3101 | return main.FALSE |
| 3102 | return main.TRUE |
| 3103 | except AssertionError: |
| 3104 | main.log.error( "Error in processing 'cfg set' command: " + |
| 3105 | str( output ) ) |
| 3106 | return main.FALSE |
| 3107 | except TypeError: |
| 3108 | main.log.exception( self.name + ": Object not as expected" ) |
| 3109 | return main.FALSE |
| 3110 | except pexpect.EOF: |
| 3111 | main.log.error( self.name + ": EOF exception found" ) |
| 3112 | main.log.error( self.name + ": " + self.handle.before ) |
| 3113 | main.cleanup() |
| 3114 | main.exit() |
| 3115 | except Exception: |
| 3116 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3117 | main.cleanup() |
| 3118 | main.exit() |
| 3119 | |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3120 | def setTestAdd( self, setName, values ): |
| 3121 | """ |
| 3122 | CLI command to add elements to a distributed set. |
| 3123 | Arguments: |
| 3124 | setName - The name of the set to add to. |
| 3125 | values - The value(s) to add to the set, space seperated. |
| 3126 | Example usages: |
| 3127 | setTestAdd( "set1", "a b c" ) |
| 3128 | setTestAdd( "set2", "1" ) |
| 3129 | returns: |
| 3130 | main.TRUE on success OR |
| 3131 | main.FALSE if elements were already in the set OR |
| 3132 | main.ERROR on error |
| 3133 | """ |
| 3134 | try: |
| 3135 | cmdStr = "set-test-add " + str( setName ) + " " + str( values ) |
| 3136 | output = self.sendline( cmdStr ) |
Jon Hall | feff308 | 2015-05-19 10:23:26 -0700 | [diff] [blame] | 3137 | try: |
| 3138 | # TODO: Maybe make this less hardcoded |
| 3139 | # ConsistentMap Exceptions |
| 3140 | assert "org.onosproject.store.service" not in output |
| 3141 | # Node not leader |
| 3142 | assert "java.lang.IllegalStateException" not in output |
| 3143 | except AssertionError: |
| 3144 | main.log.error( "Error in processing 'set-test-add' " + |
| 3145 | "command: " + str( output ) ) |
| 3146 | retryTime = 30 # Conservative time, given by Madan |
| 3147 | main.log.info( "Waiting " + str( retryTime ) + |
| 3148 | "seconds before retrying." ) |
| 3149 | time.sleep( retryTime ) # Due to change in mastership |
| 3150 | output = self.sendline( cmdStr ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3151 | assert "Error executing command" not in output |
| 3152 | positiveMatch = "\[(.*)\] was added to the set " + str( setName ) |
| 3153 | negativeMatch = "\[(.*)\] was already in set " + str( setName ) |
| 3154 | main.log.info( self.name + ": " + output ) |
| 3155 | if re.search( positiveMatch, output): |
| 3156 | return main.TRUE |
| 3157 | elif re.search( negativeMatch, output): |
| 3158 | return main.FALSE |
| 3159 | else: |
| 3160 | main.log.error( self.name + ": setTestAdd did not" + |
| 3161 | " match expected output" ) |
| 3162 | main.log.debug( self.name + " expected: " + pattern ) |
| 3163 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 3164 | return main.ERROR |
| 3165 | except AssertionError: |
| 3166 | main.log.error( "Error in processing 'set-test-add' command: " + |
| 3167 | str( output ) ) |
| 3168 | return main.ERROR |
| 3169 | except TypeError: |
| 3170 | main.log.exception( self.name + ": Object not as expected" ) |
| 3171 | return main.ERROR |
| 3172 | except pexpect.EOF: |
| 3173 | main.log.error( self.name + ": EOF exception found" ) |
| 3174 | main.log.error( self.name + ": " + self.handle.before ) |
| 3175 | main.cleanup() |
| 3176 | main.exit() |
| 3177 | except Exception: |
| 3178 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3179 | main.cleanup() |
| 3180 | main.exit() |
| 3181 | |
| 3182 | def setTestRemove( self, setName, values, clear=False, retain=False ): |
| 3183 | """ |
| 3184 | CLI command to remove elements from a distributed set. |
| 3185 | Required arguments: |
| 3186 | setName - The name of the set to remove from. |
| 3187 | values - The value(s) to remove from the set, space seperated. |
| 3188 | Optional arguments: |
| 3189 | clear - Clear all elements from the set |
| 3190 | retain - Retain only the given values. (intersection of the |
| 3191 | original set and the given set) |
| 3192 | returns: |
| 3193 | main.TRUE on success OR |
| 3194 | main.FALSE if the set was not changed OR |
| 3195 | main.ERROR on error |
| 3196 | """ |
| 3197 | try: |
| 3198 | cmdStr = "set-test-remove " |
| 3199 | if clear: |
| 3200 | cmdStr += "-c " + str( setName ) |
| 3201 | elif retain: |
| 3202 | cmdStr += "-r " + str( setName ) + " " + str( values ) |
| 3203 | else: |
| 3204 | cmdStr += str( setName ) + " " + str( values ) |
| 3205 | output = self.sendline( cmdStr ) |
Jon Hall | feff308 | 2015-05-19 10:23:26 -0700 | [diff] [blame] | 3206 | try: |
| 3207 | # TODO: Maybe make this less hardcoded |
| 3208 | # ConsistentMap Exceptions |
| 3209 | assert "org.onosproject.store.service" not in output |
| 3210 | # Node not leader |
| 3211 | assert "java.lang.IllegalStateException" not in output |
| 3212 | except AssertionError: |
| 3213 | main.log.error( "Error in processing 'set-test-add' " + |
| 3214 | "command: " + str( output ) ) |
| 3215 | retryTime = 30 # Conservative time, given by Madan |
| 3216 | main.log.info( "Waiting " + str( retryTime ) + |
| 3217 | "seconds before retrying." ) |
| 3218 | time.sleep( retryTime ) # Due to change in mastership |
| 3219 | output = self.sendline( cmdStr ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3220 | assert "Error executing command" not in output |
| 3221 | main.log.info( self.name + ": " + output ) |
| 3222 | if clear: |
| 3223 | pattern = "Set " + str( setName ) + " cleared" |
| 3224 | if re.search( pattern, output ): |
| 3225 | return main.TRUE |
| 3226 | elif retain: |
| 3227 | positivePattern = str( setName ) + " was pruned to contain " +\ |
| 3228 | "only elements of set \[(.*)\]" |
| 3229 | negativePattern = str( setName ) + " was not changed by " +\ |
| 3230 | "retaining only elements of the set " +\ |
| 3231 | "\[(.*)\]" |
| 3232 | if re.search( positivePattern, output ): |
| 3233 | return main.TRUE |
| 3234 | elif re.search( negativePattern, output ): |
| 3235 | return main.FALSE |
| 3236 | else: |
| 3237 | positivePattern = "\[(.*)\] was removed from the set " +\ |
| 3238 | str( setName ) |
| 3239 | if ( len( values.split() ) == 1 ): |
| 3240 | negativePattern = "\[(.*)\] was not in set " +\ |
| 3241 | str( setName ) |
| 3242 | else: |
| 3243 | negativePattern = "No element of \[(.*)\] was in set " +\ |
| 3244 | str( setName ) |
| 3245 | if re.search( positivePattern, output ): |
| 3246 | return main.TRUE |
| 3247 | elif re.search( negativePattern, output ): |
| 3248 | return main.FALSE |
| 3249 | main.log.error( self.name + ": setTestRemove did not" + |
| 3250 | " match expected output" ) |
| 3251 | main.log.debug( self.name + " expected: " + pattern ) |
| 3252 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 3253 | return main.ERROR |
| 3254 | except AssertionError: |
| 3255 | main.log.error( "Error in processing 'set-test-remove' command: " + |
| 3256 | str( output ) ) |
| 3257 | return main.ERROR |
| 3258 | except TypeError: |
| 3259 | main.log.exception( self.name + ": Object not as expected" ) |
| 3260 | return main.ERROR |
| 3261 | except pexpect.EOF: |
| 3262 | main.log.error( self.name + ": EOF exception found" ) |
| 3263 | main.log.error( self.name + ": " + self.handle.before ) |
| 3264 | main.cleanup() |
| 3265 | main.exit() |
| 3266 | except Exception: |
| 3267 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3268 | main.cleanup() |
| 3269 | main.exit() |
| 3270 | |
| 3271 | def setTestGet( self, setName, values="" ): |
| 3272 | """ |
| 3273 | CLI command to get the elements in a distributed set. |
| 3274 | Required arguments: |
| 3275 | setName - The name of the set to remove from. |
| 3276 | Optional arguments: |
| 3277 | values - The value(s) to check if in the set, space seperated. |
| 3278 | returns: |
| 3279 | main.ERROR on error OR |
| 3280 | A list of elements in the set if no optional arguments are |
| 3281 | supplied OR |
| 3282 | A tuple containing the list then: |
| 3283 | main.FALSE if the given values are not in the set OR |
| 3284 | main.TRUE if the given values are in the set OR |
| 3285 | """ |
| 3286 | try: |
| 3287 | values = str( values ).strip() |
| 3288 | setName = str( setName ).strip() |
| 3289 | length = len( values.split() ) |
| 3290 | containsCheck = None |
| 3291 | # Patterns to match |
| 3292 | setPattern = "\[(.*)\]" |
| 3293 | pattern = "Items in set " + setName + ":\n" + setPattern |
| 3294 | containsTrue = "Set " + setName + " contains the value " + values |
| 3295 | containsFalse = "Set " + setName + " did not contain the value " +\ |
| 3296 | values |
| 3297 | containsAllTrue = "Set " + setName + " contains the the subset " +\ |
| 3298 | setPattern |
| 3299 | containsAllFalse = "Set " + setName + " did not contain the the" +\ |
| 3300 | " subset " + setPattern |
| 3301 | |
| 3302 | cmdStr = "set-test-get " |
| 3303 | cmdStr += setName + " " + values |
| 3304 | output = self.sendline( cmdStr ) |
Jon Hall | feff308 | 2015-05-19 10:23:26 -0700 | [diff] [blame] | 3305 | try: |
| 3306 | # TODO: Maybe make this less hardcoded |
| 3307 | # ConsistentMap Exceptions |
| 3308 | assert "org.onosproject.store.service" not in output |
| 3309 | # Node not leader |
| 3310 | assert "java.lang.IllegalStateException" not in output |
| 3311 | except AssertionError: |
| 3312 | main.log.error( "Error in processing 'set-test-add' " + |
| 3313 | "command: " + str( output ) ) |
| 3314 | retryTime = 30 # Conservative time, given by Madan |
| 3315 | main.log.info( "Waiting " + str( retryTime ) + |
| 3316 | "seconds before retrying." ) |
| 3317 | time.sleep( retryTime ) # Due to change in mastership |
| 3318 | output = self.sendline( cmdStr ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3319 | assert "Error executing command" not in output |
| 3320 | main.log.info( self.name + ": " + output ) |
| 3321 | |
| 3322 | if length == 0: |
| 3323 | match = re.search( pattern, output ) |
| 3324 | else: # if given values |
| 3325 | if length == 1: # Contains output |
| 3326 | patternTrue = pattern + "\n" + containsTrue |
| 3327 | patternFalse = pattern + "\n" + containsFalse |
| 3328 | else: # ContainsAll output |
| 3329 | patternTrue = pattern + "\n" + containsAllTrue |
| 3330 | patternFalse = pattern + "\n" + containsAllFalse |
| 3331 | matchTrue = re.search( patternTrue, output ) |
| 3332 | matchFalse = re.search( patternFalse, output ) |
| 3333 | if matchTrue: |
| 3334 | containsCheck = main.TRUE |
| 3335 | match = matchTrue |
| 3336 | elif matchFalse: |
| 3337 | containsCheck = main.FALSE |
| 3338 | match = matchFalse |
| 3339 | else: |
| 3340 | main.log.error( self.name + " setTestGet did not match " +\ |
| 3341 | "expected output" ) |
| 3342 | main.log.debug( self.name + " expected: " + pattern ) |
| 3343 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 3344 | match = None |
| 3345 | if match: |
| 3346 | setMatch = match.group( 1 ) |
| 3347 | if setMatch == '': |
| 3348 | setList = [] |
| 3349 | else: |
| 3350 | setList = setMatch.split( ", " ) |
| 3351 | if length > 0: |
| 3352 | return ( setList, containsCheck ) |
| 3353 | else: |
| 3354 | return setList |
| 3355 | else: # no match |
| 3356 | main.log.error( self.name + ": setTestGet did not" + |
| 3357 | " match expected output" ) |
| 3358 | main.log.debug( self.name + " expected: " + pattern ) |
| 3359 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 3360 | return main.ERROR |
| 3361 | except AssertionError: |
| 3362 | main.log.error( "Error in processing 'set-test-get' command: " + |
| 3363 | str( output ) ) |
| 3364 | return main.ERROR |
| 3365 | except TypeError: |
| 3366 | main.log.exception( self.name + ": Object not as expected" ) |
| 3367 | return main.ERROR |
| 3368 | except pexpect.EOF: |
| 3369 | main.log.error( self.name + ": EOF exception found" ) |
| 3370 | main.log.error( self.name + ": " + self.handle.before ) |
| 3371 | main.cleanup() |
| 3372 | main.exit() |
| 3373 | except Exception: |
| 3374 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3375 | main.cleanup() |
| 3376 | main.exit() |
| 3377 | |
| 3378 | def setTestSize( self, setName ): |
| 3379 | """ |
| 3380 | CLI command to get the elements in a distributed set. |
| 3381 | Required arguments: |
| 3382 | setName - The name of the set to remove from. |
| 3383 | returns: |
Jon Hall | feff308 | 2015-05-19 10:23:26 -0700 | [diff] [blame] | 3384 | The integer value of the size returned or |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3385 | None on error |
| 3386 | """ |
| 3387 | try: |
| 3388 | # TODO: Should this check against the number of elements returned |
| 3389 | # and then return true/false based on that? |
| 3390 | setName = str( setName ).strip() |
| 3391 | # Patterns to match |
| 3392 | setPattern = "\[(.*)\]" |
| 3393 | pattern = "There are (\d+) items in set " + setName + ":\n" +\ |
| 3394 | setPattern |
| 3395 | cmdStr = "set-test-get -s " |
| 3396 | cmdStr += setName |
| 3397 | output = self.sendline( cmdStr ) |
Jon Hall | feff308 | 2015-05-19 10:23:26 -0700 | [diff] [blame] | 3398 | try: |
| 3399 | # TODO: Maybe make this less hardcoded |
| 3400 | # ConsistentMap Exceptions |
| 3401 | assert "org.onosproject.store.service" not in output |
| 3402 | # Node not leader |
| 3403 | assert "java.lang.IllegalStateException" not in output |
| 3404 | except AssertionError: |
| 3405 | main.log.error( "Error in processing 'set-test-add' " + |
| 3406 | "command: " + str( output ) ) |
| 3407 | retryTime = 30 # Conservative time, given by Madan |
| 3408 | main.log.info( "Waiting " + str( retryTime ) + |
| 3409 | "seconds before retrying." ) |
| 3410 | time.sleep( retryTime ) # Due to change in mastership |
| 3411 | output = self.sendline( cmdStr ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3412 | assert "Error executing command" not in output |
| 3413 | main.log.info( self.name + ": " + output ) |
| 3414 | match = re.search( pattern, output ) |
| 3415 | if match: |
| 3416 | setSize = int( match.group( 1 ) ) |
| 3417 | setMatch = match.group( 2 ) |
| 3418 | if len( setMatch.split() ) == setSize: |
| 3419 | main.log.info( "The size returned by " + self.name + |
| 3420 | " matches the number of elements in " + |
| 3421 | "the returned set" ) |
| 3422 | else: |
| 3423 | main.log.error( "The size returned by " + self.name + |
| 3424 | " does not match the number of " + |
| 3425 | "elements in the returned set." ) |
| 3426 | return setSize |
| 3427 | else: # no match |
| 3428 | main.log.error( self.name + ": setTestGet did not" + |
| 3429 | " match expected output" ) |
| 3430 | main.log.debug( self.name + " expected: " + pattern ) |
| 3431 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 3432 | return None |
| 3433 | except AssertionError: |
| 3434 | main.log.error( "Error in processing 'set-test-get' command: " + |
| 3435 | str( output ) ) |
| 3436 | return None |
| 3437 | except TypeError: |
| 3438 | main.log.exception( self.name + ": Object not as expected" ) |
| 3439 | return None |
| 3440 | except pexpect.EOF: |
| 3441 | main.log.error( self.name + ": EOF exception found" ) |
| 3442 | main.log.error( self.name + ": " + self.handle.before ) |
| 3443 | main.cleanup() |
| 3444 | main.exit() |
| 3445 | except Exception: |
| 3446 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3447 | main.cleanup() |
| 3448 | main.exit() |
| 3449 | |
| 3450 | def counters( self ): |
| 3451 | """ |
| 3452 | Command to list the various counters in the system. |
| 3453 | returns: |
| 3454 | A dict containing the counters in the system with the counter |
| 3455 | names being the keys and the value of the counters being the |
| 3456 | values OR |
| 3457 | None on error |
| 3458 | """ |
| 3459 | #FIXME: JSON FORMAT |
| 3460 | try: |
| 3461 | counters = {} |
| 3462 | cmdStr = "counters" |
| 3463 | output = self.sendline( cmdStr ) |
| 3464 | assert "Error executing command" not in output |
| 3465 | main.log.info( self.name + ": " + output ) |
| 3466 | for line in output.splitlines(): |
| 3467 | match = re.search( "name=(\S+) value=(\d+)", line ) |
| 3468 | if match: |
| 3469 | key = match.group( 1 ) |
| 3470 | value = int( match.group( 2 ) ) |
| 3471 | counters[key] = value |
| 3472 | else: |
| 3473 | main.log.error( self.name + ": counters did not match " + |
| 3474 | "expected output" ) |
| 3475 | main.log.debug( self.name + " expected: " + pattern ) |
| 3476 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 3477 | return None |
| 3478 | return counters |
| 3479 | except AssertionError: |
| 3480 | main.log.error( "Error in processing 'counters' command: " + |
| 3481 | str( output ) ) |
| 3482 | return main.ERROR |
| 3483 | except TypeError: |
| 3484 | main.log.exception( self.name + ": Object not as expected" ) |
| 3485 | return main.ERROR |
| 3486 | except pexpect.EOF: |
| 3487 | main.log.error( self.name + ": EOF exception found" ) |
| 3488 | main.log.error( self.name + ": " + self.handle.before ) |
| 3489 | main.cleanup() |
| 3490 | main.exit() |
| 3491 | except Exception: |
| 3492 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3493 | main.cleanup() |
| 3494 | main.exit() |
| 3495 | |
| 3496 | def counterTestIncrement( self, counter, inMemory=False ): |
| 3497 | """ |
| 3498 | CLI command to increment and get a distributed counter. |
| 3499 | Required arguments: |
| 3500 | counter - The name of the counter to increment. |
| 3501 | Optional arguments: |
| 3502 | inMemory - use in memory map for the counter |
| 3503 | returns: |
| 3504 | integer value of the counter or |
| 3505 | None on Error |
| 3506 | """ |
| 3507 | try: |
| 3508 | counter = str( counter ) |
| 3509 | cmdStr = "counter-test-increment " |
| 3510 | if inMemory: |
| 3511 | cmdStr += "-i " |
| 3512 | cmdStr += counter |
| 3513 | output = self.sendline( cmdStr ) |
Jon Hall | feff308 | 2015-05-19 10:23:26 -0700 | [diff] [blame] | 3514 | try: |
| 3515 | # TODO: Maybe make this less hardcoded |
| 3516 | # ConsistentMap Exceptions |
| 3517 | assert "org.onosproject.store.service" not in output |
| 3518 | # Node not leader |
| 3519 | assert "java.lang.IllegalStateException" not in output |
| 3520 | except AssertionError: |
| 3521 | main.log.error( "Error in processing 'set-test-add' " + |
| 3522 | "command: " + str( output ) ) |
| 3523 | retryTime = 30 # Conservative time, given by Madan |
| 3524 | main.log.info( "Waiting " + str( retryTime ) + |
| 3525 | "seconds before retrying." ) |
| 3526 | time.sleep( retryTime ) # Due to change in mastership |
| 3527 | output = self.sendline( cmdStr ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3528 | assert "Error executing command" not in output |
| 3529 | main.log.info( self.name + ": " + output ) |
| 3530 | pattern = counter + " was incremented to (\d+)" |
| 3531 | match = re.search( pattern, output ) |
| 3532 | if match: |
| 3533 | return int( match.group( 1 ) ) |
| 3534 | else: |
| 3535 | main.log.error( self.name + ": counterTestIncrement did not" + |
| 3536 | " match expected output." ) |
| 3537 | main.log.debug( self.name + " expected: " + pattern ) |
| 3538 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 3539 | return None |
| 3540 | except AssertionError: |
| 3541 | main.log.error( "Error in processing 'counter-test-increment'" + |
| 3542 | " command: " + str( output ) ) |
| 3543 | return None |
| 3544 | except TypeError: |
| 3545 | main.log.exception( self.name + ": Object not as expected" ) |
| 3546 | return None |
| 3547 | except pexpect.EOF: |
| 3548 | main.log.error( self.name + ": EOF exception found" ) |
| 3549 | main.log.error( self.name + ": " + self.handle.before ) |
| 3550 | main.cleanup() |
| 3551 | main.exit() |
| 3552 | except Exception: |
| 3553 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3554 | main.cleanup() |
| 3555 | main.exit() |
| 3556 | |