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 pexpect |
| 20 | import re |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 21 | import json |
| 22 | import types |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 23 | import time |
kelvin-onlab | a407429 | 2015-07-09 15:19:49 -0700 | [diff] [blame] | 24 | import os |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 25 | from drivers.common.clidriver import CLI |
| 26 | |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 27 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 28 | class OnosCliDriver( CLI ): |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 29 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 30 | def __init__( self ): |
| 31 | """ |
| 32 | Initialize client |
| 33 | """ |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 34 | self.name = None |
| 35 | self.home = None |
| 36 | self.handle = None |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 37 | super( CLI, self ).__init__() |
| 38 | |
| 39 | def connect( self, **connectargs ): |
| 40 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 41 | Creates ssh handle for ONOS cli. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 42 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 43 | try: |
| 44 | for key in connectargs: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 45 | vars( self )[ key ] = connectargs[ key ] |
andrew@onlab.us | 658ec01 | 2015-03-11 15:13:09 -0700 | [diff] [blame] | 46 | self.home = "~/onos" |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 47 | for key in self.options: |
| 48 | if key == "home": |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 49 | self.home = self.options[ 'home' ] |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 50 | break |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 51 | if self.home is None or self.home == "": |
Jon Hall | e94919c | 2015-03-23 11:42:57 -0700 | [diff] [blame] | 52 | self.home = "~/onos" |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 53 | |
kelvin-onlab | a407429 | 2015-07-09 15:19:49 -0700 | [diff] [blame] | 54 | for key in self.options: |
| 55 | if key == 'onosIp': |
| 56 | self.onosIp = self.options[ 'onosIp' ] |
| 57 | break |
| 58 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 59 | self.name = self.options[ 'name' ] |
kelvin-onlab | a407429 | 2015-07-09 15:19:49 -0700 | [diff] [blame] | 60 | |
| 61 | try: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 62 | if os.getenv( str( self.ip_address ) ) is not None: |
kelvin-onlab | a407429 | 2015-07-09 15:19:49 -0700 | [diff] [blame] | 63 | self.ip_address = os.getenv( str( self.ip_address ) ) |
| 64 | else: |
| 65 | main.log.info( self.name + |
| 66 | ": Trying to connect to " + |
| 67 | self.ip_address ) |
| 68 | |
| 69 | except KeyError: |
| 70 | main.log.info( "Invalid host name," + |
| 71 | " connecting to local host instead" ) |
| 72 | self.ip_address = 'localhost' |
| 73 | except Exception as inst: |
| 74 | main.log.error( "Uncaught exception: " + str( inst ) ) |
| 75 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 76 | self.handle = super( OnosCliDriver, self ).connect( |
kelvin-onlab | 08679eb | 2015-01-21 16:11:48 -0800 | [diff] [blame] | 77 | user_name=self.user_name, |
| 78 | ip_address=self.ip_address, |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 79 | port=self.port, |
| 80 | pwd=self.pwd, |
| 81 | home=self.home ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 82 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 83 | self.handle.sendline( "cd " + self.home ) |
| 84 | self.handle.expect( "\$" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 85 | if self.handle: |
| 86 | return self.handle |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 87 | else: |
| 88 | main.log.info( "NO ONOS HANDLE" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 89 | return main.FALSE |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 90 | except TypeError: |
| 91 | main.log.exception( self.name + ": Object not as expected" ) |
| 92 | return None |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 93 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 94 | main.log.error( self.name + ": EOF exception found" ) |
| 95 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 96 | main.cleanup() |
| 97 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 98 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 99 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 100 | main.cleanup() |
| 101 | main.exit() |
| 102 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 103 | def disconnect( self ): |
| 104 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 105 | Called when Test is complete to disconnect the ONOS handle. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 106 | """ |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 107 | response = main.TRUE |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 108 | try: |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 109 | if self.handle: |
| 110 | i = self.logout() |
| 111 | if i == main.TRUE: |
| 112 | self.handle.sendline( "" ) |
| 113 | self.handle.expect( "\$" ) |
| 114 | self.handle.sendline( "exit" ) |
| 115 | self.handle.expect( "closed" ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 116 | except TypeError: |
| 117 | main.log.exception( self.name + ": Object not as expected" ) |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 118 | response = main.FALSE |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 119 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 120 | main.log.error( self.name + ": EOF exception found" ) |
| 121 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 122 | except ValueError: |
Jon Hall | 1a77a1e | 2015-04-06 10:41:13 -0700 | [diff] [blame] | 123 | main.log.exception( "Exception in disconnect of " + self.name ) |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 124 | response = main.TRUE |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 125 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 126 | main.log.exception( self.name + ": Connection failed to the host" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 127 | response = main.FALSE |
| 128 | return response |
| 129 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 130 | def logout( self ): |
| 131 | """ |
andrewonlab | 38d2b4a | 2014-11-13 16:28:47 -0500 | [diff] [blame] | 132 | Sends 'logout' command to ONOS cli |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 133 | Returns main.TRUE if exited CLI and |
| 134 | main.FALSE on timeout (not guranteed you are disconnected) |
| 135 | None on TypeError |
| 136 | Exits test on unknown error or pexpect exits unexpectedly |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 137 | """ |
andrewonlab | 38d2b4a | 2014-11-13 16:28:47 -0500 | [diff] [blame] | 138 | try: |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 139 | if self.handle: |
| 140 | self.handle.sendline( "" ) |
| 141 | i = self.handle.expect( [ "onos>", "\$", pexpect.TIMEOUT ], |
| 142 | timeout=10 ) |
| 143 | if i == 0: # In ONOS CLI |
| 144 | self.handle.sendline( "logout" ) |
Jon Hall | bfe0000 | 2016-04-05 10:23:54 -0700 | [diff] [blame] | 145 | j = self.handle.expect( [ "\$", |
| 146 | "Command not found:", |
| 147 | pexpect.TIMEOUT ] ) |
| 148 | if j == 0: # Successfully logged out |
| 149 | return main.TRUE |
| 150 | elif j == 1 or j == 2: |
| 151 | # ONOS didn't fully load, and logout command isn't working |
| 152 | # or the command timed out |
| 153 | self.handle.send( "\x04" ) # send ctrl-d |
| 154 | self.handle.expect( "\$" ) |
| 155 | return main.TRUE |
| 156 | else: # some other output |
| 157 | main.log.warn( "Unknown repsonse to logout command: '{}'", |
| 158 | repr( self.handle.before ) ) |
| 159 | return main.FALSE |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 160 | elif i == 1: # not in CLI |
| 161 | return main.TRUE |
| 162 | elif i == 3: # Timeout |
| 163 | return main.FALSE |
| 164 | else: |
andrewonlab | 9627f43 | 2014-11-14 12:45:10 -0500 | [diff] [blame] | 165 | return main.TRUE |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 166 | except TypeError: |
| 167 | main.log.exception( self.name + ": Object not as expected" ) |
| 168 | return None |
andrewonlab | 38d2b4a | 2014-11-13 16:28:47 -0500 | [diff] [blame] | 169 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 170 | main.log.error( self.name + ": eof exception found" ) |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 171 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 38d2b4a | 2014-11-13 16:28:47 -0500 | [diff] [blame] | 172 | main.cleanup() |
| 173 | main.exit() |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 174 | except ValueError: |
Jon Hall | 5aa168b | 2015-03-23 14:23:09 -0700 | [diff] [blame] | 175 | main.log.error( self.name + |
| 176 | "ValueError exception in logout method" ) |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 177 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 178 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 38d2b4a | 2014-11-13 16:28:47 -0500 | [diff] [blame] | 179 | main.cleanup() |
| 180 | main.exit() |
| 181 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 182 | def setCell( self, cellname ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 183 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 184 | Calls 'cell <name>' to set the environment variables on ONOSbench |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 185 | |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 186 | Before issuing any cli commands, set the environment variable first. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 187 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 188 | try: |
| 189 | if not cellname: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 190 | main.log.error( "Must define cellname" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 191 | main.cleanup() |
| 192 | main.exit() |
| 193 | else: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 194 | self.handle.sendline( "cell " + str( cellname ) ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 195 | # Expect the cellname in the ONOSCELL variable. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 196 | # Note that this variable name is subject to change |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 197 | # and that this driver will have to change accordingly |
Cameron Franke | 9c94fb0 | 2015-01-21 10:20:20 -0800 | [diff] [blame] | 198 | self.handle.expect(str(cellname)) |
andrew@onlab.us | c400b11 | 2015-01-21 15:33:19 -0800 | [diff] [blame] | 199 | handleBefore = self.handle.before |
| 200 | handleAfter = self.handle.after |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 201 | # Get the rest of the handle |
Cameron Franke | 9c94fb0 | 2015-01-21 10:20:20 -0800 | [diff] [blame] | 202 | self.handle.sendline("") |
| 203 | self.handle.expect("\$") |
andrew@onlab.us | c400b11 | 2015-01-21 15:33:19 -0800 | [diff] [blame] | 204 | handleMore = self.handle.before |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 205 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 206 | main.log.info( "Cell call returned: " + handleBefore + |
| 207 | handleAfter + handleMore ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 208 | |
| 209 | return main.TRUE |
| 210 | |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 211 | except TypeError: |
| 212 | main.log.exception( self.name + ": Object not as expected" ) |
| 213 | return None |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 214 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 215 | main.log.error( self.name + ": eof exception found" ) |
| 216 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 217 | main.cleanup() |
| 218 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 219 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 220 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 221 | main.cleanup() |
| 222 | main.exit() |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 223 | |
pingping-lin | 57a56ce | 2015-05-20 16:43:48 -0700 | [diff] [blame] | 224 | def startOnosCli( self, ONOSIp, karafTimeout="", |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 225 | commandlineTimeout=10, onosStartTimeout=60 ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 226 | """ |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 227 | karafTimeout is an optional argument. karafTimeout value passed |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 228 | by user would be used to set the current karaf shell idle timeout. |
| 229 | 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] | 230 | the subsequent login would reflect new idle timeout. |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 231 | Below is an example to start a session with 60 seconds idle timeout |
| 232 | ( input value is in milliseconds ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 233 | |
Hari Krishna | 25d42f7 | 2015-01-05 15:08:28 -0800 | [diff] [blame] | 234 | tValue = "60000" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 235 | main.ONOScli1.startOnosCli( ONOSIp, karafTimeout=tValue ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 236 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 237 | Note: karafTimeout is left as str so that this could be read |
| 238 | and passed to startOnosCli from PARAMS file as str. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 239 | """ |
You Wang | f69ab39 | 2016-01-26 16:34:38 -0800 | [diff] [blame] | 240 | self.onosIp = ONOSIp |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 241 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 242 | self.handle.sendline( "" ) |
| 243 | x = self.handle.expect( [ |
pingping-lin | 57a56ce | 2015-05-20 16:43:48 -0700 | [diff] [blame] | 244 | "\$", "onos>" ], commandlineTimeout) |
andrewonlab | 48829f6 | 2014-11-17 13:49:01 -0500 | [diff] [blame] | 245 | |
| 246 | if x == 1: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 247 | main.log.info( "ONOS cli is already running" ) |
andrewonlab | 48829f6 | 2014-11-17 13:49:01 -0500 | [diff] [blame] | 248 | return main.TRUE |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 249 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 250 | # Wait for onos start ( -w ) and enter onos cli |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 251 | self.handle.sendline( "onos -w " + str( ONOSIp ) ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 252 | i = self.handle.expect( [ |
| 253 | "onos>", |
pingping-lin | 57a56ce | 2015-05-20 16:43:48 -0700 | [diff] [blame] | 254 | pexpect.TIMEOUT ], onosStartTimeout ) |
andrewonlab | 2a7ea9b | 2014-10-24 12:21:05 -0400 | [diff] [blame] | 255 | |
| 256 | if i == 0: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 257 | main.log.info( str( ONOSIp ) + " CLI Started successfully" ) |
Hari Krishna | e36ef21 | 2015-01-04 14:09:13 -0800 | [diff] [blame] | 258 | if karafTimeout: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 259 | self.handle.sendline( |
Hari Krishna | ac4e178 | 2015-01-26 12:09:12 -0800 | [diff] [blame] | 260 | "config:property-set -p org.apache.karaf.shell\ |
| 261 | sshIdleTimeout " + |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 262 | karafTimeout ) |
| 263 | self.handle.expect( "\$" ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 264 | self.handle.sendline( "onos -w " + str( ONOSIp ) ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 265 | self.handle.expect( "onos>" ) |
andrewonlab | 2a7ea9b | 2014-10-24 12:21:05 -0400 | [diff] [blame] | 266 | return main.TRUE |
| 267 | else: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 268 | # If failed, send ctrl+c to process and try again |
| 269 | main.log.info( "Starting CLI failed. Retrying..." ) |
| 270 | self.handle.send( "\x03" ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 271 | self.handle.sendline( "onos -w " + str( ONOSIp ) ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 272 | i = self.handle.expect( [ "onos>", pexpect.TIMEOUT ], |
| 273 | timeout=30 ) |
andrewonlab | 3a7c3c7 | 2014-10-24 17:21:03 -0400 | [diff] [blame] | 274 | if i == 0: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 275 | main.log.info( str( ONOSIp ) + " CLI Started " + |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 276 | "successfully after retry attempt" ) |
Hari Krishna | e36ef21 | 2015-01-04 14:09:13 -0800 | [diff] [blame] | 277 | if karafTimeout: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 278 | self.handle.sendline( |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 279 | "config:property-set -p org.apache.karaf.shell\ |
| 280 | sshIdleTimeout " + |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 281 | karafTimeout ) |
| 282 | self.handle.expect( "\$" ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 283 | self.handle.sendline( "onos -w " + str( ONOSIp ) ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 284 | self.handle.expect( "onos>" ) |
andrewonlab | 3a7c3c7 | 2014-10-24 17:21:03 -0400 | [diff] [blame] | 285 | return main.TRUE |
| 286 | else: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 287 | main.log.error( "Connection to CLI " + |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 288 | str( ONOSIp ) + " timeout" ) |
andrewonlab | 3a7c3c7 | 2014-10-24 17:21:03 -0400 | [diff] [blame] | 289 | return main.FALSE |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 290 | |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 291 | except TypeError: |
| 292 | main.log.exception( self.name + ": Object not as expected" ) |
| 293 | return None |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 294 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 295 | main.log.error( self.name + ": EOF exception found" ) |
| 296 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 297 | main.cleanup() |
| 298 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 299 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 300 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 301 | main.cleanup() |
| 302 | main.exit() |
| 303 | |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 304 | def log( self, cmdStr, level="" ): |
kelvin-onlab | 9f54103 | 2015-02-04 16:19:53 -0800 | [diff] [blame] | 305 | """ |
| 306 | log the commands in the onos CLI. |
kelvin-onlab | 338f551 | 2015-02-06 10:53:16 -0800 | [diff] [blame] | 307 | returns main.TRUE on success |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 308 | returns main.FALSE if Error occurred |
kelvin-onlab | 338f551 | 2015-02-06 10:53:16 -0800 | [diff] [blame] | 309 | Available level: DEBUG, TRACE, INFO, WARN, ERROR |
| 310 | Level defaults to INFO |
kelvin-onlab | 9f54103 | 2015-02-04 16:19:53 -0800 | [diff] [blame] | 311 | """ |
| 312 | try: |
kelvin-onlab | 338f551 | 2015-02-06 10:53:16 -0800 | [diff] [blame] | 313 | lvlStr = "" |
| 314 | if level: |
| 315 | lvlStr = "--level=" + level |
| 316 | |
kelvin-onlab | 9f54103 | 2015-02-04 16:19:53 -0800 | [diff] [blame] | 317 | self.handle.sendline( "" ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 318 | i = self.handle.expect( [ "onos>", "\$", pexpect.TIMEOUT ] ) |
Jon Hall | 80daded | 2015-05-27 16:07:00 -0700 | [diff] [blame] | 319 | if i == 1: |
You Wang | f69ab39 | 2016-01-26 16:34:38 -0800 | [diff] [blame] | 320 | main.log.error( self.name + ": onos cli session closed. ") |
| 321 | if self.onosIp: |
| 322 | main.log.warn( "Trying to reconnect " + self.onosIp ) |
| 323 | reconnectResult = self.startOnosCli( self.onosIp ) |
| 324 | if reconnectResult: |
| 325 | main.log.info( self.name + ": onos cli session reconnected." ) |
| 326 | else: |
| 327 | main.log.error( self.name + ": reconnection failed." ) |
| 328 | main.cleanup() |
| 329 | main.exit() |
| 330 | else: |
| 331 | main.cleanup() |
| 332 | main.exit() |
Jon Hall | c9eabec | 2015-06-10 14:33:14 -0700 | [diff] [blame] | 333 | if i == 2: |
Jon Hall | 80daded | 2015-05-27 16:07:00 -0700 | [diff] [blame] | 334 | self.handle.sendline( "" ) |
| 335 | self.handle.expect( "onos>" ) |
kelvin-onlab | 338f551 | 2015-02-06 10:53:16 -0800 | [diff] [blame] | 336 | self.handle.sendline( "log:log " + lvlStr + " " + cmdStr ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 337 | self.handle.expect( "log:log" ) |
kelvin-onlab | 9f54103 | 2015-02-04 16:19:53 -0800 | [diff] [blame] | 338 | self.handle.expect( "onos>" ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 339 | |
kelvin-onlab | 9f54103 | 2015-02-04 16:19:53 -0800 | [diff] [blame] | 340 | response = self.handle.before |
| 341 | if re.search( "Error", response ): |
| 342 | return main.FALSE |
| 343 | return main.TRUE |
Jon Hall | 80daded | 2015-05-27 16:07:00 -0700 | [diff] [blame] | 344 | except pexpect.TIMEOUT: |
| 345 | main.log.exception( self.name + ": TIMEOUT exception found" ) |
| 346 | main.cleanup() |
| 347 | main.exit() |
kelvin-onlab | 9f54103 | 2015-02-04 16:19:53 -0800 | [diff] [blame] | 348 | except pexpect.EOF: |
| 349 | main.log.error( self.name + ": EOF exception found" ) |
| 350 | main.log.error( self.name + ": " + self.handle.before ) |
| 351 | main.cleanup() |
| 352 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 353 | except Exception: |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 354 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 355 | main.cleanup() |
| 356 | main.exit() |
| 357 | |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 358 | def sendline( self, cmdStr, showResponse=False, debug=False, timeout=10 ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 359 | """ |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 360 | Send a completely user specified string to |
| 361 | the onos> prompt. Use this function if you have |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 362 | a very specific command to send. |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 363 | |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 364 | Warning: There are no sanity checking to commands |
| 365 | sent using this method. |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 366 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 367 | """ |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 368 | try: |
kelvin-onlab | 338f551 | 2015-02-06 10:53:16 -0800 | [diff] [blame] | 369 | logStr = "\"Sending CLI command: '" + cmdStr + "'\"" |
| 370 | self.log( logStr ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 371 | self.handle.sendline( cmdStr ) |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 372 | i = self.handle.expect( ["onos>", "\$"], timeout ) |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 373 | response = self.handle.before |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 374 | # TODO: do something with i |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 375 | main.log.info( "Command '" + str( cmdStr ) + "' sent to " |
| 376 | + self.name + "." ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 377 | if debug: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 378 | main.log.debug( self.name + ": Raw output" ) |
| 379 | main.log.debug( self.name + ": " + repr( response ) ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 380 | |
| 381 | # Remove ANSI color control strings from output |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 382 | ansiEscape = re.compile( r'\x1b[^m]*m' ) |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 383 | response = ansiEscape.sub( '', response ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 384 | if debug: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 385 | main.log.debug( self.name + ": ansiEscape output" ) |
| 386 | main.log.debug( self.name + ": " + repr( response ) ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 387 | |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 388 | # Remove extra return chars that get added |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 389 | response = re.sub( r"\s\r", "", response ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 390 | if debug: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 391 | main.log.debug( self.name + ": Removed extra returns " + |
| 392 | "from output" ) |
| 393 | main.log.debug( self.name + ": " + repr( response ) ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 394 | |
| 395 | # Strip excess whitespace |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 396 | response = response.strip() |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 397 | if debug: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 398 | main.log.debug( self.name + ": parsed and stripped output" ) |
| 399 | main.log.debug( self.name + ": " + repr( response ) ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 400 | |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 401 | # parse for just the output, remove the cmd from response |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 402 | output = response.split( cmdStr.strip(), 1 ) |
| 403 | if debug: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 404 | main.log.debug( self.name + ": split output" ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 405 | for r in output: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 406 | main.log.debug( self.name + ": " + repr( r ) ) |
GlennRC | 8587043 | 2015-11-23 11:45:51 -0800 | [diff] [blame] | 407 | output = output[1].strip() |
| 408 | if showResponse: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 409 | main.log.info( "Response from ONOS: {}".format( output ) ) |
GlennRC | 8587043 | 2015-11-23 11:45:51 -0800 | [diff] [blame] | 410 | return output |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 411 | except pexpect.TIMEOUT: |
| 412 | main.log.error( self.name + ":ONOS timeout" ) |
| 413 | if debug: |
| 414 | main.log.debug( self.handle.before ) |
| 415 | return None |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 416 | except IndexError: |
| 417 | main.log.exception( self.name + ": Object not as expected" ) |
| 418 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 419 | except TypeError: |
| 420 | main.log.exception( self.name + ": Object not as expected" ) |
| 421 | return None |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 422 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 423 | main.log.error( self.name + ": EOF exception found" ) |
| 424 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 425 | main.cleanup() |
| 426 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 427 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 428 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 429 | main.cleanup() |
| 430 | main.exit() |
| 431 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 432 | # IMPORTANT NOTE: |
| 433 | # For all cli commands, naming convention should match |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 434 | # the cli command changing 'a:b' with 'aB'. |
| 435 | # Ex ) onos:topology > onosTopology |
| 436 | # onos:links > onosLinks |
| 437 | # feature:list > featureList |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 438 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 439 | def addNode( self, nodeId, ONOSIp, tcpPort="" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 440 | """ |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 441 | Adds a new cluster node by ID and address information. |
| 442 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 443 | * nodeId |
| 444 | * ONOSIp |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 445 | Optional: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 446 | * tcpPort |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 447 | """ |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 448 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 449 | cmdStr = "add-node " + str( nodeId ) + " " +\ |
| 450 | str( ONOSIp ) + " " + str( tcpPort ) |
| 451 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 452 | assert "Command not found:" not in handle, handle |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 453 | if re.search( "Error", handle ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 454 | main.log.error( "Error in adding node" ) |
| 455 | main.log.error( handle ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 456 | return main.FALSE |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 457 | else: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 458 | main.log.info( "Node " + str( ONOSIp ) + " added" ) |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 459 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 460 | except AssertionError: |
| 461 | main.log.exception( "" ) |
| 462 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 463 | except TypeError: |
| 464 | main.log.exception( self.name + ": Object not as expected" ) |
| 465 | return None |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 466 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 467 | main.log.error( self.name + ": EOF exception found" ) |
| 468 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 469 | main.cleanup() |
| 470 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 471 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 472 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 473 | main.cleanup() |
| 474 | main.exit() |
| 475 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 476 | def removeNode( self, nodeId ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 477 | """ |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 478 | Removes a cluster by ID |
| 479 | Issues command: 'remove-node [<node-id>]' |
| 480 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 481 | * nodeId |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 482 | """ |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 483 | try: |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 484 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 485 | cmdStr = "remove-node " + str( nodeId ) |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 486 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 487 | assert "Command not found:" not in handle, handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 488 | if re.search( "Error", handle ): |
| 489 | main.log.error( "Error in removing node" ) |
| 490 | main.log.error( handle ) |
| 491 | return main.FALSE |
| 492 | else: |
| 493 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 494 | except AssertionError: |
| 495 | main.log.exception( "" ) |
| 496 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 497 | except TypeError: |
| 498 | main.log.exception( self.name + ": Object not as expected" ) |
| 499 | return None |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 500 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 501 | main.log.error( self.name + ": EOF exception found" ) |
| 502 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 503 | main.cleanup() |
| 504 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 505 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 506 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 507 | main.cleanup() |
| 508 | main.exit() |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 509 | |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 510 | def nodes( self, jsonFormat=True): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 511 | """ |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 512 | List the nodes currently visible |
| 513 | Issues command: 'nodes' |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 514 | Optional argument: |
| 515 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 516 | """ |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 517 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 518 | cmdStr = "nodes" |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 519 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 520 | cmdStr += " -j" |
| 521 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 522 | assert "Command not found:" not in output, output |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 523 | return output |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 524 | except AssertionError: |
| 525 | main.log.exception( "" ) |
| 526 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 527 | except TypeError: |
| 528 | main.log.exception( self.name + ": Object not as expected" ) |
| 529 | return None |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 530 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 531 | main.log.error( self.name + ": EOF exception found" ) |
| 532 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 533 | main.cleanup() |
| 534 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 535 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 536 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 537 | main.cleanup() |
| 538 | main.exit() |
| 539 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 540 | def topology( self ): |
| 541 | """ |
Hari Krishna | ef1bd4e | 2015-03-12 16:55:30 -0700 | [diff] [blame] | 542 | Definition: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 543 | Returns the output of topology command. |
Hari Krishna | ef1bd4e | 2015-03-12 16:55:30 -0700 | [diff] [blame] | 544 | Return: |
| 545 | topology = current ONOS topology |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 546 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 547 | try: |
Hari Krishna | ef1bd4e | 2015-03-12 16:55:30 -0700 | [diff] [blame] | 548 | cmdStr = "topology -j" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 549 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 550 | assert "Command not found:" not in handle, handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 551 | main.log.info( cmdStr + " returned: " + str( handle ) ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 552 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 553 | except AssertionError: |
| 554 | main.log.exception( "" ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 555 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 556 | except TypeError: |
| 557 | main.log.exception( self.name + ": Object not as expected" ) |
| 558 | return None |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 559 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 560 | main.log.error( self.name + ": EOF exception found" ) |
| 561 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 562 | main.cleanup() |
| 563 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 564 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 565 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 566 | main.cleanup() |
| 567 | main.exit() |
Jon Hall | ffb386d | 2014-11-21 13:43:38 -0800 | [diff] [blame] | 568 | |
jenkins | 7ead5a8 | 2015-03-13 10:28:21 -0700 | [diff] [blame] | 569 | def deviceRemove( self, deviceId ): |
| 570 | """ |
| 571 | Removes particular device from storage |
| 572 | |
| 573 | TODO: refactor this function |
| 574 | """ |
| 575 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 576 | cmdStr = "device-remove " + str( deviceId ) |
| 577 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 578 | assert "Command not found:" not in handle, handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 579 | if re.search( "Error", handle ): |
| 580 | main.log.error( "Error in removing device" ) |
| 581 | main.log.error( handle ) |
| 582 | return main.FALSE |
| 583 | else: |
| 584 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 585 | except AssertionError: |
| 586 | main.log.exception( "" ) |
| 587 | return None |
jenkins | 7ead5a8 | 2015-03-13 10:28:21 -0700 | [diff] [blame] | 588 | except TypeError: |
| 589 | main.log.exception( self.name + ": Object not as expected" ) |
| 590 | return None |
| 591 | except pexpect.EOF: |
| 592 | main.log.error( self.name + ": EOF exception found" ) |
| 593 | main.log.error( self.name + ": " + self.handle.before ) |
| 594 | main.cleanup() |
| 595 | main.exit() |
| 596 | except Exception: |
| 597 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 598 | main.cleanup() |
| 599 | main.exit() |
jenkins | 7ead5a8 | 2015-03-13 10:28:21 -0700 | [diff] [blame] | 600 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 601 | def devices( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 602 | """ |
Jon Hall | 7b02d95 | 2014-10-17 20:14:54 -0400 | [diff] [blame] | 603 | Lists all infrastructure devices or switches |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 604 | Optional argument: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 605 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 606 | """ |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 607 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 608 | cmdStr = "devices" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 609 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 610 | cmdStr += " -j" |
| 611 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 612 | assert "Command not found:" not in handle, handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 613 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 614 | except AssertionError: |
| 615 | main.log.exception( "" ) |
| 616 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 617 | except TypeError: |
| 618 | main.log.exception( self.name + ": Object not as expected" ) |
| 619 | return None |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 620 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 621 | main.log.error( self.name + ": EOF exception found" ) |
| 622 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 623 | main.cleanup() |
| 624 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 625 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 626 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 627 | main.cleanup() |
| 628 | main.exit() |
| 629 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 630 | def balanceMasters( self ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 631 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 632 | This balances the devices across all controllers |
| 633 | by issuing command: 'onos> onos:balance-masters' |
| 634 | If required this could be extended to return devices balanced output. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 635 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 636 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 637 | cmdStr = "onos:balance-masters" |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 638 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 639 | assert "Command not found:" not in handle, handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 640 | if re.search( "Error", handle ): |
| 641 | main.log.error( "Error in balancing masters" ) |
| 642 | main.log.error( handle ) |
| 643 | return main.FALSE |
| 644 | else: |
| 645 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 646 | except AssertionError: |
| 647 | main.log.exception( "" ) |
| 648 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 649 | except TypeError: |
| 650 | main.log.exception( self.name + ": Object not as expected" ) |
| 651 | return None |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 652 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 653 | main.log.error( self.name + ": EOF exception found" ) |
| 654 | main.log.error( self.name + ": " + self.handle.before ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 655 | main.cleanup() |
| 656 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 657 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 658 | main.log.exception( self.name + ": Uncaught exception!" ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 659 | main.cleanup() |
| 660 | main.exit() |
| 661 | |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 662 | def checkMasters( self, jsonFormat=True ): |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 663 | """ |
| 664 | Returns the output of the masters command. |
| 665 | Optional argument: |
| 666 | * jsonFormat - boolean indicating if you want output in json |
| 667 | """ |
| 668 | try: |
| 669 | cmdStr = "onos:masters" |
| 670 | if jsonFormat: |
| 671 | cmdStr += " -j" |
| 672 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 673 | assert "Command not found:" not in output, output |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 674 | return output |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 675 | except AssertionError: |
| 676 | main.log.exception( "" ) |
| 677 | return None |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 678 | except TypeError: |
| 679 | main.log.exception( self.name + ": Object not as expected" ) |
| 680 | return None |
| 681 | except pexpect.EOF: |
| 682 | main.log.error( self.name + ": EOF exception found" ) |
| 683 | main.log.error( self.name + ": " + self.handle.before ) |
| 684 | main.cleanup() |
| 685 | main.exit() |
| 686 | except Exception: |
| 687 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 688 | main.cleanup() |
| 689 | main.exit() |
| 690 | |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 691 | def checkBalanceMasters( self, jsonFormat=True ): |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 692 | """ |
| 693 | Uses the master command to check that the devices' leadership |
| 694 | is evenly divided |
| 695 | |
| 696 | Dependencies: checkMasters() and summary() |
| 697 | |
| 698 | Returns main.True if the devices are balanced |
| 699 | Returns main.False if the devices are unbalanced |
| 700 | Exits on Exception |
| 701 | Returns None on TypeError |
| 702 | """ |
| 703 | try: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 704 | summaryOutput = self.summary() |
| 705 | totalDevices = json.loads( summaryOutput )[ "devices" ] |
| 706 | except ( TypeError, ValueError ): |
| 707 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, summaryOutput ) ) |
| 708 | return None |
| 709 | try: |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 710 | totalOwnedDevices = 0 |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 711 | mastersOutput = self.checkMasters() |
| 712 | masters = json.loads( mastersOutput ) |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 713 | first = masters[ 0 ][ "size" ] |
| 714 | for master in masters: |
| 715 | totalOwnedDevices += master[ "size" ] |
| 716 | if master[ "size" ] > first + 1 or master[ "size" ] < first - 1: |
| 717 | main.log.error( "Mastership not balanced" ) |
| 718 | main.log.info( "\n" + self.checkMasters( False ) ) |
| 719 | return main.FALSE |
| 720 | main.log.info( "Mastership balanced between " \ |
| 721 | + str( len(masters) ) + " masters" ) |
| 722 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 723 | except ( TypeError, ValueError ): |
| 724 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, mastersOutput ) ) |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 725 | return None |
| 726 | except pexpect.EOF: |
| 727 | main.log.error( self.name + ": EOF exception found" ) |
| 728 | main.log.error( self.name + ": " + self.handle.before ) |
| 729 | main.cleanup() |
| 730 | main.exit() |
| 731 | except Exception: |
| 732 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 733 | main.cleanup() |
| 734 | main.exit() |
| 735 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 736 | def links( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 737 | """ |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 738 | Lists all core links |
| 739 | Optional argument: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 740 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 741 | """ |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 742 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 743 | cmdStr = "links" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 744 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 745 | cmdStr += " -j" |
| 746 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 747 | assert "Command not found:" not in handle, handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 748 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 749 | except AssertionError: |
| 750 | main.log.exception( "" ) |
| 751 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 752 | except TypeError: |
| 753 | main.log.exception( self.name + ": Object not as expected" ) |
| 754 | return None |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 755 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 756 | main.log.error( self.name + ": EOF exception found" ) |
| 757 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 758 | main.cleanup() |
| 759 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 760 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 761 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 762 | main.cleanup() |
| 763 | main.exit() |
| 764 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 765 | def ports( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 766 | """ |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 767 | Lists all ports |
| 768 | Optional argument: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 769 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 770 | """ |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 771 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 772 | cmdStr = "ports" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 773 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 774 | cmdStr += " -j" |
| 775 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 776 | assert "Command not found:" not in handle, handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 777 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 778 | except AssertionError: |
| 779 | main.log.exception( "" ) |
| 780 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 781 | except TypeError: |
| 782 | main.log.exception( self.name + ": Object not as expected" ) |
| 783 | return None |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 784 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 785 | main.log.error( self.name + ": EOF exception found" ) |
| 786 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 787 | main.cleanup() |
| 788 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 789 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 790 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 791 | main.cleanup() |
| 792 | main.exit() |
| 793 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 794 | def roles( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 795 | """ |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 796 | Lists all devices and the controllers with roles assigned to them |
| 797 | Optional argument: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 798 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 799 | """ |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 800 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 801 | cmdStr = "roles" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 802 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 803 | cmdStr += " -j" |
| 804 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 805 | assert "Command not found:" not in handle, handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 806 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 807 | except AssertionError: |
| 808 | main.log.exception( "" ) |
| 809 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 810 | except TypeError: |
| 811 | main.log.exception( self.name + ": Object not as expected" ) |
| 812 | return None |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 813 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 814 | main.log.error( self.name + ": EOF exception found" ) |
| 815 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 816 | main.cleanup() |
| 817 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 818 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 819 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 820 | main.cleanup() |
| 821 | main.exit() |
| 822 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 823 | def getRole( self, deviceId ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 824 | """ |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 825 | Given the a string containing the json representation of the "roles" |
| 826 | cli command and a partial or whole device id, returns a json object |
| 827 | containing the roles output for the first device whose id contains |
| 828 | "device_id" |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 829 | |
| 830 | Returns: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 831 | A dict of the role assignments for the given device or |
| 832 | None if no match |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 833 | """ |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 834 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 835 | if deviceId is None: |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 836 | return None |
| 837 | else: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 838 | rawRoles = self.roles() |
| 839 | rolesJson = json.loads( rawRoles ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 840 | # search json for the device with id then return the device |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 841 | for device in rolesJson: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 842 | # print device |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 843 | if str( deviceId ) in device[ 'id' ]: |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 844 | return device |
| 845 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 846 | except ( TypeError, ValueError ): |
| 847 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawRoles ) ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 848 | return None |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 849 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 850 | main.log.error( self.name + ": EOF exception found" ) |
| 851 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 852 | main.cleanup() |
| 853 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 854 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 855 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 856 | main.cleanup() |
| 857 | main.exit() |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 858 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 859 | def rolesNotNull( self ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 860 | """ |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 861 | Iterates through each device and checks if there is a master assigned |
| 862 | Returns: main.TRUE if each device has a master |
| 863 | main.FALSE any device has no master |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 864 | """ |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 865 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 866 | rawRoles = self.roles() |
| 867 | rolesJson = json.loads( rawRoles ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 868 | # search json for the device with id then return the device |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 869 | for device in rolesJson: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 870 | # print device |
| 871 | if device[ 'master' ] == "none": |
| 872 | main.log.warn( "Device has no master: " + str( device ) ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 873 | return main.FALSE |
| 874 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 875 | except ( TypeError, ValueError ): |
| 876 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawRoles ) ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 877 | return None |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 878 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 879 | main.log.error( self.name + ": EOF exception found" ) |
| 880 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 881 | main.cleanup() |
| 882 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 883 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 884 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 885 | main.cleanup() |
| 886 | main.exit() |
| 887 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 888 | def paths( self, srcId, dstId ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 889 | """ |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 890 | Returns string of paths, and the cost. |
| 891 | Issues command: onos:paths <src> <dst> |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 892 | """ |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 893 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 894 | cmdStr = "onos:paths " + str( srcId ) + " " + str( dstId ) |
| 895 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 896 | assert "Command not found:" not in handle, handle |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 897 | if re.search( "Error", handle ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 898 | main.log.error( "Error in getting paths" ) |
| 899 | return ( handle, "Error" ) |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 900 | else: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 901 | path = handle.split( ";" )[ 0 ] |
| 902 | cost = handle.split( ";" )[ 1 ] |
| 903 | return ( path, cost ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 904 | except AssertionError: |
| 905 | main.log.exception( "" ) |
| 906 | return ( handle, "Error" ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 907 | except TypeError: |
| 908 | main.log.exception( self.name + ": Object not as expected" ) |
| 909 | return ( handle, "Error" ) |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 910 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 911 | main.log.error( self.name + ": EOF exception found" ) |
| 912 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 913 | main.cleanup() |
| 914 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 915 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 916 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 917 | main.cleanup() |
| 918 | main.exit() |
Jon Hall | ffb386d | 2014-11-21 13:43:38 -0800 | [diff] [blame] | 919 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 920 | def hosts( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 921 | """ |
Jon Hall | ffb386d | 2014-11-21 13:43:38 -0800 | [diff] [blame] | 922 | Lists all discovered hosts |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 923 | Optional argument: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 924 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 925 | """ |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 926 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 927 | cmdStr = "hosts" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 928 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 929 | cmdStr += " -j" |
| 930 | handle = self.sendline( cmdStr ) |
Jeremy | d9e4eb1 | 2016-04-13 12:09:06 -0700 | [diff] [blame] | 931 | if handle: |
| 932 | assert "Command not found:" not in handle, handle |
Jon Hall | baf5316 | 2015-12-17 17:04:34 -0800 | [diff] [blame] | 933 | # TODO: Maybe make this less hardcoded |
| 934 | # ConsistentMap Exceptions |
| 935 | assert "org.onosproject.store.service" not in handle |
| 936 | # Node not leader |
| 937 | assert "java.lang.IllegalStateException" not in handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 938 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 939 | except AssertionError: |
Jeremy | d9e4eb1 | 2016-04-13 12:09:06 -0700 | [diff] [blame] | 940 | main.log.exception( "Error in processing '" + cmdStr + "' " + |
Jeremy Songster | 6949cea | 2016-04-19 18:13:18 -0700 | [diff] [blame] | 941 | "command: " + str( handle ) ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 942 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 943 | except TypeError: |
| 944 | main.log.exception( self.name + ": Object not as expected" ) |
| 945 | return None |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 946 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 947 | main.log.error( self.name + ": EOF exception found" ) |
| 948 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 949 | main.cleanup() |
| 950 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 951 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 952 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 953 | main.cleanup() |
| 954 | main.exit() |
| 955 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 956 | def getHost( self, mac ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 957 | """ |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 958 | Return the first host from the hosts api whose 'id' contains 'mac' |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 959 | |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 960 | 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] | 961 | partial mac address |
| 962 | |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 963 | Return None if there is no match |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 964 | """ |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 965 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 966 | if mac is None: |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 967 | return None |
| 968 | else: |
| 969 | mac = mac |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 970 | rawHosts = self.hosts() |
| 971 | hostsJson = json.loads( rawHosts ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 972 | # search json for the host with mac then return the device |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 973 | for host in hostsJson: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 974 | # print "%s in %s?" % ( mac, host[ 'id' ] ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 975 | if not host: |
| 976 | pass |
| 977 | elif mac in host[ 'id' ]: |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 978 | return host |
| 979 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 980 | except ( TypeError, ValueError ): |
| 981 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawHosts ) ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 982 | return None |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 983 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 984 | main.log.error( self.name + ": EOF exception found" ) |
| 985 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 986 | main.cleanup() |
| 987 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 988 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 989 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 990 | main.cleanup() |
| 991 | main.exit() |
| 992 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 993 | def getHostsId( self, hostList ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 994 | """ |
| 995 | Obtain list of hosts |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 996 | Issues command: 'onos> hosts' |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 997 | |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 998 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 999 | * hostList: List of hosts obtained by Mininet |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 1000 | IMPORTANT: |
| 1001 | This function assumes that you started your |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1002 | topology with the option '--mac'. |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 1003 | Furthermore, it assumes that value of VLAN is '-1' |
| 1004 | Description: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1005 | Converts mininet hosts ( h1, h2, h3... ) into |
| 1006 | ONOS format ( 00:00:00:00:00:01/-1 , ... ) |
| 1007 | """ |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 1008 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1009 | onosHostList = [] |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 1010 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1011 | for host in hostList: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1012 | host = host.replace( "h", "" ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1013 | hostHex = hex( int( host ) ).zfill( 12 ) |
| 1014 | hostHex = str( hostHex ).replace( 'x', '0' ) |
| 1015 | i = iter( str( hostHex ) ) |
| 1016 | hostHex = ":".join( a + b for a, b in zip( i, i ) ) |
| 1017 | hostHex = hostHex + "/-1" |
| 1018 | onosHostList.append( hostHex ) |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 1019 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1020 | return onosHostList |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 1021 | |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1022 | except TypeError: |
| 1023 | main.log.exception( self.name + ": Object not as expected" ) |
| 1024 | return None |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 1025 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1026 | main.log.error( self.name + ": EOF exception found" ) |
| 1027 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 1028 | main.cleanup() |
| 1029 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1030 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1031 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 1032 | main.cleanup() |
| 1033 | main.exit() |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 1034 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1035 | def addHostIntent( self, hostIdOne, hostIdTwo ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1036 | """ |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1037 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1038 | * hostIdOne: ONOS host id for host1 |
| 1039 | * hostIdTwo: ONOS host id for host2 |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1040 | Description: |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1041 | Adds a host-to-host intent ( bidirectional ) by |
Jon Hall | b1290e8 | 2014-11-18 16:17:48 -0500 | [diff] [blame] | 1042 | specifying the two hosts. |
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 |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1045 | """ |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1046 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1047 | cmdStr = "add-host-intent " + str( hostIdOne ) +\ |
| 1048 | " " + str( hostIdTwo ) |
| 1049 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1050 | assert "Command not found:" not in handle, handle |
Hari Krishna | ac4e178 | 2015-01-26 12:09:12 -0800 | [diff] [blame] | 1051 | if re.search( "Error", handle ): |
| 1052 | main.log.error( "Error in adding Host intent" ) |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 1053 | main.log.debug( "Response from ONOS was: " + repr( handle ) ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1054 | return None |
Hari Krishna | ac4e178 | 2015-01-26 12:09:12 -0800 | [diff] [blame] | 1055 | else: |
| 1056 | main.log.info( "Host intent installed between " + |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1057 | str( hostIdOne ) + " and " + str( hostIdTwo ) ) |
| 1058 | match = re.search('id=0x([\da-f]+),', handle) |
| 1059 | if match: |
| 1060 | return match.group()[3:-1] |
| 1061 | else: |
| 1062 | main.log.error( "Error, intent ID not found" ) |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 1063 | main.log.debug( "Response from ONOS was: " + |
| 1064 | repr( handle ) ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1065 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1066 | except AssertionError: |
| 1067 | main.log.exception( "" ) |
| 1068 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1069 | except TypeError: |
| 1070 | main.log.exception( self.name + ": Object not as expected" ) |
| 1071 | return None |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1072 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1073 | main.log.error( self.name + ": EOF exception found" ) |
| 1074 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1075 | main.cleanup() |
| 1076 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1077 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1078 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1079 | main.cleanup() |
| 1080 | main.exit() |
| 1081 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1082 | def addOpticalIntent( self, ingressDevice, egressDevice ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1083 | """ |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 1084 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1085 | * ingressDevice: device id of ingress device |
| 1086 | * egressDevice: device id of egress device |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 1087 | Optional: |
| 1088 | TODO: Still needs to be implemented via dev side |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1089 | Description: |
| 1090 | Adds an optical intent by specifying an ingress and egress device |
| 1091 | Returns: |
| 1092 | A string of the intent id or None on error |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1093 | """ |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 1094 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1095 | cmdStr = "add-optical-intent " + str( ingressDevice ) +\ |
| 1096 | " " + str( egressDevice ) |
| 1097 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1098 | assert "Command not found:" not in handle, handle |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1099 | # If error, return error message |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1100 | if re.search( "Error", handle ): |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1101 | main.log.error( "Error in adding Optical intent" ) |
| 1102 | return None |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 1103 | else: |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1104 | main.log.info( "Optical intent installed between " + |
| 1105 | str( ingressDevice ) + " and " + |
| 1106 | str( egressDevice ) ) |
| 1107 | match = re.search('id=0x([\da-f]+),', handle) |
| 1108 | if match: |
| 1109 | return match.group()[3:-1] |
| 1110 | else: |
| 1111 | main.log.error( "Error, intent ID not found" ) |
| 1112 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1113 | except AssertionError: |
| 1114 | main.log.exception( "" ) |
| 1115 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1116 | except TypeError: |
| 1117 | main.log.exception( self.name + ": Object not as expected" ) |
| 1118 | return None |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 1119 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1120 | main.log.error( self.name + ": EOF exception found" ) |
| 1121 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 1122 | main.cleanup() |
| 1123 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1124 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1125 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 1126 | main.cleanup() |
| 1127 | main.exit() |
| 1128 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1129 | def addPointIntent( |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1130 | self, |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1131 | ingressDevice, |
| 1132 | egressDevice, |
| 1133 | portIngress="", |
| 1134 | portEgress="", |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1135 | ethType="", |
| 1136 | ethSrc="", |
| 1137 | ethDst="", |
| 1138 | bandwidth="", |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1139 | lambdaAlloc=False, |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1140 | ipProto="", |
| 1141 | ipSrc="", |
| 1142 | ipDst="", |
| 1143 | tcpSrc="", |
| 1144 | tcpDst="" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1145 | """ |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1146 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1147 | * ingressDevice: device id of ingress device |
| 1148 | * egressDevice: device id of egress device |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 1149 | Optional: |
| 1150 | * ethType: specify ethType |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1151 | * ethSrc: specify ethSrc ( i.e. src mac addr ) |
| 1152 | * ethDst: specify ethDst ( i.e. dst mac addr ) |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 1153 | * bandwidth: specify bandwidth capacity of link |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1154 | * lambdaAlloc: if True, intent will allocate lambda |
andrewonlab | 40ccd8b | 2014-11-06 16:23:34 -0500 | [diff] [blame] | 1155 | for the specified intent |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1156 | * ipProto: specify ip protocol |
andrewonlab | f77e0cb | 2014-11-11 17:17:59 -0500 | [diff] [blame] | 1157 | * ipSrc: specify ip source address |
| 1158 | * ipDst: specify ip destination address |
| 1159 | * tcpSrc: specify tcp source port |
| 1160 | * tcpDst: specify tcp destination port |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1161 | Description: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1162 | Adds a point-to-point intent ( uni-directional ) by |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 1163 | specifying device id's and optional fields |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1164 | Returns: |
| 1165 | A string of the intent id or None on error |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 1166 | |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1167 | NOTE: This function may change depending on the |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1168 | options developers provide for point-to-point |
| 1169 | intent via cli |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1170 | """ |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1171 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1172 | # If there are no optional arguments |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 1173 | if not ethType and not ethSrc and not ethDst\ |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1174 | and not bandwidth and not lambdaAlloc \ |
andrewonlab | fa4ff50 | 2014-11-11 16:41:30 -0500 | [diff] [blame] | 1175 | and not ipProto and not ipSrc and not ipDst \ |
| 1176 | and not tcpSrc and not tcpDst: |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1177 | cmd = "add-point-intent" |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1178 | |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 1179 | else: |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1180 | cmd = "add-point-intent" |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1181 | |
andrewonlab | 0c0a677 | 2014-10-22 12:31:18 -0400 | [diff] [blame] | 1182 | if ethType: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1183 | cmd += " --ethType " + str( ethType ) |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 1184 | if ethSrc: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1185 | cmd += " --ethSrc " + str( ethSrc ) |
| 1186 | if ethDst: |
| 1187 | cmd += " --ethDst " + str( ethDst ) |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 1188 | if bandwidth: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1189 | cmd += " --bandwidth " + str( bandwidth ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1190 | if lambdaAlloc: |
andrewonlab | fa4ff50 | 2014-11-11 16:41:30 -0500 | [diff] [blame] | 1191 | cmd += " --lambda " |
| 1192 | if ipProto: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1193 | cmd += " --ipProto " + str( ipProto ) |
andrewonlab | fa4ff50 | 2014-11-11 16:41:30 -0500 | [diff] [blame] | 1194 | if ipSrc: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1195 | cmd += " --ipSrc " + str( ipSrc ) |
andrewonlab | fa4ff50 | 2014-11-11 16:41:30 -0500 | [diff] [blame] | 1196 | if ipDst: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1197 | cmd += " --ipDst " + str( ipDst ) |
andrewonlab | fa4ff50 | 2014-11-11 16:41:30 -0500 | [diff] [blame] | 1198 | if tcpSrc: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1199 | cmd += " --tcpSrc " + str( tcpSrc ) |
andrewonlab | fa4ff50 | 2014-11-11 16:41:30 -0500 | [diff] [blame] | 1200 | if tcpDst: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1201 | cmd += " --tcpDst " + str( tcpDst ) |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 1202 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1203 | # Check whether the user appended the port |
| 1204 | # or provided it as an input |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1205 | if "/" in ingressDevice: |
| 1206 | cmd += " " + str( ingressDevice ) |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1207 | else: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1208 | if not portIngress: |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1209 | main.log.error( "You must specify the ingress port" ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1210 | # TODO: perhaps more meaningful return |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1211 | # Would it make sense to throw an exception and exit |
| 1212 | # the test? |
| 1213 | return None |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1214 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1215 | cmd += " " + \ |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1216 | str( ingressDevice ) + "/" +\ |
| 1217 | str( portIngress ) + " " |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1218 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1219 | if "/" in egressDevice: |
| 1220 | cmd += " " + str( egressDevice ) |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1221 | else: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1222 | if not portEgress: |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1223 | main.log.error( "You must specify the egress port" ) |
| 1224 | return None |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1225 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1226 | cmd += " " +\ |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1227 | str( egressDevice ) + "/" +\ |
| 1228 | str( portEgress ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1229 | |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1230 | handle = self.sendline( cmd ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1231 | assert "Command not found:" not in handle, handle |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1232 | # If error, return error message |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1233 | if re.search( "Error", handle ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1234 | main.log.error( "Error in adding point-to-point intent" ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1235 | return None |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1236 | else: |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1237 | # TODO: print out all the options in this message? |
| 1238 | main.log.info( "Point-to-point intent installed between " + |
| 1239 | str( ingressDevice ) + " and " + |
| 1240 | str( egressDevice ) ) |
| 1241 | match = re.search('id=0x([\da-f]+),', handle) |
| 1242 | if match: |
| 1243 | return match.group()[3:-1] |
| 1244 | else: |
| 1245 | main.log.error( "Error, intent ID not found" ) |
| 1246 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1247 | except AssertionError: |
| 1248 | main.log.exception( "" ) |
| 1249 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1250 | except TypeError: |
| 1251 | main.log.exception( self.name + ": Object not as expected" ) |
| 1252 | return None |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1253 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1254 | main.log.error( self.name + ": EOF exception found" ) |
| 1255 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1256 | main.cleanup() |
| 1257 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1258 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1259 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1260 | main.cleanup() |
| 1261 | main.exit() |
| 1262 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1263 | def addMultipointToSinglepointIntent( |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1264 | self, |
shahshreya | c2f9707 | 2015-03-19 17:04:29 -0700 | [diff] [blame] | 1265 | ingressDeviceList, |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1266 | egressDevice, |
shahshreya | c2f9707 | 2015-03-19 17:04:29 -0700 | [diff] [blame] | 1267 | portIngressList=None, |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1268 | portEgress="", |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1269 | ethType="", |
| 1270 | ethSrc="", |
| 1271 | ethDst="", |
| 1272 | bandwidth="", |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1273 | lambdaAlloc=False, |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1274 | ipProto="", |
| 1275 | ipSrc="", |
| 1276 | ipDst="", |
| 1277 | tcpSrc="", |
| 1278 | tcpDst="", |
| 1279 | setEthSrc="", |
| 1280 | setEthDst="" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1281 | """ |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1282 | Note: |
shahshreya | 70622b1 | 2015-03-19 17:19:00 -0700 | [diff] [blame] | 1283 | This function assumes the format of all ingress devices |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 1284 | is same. That is, all ingress devices include port numbers |
| 1285 | with a "/" or all ingress devices could specify device |
| 1286 | ids and port numbers seperately. |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1287 | Required: |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 1288 | * ingressDeviceList: List of device ids of ingress device |
shahshreya | c2f9707 | 2015-03-19 17:04:29 -0700 | [diff] [blame] | 1289 | ( Atleast 2 ingress devices required in the list ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1290 | * egressDevice: device id of egress device |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1291 | Optional: |
| 1292 | * ethType: specify ethType |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1293 | * ethSrc: specify ethSrc ( i.e. src mac addr ) |
| 1294 | * ethDst: specify ethDst ( i.e. dst mac addr ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1295 | * bandwidth: specify bandwidth capacity of link |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1296 | * lambdaAlloc: if True, intent will allocate lambda |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1297 | for the specified intent |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1298 | * ipProto: specify ip protocol |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1299 | * ipSrc: specify ip source address |
| 1300 | * ipDst: specify ip destination address |
| 1301 | * tcpSrc: specify tcp source port |
| 1302 | * tcpDst: specify tcp destination port |
| 1303 | * setEthSrc: action to Rewrite Source MAC Address |
| 1304 | * setEthDst: action to Rewrite Destination MAC Address |
| 1305 | Description: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1306 | Adds a multipoint-to-singlepoint intent ( uni-directional ) by |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1307 | specifying device id's and optional fields |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1308 | Returns: |
| 1309 | A string of the intent id or None on error |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1310 | |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1311 | NOTE: This function may change depending on the |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1312 | options developers provide for multipoint-to-singlepoint |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1313 | intent via cli |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1314 | """ |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1315 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1316 | # If there are no optional arguments |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1317 | if not ethType and not ethSrc and not ethDst\ |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1318 | and not bandwidth and not lambdaAlloc\ |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1319 | and not ipProto and not ipSrc and not ipDst\ |
| 1320 | and not tcpSrc and not tcpDst and not setEthSrc\ |
| 1321 | and not setEthDst: |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1322 | cmd = "add-multi-to-single-intent" |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1323 | |
| 1324 | else: |
| 1325 | cmd = "add-multi-to-single-intent" |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1326 | |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1327 | if ethType: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1328 | cmd += " --ethType " + str( ethType ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1329 | if ethSrc: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1330 | cmd += " --ethSrc " + str( ethSrc ) |
| 1331 | if ethDst: |
| 1332 | cmd += " --ethDst " + str( ethDst ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1333 | if bandwidth: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1334 | cmd += " --bandwidth " + str( bandwidth ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1335 | if lambdaAlloc: |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1336 | cmd += " --lambda " |
| 1337 | if ipProto: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1338 | cmd += " --ipProto " + str( ipProto ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1339 | if ipSrc: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1340 | cmd += " --ipSrc " + str( ipSrc ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1341 | if ipDst: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1342 | cmd += " --ipDst " + str( ipDst ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1343 | if tcpSrc: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1344 | cmd += " --tcpSrc " + str( tcpSrc ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1345 | if tcpDst: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1346 | cmd += " --tcpDst " + str( tcpDst ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1347 | if setEthSrc: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1348 | cmd += " --setEthSrc " + str( setEthSrc ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1349 | if setEthDst: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1350 | cmd += " --setEthDst " + str( setEthDst ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1351 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1352 | # Check whether the user appended the port |
| 1353 | # or provided it as an input |
shahshreya | c2f9707 | 2015-03-19 17:04:29 -0700 | [diff] [blame] | 1354 | |
| 1355 | if portIngressList is None: |
| 1356 | for ingressDevice in ingressDeviceList: |
| 1357 | if "/" in ingressDevice: |
| 1358 | cmd += " " + str( ingressDevice ) |
| 1359 | else: |
| 1360 | main.log.error( "You must specify " + |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 1361 | "the ingress port" ) |
shahshreya | c2f9707 | 2015-03-19 17:04:29 -0700 | [diff] [blame] | 1362 | # TODO: perhaps more meaningful return |
| 1363 | return main.FALSE |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1364 | else: |
Jon Hall | 71ce4e7 | 2015-03-23 14:05:58 -0700 | [diff] [blame] | 1365 | if len( ingressDeviceList ) == len( portIngressList ): |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 1366 | for ingressDevice, portIngress in zip( ingressDeviceList, |
| 1367 | portIngressList ): |
shahshreya | 70622b1 | 2015-03-19 17:19:00 -0700 | [diff] [blame] | 1368 | cmd += " " + \ |
| 1369 | str( ingressDevice ) + "/" +\ |
| 1370 | str( portIngress ) + " " |
kelvin-onlab | 3814381 | 2015-04-01 15:03:01 -0700 | [diff] [blame] | 1371 | else: |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 1372 | main.log.error( "Device list and port list does not " + |
| 1373 | "have the same length" ) |
kelvin-onlab | 3814381 | 2015-04-01 15:03:01 -0700 | [diff] [blame] | 1374 | return main.FALSE |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1375 | if "/" in egressDevice: |
| 1376 | cmd += " " + str( egressDevice ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1377 | else: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1378 | if not portEgress: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1379 | main.log.error( "You must specify " + |
| 1380 | "the egress port" ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1381 | return main.FALSE |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1382 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1383 | cmd += " " +\ |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1384 | str( egressDevice ) + "/" +\ |
| 1385 | str( portEgress ) |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1386 | handle = self.sendline( cmd ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1387 | assert "Command not found:" not in handle, handle |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1388 | # If error, return error message |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1389 | if re.search( "Error", handle ): |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1390 | main.log.error( "Error in adding multipoint-to-singlepoint " + |
| 1391 | "intent" ) |
| 1392 | return None |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1393 | else: |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1394 | match = re.search('id=0x([\da-f]+),', handle) |
| 1395 | if match: |
| 1396 | return match.group()[3:-1] |
| 1397 | else: |
| 1398 | main.log.error( "Error, intent ID not found" ) |
| 1399 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1400 | except AssertionError: |
| 1401 | main.log.exception( "" ) |
| 1402 | return None |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1403 | except TypeError: |
| 1404 | main.log.exception( self.name + ": Object not as expected" ) |
| 1405 | return None |
| 1406 | except pexpect.EOF: |
| 1407 | main.log.error( self.name + ": EOF exception found" ) |
| 1408 | main.log.error( self.name + ": " + self.handle.before ) |
| 1409 | main.cleanup() |
| 1410 | main.exit() |
| 1411 | except Exception: |
| 1412 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 1413 | main.cleanup() |
| 1414 | main.exit() |
| 1415 | |
| 1416 | def addSinglepointToMultipointIntent( |
| 1417 | self, |
| 1418 | ingressDevice, |
| 1419 | egressDeviceList, |
| 1420 | portIngress="", |
| 1421 | portEgressList=None, |
| 1422 | ethType="", |
| 1423 | ethSrc="", |
| 1424 | ethDst="", |
| 1425 | bandwidth="", |
| 1426 | lambdaAlloc=False, |
| 1427 | ipProto="", |
| 1428 | ipSrc="", |
| 1429 | ipDst="", |
| 1430 | tcpSrc="", |
| 1431 | tcpDst="", |
| 1432 | setEthSrc="", |
| 1433 | setEthDst="" ): |
| 1434 | """ |
| 1435 | Note: |
| 1436 | This function assumes the format of all egress devices |
| 1437 | is same. That is, all egress devices include port numbers |
| 1438 | with a "/" or all egress devices could specify device |
| 1439 | ids and port numbers seperately. |
| 1440 | Required: |
| 1441 | * EgressDeviceList: List of device ids of egress device |
| 1442 | ( Atleast 2 eress devices required in the list ) |
| 1443 | * ingressDevice: device id of ingress device |
| 1444 | Optional: |
| 1445 | * ethType: specify ethType |
| 1446 | * ethSrc: specify ethSrc ( i.e. src mac addr ) |
| 1447 | * ethDst: specify ethDst ( i.e. dst mac addr ) |
| 1448 | * bandwidth: specify bandwidth capacity of link |
| 1449 | * lambdaAlloc: if True, intent will allocate lambda |
| 1450 | for the specified intent |
| 1451 | * ipProto: specify ip protocol |
| 1452 | * ipSrc: specify ip source address |
| 1453 | * ipDst: specify ip destination address |
| 1454 | * tcpSrc: specify tcp source port |
| 1455 | * tcpDst: specify tcp destination port |
| 1456 | * setEthSrc: action to Rewrite Source MAC Address |
| 1457 | * setEthDst: action to Rewrite Destination MAC Address |
| 1458 | Description: |
| 1459 | Adds a singlepoint-to-multipoint intent ( uni-directional ) by |
| 1460 | specifying device id's and optional fields |
| 1461 | Returns: |
| 1462 | A string of the intent id or None on error |
| 1463 | |
| 1464 | NOTE: This function may change depending on the |
| 1465 | options developers provide for singlepoint-to-multipoint |
| 1466 | intent via cli |
| 1467 | """ |
| 1468 | try: |
| 1469 | # If there are no optional arguments |
| 1470 | if not ethType and not ethSrc and not ethDst\ |
| 1471 | and not bandwidth and not lambdaAlloc\ |
| 1472 | and not ipProto and not ipSrc and not ipDst\ |
| 1473 | and not tcpSrc and not tcpDst and not setEthSrc\ |
| 1474 | and not setEthDst: |
| 1475 | cmd = "add-single-to-multi-intent" |
| 1476 | |
| 1477 | else: |
| 1478 | cmd = "add-single-to-multi-intent" |
| 1479 | |
| 1480 | if ethType: |
| 1481 | cmd += " --ethType " + str( ethType ) |
| 1482 | if ethSrc: |
| 1483 | cmd += " --ethSrc " + str( ethSrc ) |
| 1484 | if ethDst: |
| 1485 | cmd += " --ethDst " + str( ethDst ) |
| 1486 | if bandwidth: |
| 1487 | cmd += " --bandwidth " + str( bandwidth ) |
| 1488 | if lambdaAlloc: |
| 1489 | cmd += " --lambda " |
| 1490 | if ipProto: |
| 1491 | cmd += " --ipProto " + str( ipProto ) |
| 1492 | if ipSrc: |
| 1493 | cmd += " --ipSrc " + str( ipSrc ) |
| 1494 | if ipDst: |
| 1495 | cmd += " --ipDst " + str( ipDst ) |
| 1496 | if tcpSrc: |
| 1497 | cmd += " --tcpSrc " + str( tcpSrc ) |
| 1498 | if tcpDst: |
| 1499 | cmd += " --tcpDst " + str( tcpDst ) |
| 1500 | if setEthSrc: |
| 1501 | cmd += " --setEthSrc " + str( setEthSrc ) |
| 1502 | if setEthDst: |
| 1503 | cmd += " --setEthDst " + str( setEthDst ) |
| 1504 | |
| 1505 | # Check whether the user appended the port |
| 1506 | # or provided it as an input |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 1507 | |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1508 | if "/" in ingressDevice: |
| 1509 | cmd += " " + str( ingressDevice ) |
| 1510 | else: |
| 1511 | if not portIngress: |
| 1512 | main.log.error( "You must specify " + |
| 1513 | "the Ingress port" ) |
| 1514 | return main.FALSE |
| 1515 | |
| 1516 | cmd += " " +\ |
| 1517 | str( ingressDevice ) + "/" +\ |
| 1518 | str( portIngress ) |
| 1519 | |
| 1520 | if portEgressList is None: |
| 1521 | for egressDevice in egressDeviceList: |
| 1522 | if "/" in egressDevice: |
| 1523 | cmd += " " + str( egressDevice ) |
| 1524 | else: |
| 1525 | main.log.error( "You must specify " + |
| 1526 | "the egress port" ) |
| 1527 | # TODO: perhaps more meaningful return |
| 1528 | return main.FALSE |
| 1529 | else: |
| 1530 | if len( egressDeviceList ) == len( portEgressList ): |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 1531 | for egressDevice, portEgress in zip( egressDeviceList, |
| 1532 | portEgressList ): |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1533 | cmd += " " + \ |
| 1534 | str( egressDevice ) + "/" +\ |
| 1535 | str( portEgress ) |
kelvin-onlab | 3814381 | 2015-04-01 15:03:01 -0700 | [diff] [blame] | 1536 | else: |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 1537 | main.log.error( "Device list and port list does not " + |
| 1538 | "have the same length" ) |
kelvin-onlab | 3814381 | 2015-04-01 15:03:01 -0700 | [diff] [blame] | 1539 | return main.FALSE |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1540 | handle = self.sendline( cmd ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1541 | assert "Command not found:" not in handle, handle |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1542 | # If error, return error message |
| 1543 | if re.search( "Error", handle ): |
| 1544 | main.log.error( "Error in adding singlepoint-to-multipoint " + |
| 1545 | "intent" ) |
shahshreya | c2f9707 | 2015-03-19 17:04:29 -0700 | [diff] [blame] | 1546 | return None |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1547 | else: |
| 1548 | match = re.search('id=0x([\da-f]+),', handle) |
| 1549 | if match: |
| 1550 | return match.group()[3:-1] |
| 1551 | else: |
| 1552 | main.log.error( "Error, intent ID not found" ) |
| 1553 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1554 | except AssertionError: |
| 1555 | main.log.exception( "" ) |
| 1556 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1557 | except TypeError: |
| 1558 | main.log.exception( self.name + ": Object not as expected" ) |
| 1559 | return None |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1560 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1561 | main.log.error( self.name + ": EOF exception found" ) |
| 1562 | main.log.error( self.name + ": " + self.handle.before ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1563 | main.cleanup() |
| 1564 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1565 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1566 | main.log.exception( self.name + ": Uncaught exception!" ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1567 | main.cleanup() |
| 1568 | main.exit() |
| 1569 | |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1570 | def addMplsIntent( |
| 1571 | self, |
| 1572 | ingressDevice, |
| 1573 | egressDevice, |
Hari Krishna | 87a17f1 | 2015-04-13 17:42:23 -0700 | [diff] [blame] | 1574 | ingressPort="", |
| 1575 | egressPort="", |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1576 | ethType="", |
| 1577 | ethSrc="", |
| 1578 | ethDst="", |
| 1579 | bandwidth="", |
| 1580 | lambdaAlloc=False, |
| 1581 | ipProto="", |
| 1582 | ipSrc="", |
| 1583 | ipDst="", |
| 1584 | tcpSrc="", |
| 1585 | tcpDst="", |
Hari Krishna | 87a17f1 | 2015-04-13 17:42:23 -0700 | [diff] [blame] | 1586 | ingressLabel="", |
Hari Krishna | dfff667 | 2015-04-13 17:53:27 -0700 | [diff] [blame] | 1587 | egressLabel="", |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1588 | priority=""): |
| 1589 | """ |
| 1590 | Required: |
| 1591 | * ingressDevice: device id of ingress device |
| 1592 | * egressDevice: device id of egress device |
| 1593 | Optional: |
| 1594 | * ethType: specify ethType |
| 1595 | * ethSrc: specify ethSrc ( i.e. src mac addr ) |
| 1596 | * ethDst: specify ethDst ( i.e. dst mac addr ) |
| 1597 | * bandwidth: specify bandwidth capacity of link |
| 1598 | * lambdaAlloc: if True, intent will allocate lambda |
| 1599 | for the specified intent |
| 1600 | * ipProto: specify ip protocol |
| 1601 | * ipSrc: specify ip source address |
| 1602 | * ipDst: specify ip destination address |
| 1603 | * tcpSrc: specify tcp source port |
| 1604 | * tcpDst: specify tcp destination port |
| 1605 | * ingressLabel: Ingress MPLS label |
| 1606 | * egressLabel: Egress MPLS label |
| 1607 | Description: |
| 1608 | Adds MPLS intent by |
| 1609 | specifying device id's and optional fields |
| 1610 | Returns: |
| 1611 | A string of the intent id or None on error |
| 1612 | |
| 1613 | NOTE: This function may change depending on the |
| 1614 | options developers provide for MPLS |
| 1615 | intent via cli |
| 1616 | """ |
| 1617 | try: |
| 1618 | # If there are no optional arguments |
| 1619 | if not ethType and not ethSrc and not ethDst\ |
| 1620 | and not bandwidth and not lambdaAlloc \ |
| 1621 | and not ipProto and not ipSrc and not ipDst \ |
| 1622 | and not tcpSrc and not tcpDst and not ingressLabel \ |
| 1623 | and not egressLabel: |
| 1624 | cmd = "add-mpls-intent" |
| 1625 | |
| 1626 | else: |
| 1627 | cmd = "add-mpls-intent" |
| 1628 | |
| 1629 | if ethType: |
| 1630 | cmd += " --ethType " + str( ethType ) |
| 1631 | if ethSrc: |
| 1632 | cmd += " --ethSrc " + str( ethSrc ) |
| 1633 | if ethDst: |
| 1634 | cmd += " --ethDst " + str( ethDst ) |
| 1635 | if bandwidth: |
| 1636 | cmd += " --bandwidth " + str( bandwidth ) |
| 1637 | if lambdaAlloc: |
| 1638 | cmd += " --lambda " |
| 1639 | if ipProto: |
| 1640 | cmd += " --ipProto " + str( ipProto ) |
| 1641 | if ipSrc: |
| 1642 | cmd += " --ipSrc " + str( ipSrc ) |
| 1643 | if ipDst: |
| 1644 | cmd += " --ipDst " + str( ipDst ) |
| 1645 | if tcpSrc: |
| 1646 | cmd += " --tcpSrc " + str( tcpSrc ) |
| 1647 | if tcpDst: |
| 1648 | cmd += " --tcpDst " + str( tcpDst ) |
| 1649 | if ingressLabel: |
| 1650 | cmd += " --ingressLabel " + str( ingressLabel ) |
| 1651 | if egressLabel: |
| 1652 | cmd += " --egressLabel " + str( egressLabel ) |
| 1653 | if priority: |
| 1654 | cmd += " --priority " + str( priority ) |
| 1655 | |
| 1656 | # Check whether the user appended the port |
| 1657 | # or provided it as an input |
| 1658 | if "/" in ingressDevice: |
| 1659 | cmd += " " + str( ingressDevice ) |
| 1660 | else: |
Hari Krishna | 87a17f1 | 2015-04-13 17:42:23 -0700 | [diff] [blame] | 1661 | if not ingressPort: |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1662 | main.log.error( "You must specify the ingress port" ) |
| 1663 | return None |
| 1664 | |
| 1665 | cmd += " " + \ |
| 1666 | str( ingressDevice ) + "/" +\ |
Hari Krishna | 87a17f1 | 2015-04-13 17:42:23 -0700 | [diff] [blame] | 1667 | str( ingressPort ) + " " |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1668 | |
| 1669 | if "/" in egressDevice: |
| 1670 | cmd += " " + str( egressDevice ) |
| 1671 | else: |
Hari Krishna | 87a17f1 | 2015-04-13 17:42:23 -0700 | [diff] [blame] | 1672 | if not egressPort: |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1673 | main.log.error( "You must specify the egress port" ) |
| 1674 | return None |
| 1675 | |
| 1676 | cmd += " " +\ |
| 1677 | str( egressDevice ) + "/" +\ |
Hari Krishna | 87a17f1 | 2015-04-13 17:42:23 -0700 | [diff] [blame] | 1678 | str( egressPort ) |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1679 | |
| 1680 | handle = self.sendline( cmd ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1681 | assert "Command not found:" not in handle, handle |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1682 | # If error, return error message |
| 1683 | if re.search( "Error", handle ): |
| 1684 | main.log.error( "Error in adding mpls intent" ) |
| 1685 | return None |
| 1686 | else: |
| 1687 | # TODO: print out all the options in this message? |
| 1688 | main.log.info( "MPLS intent installed between " + |
| 1689 | str( ingressDevice ) + " and " + |
| 1690 | str( egressDevice ) ) |
| 1691 | match = re.search('id=0x([\da-f]+),', handle) |
| 1692 | if match: |
| 1693 | return match.group()[3:-1] |
| 1694 | else: |
| 1695 | main.log.error( "Error, intent ID not found" ) |
| 1696 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1697 | except AssertionError: |
| 1698 | main.log.exception( "" ) |
| 1699 | return None |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1700 | except TypeError: |
| 1701 | main.log.exception( self.name + ": Object not as expected" ) |
| 1702 | return None |
| 1703 | except pexpect.EOF: |
| 1704 | main.log.error( self.name + ": EOF exception found" ) |
| 1705 | main.log.error( self.name + ": " + self.handle.before ) |
| 1706 | main.cleanup() |
| 1707 | main.exit() |
| 1708 | except Exception: |
| 1709 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 1710 | main.cleanup() |
| 1711 | main.exit() |
| 1712 | |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1713 | def removeIntent( self, intentId, app='org.onosproject.cli', |
| 1714 | purge=False, sync=False ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1715 | """ |
shahshreya | 1c818fc | 2015-02-26 13:44:08 -0800 | [diff] [blame] | 1716 | Remove intent for specified application id and intent id |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 1717 | Optional args:- |
shahshreya | 1c818fc | 2015-02-26 13:44:08 -0800 | [diff] [blame] | 1718 | -s or --sync: Waits for the removal before returning |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 1719 | -p or --purge: Purge the intent from the store after removal |
| 1720 | |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1721 | Returns: |
| 1722 | main.False on error and |
| 1723 | cli output otherwise |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1724 | """ |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1725 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1726 | cmdStr = "remove-intent" |
shahshreya | 1c818fc | 2015-02-26 13:44:08 -0800 | [diff] [blame] | 1727 | if purge: |
| 1728 | cmdStr += " -p" |
| 1729 | if sync: |
| 1730 | cmdStr += " -s" |
| 1731 | |
| 1732 | cmdStr += " " + app + " " + str( intentId ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1733 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1734 | assert "Command not found:" not in handle, handle |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1735 | if re.search( "Error", handle ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1736 | main.log.error( "Error in removing intent" ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1737 | return main.FALSE |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1738 | else: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1739 | # TODO: Should this be main.TRUE |
| 1740 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1741 | except AssertionError: |
| 1742 | main.log.exception( "" ) |
| 1743 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1744 | except TypeError: |
| 1745 | main.log.exception( self.name + ": Object not as expected" ) |
| 1746 | return None |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1747 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1748 | main.log.error( self.name + ": EOF exception found" ) |
| 1749 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1750 | main.cleanup() |
| 1751 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1752 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1753 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1754 | main.cleanup() |
| 1755 | main.exit() |
| 1756 | |
Jeremy | 42df2e7 | 2016-02-23 16:37:46 -0800 | [diff] [blame] | 1757 | def removeAllIntents( self, purge=False, sync=False, app='org.onosproject.cli' ): |
| 1758 | """ |
| 1759 | Description: |
| 1760 | Remove all the intents |
| 1761 | Optional args:- |
| 1762 | -s or --sync: Waits for the removal before returning |
| 1763 | -p or --purge: Purge the intent from the store after removal |
| 1764 | Returns: |
| 1765 | Returns main.TRUE if all intents are removed, otherwise returns |
| 1766 | main.FALSE; Returns None for exception |
| 1767 | """ |
| 1768 | try: |
| 1769 | cmdStr = "remove-intent" |
| 1770 | if purge: |
| 1771 | cmdStr += " -p" |
| 1772 | if sync: |
| 1773 | cmdStr += " -s" |
| 1774 | |
| 1775 | cmdStr += " " + app |
| 1776 | handle = self.sendline( cmdStr ) |
| 1777 | assert "Command not found:" not in handle, handle |
| 1778 | if re.search( "Error", handle ): |
| 1779 | main.log.error( "Error in removing intent" ) |
| 1780 | return main.FALSE |
| 1781 | else: |
| 1782 | return main.TRUE |
| 1783 | except AssertionError: |
| 1784 | main.log.exception( "" ) |
| 1785 | return None |
| 1786 | except TypeError: |
| 1787 | main.log.exception( self.name + ": Object not as expected" ) |
| 1788 | return None |
| 1789 | except pexpect.EOF: |
| 1790 | main.log.error( self.name + ": EOF exception found" ) |
| 1791 | main.log.error( self.name + ": " + self.handle.before ) |
| 1792 | main.cleanup() |
| 1793 | main.exit() |
| 1794 | except Exception: |
| 1795 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 1796 | main.cleanup() |
| 1797 | main.exit() |
| 1798 | |
Hari Krishna | acabd5a | 2015-07-01 17:10:19 -0700 | [diff] [blame] | 1799 | def purgeWithdrawnIntents( self ): |
Hari Krishna | 0ce0e15 | 2015-06-23 09:55:29 -0700 | [diff] [blame] | 1800 | """ |
| 1801 | Purges all WITHDRAWN Intents |
| 1802 | """ |
| 1803 | try: |
| 1804 | cmdStr = "purge-intents" |
| 1805 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1806 | assert "Command not found:" not in handle, handle |
Hari Krishna | 0ce0e15 | 2015-06-23 09:55:29 -0700 | [diff] [blame] | 1807 | if re.search( "Error", handle ): |
| 1808 | main.log.error( "Error in purging intents" ) |
| 1809 | return main.FALSE |
| 1810 | else: |
| 1811 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1812 | except AssertionError: |
| 1813 | main.log.exception( "" ) |
| 1814 | return None |
Hari Krishna | 0ce0e15 | 2015-06-23 09:55:29 -0700 | [diff] [blame] | 1815 | except TypeError: |
| 1816 | main.log.exception( self.name + ": Object not as expected" ) |
| 1817 | return None |
| 1818 | except pexpect.EOF: |
| 1819 | main.log.error( self.name + ": EOF exception found" ) |
| 1820 | main.log.error( self.name + ": " + self.handle.before ) |
| 1821 | main.cleanup() |
| 1822 | main.exit() |
| 1823 | except Exception: |
| 1824 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 1825 | main.cleanup() |
| 1826 | main.exit() |
| 1827 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1828 | def routes( self, jsonFormat=False ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1829 | """ |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1830 | NOTE: This method should be used after installing application: |
| 1831 | onos-app-sdnip |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 1832 | Optional: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1833 | * jsonFormat: enable output formatting in json |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 1834 | Description: |
| 1835 | Obtain all routes in the system |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1836 | """ |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 1837 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1838 | cmdStr = "routes" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1839 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1840 | cmdStr += " -j" |
| 1841 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1842 | assert "Command not found:" not in handle, handle |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 1843 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1844 | except AssertionError: |
| 1845 | main.log.exception( "" ) |
| 1846 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1847 | except TypeError: |
| 1848 | main.log.exception( self.name + ": Object not as expected" ) |
| 1849 | return None |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 1850 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1851 | main.log.error( self.name + ": EOF exception found" ) |
| 1852 | main.log.error( self.name + ": " + self.handle.before ) |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 1853 | main.cleanup() |
| 1854 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1855 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1856 | main.log.exception( self.name + ": Uncaught exception!" ) |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 1857 | main.cleanup() |
| 1858 | main.exit() |
| 1859 | |
pingping-lin | 54b0337 | 2015-08-13 14:43:10 -0700 | [diff] [blame] | 1860 | def ipv4RouteNumber( self ): |
| 1861 | """ |
| 1862 | NOTE: This method should be used after installing application: |
| 1863 | onos-app-sdnip |
| 1864 | Description: |
| 1865 | Obtain the total IPv4 routes number in the system |
| 1866 | """ |
| 1867 | try: |
| 1868 | cmdStr = "routes -s -j" |
| 1869 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1870 | assert "Command not found:" not in handle, handle |
pingping-lin | 54b0337 | 2015-08-13 14:43:10 -0700 | [diff] [blame] | 1871 | jsonResult = json.loads( handle ) |
| 1872 | return jsonResult['totalRoutes4'] |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1873 | except AssertionError: |
| 1874 | main.log.exception( "" ) |
| 1875 | return None |
| 1876 | except ( TypeError, ValueError ): |
| 1877 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, handle ) ) |
pingping-lin | 54b0337 | 2015-08-13 14:43:10 -0700 | [diff] [blame] | 1878 | return None |
| 1879 | except pexpect.EOF: |
| 1880 | main.log.error( self.name + ": EOF exception found" ) |
| 1881 | main.log.error( self.name + ": " + self.handle.before ) |
| 1882 | main.cleanup() |
| 1883 | main.exit() |
| 1884 | except Exception: |
| 1885 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 1886 | main.cleanup() |
| 1887 | main.exit() |
| 1888 | |
pingping-lin | 8244a3b | 2015-09-16 13:36:56 -0700 | [diff] [blame] | 1889 | def intents( self, jsonFormat = True, summary = False, **intentargs): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1890 | """ |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1891 | Description: |
Jon Hall | ff566d5 | 2016-01-15 14:45:36 -0800 | [diff] [blame] | 1892 | Obtain intents from the ONOS cli. |
| 1893 | Optional: |
| 1894 | * jsonFormat: Enable output formatting in json, default to True |
| 1895 | * summary: Whether only output the intent summary, defaults to False |
| 1896 | * type: Only output a certain type of intent. This options is valid |
| 1897 | only when jsonFormat is True and summary is True. |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1898 | """ |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1899 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1900 | cmdStr = "intents" |
pingping-lin | 8244a3b | 2015-09-16 13:36:56 -0700 | [diff] [blame] | 1901 | if summary: |
| 1902 | cmdStr += " -s" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1903 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1904 | cmdStr += " -j" |
| 1905 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1906 | assert "Command not found:" not in handle, handle |
pingping-lin | 8244a3b | 2015-09-16 13:36:56 -0700 | [diff] [blame] | 1907 | args = utilities.parse_args( [ "TYPE" ], **intentargs ) |
acsmars | 5b5fbaf | 2015-09-18 10:38:20 -0700 | [diff] [blame] | 1908 | if "TYPE" in args.keys(): |
Jon Hall | ff566d5 | 2016-01-15 14:45:36 -0800 | [diff] [blame] | 1909 | intentType = args[ "TYPE" ] |
acsmars | 5b5fbaf | 2015-09-18 10:38:20 -0700 | [diff] [blame] | 1910 | else: |
Jon Hall | ff566d5 | 2016-01-15 14:45:36 -0800 | [diff] [blame] | 1911 | intentType = "" |
| 1912 | # IF we want the summary of a specific intent type |
| 1913 | if jsonFormat and summary and ( intentType != "" ): |
pingping-lin | 8244a3b | 2015-09-16 13:36:56 -0700 | [diff] [blame] | 1914 | jsonResult = json.loads( handle ) |
Jon Hall | ff566d5 | 2016-01-15 14:45:36 -0800 | [diff] [blame] | 1915 | if intentType in jsonResult.keys(): |
| 1916 | return jsonResult[ intentType ] |
pingping-lin | 8244a3b | 2015-09-16 13:36:56 -0700 | [diff] [blame] | 1917 | else: |
Jon Hall | ff566d5 | 2016-01-15 14:45:36 -0800 | [diff] [blame] | 1918 | main.log.error( "unknown TYPE, returning all types of intents" ) |
pingping-lin | 8244a3b | 2015-09-16 13:36:56 -0700 | [diff] [blame] | 1919 | return handle |
| 1920 | else: |
| 1921 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1922 | except AssertionError: |
| 1923 | main.log.exception( "" ) |
| 1924 | return None |
| 1925 | except ( TypeError, ValueError ): |
| 1926 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, handle ) ) |
pingping-lin | 54b0337 | 2015-08-13 14:43:10 -0700 | [diff] [blame] | 1927 | return None |
| 1928 | except pexpect.EOF: |
| 1929 | main.log.error( self.name + ": EOF exception found" ) |
| 1930 | main.log.error( self.name + ": " + self.handle.before ) |
| 1931 | main.cleanup() |
| 1932 | main.exit() |
| 1933 | except Exception: |
| 1934 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 1935 | main.cleanup() |
| 1936 | main.exit() |
| 1937 | |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1938 | def getIntentState(self, intentsId, intentsJson=None): |
| 1939 | """ |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1940 | Check intent state. |
| 1941 | Accepts a single intent ID (string type) or a list of intent IDs. |
| 1942 | Returns the state(string type) of the id if a single intent ID is |
| 1943 | accepted. |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1944 | Returns a dictionary with intent IDs as the key and its |
| 1945 | corresponding states as the values |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1946 | Parameters: |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1947 | intentId: intent ID (string type) |
| 1948 | intentsJson: parsed json object from the onos:intents api |
| 1949 | Returns: |
| 1950 | state = An intent's state- INSTALL,WITHDRAWN etc. |
| 1951 | stateDict = Dictionary of intent's state. intent ID as the keys and |
| 1952 | state as the values. |
| 1953 | """ |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1954 | try: |
| 1955 | state = "State is Undefined" |
| 1956 | if not intentsJson: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1957 | rawJson = self.intents() |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1958 | else: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1959 | rawJson = intentsJson |
| 1960 | parsedIntentsJson = json.loads( rawJson ) |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1961 | if isinstance( intentsId, types.StringType ): |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1962 | for intent in parsedIntentsJson: |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 1963 | if intentsId == intent[ 'id' ]: |
| 1964 | state = intent[ 'state' ] |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1965 | return state |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1966 | main.log.info( "Cannot find intent ID" + str( intentsId ) + |
| 1967 | " on the list" ) |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1968 | return state |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1969 | elif isinstance( intentsId, types.ListType ): |
kelvin-onlab | 07dbd01 | 2015-03-04 16:29:39 -0800 | [diff] [blame] | 1970 | dictList = [] |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 1971 | for i in xrange( len( intentsId ) ): |
kelvin-onlab | 07dbd01 | 2015-03-04 16:29:39 -0800 | [diff] [blame] | 1972 | stateDict = {} |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1973 | for intents in parsedIntentsJson: |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 1974 | if intentsId[ i ] == intents[ 'id' ]: |
| 1975 | stateDict[ 'state' ] = intents[ 'state' ] |
| 1976 | stateDict[ 'id' ] = intentsId[ i ] |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1977 | dictList.append( stateDict ) |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1978 | break |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1979 | if len( intentsId ) != len( dictList ): |
| 1980 | main.log.info( "Cannot find some of the intent ID state" ) |
kelvin-onlab | 07dbd01 | 2015-03-04 16:29:39 -0800 | [diff] [blame] | 1981 | return dictList |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1982 | else: |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 1983 | main.log.info( "Invalid intents ID entry" ) |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1984 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1985 | except ( TypeError, ValueError ): |
| 1986 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawJson ) ) |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1987 | return None |
| 1988 | except pexpect.EOF: |
| 1989 | main.log.error( self.name + ": EOF exception found" ) |
| 1990 | main.log.error( self.name + ": " + self.handle.before ) |
| 1991 | main.cleanup() |
| 1992 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1993 | except Exception: |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 1994 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1995 | main.cleanup() |
| 1996 | main.exit() |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 1997 | |
kelvin-onlab | f512e94 | 2015-06-08 19:42:59 -0700 | [diff] [blame] | 1998 | def checkIntentState( self, intentsId, expectedState='INSTALLED' ): |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 1999 | """ |
| 2000 | Description: |
| 2001 | Check intents state |
| 2002 | Required: |
| 2003 | intentsId - List of intents ID to be checked |
| 2004 | Optional: |
kelvin-onlab | f512e94 | 2015-06-08 19:42:59 -0700 | [diff] [blame] | 2005 | expectedState - Check the expected state(s) of each intents |
| 2006 | state in the list. |
| 2007 | *NOTE: You can pass in a list of expected state, |
| 2008 | Eg: expectedState = [ 'INSTALLED' , 'INSTALLING' ] |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 2009 | Return: |
kelvin-onlab | f512e94 | 2015-06-08 19:42:59 -0700 | [diff] [blame] | 2010 | Returns main.TRUE only if all intent are the same as expected states |
| 2011 | , otherwise, returns main.FALSE. |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 2012 | """ |
| 2013 | try: |
| 2014 | # Generating a dictionary: intent id as a key and state as value |
kelvin-onlab | f512e94 | 2015-06-08 19:42:59 -0700 | [diff] [blame] | 2015 | returnValue = main.TRUE |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 2016 | intentsDict = self.getIntentState( intentsId ) |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 2017 | if len( intentsId ) != len( intentsDict ): |
Jon Hall | ae04e62 | 2016-01-27 10:38:05 -0800 | [diff] [blame] | 2018 | main.log.info( self.name + ": There is something wrong " + |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 2019 | "getting intents state" ) |
| 2020 | return main.FALSE |
kelvin-onlab | f512e94 | 2015-06-08 19:42:59 -0700 | [diff] [blame] | 2021 | |
| 2022 | if isinstance( expectedState, types.StringType ): |
| 2023 | for intents in intentsDict: |
| 2024 | if intents.get( 'state' ) != expectedState: |
kelvin-onlab | a297c4d | 2015-06-01 13:53:55 -0700 | [diff] [blame] | 2025 | main.log.debug( self.name + " : Intent ID - " + |
| 2026 | intents.get( 'id' ) + |
kelvin-onlab | f512e94 | 2015-06-08 19:42:59 -0700 | [diff] [blame] | 2027 | " actual state = " + |
| 2028 | intents.get( 'state' ) |
| 2029 | + " does not equal expected state = " |
| 2030 | + expectedState ) |
kelvin-onlab | a297c4d | 2015-06-01 13:53:55 -0700 | [diff] [blame] | 2031 | returnValue = main.FALSE |
kelvin-onlab | f512e94 | 2015-06-08 19:42:59 -0700 | [diff] [blame] | 2032 | |
| 2033 | elif isinstance( expectedState, types.ListType ): |
| 2034 | for intents in intentsDict: |
| 2035 | if not any( state == intents.get( 'state' ) for state in |
| 2036 | expectedState ): |
| 2037 | main.log.debug( self.name + " : Intent ID - " + |
| 2038 | intents.get( 'id' ) + |
| 2039 | " actual state = " + |
| 2040 | intents.get( 'state' ) + |
| 2041 | " does not equal expected states = " |
| 2042 | + str( expectedState ) ) |
| 2043 | returnValue = main.FALSE |
| 2044 | |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 2045 | if returnValue == main.TRUE: |
| 2046 | main.log.info( self.name + ": All " + |
| 2047 | str( len( intentsDict ) ) + |
kelvin-onlab | f512e94 | 2015-06-08 19:42:59 -0700 | [diff] [blame] | 2048 | " intents are in " + str( expectedState ) + |
| 2049 | " state" ) |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 2050 | return returnValue |
| 2051 | except TypeError: |
| 2052 | main.log.exception( self.name + ": Object not as expected" ) |
| 2053 | return None |
| 2054 | except pexpect.EOF: |
| 2055 | main.log.error( self.name + ": EOF exception found" ) |
| 2056 | main.log.error( self.name + ": " + self.handle.before ) |
| 2057 | main.cleanup() |
| 2058 | main.exit() |
| 2059 | except Exception: |
| 2060 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2061 | main.cleanup() |
| 2062 | main.exit() |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 2063 | |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2064 | def checkIntentSummary( self, timeout=60 ): |
| 2065 | """ |
| 2066 | Description: |
| 2067 | Check the number of installed intents. |
| 2068 | Optional: |
| 2069 | timeout - the timeout for pexcept |
| 2070 | Return: |
| 2071 | Returns main.TRUE only if the number of all installed intents are the same as total intents number |
| 2072 | , otherwise, returns main.FALSE. |
| 2073 | """ |
| 2074 | |
| 2075 | try: |
| 2076 | cmd = "intents -s -j" |
| 2077 | |
| 2078 | # Check response if something wrong |
| 2079 | response = self.sendline( cmd, timeout=timeout ) |
| 2080 | if response == None: |
| 2081 | return main.False |
| 2082 | response = json.loads( response ) |
| 2083 | |
| 2084 | # get total and installed number, see if they are match |
| 2085 | allState = response.get( 'all' ) |
| 2086 | if allState.get('total') == allState.get('installed'): |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2087 | main.log.info( 'Total Intents: {} Installed Intents: {}'.format( allState.get('total'), allState.get('installed') ) ) |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2088 | return main.TRUE |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2089 | main.log.info( 'Verified Intents failed Excepte intetnes: {} installed intents: {}'.format( allState.get('total'), allState.get('installed') ) ) |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2090 | return main.FALSE |
| 2091 | |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2092 | except ( TypeError, ValueError ): |
| 2093 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, response ) ) |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2094 | return None |
| 2095 | except pexpect.EOF: |
| 2096 | main.log.error( self.name + ": EOF exception found" ) |
| 2097 | main.log.error( self.name + ": " + self.handle.before ) |
| 2098 | main.cleanup() |
| 2099 | main.exit() |
| 2100 | except Exception: |
| 2101 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2102 | main.cleanup() |
| 2103 | main.exit() |
| 2104 | |
| 2105 | def flows( self, state="", jsonFormat=True, timeout=60 ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2106 | """ |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 2107 | Optional: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2108 | * jsonFormat: enable output formatting in json |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 2109 | Description: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2110 | Obtain flows currently installed |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2111 | """ |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 2112 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2113 | cmdStr = "flows" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2114 | if jsonFormat: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2115 | cmdStr += " -j " |
| 2116 | cmdStr += state |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2117 | handle = self.sendline( cmdStr, timeout=timeout ) |
| 2118 | assert "Command not found:" not in handle, handle |
| 2119 | if re.search( "Error:", handle ): |
| 2120 | main.log.error( self.name + ": flows() response: " + |
| 2121 | str( handle ) ) |
| 2122 | return handle |
| 2123 | except AssertionError: |
| 2124 | main.log.exception( "" ) |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2125 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2126 | except TypeError: |
| 2127 | main.log.exception( self.name + ": Object not as expected" ) |
| 2128 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2129 | except pexpect.TIMEOUT: |
| 2130 | main.log.error( self.name + ": ONOS timeout" ) |
| 2131 | return None |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 2132 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2133 | main.log.error( self.name + ": EOF exception found" ) |
| 2134 | main.log.error( self.name + ": " + self.handle.before ) |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 2135 | main.cleanup() |
| 2136 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2137 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2138 | main.log.exception( self.name + ": Uncaught exception!" ) |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 2139 | main.cleanup() |
| 2140 | main.exit() |
| 2141 | |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2142 | |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2143 | def checkFlowsState( self, isPENDING=True, timeout=60 ): |
kelvin-onlab | 4df89f2 | 2015-04-13 18:10:23 -0700 | [diff] [blame] | 2144 | """ |
| 2145 | Description: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2146 | Check the if all the current flows are in ADDED state |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2147 | We check PENDING_ADD, PENDING_REMOVE, REMOVED, and FAILED flows, |
| 2148 | if the count of those states is 0, which means all current flows |
| 2149 | are in ADDED state, and return main.TRUE otherwise return main.FALSE |
pingping-lin | bab7f8a | 2015-09-21 17:33:36 -0700 | [diff] [blame] | 2150 | Optional: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2151 | * isPENDING: whether the PENDING_ADD is also a correct status |
kelvin-onlab | 4df89f2 | 2015-04-13 18:10:23 -0700 | [diff] [blame] | 2152 | Return: |
| 2153 | returnValue - Returns main.TRUE only if all flows are in |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2154 | ADDED state or PENDING_ADD if the isPENDING |
pingping-lin | bab7f8a | 2015-09-21 17:33:36 -0700 | [diff] [blame] | 2155 | parameter is set true, return main.FALSE otherwise. |
kelvin-onlab | 4df89f2 | 2015-04-13 18:10:23 -0700 | [diff] [blame] | 2156 | """ |
| 2157 | try: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2158 | states = ["PENDING_ADD", "PENDING_REMOVE", "REMOVED", "FAILED"] |
| 2159 | checkedStates = [] |
| 2160 | statesCount = [0, 0, 0, 0] |
| 2161 | for s in states: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2162 | rawFlows = self.flows( state=s, timeout = timeout ) |
| 2163 | checkedStates.append( json.loads( rawFlows ) ) |
| 2164 | for i in range( len( states ) ): |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2165 | for c in checkedStates[i]: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2166 | try: |
| 2167 | statesCount[i] += int( c.get( "flowCount" ) ) |
| 2168 | except TypeError: |
| 2169 | main.log.exception( "Json object not as expected" ) |
| 2170 | main.log.info( states[i] + " flows: " + str( statesCount[i] ) ) |
kelvin-onlab | f2ec6e0 | 2015-05-27 14:15:28 -0700 | [diff] [blame] | 2171 | |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2172 | # We want to count PENDING_ADD if isPENDING is true |
| 2173 | if isPENDING: |
| 2174 | if statesCount[1] + statesCount[2] + statesCount[3] > 0: |
| 2175 | return main.FALSE |
pingping-lin | bab7f8a | 2015-09-21 17:33:36 -0700 | [diff] [blame] | 2176 | else: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2177 | if statesCount[0] + statesCount[1] + statesCount[2] + statesCount[3] > 0: |
| 2178 | return main.FALSE |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2179 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2180 | except ( TypeError, ValueError ): |
| 2181 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawFlows ) ) |
kelvin-onlab | 4df89f2 | 2015-04-13 18:10:23 -0700 | [diff] [blame] | 2182 | return None |
| 2183 | except pexpect.EOF: |
| 2184 | main.log.error( self.name + ": EOF exception found" ) |
| 2185 | main.log.error( self.name + ": " + self.handle.before ) |
| 2186 | main.cleanup() |
| 2187 | main.exit() |
| 2188 | except Exception: |
| 2189 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2190 | main.cleanup() |
| 2191 | main.exit() |
| 2192 | |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2193 | def pushTestIntents( self, ingress, egress, batchSize, offset="", |
| 2194 | options="", timeout=10, background = False ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2195 | """ |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 2196 | Description: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2197 | Push a number of intents in a batch format to |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 2198 | a specific point-to-point intent definition |
| 2199 | Required: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2200 | * ingress: specify source dpid |
| 2201 | * egress: specify destination dpid |
| 2202 | * batchSize: specify number of intents to push |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 2203 | Optional: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2204 | * offset: the keyOffset is where the next batch of intents |
| 2205 | will be installed |
| 2206 | Returns: If failed to push test intents, it will returen None, |
| 2207 | if successful, return true. |
| 2208 | Timeout expection will return None, |
| 2209 | TypeError will return false |
| 2210 | other expections will exit() |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2211 | """ |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 2212 | try: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2213 | if background: |
| 2214 | back = "&" |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 2215 | else: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2216 | back = "" |
| 2217 | cmd = "push-test-intents {} {} {} {} {} {}".format( options, |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2218 | ingress, |
| 2219 | egress, |
| 2220 | batchSize, |
| 2221 | offset, |
| 2222 | back ) |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2223 | response = self.sendline( cmd, timeout=timeout ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2224 | assert "Command not found:" not in response, response |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2225 | main.log.info( response ) |
| 2226 | if response == None: |
| 2227 | return None |
| 2228 | |
| 2229 | # TODO: We should handle if there is failure in installation |
| 2230 | return main.TRUE |
| 2231 | |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2232 | except AssertionError: |
| 2233 | main.log.exception( "" ) |
| 2234 | return None |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2235 | except pexpect.TIMEOUT: |
| 2236 | main.log.error( self.name + ": ONOS timeout" ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2237 | return None |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 2238 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2239 | main.log.error( self.name + ": EOF exception found" ) |
| 2240 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 2241 | main.cleanup() |
| 2242 | main.exit() |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2243 | except TypeError: |
| 2244 | main.log.exception( self.name + ": Object not as expected" ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2245 | return None |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2246 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2247 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 2248 | main.cleanup() |
| 2249 | main.exit() |
| 2250 | |
YPZhang | f6f14a0 | 2016-01-28 15:17:31 -0800 | [diff] [blame] | 2251 | def getTotalFlowsNum( self, timeout=60 ): |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2252 | """ |
| 2253 | Description: |
YPZhang | f6f14a0 | 2016-01-28 15:17:31 -0800 | [diff] [blame] | 2254 | Get the number of ADDED flows. |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2255 | Return: |
YPZhang | f6f14a0 | 2016-01-28 15:17:31 -0800 | [diff] [blame] | 2256 | The number of ADDED flows |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2257 | """ |
YPZhang | e3109a7 | 2016-02-02 11:25:37 -0800 | [diff] [blame] | 2258 | |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2259 | try: |
YPZhang | e3109a7 | 2016-02-02 11:25:37 -0800 | [diff] [blame] | 2260 | # get total added flows number |
YPZhang | f6f14a0 | 2016-01-28 15:17:31 -0800 | [diff] [blame] | 2261 | cmd = "flows -s|grep ADDED|wc -l" |
YPZhang | e3109a7 | 2016-02-02 11:25:37 -0800 | [diff] [blame] | 2262 | totalFlows = self.sendline( cmd, timeout=timeout ) |
| 2263 | |
| 2264 | if totalFlows == None: |
| 2265 | # if timeout, we will get total number of all flows, and subtract other states |
| 2266 | states = ["PENDING_ADD", "PENDING_REMOVE", "REMOVED", "FAILED"] |
| 2267 | checkedStates = [] |
| 2268 | totalFlows = 0 |
| 2269 | statesCount = [0, 0, 0, 0] |
| 2270 | |
| 2271 | # get total flows from summary |
| 2272 | response = json.loads( self.sendline( "summary -j", timeout=timeout ) ) |
| 2273 | totalFlows = int( response.get("flows") ) |
| 2274 | |
| 2275 | for s in states: |
| 2276 | rawFlows = self.flows( state=s, timeout = timeout ) |
| 2277 | if rawFlows == None: |
| 2278 | # if timeout, return the total flows number from summary command |
| 2279 | return totalFlows |
| 2280 | checkedStates.append( json.loads( rawFlows ) ) |
| 2281 | |
| 2282 | # Calculate ADDED flows number, equal total subtracts others |
| 2283 | for i in range( len( states ) ): |
| 2284 | for c in checkedStates[i]: |
| 2285 | try: |
| 2286 | statesCount[i] += int( c.get( "flowCount" ) ) |
| 2287 | except TypeError: |
| 2288 | main.log.exception( "Json object not as expected" ) |
| 2289 | totalFlows = totalFlows - int( statesCount[i] ) |
| 2290 | main.log.info( states[i] + " flows: " + str( statesCount[i] ) ) |
| 2291 | |
| 2292 | return totalFlows |
| 2293 | |
| 2294 | return totalFlows |
| 2295 | |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2296 | except TypeError: |
| 2297 | main.log.exception( self.name + ": Object not as expected" ) |
| 2298 | return None |
| 2299 | except pexpect.EOF: |
| 2300 | main.log.error( self.name + ": EOF exception found" ) |
| 2301 | main.log.error( self.name + ": " + self.handle.before ) |
| 2302 | main.cleanup() |
| 2303 | main.exit() |
| 2304 | except Exception: |
| 2305 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2306 | main.cleanup() |
| 2307 | main.exit() |
| 2308 | |
| 2309 | def getTotalIntentsNum( self ): |
| 2310 | """ |
| 2311 | Description: |
| 2312 | Get the total number of intents, include every states. |
| 2313 | Return: |
| 2314 | The number of intents |
| 2315 | """ |
| 2316 | try: |
| 2317 | cmd = "summary -j" |
| 2318 | response = self.sendline( cmd ) |
| 2319 | if response == None: |
| 2320 | return -1 |
| 2321 | response = json.loads( response ) |
| 2322 | return int( response.get("intents") ) |
| 2323 | except TypeError: |
| 2324 | main.log.exception( self.name + ": Object not as expected" ) |
| 2325 | return None |
| 2326 | except pexpect.EOF: |
| 2327 | main.log.error( self.name + ": EOF exception found" ) |
| 2328 | main.log.error( self.name + ": " + self.handle.before ) |
| 2329 | main.cleanup() |
| 2330 | main.exit() |
| 2331 | except Exception: |
| 2332 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2333 | main.cleanup() |
| 2334 | main.exit() |
| 2335 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2336 | def intentsEventsMetrics( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2337 | """ |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2338 | Description:Returns topology metrics |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 2339 | Optional: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2340 | * jsonFormat: enable json formatting of output |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2341 | """ |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 2342 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2343 | cmdStr = "intents-events-metrics" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2344 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2345 | cmdStr += " -j" |
| 2346 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2347 | assert "Command not found:" not in handle, handle |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 2348 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2349 | except AssertionError: |
| 2350 | main.log.exception( "" ) |
| 2351 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2352 | except TypeError: |
| 2353 | main.log.exception( self.name + ": Object not as expected" ) |
| 2354 | return None |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 2355 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2356 | main.log.error( self.name + ": EOF exception found" ) |
| 2357 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 2358 | main.cleanup() |
| 2359 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2360 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2361 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 2362 | main.cleanup() |
| 2363 | main.exit() |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 2364 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2365 | def topologyEventsMetrics( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2366 | """ |
| 2367 | Description:Returns topology metrics |
andrewonlab | 867212a | 2014-10-22 20:13:38 -0400 | [diff] [blame] | 2368 | Optional: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2369 | * jsonFormat: enable json formatting of output |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2370 | """ |
andrewonlab | 867212a | 2014-10-22 20:13:38 -0400 | [diff] [blame] | 2371 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2372 | cmdStr = "topology-events-metrics" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2373 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2374 | cmdStr += " -j" |
| 2375 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2376 | assert "Command not found:" not in handle, handle |
jenkins | 7ead5a8 | 2015-03-13 10:28:21 -0700 | [diff] [blame] | 2377 | if handle: |
| 2378 | return handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2379 | elif jsonFormat: |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 2380 | # Return empty json |
jenkins | 7ead5a8 | 2015-03-13 10:28:21 -0700 | [diff] [blame] | 2381 | return '{}' |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2382 | else: |
| 2383 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2384 | except AssertionError: |
| 2385 | main.log.exception( "" ) |
| 2386 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2387 | except TypeError: |
| 2388 | main.log.exception( self.name + ": Object not as expected" ) |
| 2389 | return None |
andrewonlab | 867212a | 2014-10-22 20:13:38 -0400 | [diff] [blame] | 2390 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2391 | main.log.error( self.name + ": EOF exception found" ) |
| 2392 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 867212a | 2014-10-22 20:13:38 -0400 | [diff] [blame] | 2393 | main.cleanup() |
| 2394 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2395 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2396 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 867212a | 2014-10-22 20:13:38 -0400 | [diff] [blame] | 2397 | main.cleanup() |
| 2398 | main.exit() |
| 2399 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2400 | # Wrapper functions **************** |
| 2401 | # Wrapper functions use existing driver |
| 2402 | # functions and extends their use case. |
| 2403 | # For example, we may use the output of |
| 2404 | # a normal driver function, and parse it |
| 2405 | # using a wrapper function |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 2406 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2407 | def getAllIntentsId( self ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2408 | """ |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 2409 | Description: |
| 2410 | Obtain all intent id's in a list |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2411 | """ |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 2412 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2413 | # Obtain output of intents function |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 2414 | intentsStr = self.intents(jsonFormat=False) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2415 | intentIdList = [] |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 2416 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2417 | # Parse the intents output for ID's |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2418 | intentsList = [ s.strip() for s in intentsStr.splitlines() ] |
| 2419 | for intents in intentsList: |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 2420 | match = re.search('id=0x([\da-f]+),', intents) |
| 2421 | if match: |
| 2422 | tmpId = match.group()[3:-1] |
| 2423 | intentIdList.append( tmpId ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2424 | return intentIdList |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 2425 | |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2426 | except TypeError: |
| 2427 | main.log.exception( self.name + ": Object not as expected" ) |
| 2428 | return None |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 2429 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2430 | main.log.error( self.name + ": EOF exception found" ) |
| 2431 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 2432 | main.cleanup() |
| 2433 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2434 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2435 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 2436 | main.cleanup() |
| 2437 | main.exit() |
| 2438 | |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 2439 | def FlowAddedCount( self, deviceId ): |
| 2440 | """ |
| 2441 | Determine the number of flow rules for the given device id that are |
| 2442 | in the added state |
| 2443 | """ |
| 2444 | try: |
| 2445 | cmdStr = "flows any " + str( deviceId ) + " | " +\ |
| 2446 | "grep 'state=ADDED' | wc -l" |
| 2447 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2448 | assert "Command not found:" not in handle, handle |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 2449 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2450 | except AssertionError: |
| 2451 | main.log.exception( "" ) |
| 2452 | return None |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 2453 | except pexpect.EOF: |
| 2454 | main.log.error( self.name + ": EOF exception found" ) |
| 2455 | main.log.error( self.name + ": " + self.handle.before ) |
| 2456 | main.cleanup() |
| 2457 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2458 | except Exception: |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 2459 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 2460 | main.cleanup() |
| 2461 | main.exit() |
| 2462 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2463 | def getAllDevicesId( self ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2464 | """ |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 2465 | Use 'devices' function to obtain list of all devices |
| 2466 | and parse the result to obtain a list of all device |
| 2467 | id's. Returns this list. Returns empty list if no |
| 2468 | devices exist |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2469 | List is ordered sequentially |
| 2470 | |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 2471 | This function may be useful if you are not sure of the |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2472 | device id, and wish to execute other commands using |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 2473 | the ids. By obtaining the list of device ids on the fly, |
| 2474 | you can iterate through the list to get mastership, etc. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2475 | """ |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 2476 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2477 | # Call devices and store result string |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2478 | devicesStr = self.devices( jsonFormat=False ) |
| 2479 | idList = [] |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2480 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2481 | if not devicesStr: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2482 | main.log.info( "There are no devices to get id from" ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2483 | return idList |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2484 | |
| 2485 | # Split the string into list by comma |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2486 | deviceList = devicesStr.split( "," ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2487 | # Get temporary list of all arguments with string 'id=' |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2488 | tempList = [ dev for dev in deviceList if "id=" in dev ] |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2489 | # Split list further into arguments before and after string |
| 2490 | # 'id='. Get the latter portion ( the actual device id ) and |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2491 | # append to idList |
| 2492 | for arg in tempList: |
| 2493 | idList.append( arg.split( "id=" )[ 1 ] ) |
| 2494 | return idList |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 2495 | |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2496 | except TypeError: |
| 2497 | main.log.exception( self.name + ": Object not as expected" ) |
| 2498 | return None |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 2499 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2500 | main.log.error( self.name + ": EOF exception found" ) |
| 2501 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 2502 | main.cleanup() |
| 2503 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2504 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2505 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 2506 | main.cleanup() |
| 2507 | main.exit() |
| 2508 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2509 | def getAllNodesId( self ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2510 | """ |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 2511 | Uses 'nodes' function to obtain list of all nodes |
| 2512 | and parse the result of nodes to obtain just the |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2513 | node id's. |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 2514 | Returns: |
| 2515 | list of node id's |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2516 | """ |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 2517 | try: |
Jon Hall | 5aa168b | 2015-03-23 14:23:09 -0700 | [diff] [blame] | 2518 | nodesStr = self.nodes( jsonFormat=True ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2519 | idList = [] |
Jon Hall | 5aa168b | 2015-03-23 14:23:09 -0700 | [diff] [blame] | 2520 | # Sample nodesStr output |
Jon Hall | bd18278 | 2016-03-28 16:42:22 -0700 | [diff] [blame] | 2521 | # id=local, address=127.0.0.1:9876, state=READY * |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2522 | if not nodesStr: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2523 | main.log.info( "There are no nodes to get id from" ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2524 | return idList |
Jon Hall | 5aa168b | 2015-03-23 14:23:09 -0700 | [diff] [blame] | 2525 | nodesJson = json.loads( nodesStr ) |
| 2526 | idList = [ node.get('id') for node in nodesJson ] |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2527 | return idList |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2528 | except ( TypeError, ValueError ): |
| 2529 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, nodesStr ) ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2530 | return None |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 2531 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2532 | main.log.error( self.name + ": EOF exception found" ) |
| 2533 | main.log.error( self.name + ": " + self.handle.before ) |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 2534 | main.cleanup() |
| 2535 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2536 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2537 | main.log.exception( self.name + ": Uncaught exception!" ) |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 2538 | main.cleanup() |
| 2539 | main.exit() |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 2540 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2541 | def getDevice( self, dpid=None ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2542 | """ |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 2543 | Return the first device from the devices api whose 'id' contains 'dpid' |
| 2544 | Return None if there is no match |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2545 | """ |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 2546 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2547 | if dpid is None: |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 2548 | return None |
| 2549 | else: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2550 | dpid = dpid.replace( ':', '' ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2551 | rawDevices = self.devices() |
| 2552 | devicesJson = json.loads( rawDevices ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2553 | # search json for the device with dpid then return the device |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2554 | for device in devicesJson: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2555 | # print "%s in %s?" % ( dpid, device[ 'id' ] ) |
| 2556 | if dpid in device[ 'id' ]: |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 2557 | return device |
| 2558 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2559 | except ( TypeError, ValueError ): |
| 2560 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawDevices ) ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2561 | return None |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 2562 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2563 | main.log.error( self.name + ": EOF exception found" ) |
| 2564 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 2565 | main.cleanup() |
| 2566 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2567 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2568 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 2569 | main.cleanup() |
| 2570 | main.exit() |
| 2571 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2572 | def checkStatus( self, ip, numoswitch, numolink, logLevel="info" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2573 | """ |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2574 | Checks the number of switches & links that ONOS sees against the |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2575 | supplied values. By default this will report to main.log, but the |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2576 | log level can be specified. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2577 | |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2578 | Params: ip = ip used for the onos cli |
| 2579 | numoswitch = expected number of switches |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2580 | numolink = expected number of links |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2581 | logLevel = level to log to. Currently accepts |
| 2582 | 'info', 'warn' and 'report' |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2583 | |
| 2584 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2585 | logLevel can |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2586 | |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2587 | Returns: main.TRUE if the number of switches and links are correct, |
| 2588 | main.FALSE if the number of switches and links is incorrect, |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2589 | and main.ERROR otherwise |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2590 | """ |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2591 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2592 | topology = self.getTopology( ip ) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2593 | if topology == {}: |
| 2594 | return main.ERROR |
| 2595 | output = "" |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2596 | # Is the number of switches is what we expected |
| 2597 | devices = topology.get( 'devices', False ) |
| 2598 | links = topology.get( 'links', False ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 2599 | if devices is False or links is False: |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2600 | return main.ERROR |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2601 | switchCheck = ( int( devices ) == int( numoswitch ) ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2602 | # Is the number of links is what we expected |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2603 | linkCheck = ( int( links ) == int( numolink ) ) |
| 2604 | if ( switchCheck and linkCheck ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2605 | # We expected the correct numbers |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2606 | output += "The number of links and switches match " +\ |
| 2607 | "what was expected" |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2608 | result = main.TRUE |
| 2609 | else: |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2610 | output += "The number of links and switches does not match " +\ |
| 2611 | "what was expected" |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2612 | result = main.FALSE |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2613 | output = output + "\n ONOS sees %i devices (%i expected) \ |
| 2614 | and %i links (%i expected)" % ( |
| 2615 | int( devices ), int( numoswitch ), int( links ), |
| 2616 | int( numolink ) ) |
| 2617 | if logLevel == "report": |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2618 | main.log.report( output ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2619 | elif logLevel == "warn": |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2620 | main.log.warn( output ) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2621 | else: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 2622 | main.log.info( self.name + ": " + output ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2623 | return result |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2624 | except TypeError: |
| 2625 | main.log.exception( self.name + ": Object not as expected" ) |
| 2626 | return None |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2627 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2628 | main.log.error( self.name + ": EOF exception found" ) |
| 2629 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2630 | main.cleanup() |
| 2631 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2632 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2633 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 2634 | main.cleanup() |
| 2635 | main.exit() |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2636 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2637 | def deviceRole( self, deviceId, onosNode, role="master" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2638 | """ |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2639 | Calls the device-role cli command. |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2640 | deviceId must be the id of a device as seen in the onos devices command |
| 2641 | 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] | 2642 | role must be either master, standby, or none |
| 2643 | |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2644 | Returns: |
| 2645 | main.TRUE or main.FALSE based on argument verification and |
| 2646 | main.ERROR if command returns and error |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2647 | """ |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2648 | try: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2649 | if role.lower() == "master" or role.lower() == "standby" or\ |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2650 | role.lower() == "none": |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2651 | cmdStr = "device-role " +\ |
| 2652 | str( deviceId ) + " " +\ |
| 2653 | str( onosNode ) + " " +\ |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2654 | str( role ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2655 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2656 | assert "Command not found:" not in handle, handle |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2657 | if re.search( "Error", handle ): |
| 2658 | # end color output to escape any colours |
| 2659 | # from the cli |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2660 | main.log.error( self.name + ": " + |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2661 | handle + '\033[0m' ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2662 | return main.ERROR |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2663 | return main.TRUE |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2664 | else: |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2665 | main.log.error( "Invalid 'role' given to device_role(). " + |
| 2666 | "Value was '" + str(role) + "'." ) |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2667 | return main.FALSE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2668 | except AssertionError: |
| 2669 | main.log.exception( "" ) |
| 2670 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2671 | except TypeError: |
| 2672 | main.log.exception( self.name + ": Object not as expected" ) |
| 2673 | return None |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2674 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2675 | main.log.error( self.name + ": EOF exception found" ) |
| 2676 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2677 | main.cleanup() |
| 2678 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2679 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2680 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2681 | main.cleanup() |
| 2682 | main.exit() |
| 2683 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2684 | def clusters( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2685 | """ |
Jon Hall | 73cf9cc | 2014-11-20 22:28:38 -0800 | [diff] [blame] | 2686 | Lists all clusters |
Jon Hall | ffb386d | 2014-11-21 13:43:38 -0800 | [diff] [blame] | 2687 | Optional argument: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2688 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2689 | """ |
Jon Hall | 73cf9cc | 2014-11-20 22:28:38 -0800 | [diff] [blame] | 2690 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2691 | cmdStr = "clusters" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2692 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2693 | cmdStr += " -j" |
| 2694 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2695 | assert "Command not found:" not in handle, handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2696 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2697 | except AssertionError: |
| 2698 | main.log.exception( "" ) |
| 2699 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2700 | except TypeError: |
| 2701 | main.log.exception( self.name + ": Object not as expected" ) |
| 2702 | return None |
Jon Hall | 73cf9cc | 2014-11-20 22:28:38 -0800 | [diff] [blame] | 2703 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2704 | main.log.error( self.name + ": EOF exception found" ) |
| 2705 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 73cf9cc | 2014-11-20 22:28:38 -0800 | [diff] [blame] | 2706 | main.cleanup() |
| 2707 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2708 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2709 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 73cf9cc | 2014-11-20 22:28:38 -0800 | [diff] [blame] | 2710 | main.cleanup() |
| 2711 | main.exit() |
| 2712 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2713 | def electionTestLeader( self ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2714 | """ |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2715 | CLI command to get the current leader for the Election test application |
| 2716 | NOTE: Requires installation of the onos-app-election feature |
| 2717 | Returns: Node IP of the leader if one exists |
| 2718 | None if none exists |
| 2719 | Main.FALSE on error |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2720 | """ |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2721 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2722 | cmdStr = "election-test-leader" |
| 2723 | response = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2724 | assert "Command not found:" not in response, response |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2725 | # Leader |
| 2726 | leaderPattern = "The\scurrent\sleader\sfor\sthe\sElection\s" +\ |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2727 | "app\sis\s(?P<node>.+)\." |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2728 | nodeSearch = re.search( leaderPattern, response ) |
| 2729 | if nodeSearch: |
| 2730 | node = nodeSearch.group( 'node' ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2731 | main.log.info( "Election-test-leader on " + str( self.name ) + |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2732 | " found " + node + " as the leader" ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2733 | return node |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2734 | # no leader |
| 2735 | nullPattern = "There\sis\scurrently\sno\sleader\selected\sfor\s" +\ |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2736 | "the\sElection\sapp" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2737 | nullSearch = re.search( nullPattern, response ) |
| 2738 | if nullSearch: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2739 | main.log.info( "Election-test-leader found no leader on " + |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2740 | self.name ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2741 | return None |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2742 | # error |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2743 | errorPattern = "Command\snot\sfound" |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2744 | if re.search( errorPattern, response ): |
| 2745 | main.log.error( "Election app is not loaded on " + self.name ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2746 | # TODO: Should this be main.ERROR? |
Jon Hall | 669173b | 2014-12-17 11:36:30 -0800 | [diff] [blame] | 2747 | return main.FALSE |
| 2748 | else: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 2749 | main.log.error( "Error in electionTestLeader on " + self.name + |
| 2750 | ": " + "unexpected response" ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2751 | main.log.error( repr( response ) ) |
Jon Hall | 669173b | 2014-12-17 11:36:30 -0800 | [diff] [blame] | 2752 | return main.FALSE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2753 | except AssertionError: |
| 2754 | main.log.exception( "" ) |
| 2755 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2756 | except TypeError: |
| 2757 | main.log.exception( self.name + ": Object not as expected" ) |
| 2758 | return main.FALSE |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2759 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2760 | main.log.error( self.name + ": EOF exception found" ) |
| 2761 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2762 | main.cleanup() |
| 2763 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2764 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2765 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2766 | main.cleanup() |
| 2767 | main.exit() |
| 2768 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2769 | def electionTestRun( self ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2770 | """ |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2771 | CLI command to run for leadership of the Election test application. |
| 2772 | NOTE: Requires installation of the onos-app-election feature |
| 2773 | Returns: Main.TRUE on success |
| 2774 | Main.FALSE on error |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2775 | """ |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2776 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2777 | cmdStr = "election-test-run" |
| 2778 | response = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2779 | assert "Command not found:" not in response, response |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2780 | # success |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2781 | successPattern = "Entering\sleadership\selections\sfor\sthe\s" +\ |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2782 | "Election\sapp." |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2783 | search = re.search( successPattern, response ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2784 | if search: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2785 | main.log.info( self.name + " entering leadership elections " + |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2786 | "for the Election app." ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2787 | return main.TRUE |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2788 | # error |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2789 | errorPattern = "Command\snot\sfound" |
| 2790 | if re.search( errorPattern, response ): |
| 2791 | main.log.error( "Election app is not loaded on " + self.name ) |
Jon Hall | 669173b | 2014-12-17 11:36:30 -0800 | [diff] [blame] | 2792 | return main.FALSE |
| 2793 | else: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 2794 | main.log.error( "Error in electionTestRun on " + self.name + |
| 2795 | ": " + "unexpected response" ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2796 | main.log.error( repr( response ) ) |
Jon Hall | 669173b | 2014-12-17 11:36:30 -0800 | [diff] [blame] | 2797 | return main.FALSE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2798 | except AssertionError: |
| 2799 | main.log.exception( "" ) |
| 2800 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2801 | except TypeError: |
| 2802 | main.log.exception( self.name + ": Object not as expected" ) |
| 2803 | return main.FALSE |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2804 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2805 | main.log.error( self.name + ": EOF exception found" ) |
| 2806 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2807 | main.cleanup() |
| 2808 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2809 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2810 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2811 | main.cleanup() |
| 2812 | main.exit() |
| 2813 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2814 | def electionTestWithdraw( self ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2815 | """ |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2816 | * CLI command to withdraw the local node from leadership election for |
| 2817 | * the Election test application. |
| 2818 | #NOTE: Requires installation of the onos-app-election feature |
| 2819 | Returns: Main.TRUE on success |
| 2820 | Main.FALSE on error |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2821 | """ |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2822 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2823 | cmdStr = "election-test-withdraw" |
| 2824 | response = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2825 | assert "Command not found:" not in response, response |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2826 | # success |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2827 | successPattern = "Withdrawing\sfrom\sleadership\selections\sfor" +\ |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2828 | "\sthe\sElection\sapp." |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2829 | if re.search( successPattern, response ): |
| 2830 | main.log.info( self.name + " withdrawing from leadership " + |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2831 | "elections for the Election app." ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2832 | return main.TRUE |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2833 | # error |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2834 | errorPattern = "Command\snot\sfound" |
| 2835 | if re.search( errorPattern, response ): |
| 2836 | main.log.error( "Election app is not loaded on " + self.name ) |
Jon Hall | 669173b | 2014-12-17 11:36:30 -0800 | [diff] [blame] | 2837 | return main.FALSE |
| 2838 | else: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 2839 | main.log.error( "Error in electionTestWithdraw on " + |
| 2840 | self.name + ": " + "unexpected response" ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2841 | main.log.error( repr( response ) ) |
Jon Hall | 669173b | 2014-12-17 11:36:30 -0800 | [diff] [blame] | 2842 | return main.FALSE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2843 | except AssertionError: |
| 2844 | main.log.exception( "" ) |
| 2845 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2846 | except TypeError: |
| 2847 | main.log.exception( self.name + ": Object not as expected" ) |
| 2848 | return main.FALSE |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2849 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2850 | main.log.error( self.name + ": EOF exception found" ) |
| 2851 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2852 | main.cleanup() |
| 2853 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2854 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2855 | main.log.exception( self.name + ": Uncaught exception!" ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 2856 | main.cleanup() |
| 2857 | main.exit() |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 2858 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2859 | def getDevicePortsEnabledCount( self, dpid ): |
| 2860 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2861 | Get the count of all enabled ports on a particular device/switch |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2862 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2863 | try: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2864 | dpid = str( dpid ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2865 | cmdStr = "onos:ports -e " + dpid + " | wc -l" |
| 2866 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2867 | assert "Command not found:" not in output, output |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2868 | if re.search( "No such device", output ): |
| 2869 | main.log.error( "Error in getting ports" ) |
| 2870 | return ( output, "Error" ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2871 | else: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2872 | return output |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2873 | except AssertionError: |
| 2874 | main.log.exception( "" ) |
| 2875 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2876 | except TypeError: |
| 2877 | main.log.exception( self.name + ": Object not as expected" ) |
| 2878 | return ( output, "Error" ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2879 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2880 | main.log.error( self.name + ": EOF exception found" ) |
| 2881 | main.log.error( self.name + ": " + self.handle.before ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2882 | main.cleanup() |
| 2883 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2884 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2885 | main.log.exception( self.name + ": Uncaught exception!" ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2886 | main.cleanup() |
| 2887 | main.exit() |
| 2888 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2889 | def getDeviceLinksActiveCount( self, dpid ): |
| 2890 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2891 | Get the count of all enabled ports on a particular device/switch |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2892 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2893 | try: |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2894 | dpid = str( dpid ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2895 | cmdStr = "onos:links " + dpid + " | grep ACTIVE | wc -l" |
| 2896 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2897 | assert "Command not found:" not in output, output |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2898 | if re.search( "No such device", output ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2899 | main.log.error( "Error in getting ports " ) |
| 2900 | return ( output, "Error " ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2901 | else: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2902 | return output |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2903 | except AssertionError: |
| 2904 | main.log.exception( "" ) |
| 2905 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2906 | except TypeError: |
| 2907 | main.log.exception( self.name + ": Object not as expected" ) |
| 2908 | return ( output, "Error " ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2909 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2910 | main.log.error( self.name + ": EOF exception found" ) |
| 2911 | main.log.error( self.name + ": " + self.handle.before ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2912 | main.cleanup() |
| 2913 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2914 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2915 | main.log.exception( self.name + ": Uncaught exception!" ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2916 | main.cleanup() |
| 2917 | main.exit() |
| 2918 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2919 | def getAllIntentIds( self ): |
| 2920 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2921 | Return a list of all Intent IDs |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2922 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2923 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2924 | cmdStr = "onos:intents | grep id=" |
| 2925 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2926 | assert "Command not found:" not in output, output |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2927 | if re.search( "Error", output ): |
| 2928 | main.log.error( "Error in getting ports" ) |
| 2929 | return ( output, "Error" ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2930 | else: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2931 | return output |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2932 | except AssertionError: |
| 2933 | main.log.exception( "" ) |
| 2934 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2935 | except TypeError: |
| 2936 | main.log.exception( self.name + ": Object not as expected" ) |
| 2937 | return ( output, "Error" ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2938 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2939 | main.log.error( self.name + ": EOF exception found" ) |
| 2940 | main.log.error( self.name + ": " + self.handle.before ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2941 | main.cleanup() |
| 2942 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2943 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2944 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2945 | main.cleanup() |
| 2946 | main.exit() |
| 2947 | |
Jon Hall | 7350995 | 2015-02-24 16:42:56 -0800 | [diff] [blame] | 2948 | def intentSummary( self ): |
| 2949 | """ |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2950 | Returns a dictionary containing the current intent states and the count |
Jon Hall | 7350995 | 2015-02-24 16:42:56 -0800 | [diff] [blame] | 2951 | """ |
| 2952 | try: |
| 2953 | intents = self.intents( ) |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 2954 | states = [] |
Jon Hall | 5aa168b | 2015-03-23 14:23:09 -0700 | [diff] [blame] | 2955 | for intent in json.loads( intents ): |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 2956 | states.append( intent.get( 'state', None ) ) |
| 2957 | out = [ ( i, states.count( i ) ) for i in set( states ) ] |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2958 | main.log.info( dict( out ) ) |
Jon Hall | 7350995 | 2015-02-24 16:42:56 -0800 | [diff] [blame] | 2959 | return dict( out ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2960 | except ( TypeError, ValueError ): |
| 2961 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, intents ) ) |
Jon Hall | 7350995 | 2015-02-24 16:42:56 -0800 | [diff] [blame] | 2962 | return None |
| 2963 | except pexpect.EOF: |
| 2964 | main.log.error( self.name + ": EOF exception found" ) |
| 2965 | main.log.error( self.name + ": " + self.handle.before ) |
| 2966 | main.cleanup() |
| 2967 | main.exit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2968 | except Exception: |
Jon Hall | 7350995 | 2015-02-24 16:42:56 -0800 | [diff] [blame] | 2969 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2970 | main.cleanup() |
| 2971 | main.exit() |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2972 | |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 2973 | def leaders( self, jsonFormat=True ): |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2974 | """ |
| 2975 | Returns the output of the leaders command. |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 2976 | Optional argument: |
| 2977 | * jsonFormat - boolean indicating if you want output in json |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2978 | """ |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2979 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2980 | cmdStr = "onos:leaders" |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 2981 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2982 | cmdStr += " -j" |
| 2983 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2984 | assert "Command not found:" not in output, output |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2985 | return output |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2986 | except AssertionError: |
| 2987 | main.log.exception( "" ) |
| 2988 | return None |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2989 | except TypeError: |
| 2990 | main.log.exception( self.name + ": Object not as expected" ) |
| 2991 | return None |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2992 | except pexpect.EOF: |
| 2993 | main.log.error( self.name + ": EOF exception found" ) |
| 2994 | main.log.error( self.name + ": " + self.handle.before ) |
| 2995 | main.cleanup() |
| 2996 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 2997 | except Exception: |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 2998 | main.log.exception( self.name + ": Uncaught exception!" ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 2999 | main.cleanup() |
| 3000 | main.exit() |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3001 | |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3002 | def leaderCandidates( self, jsonFormat=True ): |
| 3003 | """ |
| 3004 | Returns the output of the leaders -c command. |
| 3005 | Optional argument: |
| 3006 | * jsonFormat - boolean indicating if you want output in json |
| 3007 | """ |
| 3008 | try: |
| 3009 | cmdStr = "onos:leaders -c" |
| 3010 | if jsonFormat: |
| 3011 | cmdStr += " -j" |
| 3012 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3013 | assert "Command not found:" not in output, output |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3014 | return output |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3015 | except AssertionError: |
| 3016 | main.log.exception( "" ) |
| 3017 | return None |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3018 | except TypeError: |
| 3019 | main.log.exception( self.name + ": Object not as expected" ) |
| 3020 | return None |
| 3021 | except pexpect.EOF: |
| 3022 | main.log.error( self.name + ": EOF exception found" ) |
| 3023 | main.log.error( self.name + ": " + self.handle.before ) |
| 3024 | main.cleanup() |
| 3025 | main.exit() |
| 3026 | except Exception: |
| 3027 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3028 | main.cleanup() |
| 3029 | main.exit() |
| 3030 | |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3031 | def specificLeaderCandidate( self, topic ): |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3032 | """ |
| 3033 | Returns a list in format [leader,candidate1,candidate2,...] for a given |
| 3034 | topic parameter and an empty list if the topic doesn't exist |
| 3035 | If no leader is elected leader in the returned list will be "none" |
| 3036 | Returns None if there is a type error processing the json object |
| 3037 | """ |
| 3038 | try: |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 3039 | cmdStr = "onos:leaders -j" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3040 | rawOutput = self.sendline( cmdStr ) |
| 3041 | assert "Command not found:" not in rawOutput, rawOutput |
| 3042 | output = json.loads( rawOutput ) |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3043 | results = [] |
| 3044 | for dict in output: |
| 3045 | if dict["topic"] == topic: |
| 3046 | leader = dict["leader"] |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3047 | candidates = re.split( ", ", dict["candidates"][1:-1] ) |
| 3048 | results.append( leader ) |
| 3049 | results.extend( candidates ) |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3050 | return results |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3051 | except AssertionError: |
| 3052 | main.log.exception( "" ) |
| 3053 | return None |
| 3054 | except ( TypeError, ValueError ): |
| 3055 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawOutput ) ) |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3056 | return None |
| 3057 | except pexpect.EOF: |
| 3058 | main.log.error( self.name + ": EOF exception found" ) |
| 3059 | main.log.error( self.name + ": " + self.handle.before ) |
| 3060 | main.cleanup() |
| 3061 | main.exit() |
| 3062 | except Exception: |
| 3063 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3064 | main.cleanup() |
| 3065 | main.exit() |
| 3066 | |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 3067 | def pendingMap( self, jsonFormat=True ): |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3068 | """ |
| 3069 | Returns the output of the intent Pending map. |
| 3070 | """ |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3071 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3072 | cmdStr = "onos:intents -p" |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 3073 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3074 | cmdStr += " -j" |
| 3075 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3076 | assert "Command not found:" not in output, output |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3077 | return output |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3078 | except AssertionError: |
| 3079 | main.log.exception( "" ) |
| 3080 | return None |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3081 | except TypeError: |
| 3082 | main.log.exception( self.name + ": Object not as expected" ) |
| 3083 | return None |
| 3084 | except pexpect.EOF: |
| 3085 | main.log.error( self.name + ": EOF exception found" ) |
| 3086 | main.log.error( self.name + ": " + self.handle.before ) |
| 3087 | main.cleanup() |
| 3088 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3089 | except Exception: |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3090 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3091 | main.cleanup() |
| 3092 | main.exit() |
| 3093 | |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 3094 | def partitions( self, jsonFormat=True ): |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3095 | """ |
| 3096 | Returns the output of the raft partitions command for ONOS. |
| 3097 | """ |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 3098 | # Sample JSON |
| 3099 | # { |
| 3100 | # "leader": "tcp://10.128.30.11:7238", |
| 3101 | # "members": [ |
| 3102 | # "tcp://10.128.30.11:7238", |
| 3103 | # "tcp://10.128.30.17:7238", |
| 3104 | # "tcp://10.128.30.13:7238", |
| 3105 | # ], |
| 3106 | # "name": "p1", |
| 3107 | # "term": 3 |
| 3108 | # }, |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3109 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3110 | cmdStr = "onos:partitions" |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 3111 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3112 | cmdStr += " -j" |
| 3113 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3114 | assert "Command not found:" not in output, output |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3115 | return output |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3116 | except AssertionError: |
| 3117 | main.log.exception( "" ) |
| 3118 | return None |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3119 | except TypeError: |
| 3120 | main.log.exception( self.name + ": Object not as expected" ) |
| 3121 | return None |
| 3122 | except pexpect.EOF: |
| 3123 | main.log.error( self.name + ": EOF exception found" ) |
| 3124 | main.log.error( self.name + ": " + self.handle.before ) |
| 3125 | main.cleanup() |
| 3126 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3127 | except Exception: |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3128 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3129 | main.cleanup() |
| 3130 | main.exit() |
| 3131 | |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3132 | def apps( self, jsonFormat=True ): |
| 3133 | """ |
| 3134 | Returns the output of the apps command for ONOS. This command lists |
| 3135 | information about installed ONOS applications |
| 3136 | """ |
| 3137 | # Sample JSON object |
| 3138 | # [{"name":"org.onosproject.openflow","id":0,"version":"1.2.0", |
| 3139 | # "description":"ONOS OpenFlow protocol southbound providers", |
| 3140 | # "origin":"ON.Lab","permissions":"[]","featuresRepo":"", |
| 3141 | # "features":"[onos-openflow]","state":"ACTIVE"}] |
| 3142 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3143 | cmdStr = "onos:apps" |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3144 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3145 | cmdStr += " -j" |
| 3146 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3147 | assert "Command not found:" not in output, output |
| 3148 | assert "Error executing command" not in output, output |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3149 | return output |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3150 | # FIXME: look at specific exceptions/Errors |
| 3151 | except AssertionError: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3152 | main.log.exception( "Error in processing onos:app command." ) |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3153 | return None |
| 3154 | except TypeError: |
| 3155 | main.log.exception( self.name + ": Object not as expected" ) |
| 3156 | return None |
| 3157 | except pexpect.EOF: |
| 3158 | main.log.error( self.name + ": EOF exception found" ) |
| 3159 | main.log.error( self.name + ": " + self.handle.before ) |
| 3160 | main.cleanup() |
| 3161 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3162 | except Exception: |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3163 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3164 | main.cleanup() |
| 3165 | main.exit() |
| 3166 | |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3167 | def appStatus( self, appName ): |
| 3168 | """ |
| 3169 | Uses the onos:apps cli command to return the status of an application. |
| 3170 | Returns: |
| 3171 | "ACTIVE" - If app is installed and activated |
| 3172 | "INSTALLED" - If app is installed and deactivated |
| 3173 | "UNINSTALLED" - If app is not installed |
| 3174 | None - on error |
| 3175 | """ |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3176 | try: |
| 3177 | if not isinstance( appName, types.StringType ): |
| 3178 | main.log.error( self.name + ".appStatus(): appName must be" + |
| 3179 | " a string" ) |
| 3180 | return None |
| 3181 | output = self.apps( jsonFormat=True ) |
| 3182 | appsJson = json.loads( output ) |
| 3183 | state = None |
| 3184 | for app in appsJson: |
| 3185 | if appName == app.get('name'): |
| 3186 | state = app.get('state') |
| 3187 | break |
| 3188 | if state == "ACTIVE" or state == "INSTALLED": |
| 3189 | return state |
| 3190 | elif state is None: |
| 3191 | return "UNINSTALLED" |
| 3192 | elif state: |
| 3193 | main.log.error( "Unexpected state from 'onos:apps': " + |
| 3194 | str( state ) ) |
| 3195 | return state |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3196 | except ( TypeError, ValueError ): |
| 3197 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, output ) ) |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3198 | return None |
| 3199 | except pexpect.EOF: |
| 3200 | main.log.error( self.name + ": EOF exception found" ) |
| 3201 | main.log.error( self.name + ": " + self.handle.before ) |
| 3202 | main.cleanup() |
| 3203 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3204 | except Exception: |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3205 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3206 | main.cleanup() |
| 3207 | main.exit() |
| 3208 | |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3209 | def app( self, appName, option ): |
| 3210 | """ |
| 3211 | Interacts with the app command for ONOS. This command manages |
| 3212 | application inventory. |
| 3213 | """ |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3214 | try: |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3215 | # Validate argument types |
| 3216 | valid = True |
| 3217 | if not isinstance( appName, types.StringType ): |
| 3218 | main.log.error( self.name + ".app(): appName must be a " + |
| 3219 | "string" ) |
| 3220 | valid = False |
| 3221 | if not isinstance( option, types.StringType ): |
| 3222 | main.log.error( self.name + ".app(): option must be a string" ) |
| 3223 | valid = False |
| 3224 | if not valid: |
| 3225 | return main.FALSE |
| 3226 | # Validate Option |
| 3227 | option = option.lower() |
| 3228 | # NOTE: Install may become a valid option |
| 3229 | if option == "activate": |
| 3230 | pass |
| 3231 | elif option == "deactivate": |
| 3232 | pass |
| 3233 | elif option == "uninstall": |
| 3234 | pass |
| 3235 | else: |
| 3236 | # Invalid option |
| 3237 | main.log.error( "The ONOS app command argument only takes " + |
| 3238 | "the values: (activate|deactivate|uninstall)" + |
| 3239 | "; was given '" + option + "'") |
| 3240 | return main.FALSE |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3241 | cmdStr = "onos:app " + option + " " + appName |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3242 | output = self.sendline( cmdStr ) |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3243 | if "Error executing command" in output: |
| 3244 | main.log.error( "Error in processing onos:app command: " + |
| 3245 | str( output ) ) |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3246 | return main.FALSE |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3247 | elif "No such application" in output: |
| 3248 | main.log.error( "The application '" + appName + |
| 3249 | "' is not installed in ONOS" ) |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3250 | return main.FALSE |
| 3251 | elif "Command not found:" in output: |
| 3252 | main.log.error( "Error in processing onos:app command: " + |
| 3253 | str( output ) ) |
| 3254 | return main.FALSE |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3255 | elif "Unsupported command:" in output: |
| 3256 | main.log.error( "Incorrect command given to 'app': " + |
| 3257 | str( output ) ) |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3258 | # NOTE: we may need to add more checks here |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3259 | # else: Command was successful |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 3260 | # main.log.debug( "app response: " + repr( output ) ) |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3261 | return main.TRUE |
| 3262 | except TypeError: |
| 3263 | main.log.exception( self.name + ": Object not as expected" ) |
| 3264 | return main.ERROR |
| 3265 | except pexpect.EOF: |
| 3266 | main.log.error( self.name + ": EOF exception found" ) |
| 3267 | main.log.error( self.name + ": " + self.handle.before ) |
| 3268 | main.cleanup() |
| 3269 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3270 | except Exception: |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3271 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3272 | main.cleanup() |
| 3273 | main.exit() |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3274 | |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3275 | def activateApp( self, appName, check=True ): |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3276 | """ |
| 3277 | Activate an app that is already installed in ONOS |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3278 | appName is the hierarchical app name, not the feature name |
| 3279 | If check is True, method will check the status of the app after the |
| 3280 | command is issued |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3281 | Returns main.TRUE if the command was successfully sent |
| 3282 | main.FALSE if the cli responded with an error or given |
| 3283 | incorrect input |
| 3284 | """ |
| 3285 | try: |
| 3286 | if not isinstance( appName, types.StringType ): |
| 3287 | main.log.error( self.name + ".activateApp(): appName must be" + |
| 3288 | " a string" ) |
| 3289 | return main.FALSE |
| 3290 | status = self.appStatus( appName ) |
| 3291 | if status == "INSTALLED": |
| 3292 | response = self.app( appName, "activate" ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3293 | if check and response == main.TRUE: |
| 3294 | for i in range(10): # try 10 times then give up |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3295 | status = self.appStatus( appName ) |
| 3296 | if status == "ACTIVE": |
| 3297 | return main.TRUE |
| 3298 | else: |
Jon Hall | 050e1bd | 2015-03-30 13:33:02 -0700 | [diff] [blame] | 3299 | main.log.debug( "The state of application " + |
| 3300 | appName + " is " + status ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3301 | time.sleep( 1 ) |
| 3302 | return main.FALSE |
| 3303 | else: # not 'check' or command didn't succeed |
| 3304 | return response |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3305 | elif status == "ACTIVE": |
| 3306 | return main.TRUE |
| 3307 | elif status == "UNINSTALLED": |
| 3308 | main.log.error( self.name + ": Tried to activate the " + |
| 3309 | "application '" + appName + "' which is not " + |
| 3310 | "installed." ) |
| 3311 | else: |
| 3312 | main.log.error( "Unexpected return value from appStatus: " + |
| 3313 | str( status ) ) |
| 3314 | return main.ERROR |
| 3315 | except TypeError: |
| 3316 | main.log.exception( self.name + ": Object not as expected" ) |
| 3317 | return main.ERROR |
| 3318 | except pexpect.EOF: |
| 3319 | main.log.error( self.name + ": EOF exception found" ) |
| 3320 | main.log.error( self.name + ": " + self.handle.before ) |
| 3321 | main.cleanup() |
| 3322 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3323 | except Exception: |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3324 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3325 | main.cleanup() |
| 3326 | main.exit() |
| 3327 | |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3328 | def deactivateApp( self, appName, check=True ): |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3329 | """ |
| 3330 | Deactivate an app that is already activated in ONOS |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3331 | appName is the hierarchical app name, not the feature name |
| 3332 | If check is True, method will check the status of the app after the |
| 3333 | command is issued |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3334 | Returns main.TRUE if the command was successfully sent |
| 3335 | main.FALSE if the cli responded with an error or given |
| 3336 | incorrect input |
| 3337 | """ |
| 3338 | try: |
| 3339 | if not isinstance( appName, types.StringType ): |
| 3340 | main.log.error( self.name + ".deactivateApp(): appName must " + |
| 3341 | "be a string" ) |
| 3342 | return main.FALSE |
| 3343 | status = self.appStatus( appName ) |
| 3344 | if status == "INSTALLED": |
| 3345 | return main.TRUE |
| 3346 | elif status == "ACTIVE": |
| 3347 | response = self.app( appName, "deactivate" ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3348 | if check and response == main.TRUE: |
| 3349 | for i in range(10): # try 10 times then give up |
| 3350 | status = self.appStatus( appName ) |
| 3351 | if status == "INSTALLED": |
| 3352 | return main.TRUE |
| 3353 | else: |
| 3354 | time.sleep( 1 ) |
| 3355 | return main.FALSE |
| 3356 | else: # not check or command didn't succeed |
| 3357 | return response |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3358 | elif status == "UNINSTALLED": |
| 3359 | main.log.warn( self.name + ": Tried to deactivate the " + |
| 3360 | "application '" + appName + "' which is not " + |
| 3361 | "installed." ) |
| 3362 | return main.TRUE |
| 3363 | else: |
| 3364 | main.log.error( "Unexpected return value from appStatus: " + |
| 3365 | str( status ) ) |
| 3366 | return main.ERROR |
| 3367 | except TypeError: |
| 3368 | main.log.exception( self.name + ": Object not as expected" ) |
| 3369 | return main.ERROR |
| 3370 | except pexpect.EOF: |
| 3371 | main.log.error( self.name + ": EOF exception found" ) |
| 3372 | main.log.error( self.name + ": " + self.handle.before ) |
| 3373 | main.cleanup() |
| 3374 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3375 | except Exception: |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3376 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3377 | main.cleanup() |
| 3378 | main.exit() |
| 3379 | |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3380 | def uninstallApp( self, appName, check=True ): |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3381 | """ |
| 3382 | Uninstall an app that is already installed in ONOS |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3383 | appName is the hierarchical app name, not the feature name |
| 3384 | If check is True, method will check the status of the app after the |
| 3385 | command is issued |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3386 | Returns main.TRUE if the command was successfully sent |
| 3387 | main.FALSE if the cli responded with an error or given |
| 3388 | incorrect input |
| 3389 | """ |
| 3390 | # TODO: check with Thomas about the state machine for apps |
| 3391 | try: |
| 3392 | if not isinstance( appName, types.StringType ): |
| 3393 | main.log.error( self.name + ".uninstallApp(): appName must " + |
| 3394 | "be a string" ) |
| 3395 | return main.FALSE |
| 3396 | status = self.appStatus( appName ) |
| 3397 | if status == "INSTALLED": |
| 3398 | response = self.app( appName, "uninstall" ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3399 | if check and response == main.TRUE: |
| 3400 | for i in range(10): # try 10 times then give up |
| 3401 | status = self.appStatus( appName ) |
| 3402 | if status == "UNINSTALLED": |
| 3403 | return main.TRUE |
| 3404 | else: |
| 3405 | time.sleep( 1 ) |
| 3406 | return main.FALSE |
| 3407 | else: # not check or command didn't succeed |
| 3408 | return response |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3409 | elif status == "ACTIVE": |
| 3410 | main.log.warn( self.name + ": Tried to uninstall the " + |
| 3411 | "application '" + appName + "' which is " + |
| 3412 | "currently active." ) |
| 3413 | response = self.app( appName, "uninstall" ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3414 | if check and response == main.TRUE: |
| 3415 | for i in range(10): # try 10 times then give up |
| 3416 | status = self.appStatus( appName ) |
| 3417 | if status == "UNINSTALLED": |
| 3418 | return main.TRUE |
| 3419 | else: |
| 3420 | time.sleep( 1 ) |
| 3421 | return main.FALSE |
| 3422 | else: # not check or command didn't succeed |
| 3423 | return response |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3424 | elif status == "UNINSTALLED": |
| 3425 | return main.TRUE |
| 3426 | else: |
| 3427 | main.log.error( "Unexpected return value from appStatus: " + |
| 3428 | str( status ) ) |
| 3429 | return main.ERROR |
| 3430 | except TypeError: |
| 3431 | main.log.exception( self.name + ": Object not as expected" ) |
| 3432 | return main.ERROR |
| 3433 | except pexpect.EOF: |
| 3434 | main.log.error( self.name + ": EOF exception found" ) |
| 3435 | main.log.error( self.name + ": " + self.handle.before ) |
| 3436 | main.cleanup() |
| 3437 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3438 | except Exception: |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3439 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3440 | main.cleanup() |
| 3441 | main.exit() |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3442 | |
| 3443 | def appIDs( self, jsonFormat=True ): |
| 3444 | """ |
| 3445 | Show the mappings between app id and app names given by the 'app-ids' |
| 3446 | cli command |
| 3447 | """ |
| 3448 | try: |
| 3449 | cmdStr = "app-ids" |
| 3450 | if jsonFormat: |
| 3451 | cmdStr += " -j" |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3452 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3453 | assert "Command not found:" not in output, output |
| 3454 | assert "Error executing command" not in output, output |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3455 | return output |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3456 | except AssertionError: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3457 | main.log.exception( "Error in processing onos:app-ids command." ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3458 | return None |
| 3459 | except TypeError: |
| 3460 | main.log.exception( self.name + ": Object not as expected" ) |
| 3461 | return None |
| 3462 | except pexpect.EOF: |
| 3463 | main.log.error( self.name + ": EOF exception found" ) |
| 3464 | main.log.error( self.name + ": " + self.handle.before ) |
| 3465 | main.cleanup() |
| 3466 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3467 | except Exception: |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3468 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3469 | main.cleanup() |
| 3470 | main.exit() |
| 3471 | |
| 3472 | def appToIDCheck( self ): |
| 3473 | """ |
| 3474 | This method will check that each application's ID listed in 'apps' is |
| 3475 | the same as the ID listed in 'app-ids'. The check will also check that |
| 3476 | there are no duplicate IDs issued. Note that an app ID should be |
| 3477 | a globaly unique numerical identifier for app/app-like features. Once |
| 3478 | an ID is registered, the ID is never freed up so that if an app is |
| 3479 | reinstalled it will have the same ID. |
| 3480 | |
| 3481 | Returns: main.TRUE if the check passes and |
| 3482 | main.FALSE if the check fails or |
| 3483 | main.ERROR if there is some error in processing the test |
| 3484 | """ |
| 3485 | try: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3486 | bail = False |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3487 | rawJson = self.appIDs( jsonFormat=True ) |
| 3488 | if rawJson: |
| 3489 | ids = json.loads( rawJson ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3490 | else: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3491 | main.log.error( "app-ids returned nothing:" + repr( rawJson ) ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3492 | bail = True |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3493 | rawJson = self.apps( jsonFormat=True ) |
| 3494 | if rawJson: |
| 3495 | apps = json.loads( rawJson ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3496 | else: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3497 | main.log.error( "apps returned nothing:" + repr( rawJson ) ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3498 | bail = True |
| 3499 | if bail: |
| 3500 | return main.FALSE |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3501 | result = main.TRUE |
| 3502 | for app in apps: |
| 3503 | appID = app.get( 'id' ) |
| 3504 | if appID is None: |
| 3505 | main.log.error( "Error parsing app: " + str( app ) ) |
| 3506 | result = main.FALSE |
| 3507 | appName = app.get( 'name' ) |
| 3508 | if appName is None: |
| 3509 | main.log.error( "Error parsing app: " + str( app ) ) |
| 3510 | result = main.FALSE |
| 3511 | # get the entry in ids that has the same appID |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3512 | current = filter( lambda item: item[ 'id' ] == appID, ids ) |
Jon Hall | 050e1bd | 2015-03-30 13:33:02 -0700 | [diff] [blame] | 3513 | # main.log.debug( "Comparing " + str( app ) + " to " + |
| 3514 | # str( current ) ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3515 | if not current: # if ids doesn't have this id |
| 3516 | result = main.FALSE |
| 3517 | main.log.error( "'app-ids' does not have the ID for " + |
| 3518 | str( appName ) + " that apps does." ) |
| 3519 | elif len( current ) > 1: |
| 3520 | # there is more than one app with this ID |
| 3521 | result = main.FALSE |
| 3522 | # We will log this later in the method |
| 3523 | elif not current[0][ 'name' ] == appName: |
| 3524 | currentName = current[0][ 'name' ] |
| 3525 | result = main.FALSE |
| 3526 | main.log.error( "'app-ids' has " + str( currentName ) + |
| 3527 | " registered under id:" + str( appID ) + |
| 3528 | " but 'apps' has " + str( appName ) ) |
| 3529 | else: |
| 3530 | pass # id and name match! |
| 3531 | # now make sure that app-ids has no duplicates |
| 3532 | idsList = [] |
| 3533 | namesList = [] |
| 3534 | for item in ids: |
| 3535 | idsList.append( item[ 'id' ] ) |
| 3536 | namesList.append( item[ 'name' ] ) |
| 3537 | if len( idsList ) != len( set( idsList ) ) or\ |
| 3538 | len( namesList ) != len( set( namesList ) ): |
| 3539 | main.log.error( "'app-ids' has some duplicate entries: \n" |
| 3540 | + json.dumps( ids, |
| 3541 | sort_keys=True, |
| 3542 | indent=4, |
| 3543 | separators=( ',', ': ' ) ) ) |
| 3544 | result = main.FALSE |
| 3545 | return result |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3546 | except ( TypeError, ValueError ): |
| 3547 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawJson ) ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3548 | return main.ERROR |
| 3549 | except pexpect.EOF: |
| 3550 | main.log.error( self.name + ": EOF exception found" ) |
| 3551 | main.log.error( self.name + ": " + self.handle.before ) |
| 3552 | main.cleanup() |
| 3553 | main.exit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3554 | except Exception: |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3555 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3556 | main.cleanup() |
| 3557 | main.exit() |
| 3558 | |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 3559 | def getCfg( self, component=None, propName=None, short=False, |
| 3560 | jsonFormat=True ): |
| 3561 | """ |
| 3562 | Get configuration settings from onos cli |
| 3563 | Optional arguments: |
| 3564 | component - Optionally only list configurations for a specific |
| 3565 | component. If None, all components with configurations |
| 3566 | are displayed. Case Sensitive string. |
| 3567 | propName - If component is specified, propName option will show |
| 3568 | only this specific configuration from that component. |
| 3569 | Case Sensitive string. |
| 3570 | jsonFormat - Returns output as json. Note that this will override |
| 3571 | the short option |
| 3572 | short - Short, less verbose, version of configurations. |
| 3573 | This is overridden by the json option |
| 3574 | returns: |
| 3575 | Output from cli as a string or None on error |
| 3576 | """ |
| 3577 | try: |
| 3578 | baseStr = "cfg" |
| 3579 | cmdStr = " get" |
| 3580 | componentStr = "" |
| 3581 | if component: |
| 3582 | componentStr += " " + component |
| 3583 | if propName: |
| 3584 | componentStr += " " + propName |
| 3585 | if jsonFormat: |
| 3586 | baseStr += " -j" |
| 3587 | elif short: |
| 3588 | baseStr += " -s" |
| 3589 | output = self.sendline( baseStr + cmdStr + componentStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3590 | assert "Command not found:" not in output, output |
| 3591 | assert "Error executing command" not in output, output |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 3592 | return output |
| 3593 | except AssertionError: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3594 | main.log.exception( "Error in processing 'cfg get' command." ) |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 3595 | return None |
| 3596 | except TypeError: |
| 3597 | main.log.exception( self.name + ": Object not as expected" ) |
| 3598 | return None |
| 3599 | except pexpect.EOF: |
| 3600 | main.log.error( self.name + ": EOF exception found" ) |
| 3601 | main.log.error( self.name + ": " + self.handle.before ) |
| 3602 | main.cleanup() |
| 3603 | main.exit() |
| 3604 | except Exception: |
| 3605 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3606 | main.cleanup() |
| 3607 | main.exit() |
| 3608 | |
| 3609 | def setCfg( self, component, propName, value=None, check=True ): |
| 3610 | """ |
| 3611 | Set/Unset configuration settings from ONOS cli |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3612 | Required arguments: |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 3613 | component - The case sensitive name of the component whose |
| 3614 | property is to be set |
| 3615 | propName - The case sensitive name of the property to be set/unset |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3616 | Optional arguments: |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 3617 | value - The value to set the property to. If None, will unset the |
| 3618 | property and revert it to it's default value(if applicable) |
| 3619 | check - Boolean, Check whether the option was successfully set this |
| 3620 | only applies when a value is given. |
| 3621 | returns: |
| 3622 | main.TRUE on success or main.FALSE on failure. If check is False, |
| 3623 | will return main.TRUE unless there is an error |
| 3624 | """ |
| 3625 | try: |
| 3626 | baseStr = "cfg" |
| 3627 | cmdStr = " set " + str( component ) + " " + str( propName ) |
| 3628 | if value is not None: |
| 3629 | cmdStr += " " + str( value ) |
| 3630 | output = self.sendline( baseStr + cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3631 | assert "Command not found:" not in output, output |
| 3632 | assert "Error executing command" not in output, output |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 3633 | if value and check: |
| 3634 | results = self.getCfg( component=str( component ), |
| 3635 | propName=str( propName ), |
| 3636 | jsonFormat=True ) |
| 3637 | # Check if current value is what we just set |
| 3638 | try: |
| 3639 | jsonOutput = json.loads( results ) |
| 3640 | current = jsonOutput[ 'value' ] |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3641 | except ( TypeError, ValueError ): |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 3642 | main.log.exception( "Error parsing cfg output" ) |
| 3643 | main.log.error( "output:" + repr( results ) ) |
| 3644 | return main.FALSE |
| 3645 | if current == str( value ): |
| 3646 | return main.TRUE |
| 3647 | return main.FALSE |
| 3648 | return main.TRUE |
| 3649 | except AssertionError: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3650 | main.log.exception( "Error in processing 'cfg set' command." ) |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 3651 | return main.FALSE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3652 | except ( TypeError, ValueError ): |
| 3653 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, results ) ) |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 3654 | return main.FALSE |
| 3655 | except pexpect.EOF: |
| 3656 | main.log.error( self.name + ": EOF exception found" ) |
| 3657 | main.log.error( self.name + ": " + self.handle.before ) |
| 3658 | main.cleanup() |
| 3659 | main.exit() |
| 3660 | except Exception: |
| 3661 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3662 | main.cleanup() |
| 3663 | main.exit() |
| 3664 | |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3665 | def setTestAdd( self, setName, values ): |
| 3666 | """ |
| 3667 | CLI command to add elements to a distributed set. |
| 3668 | Arguments: |
| 3669 | setName - The name of the set to add to. |
| 3670 | values - The value(s) to add to the set, space seperated. |
| 3671 | Example usages: |
| 3672 | setTestAdd( "set1", "a b c" ) |
| 3673 | setTestAdd( "set2", "1" ) |
| 3674 | returns: |
| 3675 | main.TRUE on success OR |
| 3676 | main.FALSE if elements were already in the set OR |
| 3677 | main.ERROR on error |
| 3678 | """ |
| 3679 | try: |
| 3680 | cmdStr = "set-test-add " + str( setName ) + " " + str( values ) |
| 3681 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3682 | assert "Command not found:" not in output, output |
Jon Hall | feff308 | 2015-05-19 10:23:26 -0700 | [diff] [blame] | 3683 | try: |
| 3684 | # TODO: Maybe make this less hardcoded |
| 3685 | # ConsistentMap Exceptions |
| 3686 | assert "org.onosproject.store.service" not in output |
| 3687 | # Node not leader |
| 3688 | assert "java.lang.IllegalStateException" not in output |
| 3689 | except AssertionError: |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 3690 | main.log.error( "Error in processing '" + cmdStr + "' " + |
Jon Hall | feff308 | 2015-05-19 10:23:26 -0700 | [diff] [blame] | 3691 | "command: " + str( output ) ) |
| 3692 | retryTime = 30 # Conservative time, given by Madan |
| 3693 | main.log.info( "Waiting " + str( retryTime ) + |
| 3694 | "seconds before retrying." ) |
| 3695 | time.sleep( retryTime ) # Due to change in mastership |
| 3696 | output = self.sendline( cmdStr ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3697 | assert "Error executing command" not in output |
| 3698 | positiveMatch = "\[(.*)\] was added to the set " + str( setName ) |
| 3699 | negativeMatch = "\[(.*)\] was already in set " + str( setName ) |
| 3700 | main.log.info( self.name + ": " + output ) |
| 3701 | if re.search( positiveMatch, output): |
| 3702 | return main.TRUE |
| 3703 | elif re.search( negativeMatch, output): |
| 3704 | return main.FALSE |
| 3705 | else: |
| 3706 | main.log.error( self.name + ": setTestAdd did not" + |
| 3707 | " match expected output" ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3708 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 3709 | return main.ERROR |
| 3710 | except AssertionError: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3711 | main.log.exception( "Error in processing '" + cmdStr + "' command. " ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3712 | return main.ERROR |
| 3713 | except TypeError: |
| 3714 | main.log.exception( self.name + ": Object not as expected" ) |
| 3715 | return main.ERROR |
| 3716 | except pexpect.EOF: |
| 3717 | main.log.error( self.name + ": EOF exception found" ) |
| 3718 | main.log.error( self.name + ": " + self.handle.before ) |
| 3719 | main.cleanup() |
| 3720 | main.exit() |
| 3721 | except Exception: |
| 3722 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3723 | main.cleanup() |
| 3724 | main.exit() |
| 3725 | |
| 3726 | def setTestRemove( self, setName, values, clear=False, retain=False ): |
| 3727 | """ |
| 3728 | CLI command to remove elements from a distributed set. |
| 3729 | Required arguments: |
| 3730 | setName - The name of the set to remove from. |
| 3731 | values - The value(s) to remove from the set, space seperated. |
| 3732 | Optional arguments: |
| 3733 | clear - Clear all elements from the set |
| 3734 | retain - Retain only the given values. (intersection of the |
| 3735 | original set and the given set) |
| 3736 | returns: |
| 3737 | main.TRUE on success OR |
| 3738 | main.FALSE if the set was not changed OR |
| 3739 | main.ERROR on error |
| 3740 | """ |
| 3741 | try: |
| 3742 | cmdStr = "set-test-remove " |
| 3743 | if clear: |
| 3744 | cmdStr += "-c " + str( setName ) |
| 3745 | elif retain: |
| 3746 | cmdStr += "-r " + str( setName ) + " " + str( values ) |
| 3747 | else: |
| 3748 | cmdStr += str( setName ) + " " + str( values ) |
| 3749 | output = self.sendline( cmdStr ) |
Jon Hall | feff308 | 2015-05-19 10:23:26 -0700 | [diff] [blame] | 3750 | try: |
| 3751 | # TODO: Maybe make this less hardcoded |
| 3752 | # ConsistentMap Exceptions |
| 3753 | assert "org.onosproject.store.service" not in output |
| 3754 | # Node not leader |
| 3755 | assert "java.lang.IllegalStateException" not in output |
| 3756 | except AssertionError: |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 3757 | main.log.error( "Error in processing '" + cmdStr + "' " + |
Jon Hall | feff308 | 2015-05-19 10:23:26 -0700 | [diff] [blame] | 3758 | "command: " + str( output ) ) |
| 3759 | retryTime = 30 # Conservative time, given by Madan |
| 3760 | main.log.info( "Waiting " + str( retryTime ) + |
| 3761 | "seconds before retrying." ) |
| 3762 | time.sleep( retryTime ) # Due to change in mastership |
| 3763 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3764 | assert "Command not found:" not in output, output |
| 3765 | assert "Error executing command" not in output, output |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3766 | main.log.info( self.name + ": " + output ) |
| 3767 | if clear: |
| 3768 | pattern = "Set " + str( setName ) + " cleared" |
| 3769 | if re.search( pattern, output ): |
| 3770 | return main.TRUE |
| 3771 | elif retain: |
| 3772 | positivePattern = str( setName ) + " was pruned to contain " +\ |
| 3773 | "only elements of set \[(.*)\]" |
| 3774 | negativePattern = str( setName ) + " was not changed by " +\ |
| 3775 | "retaining only elements of the set " +\ |
| 3776 | "\[(.*)\]" |
| 3777 | if re.search( positivePattern, output ): |
| 3778 | return main.TRUE |
| 3779 | elif re.search( negativePattern, output ): |
| 3780 | return main.FALSE |
| 3781 | else: |
| 3782 | positivePattern = "\[(.*)\] was removed from the set " +\ |
| 3783 | str( setName ) |
| 3784 | if ( len( values.split() ) == 1 ): |
| 3785 | negativePattern = "\[(.*)\] was not in set " +\ |
| 3786 | str( setName ) |
| 3787 | else: |
| 3788 | negativePattern = "No element of \[(.*)\] was in set " +\ |
| 3789 | str( setName ) |
| 3790 | if re.search( positivePattern, output ): |
| 3791 | return main.TRUE |
| 3792 | elif re.search( negativePattern, output ): |
| 3793 | return main.FALSE |
| 3794 | main.log.error( self.name + ": setTestRemove did not" + |
| 3795 | " match expected output" ) |
| 3796 | main.log.debug( self.name + " expected: " + pattern ) |
| 3797 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 3798 | return main.ERROR |
| 3799 | except AssertionError: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3800 | main.log.exception( "Error in processing '" + cmdStr + "' commandr. " ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3801 | return main.ERROR |
| 3802 | except TypeError: |
| 3803 | main.log.exception( self.name + ": Object not as expected" ) |
| 3804 | return main.ERROR |
| 3805 | except pexpect.EOF: |
| 3806 | main.log.error( self.name + ": EOF exception found" ) |
| 3807 | main.log.error( self.name + ": " + self.handle.before ) |
| 3808 | main.cleanup() |
| 3809 | main.exit() |
| 3810 | except Exception: |
| 3811 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3812 | main.cleanup() |
| 3813 | main.exit() |
| 3814 | |
| 3815 | def setTestGet( self, setName, values="" ): |
| 3816 | """ |
| 3817 | CLI command to get the elements in a distributed set. |
| 3818 | Required arguments: |
| 3819 | setName - The name of the set to remove from. |
| 3820 | Optional arguments: |
| 3821 | values - The value(s) to check if in the set, space seperated. |
| 3822 | returns: |
| 3823 | main.ERROR on error OR |
| 3824 | A list of elements in the set if no optional arguments are |
| 3825 | supplied OR |
| 3826 | A tuple containing the list then: |
| 3827 | main.FALSE if the given values are not in the set OR |
| 3828 | main.TRUE if the given values are in the set OR |
| 3829 | """ |
| 3830 | try: |
| 3831 | values = str( values ).strip() |
| 3832 | setName = str( setName ).strip() |
| 3833 | length = len( values.split() ) |
| 3834 | containsCheck = None |
| 3835 | # Patterns to match |
| 3836 | setPattern = "\[(.*)\]" |
| 3837 | pattern = "Items in set " + setName + ":\n" + setPattern |
| 3838 | containsTrue = "Set " + setName + " contains the value " + values |
| 3839 | containsFalse = "Set " + setName + " did not contain the value " +\ |
| 3840 | values |
| 3841 | containsAllTrue = "Set " + setName + " contains the the subset " +\ |
| 3842 | setPattern |
| 3843 | containsAllFalse = "Set " + setName + " did not contain the the" +\ |
| 3844 | " subset " + setPattern |
| 3845 | |
| 3846 | cmdStr = "set-test-get " |
| 3847 | cmdStr += setName + " " + values |
| 3848 | output = self.sendline( cmdStr ) |
Jon Hall | feff308 | 2015-05-19 10:23:26 -0700 | [diff] [blame] | 3849 | try: |
| 3850 | # TODO: Maybe make this less hardcoded |
| 3851 | # ConsistentMap Exceptions |
| 3852 | assert "org.onosproject.store.service" not in output |
| 3853 | # Node not leader |
| 3854 | assert "java.lang.IllegalStateException" not in output |
| 3855 | except AssertionError: |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 3856 | main.log.error( "Error in processing '" + cmdStr + "' " + |
Jon Hall | feff308 | 2015-05-19 10:23:26 -0700 | [diff] [blame] | 3857 | "command: " + str( output ) ) |
| 3858 | retryTime = 30 # Conservative time, given by Madan |
| 3859 | main.log.info( "Waiting " + str( retryTime ) + |
| 3860 | "seconds before retrying." ) |
| 3861 | time.sleep( retryTime ) # Due to change in mastership |
| 3862 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3863 | assert "Command not found:" not in output, output |
| 3864 | assert "Error executing command" not in output, output |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3865 | main.log.info( self.name + ": " + output ) |
| 3866 | |
| 3867 | if length == 0: |
| 3868 | match = re.search( pattern, output ) |
| 3869 | else: # if given values |
| 3870 | if length == 1: # Contains output |
| 3871 | patternTrue = pattern + "\n" + containsTrue |
| 3872 | patternFalse = pattern + "\n" + containsFalse |
| 3873 | else: # ContainsAll output |
| 3874 | patternTrue = pattern + "\n" + containsAllTrue |
| 3875 | patternFalse = pattern + "\n" + containsAllFalse |
| 3876 | matchTrue = re.search( patternTrue, output ) |
| 3877 | matchFalse = re.search( patternFalse, output ) |
| 3878 | if matchTrue: |
| 3879 | containsCheck = main.TRUE |
| 3880 | match = matchTrue |
| 3881 | elif matchFalse: |
| 3882 | containsCheck = main.FALSE |
| 3883 | match = matchFalse |
| 3884 | else: |
| 3885 | main.log.error( self.name + " setTestGet did not match " +\ |
| 3886 | "expected output" ) |
| 3887 | main.log.debug( self.name + " expected: " + pattern ) |
| 3888 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 3889 | match = None |
| 3890 | if match: |
| 3891 | setMatch = match.group( 1 ) |
| 3892 | if setMatch == '': |
| 3893 | setList = [] |
| 3894 | else: |
| 3895 | setList = setMatch.split( ", " ) |
| 3896 | if length > 0: |
| 3897 | return ( setList, containsCheck ) |
| 3898 | else: |
| 3899 | return setList |
| 3900 | else: # no match |
| 3901 | main.log.error( self.name + ": setTestGet did not" + |
| 3902 | " match expected output" ) |
| 3903 | main.log.debug( self.name + " expected: " + pattern ) |
| 3904 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 3905 | return main.ERROR |
| 3906 | except AssertionError: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3907 | main.log.exception( "Error in processing '" + cmdStr + "' command." ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3908 | return main.ERROR |
| 3909 | except TypeError: |
| 3910 | main.log.exception( self.name + ": Object not as expected" ) |
| 3911 | return main.ERROR |
| 3912 | except pexpect.EOF: |
| 3913 | main.log.error( self.name + ": EOF exception found" ) |
| 3914 | main.log.error( self.name + ": " + self.handle.before ) |
| 3915 | main.cleanup() |
| 3916 | main.exit() |
| 3917 | except Exception: |
| 3918 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3919 | main.cleanup() |
| 3920 | main.exit() |
| 3921 | |
| 3922 | def setTestSize( self, setName ): |
| 3923 | """ |
| 3924 | CLI command to get the elements in a distributed set. |
| 3925 | Required arguments: |
| 3926 | setName - The name of the set to remove from. |
| 3927 | returns: |
Jon Hall | feff308 | 2015-05-19 10:23:26 -0700 | [diff] [blame] | 3928 | The integer value of the size returned or |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3929 | None on error |
| 3930 | """ |
| 3931 | try: |
| 3932 | # TODO: Should this check against the number of elements returned |
| 3933 | # and then return true/false based on that? |
| 3934 | setName = str( setName ).strip() |
| 3935 | # Patterns to match |
| 3936 | setPattern = "\[(.*)\]" |
| 3937 | pattern = "There are (\d+) items in set " + setName + ":\n" +\ |
| 3938 | setPattern |
| 3939 | cmdStr = "set-test-get -s " |
| 3940 | cmdStr += setName |
| 3941 | output = self.sendline( cmdStr ) |
Jon Hall | feff308 | 2015-05-19 10:23:26 -0700 | [diff] [blame] | 3942 | try: |
| 3943 | # TODO: Maybe make this less hardcoded |
| 3944 | # ConsistentMap Exceptions |
| 3945 | assert "org.onosproject.store.service" not in output |
| 3946 | # Node not leader |
| 3947 | assert "java.lang.IllegalStateException" not in output |
| 3948 | except AssertionError: |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 3949 | main.log.error( "Error in processing '" + cmdStr + "' " + |
Jon Hall | feff308 | 2015-05-19 10:23:26 -0700 | [diff] [blame] | 3950 | "command: " + str( output ) ) |
| 3951 | retryTime = 30 # Conservative time, given by Madan |
| 3952 | main.log.info( "Waiting " + str( retryTime ) + |
| 3953 | "seconds before retrying." ) |
| 3954 | time.sleep( retryTime ) # Due to change in mastership |
| 3955 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3956 | assert "Command not found:" not in output, output |
| 3957 | assert "Error executing command" not in output, output |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3958 | main.log.info( self.name + ": " + output ) |
| 3959 | match = re.search( pattern, output ) |
| 3960 | if match: |
| 3961 | setSize = int( match.group( 1 ) ) |
| 3962 | setMatch = match.group( 2 ) |
| 3963 | if len( setMatch.split() ) == setSize: |
| 3964 | main.log.info( "The size returned by " + self.name + |
| 3965 | " matches the number of elements in " + |
| 3966 | "the returned set" ) |
| 3967 | else: |
| 3968 | main.log.error( "The size returned by " + self.name + |
| 3969 | " does not match the number of " + |
| 3970 | "elements in the returned set." ) |
| 3971 | return setSize |
| 3972 | else: # no match |
| 3973 | main.log.error( self.name + ": setTestGet did not" + |
| 3974 | " match expected output" ) |
| 3975 | main.log.debug( self.name + " expected: " + pattern ) |
| 3976 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 3977 | return None |
| 3978 | except AssertionError: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3979 | main.log.exception( "Error in processing '" + cmdStr + "' command." ) |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3980 | return None |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3981 | except TypeError: |
| 3982 | main.log.exception( self.name + ": Object not as expected" ) |
| 3983 | return None |
| 3984 | except pexpect.EOF: |
| 3985 | main.log.error( self.name + ": EOF exception found" ) |
| 3986 | main.log.error( self.name + ": " + self.handle.before ) |
| 3987 | main.cleanup() |
| 3988 | main.exit() |
| 3989 | except Exception: |
| 3990 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 3991 | main.cleanup() |
| 3992 | main.exit() |
| 3993 | |
Jon Hall | 80daded | 2015-05-27 16:07:00 -0700 | [diff] [blame] | 3994 | def counters( self, jsonFormat=True ): |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3995 | """ |
| 3996 | Command to list the various counters in the system. |
| 3997 | returns: |
Jon Hall | 80daded | 2015-05-27 16:07:00 -0700 | [diff] [blame] | 3998 | if jsonFormat, a string of the json object returned by the cli |
| 3999 | command |
| 4000 | if not jsonFormat, the normal string output of the cli command |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4001 | None on error |
| 4002 | """ |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4003 | try: |
| 4004 | counters = {} |
| 4005 | cmdStr = "counters" |
Jon Hall | 80daded | 2015-05-27 16:07:00 -0700 | [diff] [blame] | 4006 | if jsonFormat: |
| 4007 | cmdStr += " -j" |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4008 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4009 | assert "Command not found:" not in output, output |
| 4010 | assert "Error executing command" not in output, output |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4011 | main.log.info( self.name + ": " + output ) |
Jon Hall | 80daded | 2015-05-27 16:07:00 -0700 | [diff] [blame] | 4012 | return output |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4013 | except AssertionError: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4014 | main.log.exception( "Error in processing 'counters' command." ) |
Jon Hall | 80daded | 2015-05-27 16:07:00 -0700 | [diff] [blame] | 4015 | return None |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4016 | except TypeError: |
| 4017 | main.log.exception( self.name + ": Object not as expected" ) |
Jon Hall | 80daded | 2015-05-27 16:07:00 -0700 | [diff] [blame] | 4018 | return None |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4019 | except pexpect.EOF: |
| 4020 | main.log.error( self.name + ": EOF exception found" ) |
| 4021 | main.log.error( self.name + ": " + self.handle.before ) |
| 4022 | main.cleanup() |
| 4023 | main.exit() |
| 4024 | except Exception: |
| 4025 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 4026 | main.cleanup() |
| 4027 | main.exit() |
| 4028 | |
Jon Hall | 935db19 | 2016-04-19 00:22:04 -0700 | [diff] [blame] | 4029 | def counterTestAddAndGet( self, counter, delta=1 ): |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4030 | """ |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4031 | CLI command to add a delta to then get a distributed counter. |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4032 | Required arguments: |
| 4033 | counter - The name of the counter to increment. |
| 4034 | Optional arguments: |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4035 | delta - The long to add to the counter |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4036 | returns: |
| 4037 | integer value of the counter or |
| 4038 | None on Error |
| 4039 | """ |
| 4040 | try: |
| 4041 | counter = str( counter ) |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4042 | delta = int( delta ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4043 | cmdStr = "counter-test-increment " |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4044 | cmdStr += counter |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4045 | if delta != 1: |
| 4046 | cmdStr += " " + str( delta ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4047 | output = self.sendline( cmdStr ) |
Jon Hall | feff308 | 2015-05-19 10:23:26 -0700 | [diff] [blame] | 4048 | try: |
| 4049 | # TODO: Maybe make this less hardcoded |
| 4050 | # ConsistentMap Exceptions |
| 4051 | assert "org.onosproject.store.service" not in output |
| 4052 | # Node not leader |
| 4053 | assert "java.lang.IllegalStateException" not in output |
| 4054 | except AssertionError: |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4055 | main.log.error( "Error in processing '" + cmdStr + "' " + |
Jon Hall | feff308 | 2015-05-19 10:23:26 -0700 | [diff] [blame] | 4056 | "command: " + str( output ) ) |
| 4057 | retryTime = 30 # Conservative time, given by Madan |
| 4058 | main.log.info( "Waiting " + str( retryTime ) + |
| 4059 | "seconds before retrying." ) |
| 4060 | time.sleep( retryTime ) # Due to change in mastership |
| 4061 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4062 | assert "Command not found:" not in output, output |
| 4063 | assert "Error executing command" not in output, output |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4064 | main.log.info( self.name + ": " + output ) |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4065 | pattern = counter + " was updated to (-?\d+)" |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4066 | match = re.search( pattern, output ) |
| 4067 | if match: |
| 4068 | return int( match.group( 1 ) ) |
| 4069 | else: |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4070 | main.log.error( self.name + ": counterTestAddAndGet did not" + |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4071 | " match expected output." ) |
| 4072 | main.log.debug( self.name + " expected: " + pattern ) |
| 4073 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 4074 | return None |
| 4075 | except AssertionError: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4076 | main.log.exception( "Error in processing '" + cmdStr + "' command." ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4077 | return None |
| 4078 | except TypeError: |
| 4079 | main.log.exception( self.name + ": Object not as expected" ) |
| 4080 | return None |
| 4081 | except pexpect.EOF: |
| 4082 | main.log.error( self.name + ": EOF exception found" ) |
| 4083 | main.log.error( self.name + ": " + self.handle.before ) |
| 4084 | main.cleanup() |
| 4085 | main.exit() |
| 4086 | except Exception: |
| 4087 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 4088 | main.cleanup() |
| 4089 | main.exit() |
| 4090 | |
Jon Hall | 935db19 | 2016-04-19 00:22:04 -0700 | [diff] [blame] | 4091 | def counterTestGetAndAdd( self, counter, delta=1 ): |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4092 | """ |
| 4093 | CLI command to get a distributed counter then add a delta to it. |
| 4094 | Required arguments: |
| 4095 | counter - The name of the counter to increment. |
| 4096 | Optional arguments: |
| 4097 | delta - The long to add to the counter |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4098 | returns: |
| 4099 | integer value of the counter or |
| 4100 | None on Error |
| 4101 | """ |
| 4102 | try: |
| 4103 | counter = str( counter ) |
| 4104 | delta = int( delta ) |
| 4105 | cmdStr = "counter-test-increment -g " |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4106 | cmdStr += counter |
| 4107 | if delta != 1: |
| 4108 | cmdStr += " " + str( delta ) |
| 4109 | output = self.sendline( cmdStr ) |
| 4110 | try: |
| 4111 | # TODO: Maybe make this less hardcoded |
| 4112 | # ConsistentMap Exceptions |
| 4113 | assert "org.onosproject.store.service" not in output |
| 4114 | # Node not leader |
| 4115 | assert "java.lang.IllegalStateException" not in output |
| 4116 | except AssertionError: |
| 4117 | main.log.error( "Error in processing '" + cmdStr + "' " + |
| 4118 | "command: " + str( output ) ) |
| 4119 | retryTime = 30 # Conservative time, given by Madan |
| 4120 | main.log.info( "Waiting " + str( retryTime ) + |
| 4121 | "seconds before retrying." ) |
| 4122 | time.sleep( retryTime ) # Due to change in mastership |
| 4123 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4124 | assert "Command not found:" not in output, output |
| 4125 | assert "Error executing command" not in output, output |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4126 | main.log.info( self.name + ": " + output ) |
| 4127 | pattern = counter + " was updated to (-?\d+)" |
| 4128 | match = re.search( pattern, output ) |
| 4129 | if match: |
| 4130 | return int( match.group( 1 ) ) |
| 4131 | else: |
| 4132 | main.log.error( self.name + ": counterTestGetAndAdd did not" + |
| 4133 | " match expected output." ) |
| 4134 | main.log.debug( self.name + " expected: " + pattern ) |
| 4135 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 4136 | return None |
| 4137 | except AssertionError: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4138 | main.log.exception( "Error in processing '" + cmdStr + "' command." ) |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4139 | return None |
| 4140 | except TypeError: |
| 4141 | main.log.exception( self.name + ": Object not as expected" ) |
| 4142 | return None |
| 4143 | except pexpect.EOF: |
| 4144 | main.log.error( self.name + ": EOF exception found" ) |
| 4145 | main.log.error( self.name + ": " + self.handle.before ) |
| 4146 | main.cleanup() |
| 4147 | main.exit() |
| 4148 | except Exception: |
| 4149 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 4150 | main.cleanup() |
| 4151 | main.exit() |
| 4152 | |
kelvin-onlab | a297c4d | 2015-06-01 13:53:55 -0700 | [diff] [blame] | 4153 | def summary( self, jsonFormat=True ): |
| 4154 | """ |
| 4155 | Description: Execute summary command in onos |
| 4156 | Returns: json object ( summary -j ), returns main.FALSE if there is |
| 4157 | no output |
| 4158 | |
| 4159 | """ |
| 4160 | try: |
| 4161 | cmdStr = "summary" |
| 4162 | if jsonFormat: |
| 4163 | cmdStr += " -j" |
| 4164 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4165 | assert "Command not found:" not in handle, handle |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 4166 | assert "Error:" not in handle, handle |
kelvin-onlab | a297c4d | 2015-06-01 13:53:55 -0700 | [diff] [blame] | 4167 | if not handle: |
| 4168 | main.log.error( self.name + ": There is no output in " + |
| 4169 | "summary command" ) |
| 4170 | return main.FALSE |
| 4171 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4172 | except AssertionError: |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 4173 | main.log.exception( "{} Error in summary output:".format( self.name ) ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4174 | return None |
kelvin-onlab | a297c4d | 2015-06-01 13:53:55 -0700 | [diff] [blame] | 4175 | except TypeError: |
| 4176 | main.log.exception( self.name + ": Object not as expected" ) |
| 4177 | return None |
| 4178 | except pexpect.EOF: |
| 4179 | main.log.error( self.name + ": EOF exception found" ) |
| 4180 | main.log.error( self.name + ": " + self.handle.before ) |
| 4181 | main.cleanup() |
| 4182 | main.exit() |
| 4183 | except Exception: |
| 4184 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 4185 | main.cleanup() |
| 4186 | main.exit() |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4187 | |
Jon Hall | 935db19 | 2016-04-19 00:22:04 -0700 | [diff] [blame] | 4188 | def transactionalMapGet( self, keyName ): |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4189 | """ |
| 4190 | CLI command to get the value of a key in a consistent map using |
| 4191 | transactions. This a test function and can only get keys from the |
| 4192 | test map hard coded into the cli command |
| 4193 | Required arguments: |
| 4194 | keyName - The name of the key to get |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4195 | returns: |
| 4196 | The string value of the key or |
| 4197 | None on Error |
| 4198 | """ |
| 4199 | try: |
| 4200 | keyName = str( keyName ) |
| 4201 | cmdStr = "transactional-map-test-get " |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4202 | cmdStr += keyName |
| 4203 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4204 | assert "Command not found:" not in output, output |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4205 | try: |
| 4206 | # TODO: Maybe make this less hardcoded |
| 4207 | # ConsistentMap Exceptions |
| 4208 | assert "org.onosproject.store.service" not in output |
| 4209 | # Node not leader |
| 4210 | assert "java.lang.IllegalStateException" not in output |
| 4211 | except AssertionError: |
| 4212 | main.log.error( "Error in processing '" + cmdStr + "' " + |
| 4213 | "command: " + str( output ) ) |
| 4214 | return None |
| 4215 | pattern = "Key-value pair \(" + keyName + ", (?P<value>.+)\) found." |
| 4216 | if "Key " + keyName + " not found." in output: |
| 4217 | return None |
| 4218 | else: |
| 4219 | match = re.search( pattern, output ) |
| 4220 | if match: |
| 4221 | return match.groupdict()[ 'value' ] |
| 4222 | else: |
| 4223 | main.log.error( self.name + ": transactionlMapGet did not" + |
| 4224 | " match expected output." ) |
| 4225 | main.log.debug( self.name + " expected: " + pattern ) |
| 4226 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 4227 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4228 | except AssertionError: |
| 4229 | main.log.exception( "" ) |
| 4230 | return None |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4231 | except TypeError: |
| 4232 | main.log.exception( self.name + ": Object not as expected" ) |
| 4233 | return None |
| 4234 | except pexpect.EOF: |
| 4235 | main.log.error( self.name + ": EOF exception found" ) |
| 4236 | main.log.error( self.name + ": " + self.handle.before ) |
| 4237 | main.cleanup() |
| 4238 | main.exit() |
| 4239 | except Exception: |
| 4240 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 4241 | main.cleanup() |
| 4242 | main.exit() |
| 4243 | |
Jon Hall | 935db19 | 2016-04-19 00:22:04 -0700 | [diff] [blame] | 4244 | def transactionalMapPut( self, numKeys, value ): |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4245 | """ |
| 4246 | CLI command to put a value into 'numKeys' number of keys in a |
| 4247 | consistent map using transactions. This a test function and can only |
| 4248 | put into keys named 'Key#' of the test map hard coded into the cli command |
| 4249 | Required arguments: |
| 4250 | numKeys - Number of keys to add the value to |
| 4251 | value - The string value to put into the keys |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4252 | returns: |
| 4253 | A dictionary whose keys are the name of the keys put into the map |
| 4254 | and the values of the keys are dictionaries whose key-values are |
| 4255 | 'value': value put into map and optionaly |
| 4256 | 'oldValue': Previous value in the key or |
| 4257 | None on Error |
| 4258 | |
| 4259 | Example output |
| 4260 | { 'Key1': {'oldValue': 'oldTestValue', 'value': 'Testing'}, |
| 4261 | 'Key2': {'value': 'Testing'} } |
| 4262 | """ |
| 4263 | try: |
| 4264 | numKeys = str( numKeys ) |
| 4265 | value = str( value ) |
| 4266 | cmdStr = "transactional-map-test-put " |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4267 | cmdStr += numKeys + " " + value |
| 4268 | output = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4269 | assert "Command not found:" not in output, output |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4270 | try: |
| 4271 | # TODO: Maybe make this less hardcoded |
| 4272 | # ConsistentMap Exceptions |
| 4273 | assert "org.onosproject.store.service" not in output |
| 4274 | # Node not leader |
| 4275 | assert "java.lang.IllegalStateException" not in output |
| 4276 | except AssertionError: |
| 4277 | main.log.error( "Error in processing '" + cmdStr + "' " + |
| 4278 | "command: " + str( output ) ) |
| 4279 | return None |
| 4280 | newPattern = 'Created Key (?P<key>(\w)+) with value (?P<value>(.)+)\.' |
| 4281 | updatedPattern = "Put (?P<value>(.)+) into key (?P<key>(\w)+)\. The old value was (?P<oldValue>(.)+)\." |
| 4282 | results = {} |
| 4283 | for line in output.splitlines(): |
| 4284 | new = re.search( newPattern, line ) |
| 4285 | updated = re.search( updatedPattern, line ) |
| 4286 | if new: |
| 4287 | results[ new.groupdict()[ 'key' ] ] = { 'value': new.groupdict()[ 'value' ] } |
| 4288 | elif updated: |
| 4289 | results[ updated.groupdict()[ 'key' ] ] = { 'value': updated.groupdict()[ 'value' ], |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4290 | 'oldValue': updated.groupdict()[ 'oldValue' ] } |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4291 | else: |
| 4292 | main.log.error( self.name + ": transactionlMapGet did not" + |
| 4293 | " match expected output." ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4294 | main.log.debug( "{} expected: {!r} or {!r}".format( self.name, |
| 4295 | newPattern, |
| 4296 | updatedPattern ) ) |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4297 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 4298 | return results |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4299 | except AssertionError: |
| 4300 | main.log.exception( "" ) |
| 4301 | return None |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4302 | except TypeError: |
| 4303 | main.log.exception( self.name + ": Object not as expected" ) |
| 4304 | return None |
| 4305 | except pexpect.EOF: |
| 4306 | main.log.error( self.name + ": EOF exception found" ) |
| 4307 | main.log.error( self.name + ": " + self.handle.before ) |
| 4308 | main.cleanup() |
| 4309 | main.exit() |
| 4310 | except Exception: |
| 4311 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 4312 | main.cleanup() |
| 4313 | main.exit() |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4314 | |
acsmars | daea66c | 2015-09-03 11:44:06 -0700 | [diff] [blame] | 4315 | def maps( self, jsonFormat=True ): |
| 4316 | """ |
| 4317 | Description: Returns result of onos:maps |
| 4318 | Optional: |
| 4319 | * jsonFormat: enable json formatting of output |
| 4320 | """ |
| 4321 | try: |
| 4322 | cmdStr = "maps" |
| 4323 | if jsonFormat: |
| 4324 | cmdStr += " -j" |
| 4325 | handle = self.sendline( cmdStr ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4326 | assert "Command not found:" not in handle, handle |
acsmars | daea66c | 2015-09-03 11:44:06 -0700 | [diff] [blame] | 4327 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4328 | except AssertionError: |
| 4329 | main.log.exception( "" ) |
| 4330 | return None |
acsmars | daea66c | 2015-09-03 11:44:06 -0700 | [diff] [blame] | 4331 | except TypeError: |
| 4332 | main.log.exception( self.name + ": Object not as expected" ) |
| 4333 | return None |
| 4334 | except pexpect.EOF: |
| 4335 | main.log.error( self.name + ": EOF exception found" ) |
| 4336 | main.log.error( self.name + ": " + self.handle.before ) |
| 4337 | main.cleanup() |
| 4338 | main.exit() |
| 4339 | except Exception: |
| 4340 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 4341 | main.cleanup() |
| 4342 | main.exit() |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4343 | |
| 4344 | def getSwController( self, uri, jsonFormat=True ): |
| 4345 | """ |
| 4346 | Descrition: Gets the controller information from the device |
| 4347 | """ |
| 4348 | try: |
| 4349 | cmd = "device-controllers " |
| 4350 | if jsonFormat: |
| 4351 | cmd += "-j " |
| 4352 | response = self.sendline( cmd + uri ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4353 | assert "Command not found:" not in response, response |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4354 | return response |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4355 | except AssertionError: |
| 4356 | main.log.exception( "" ) |
| 4357 | return None |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4358 | except TypeError: |
| 4359 | main.log.exception( self.name + ": Object not as expected" ) |
| 4360 | return None |
| 4361 | except pexpect.EOF: |
| 4362 | main.log.error( self.name + ": EOF exception found" ) |
| 4363 | main.log.error( self.name + ": " + self.handle.before ) |
| 4364 | main.cleanup() |
| 4365 | main.exit() |
| 4366 | except Exception: |
| 4367 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 4368 | main.cleanup() |
| 4369 | main.exit() |
| 4370 | |
| 4371 | def setSwController( self, uri, ip, proto="tcp", port="6653", jsonFormat=True ): |
| 4372 | """ |
| 4373 | Descrition: sets the controller(s) for the specified device |
| 4374 | |
| 4375 | Parameters: |
| 4376 | Required: uri - String: The uri of the device(switch). |
| 4377 | ip - String or List: The ip address of the controller. |
| 4378 | This parameter can be formed in a couple of different ways. |
| 4379 | VALID: |
| 4380 | 10.0.0.1 - just the ip address |
| 4381 | tcp:10.0.0.1 - the protocol and the ip address |
| 4382 | tcp:10.0.0.1:6653 - the protocol and port can be specified, |
| 4383 | so that you can add controllers with different |
| 4384 | protocols and ports |
| 4385 | INVALID: |
| 4386 | 10.0.0.1:6653 - this is not supported by ONOS |
| 4387 | |
| 4388 | Optional: proto - The type of connection e.g. tcp, ssl. If a list of ips are given |
| 4389 | port - The port number. |
| 4390 | jsonFormat - If set ONOS will output in json NOTE: This is currently not supported |
| 4391 | |
| 4392 | Returns: main.TRUE if ONOS returns without any errors, otherwise returns main.FALSE |
| 4393 | """ |
| 4394 | try: |
| 4395 | cmd = "device-setcontrollers" |
| 4396 | |
| 4397 | if jsonFormat: |
| 4398 | cmd += " -j" |
| 4399 | cmd += " " + uri |
| 4400 | if isinstance( ip, str ): |
| 4401 | ip = [ip] |
| 4402 | for item in ip: |
| 4403 | if ":" in item: |
| 4404 | sitem = item.split( ":" ) |
| 4405 | if len(sitem) == 3: |
| 4406 | cmd += " " + item |
| 4407 | elif "." in sitem[1]: |
| 4408 | cmd += " {}:{}".format(item, port) |
| 4409 | else: |
| 4410 | main.log.error( "Malformed entry: " + item ) |
| 4411 | raise TypeError |
| 4412 | else: |
| 4413 | cmd += " {}:{}:{}".format( proto, item, port ) |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4414 | response = self.sendline( cmd ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4415 | assert "Command not found:" not in response, response |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4416 | if "Error" in response: |
| 4417 | main.log.error( response ) |
| 4418 | return main.FALSE |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4419 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4420 | except AssertionError: |
| 4421 | main.log.exception( "" ) |
| 4422 | return None |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4423 | except TypeError: |
| 4424 | main.log.exception( self.name + ": Object not as expected" ) |
| 4425 | return main.FALSE |
| 4426 | except pexpect.EOF: |
| 4427 | main.log.error( self.name + ": EOF exception found" ) |
| 4428 | main.log.error( self.name + ": " + self.handle.before ) |
| 4429 | main.cleanup() |
| 4430 | main.exit() |
| 4431 | except Exception: |
| 4432 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 4433 | main.cleanup() |
| 4434 | main.exit() |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4435 | |
| 4436 | def removeDevice( self, device ): |
| 4437 | ''' |
| 4438 | Description: |
| 4439 | Remove a device from ONOS by passing the uri of the device(s). |
| 4440 | Parameters: |
| 4441 | device - (str or list) the id or uri of the device ex. "of:0000000000000001" |
| 4442 | Returns: |
| 4443 | Returns main.FALSE if an exception is thrown or an error is present |
| 4444 | in the response. Otherwise, returns main.TRUE. |
| 4445 | NOTE: |
| 4446 | If a host cannot be removed, then this function will return main.FALSE |
| 4447 | ''' |
| 4448 | try: |
| 4449 | if type( device ) is str: |
| 4450 | device = list( device ) |
| 4451 | |
| 4452 | for d in device: |
| 4453 | time.sleep( 1 ) |
| 4454 | response = self.sendline( "device-remove {}".format( d ) ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4455 | assert "Command not found:" not in response, response |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4456 | if "Error" in response: |
| 4457 | main.log.warn( "Error for device: {}\nResponse: {}".format( d, response ) ) |
| 4458 | return main.FALSE |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4459 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4460 | except AssertionError: |
| 4461 | main.log.exception( "" ) |
| 4462 | return main.FALSE |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4463 | except TypeError: |
| 4464 | main.log.exception( self.name + ": Object not as expected" ) |
| 4465 | return main.FALSE |
| 4466 | except pexpect.EOF: |
| 4467 | main.log.error( self.name + ": EOF exception found" ) |
| 4468 | main.log.error( self.name + ": " + self.handle.before ) |
| 4469 | main.cleanup() |
| 4470 | main.exit() |
| 4471 | except Exception: |
| 4472 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 4473 | main.cleanup() |
| 4474 | main.exit() |
| 4475 | |
| 4476 | def removeHost( self, host ): |
| 4477 | ''' |
| 4478 | Description: |
| 4479 | Remove a host from ONOS by passing the id of the host(s) |
| 4480 | Parameters: |
| 4481 | hostId - (str or list) the id or mac of the host ex. "00:00:00:00:00:01" |
| 4482 | Returns: |
| 4483 | Returns main.FALSE if an exception is thrown or an error is present |
| 4484 | in the response. Otherwise, returns main.TRUE. |
| 4485 | NOTE: |
| 4486 | If a host cannot be removed, then this function will return main.FALSE |
| 4487 | ''' |
| 4488 | try: |
| 4489 | if type( host ) is str: |
| 4490 | host = list( host ) |
| 4491 | |
| 4492 | for h in host: |
| 4493 | time.sleep( 1 ) |
| 4494 | response = self.sendline( "host-remove {}".format( h ) ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4495 | assert "Command not found:" not in response, response |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4496 | if "Error" in response: |
| 4497 | main.log.warn( "Error for host: {}\nResponse: {}".format( h, response ) ) |
| 4498 | return main.FALSE |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4499 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4500 | except AssertionError: |
| 4501 | main.log.exception( "" ) |
| 4502 | return None |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4503 | except TypeError: |
| 4504 | main.log.exception( self.name + ": Object not as expected" ) |
| 4505 | return main.FALSE |
| 4506 | except pexpect.EOF: |
| 4507 | main.log.error( self.name + ": EOF exception found" ) |
| 4508 | main.log.error( self.name + ": " + self.handle.before ) |
| 4509 | main.cleanup() |
| 4510 | main.exit() |
| 4511 | except Exception: |
| 4512 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 4513 | main.cleanup() |
| 4514 | main.exit() |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 4515 | |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4516 | def link( self, begin, end, state ): |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 4517 | ''' |
| 4518 | Description: |
| 4519 | Bring link down or up in the null-provider. |
| 4520 | params: |
| 4521 | begin - (string) One end of a device or switch. |
| 4522 | end - (string) the other end of the device or switch |
| 4523 | returns: |
| 4524 | main.TRUE if no exceptions were thrown and no Errors are |
| 4525 | present in the resoponse. Otherwise, returns main.FALSE |
| 4526 | ''' |
| 4527 | try: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4528 | cmd = "null-link null:{} null:{} {}".format( begin, end, state ) |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 4529 | response = self.sendline( cmd, showResponse=True ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4530 | assert "Command not found:" not in response, response |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 4531 | if "Error" in response or "Failure" in response: |
| 4532 | main.log.error( response ) |
| 4533 | return main.FALSE |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 4534 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4535 | except AssertionError: |
| 4536 | main.log.exception( "" ) |
| 4537 | return None |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 4538 | except TypeError: |
| 4539 | main.log.exception( self.name + ": Object not as expected" ) |
| 4540 | return main.FALSE |
| 4541 | except pexpect.EOF: |
| 4542 | main.log.error( self.name + ": EOF exception found" ) |
| 4543 | main.log.error( self.name + ": " + self.handle.before ) |
| 4544 | main.cleanup() |
| 4545 | main.exit() |
| 4546 | except Exception: |
| 4547 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 4548 | main.cleanup() |
| 4549 | main.exit() |
| 4550 | |