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 | """ |
Jeremy Ronquillo | b27ce4c | 2017-07-17 12:41:28 -0700 | [diff] [blame] | 4 | OCT 13 2014 |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 5 | Copyright 2014 Open Networking Foundation (ONF) |
Jeremy Ronquillo | b27ce4c | 2017-07-17 12:41:28 -0700 | [diff] [blame] | 6 | |
| 7 | Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>, |
| 8 | the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>, |
| 9 | or the System Testing Guide page at <https://wiki.onosproject.org/x/WYQg> |
| 10 | |
| 11 | TestON is free software: you can redistribute it and/or modify |
| 12 | it under the terms of the GNU General Public License as published by |
| 13 | the Free Software Foundation, either version 2 of the License, or |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 14 | (at your option) any later version. |
Jeremy Ronquillo | b27ce4c | 2017-07-17 12:41:28 -0700 | [diff] [blame] | 15 | |
| 16 | TestON is distributed in the hope that it will be useful, |
| 17 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | GNU General Public License for more details. |
| 20 | |
| 21 | You should have received a copy of the GNU General Public License |
| 22 | along with TestON. If not, see <http://www.gnu.org/licenses/>. |
| 23 | """ |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 24 | |
Jeremy Ronquillo | b27ce4c | 2017-07-17 12:41:28 -0700 | [diff] [blame] | 25 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 26 | This driver enters the onos> prompt to issue commands. |
| 27 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 28 | Please follow the coding style demonstrated by existing |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 29 | functions and document properly. |
| 30 | |
| 31 | If you are a contributor to the driver, please |
| 32 | list your email here for future contact: |
| 33 | |
| 34 | jhall@onlab.us |
| 35 | andrew@onlab.us |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 36 | shreya@onlab.us |
Jeremy Ronquillo | 818bc7c | 2017-08-09 17:14:53 +0000 | [diff] [blame] | 37 | jeremyr@opennetworking.org |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 38 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 39 | import pexpect |
| 40 | import re |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 41 | import json |
| 42 | import types |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 43 | import time |
kelvin-onlab | a407429 | 2015-07-09 15:19:49 -0700 | [diff] [blame] | 44 | import os |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 45 | from drivers.common.clidriver import CLI |
You Wang | db8cd0a | 2016-05-26 15:19:45 -0700 | [diff] [blame] | 46 | from core.graph import Graph |
Shreya Chowdhary | 6fbb96c | 2017-05-02 16:20:19 -0700 | [diff] [blame] | 47 | from cStringIO import StringIO |
| 48 | from itertools import izip |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 49 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 50 | class OnosCliDriver( CLI ): |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 51 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 52 | def __init__( self ): |
| 53 | """ |
| 54 | Initialize client |
| 55 | """ |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 56 | self.name = None |
| 57 | self.home = None |
| 58 | self.handle = None |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 59 | self.karafUser = None |
| 60 | self.karafPass = None |
You Wang | db8cd0a | 2016-05-26 15:19:45 -0700 | [diff] [blame] | 61 | self.graph = Graph() |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 62 | super( OnosCliDriver, self ).__init__() |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 63 | |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 64 | def checkOptions( self, var, defaultVar ): |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 65 | if var is None or var == "": |
| 66 | return defaultVar |
| 67 | return var |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 68 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 69 | def connect( self, **connectargs ): |
| 70 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 71 | Creates ssh handle for ONOS cli. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 72 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 73 | try: |
| 74 | for key in connectargs: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 75 | vars( self )[ key ] = connectargs[ key ] |
andrew@onlab.us | 658ec01 | 2015-03-11 15:13:09 -0700 | [diff] [blame] | 76 | self.home = "~/onos" |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 77 | for key in self.options: |
| 78 | if key == "home": |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 79 | self.home = self.options[ key ] |
| 80 | elif key == "karaf_username": |
| 81 | self.karafUser = self.options[ key ] |
| 82 | elif key == "karaf_password": |
| 83 | self.karafPass = self.options[ key ] |
| 84 | |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 85 | self.home = self.checkOptions( self.home, "~/onos" ) |
| 86 | self.karafUser = self.checkOptions( self.karafUser, self.user_name ) |
| 87 | self.karafPass = self.checkOptions( self.karafPass, self.pwd ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 88 | |
kelvin-onlab | a407429 | 2015-07-09 15:19:49 -0700 | [diff] [blame] | 89 | for key in self.options: |
| 90 | if key == 'onosIp': |
| 91 | self.onosIp = self.options[ 'onosIp' ] |
| 92 | break |
| 93 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 94 | self.name = self.options[ 'name' ] |
kelvin-onlab | a407429 | 2015-07-09 15:19:49 -0700 | [diff] [blame] | 95 | |
| 96 | try: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 97 | if os.getenv( str( self.ip_address ) ) is not None: |
kelvin-onlab | a407429 | 2015-07-09 15:19:49 -0700 | [diff] [blame] | 98 | self.ip_address = os.getenv( str( self.ip_address ) ) |
| 99 | else: |
| 100 | main.log.info( self.name + |
| 101 | ": Trying to connect to " + |
| 102 | self.ip_address ) |
| 103 | |
| 104 | except KeyError: |
| 105 | main.log.info( "Invalid host name," + |
| 106 | " connecting to local host instead" ) |
| 107 | self.ip_address = 'localhost' |
| 108 | except Exception as inst: |
| 109 | main.log.error( "Uncaught exception: " + str( inst ) ) |
| 110 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 111 | self.handle = super( OnosCliDriver, self ).connect( |
kelvin-onlab | 08679eb | 2015-01-21 16:11:48 -0800 | [diff] [blame] | 112 | user_name=self.user_name, |
| 113 | ip_address=self.ip_address, |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 114 | port=self.port, |
| 115 | pwd=self.pwd, |
| 116 | home=self.home ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 117 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 118 | self.handle.sendline( "cd " + self.home ) |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 119 | self.handle.expect( self.prompt ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 120 | if self.handle: |
| 121 | return self.handle |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 122 | else: |
| 123 | main.log.info( "NO ONOS HANDLE" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 124 | return main.FALSE |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 125 | except TypeError: |
| 126 | main.log.exception( self.name + ": Object not as expected" ) |
| 127 | return None |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 128 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 129 | main.log.error( self.name + ": EOF exception found" ) |
| 130 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 131 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 132 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 133 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 134 | main.cleanAndExit() |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 135 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 136 | def disconnect( self ): |
| 137 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 138 | Called when Test is complete to disconnect the ONOS handle. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 139 | """ |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 140 | response = main.TRUE |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 141 | try: |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 142 | if self.handle: |
| 143 | i = self.logout() |
| 144 | if i == main.TRUE: |
| 145 | self.handle.sendline( "" ) |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 146 | self.handle.expect( self.prompt ) |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 147 | self.handle.sendline( "exit" ) |
| 148 | self.handle.expect( "closed" ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 149 | except TypeError: |
| 150 | main.log.exception( self.name + ": Object not as expected" ) |
Jon Hall | d61331b | 2015-02-17 16:35:47 -0800 | [diff] [blame] | 151 | response = main.FALSE |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 152 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 153 | main.log.error( self.name + ": EOF exception found" ) |
| 154 | main.log.error( self.name + ": " + self.handle.before ) |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 155 | except ValueError: |
Jon Hall | 1a77a1e | 2015-04-06 10:41:13 -0700 | [diff] [blame] | 156 | main.log.exception( "Exception in disconnect of " + self.name ) |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 157 | response = main.TRUE |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 158 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 159 | main.log.exception( self.name + ": Connection failed to the host" ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 160 | response = main.FALSE |
| 161 | return response |
| 162 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 163 | def logout( self ): |
| 164 | """ |
andrewonlab | 38d2b4a | 2014-11-13 16:28:47 -0500 | [diff] [blame] | 165 | Sends 'logout' command to ONOS cli |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 166 | Returns main.TRUE if exited CLI and |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 167 | main.FALSE on timeout (not guranteed you are disconnected) |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 168 | None on TypeError |
| 169 | Exits test on unknown error or pexpect exits unexpectedly |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 170 | """ |
andrewonlab | 38d2b4a | 2014-11-13 16:28:47 -0500 | [diff] [blame] | 171 | try: |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 172 | if self.handle: |
| 173 | self.handle.sendline( "" ) |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 174 | i = self.handle.expect( [ "onos>", self.prompt, pexpect.TIMEOUT ], |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 175 | timeout=10 ) |
| 176 | if i == 0: # In ONOS CLI |
| 177 | self.handle.sendline( "logout" ) |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 178 | j = self.handle.expect( [ self.prompt, |
Jon Hall | bfe0000 | 2016-04-05 10:23:54 -0700 | [diff] [blame] | 179 | "Command not found:", |
| 180 | pexpect.TIMEOUT ] ) |
| 181 | if j == 0: # Successfully logged out |
| 182 | return main.TRUE |
| 183 | elif j == 1 or j == 2: |
| 184 | # ONOS didn't fully load, and logout command isn't working |
| 185 | # or the command timed out |
| 186 | self.handle.send( "\x04" ) # send ctrl-d |
Jon Hall | 64ab3bd | 2016-05-13 11:29:44 -0700 | [diff] [blame] | 187 | try: |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 188 | self.handle.expect( self.prompt ) |
Jon Hall | 64ab3bd | 2016-05-13 11:29:44 -0700 | [diff] [blame] | 189 | except pexpect.TIMEOUT: |
| 190 | main.log.error( "ONOS did not respond to 'logout' or CTRL-d" ) |
Jon Hall | bfe0000 | 2016-04-05 10:23:54 -0700 | [diff] [blame] | 191 | return main.TRUE |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 192 | else: # some other output |
Jon Hall | bfe0000 | 2016-04-05 10:23:54 -0700 | [diff] [blame] | 193 | main.log.warn( "Unknown repsonse to logout command: '{}'", |
| 194 | repr( self.handle.before ) ) |
| 195 | return main.FALSE |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 196 | elif i == 1: # not in CLI |
| 197 | return main.TRUE |
| 198 | elif i == 3: # Timeout |
| 199 | return main.FALSE |
| 200 | else: |
andrewonlab | 9627f43 | 2014-11-14 12:45:10 -0500 | [diff] [blame] | 201 | return main.TRUE |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 202 | except TypeError: |
| 203 | main.log.exception( self.name + ": Object not as expected" ) |
| 204 | return None |
andrewonlab | 38d2b4a | 2014-11-13 16:28:47 -0500 | [diff] [blame] | 205 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 206 | main.log.error( self.name + ": eof exception found" ) |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 207 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 208 | main.cleanAndExit() |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 209 | except ValueError: |
Jon Hall | 5aa168b | 2015-03-23 14:23:09 -0700 | [diff] [blame] | 210 | main.log.error( self.name + |
| 211 | "ValueError exception in logout method" ) |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 212 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 213 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 214 | main.cleanAndExit() |
andrewonlab | 38d2b4a | 2014-11-13 16:28:47 -0500 | [diff] [blame] | 215 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 216 | def setCell( self, cellname ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 217 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 218 | Calls 'cell <name>' to set the environment variables on ONOSbench |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 219 | |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 220 | Before issuing any cli commands, set the environment variable first. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 221 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 222 | try: |
| 223 | if not cellname: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 224 | main.log.error( "Must define cellname" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 225 | main.cleanAndExit() |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 226 | else: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 227 | self.handle.sendline( "cell " + str( cellname ) ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 228 | # Expect the cellname in the ONOSCELL variable. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 229 | # Note that this variable name is subject to change |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 230 | # and that this driver will have to change accordingly |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 231 | self.handle.expect( str( cellname ) ) |
andrew@onlab.us | c400b11 | 2015-01-21 15:33:19 -0800 | [diff] [blame] | 232 | handleBefore = self.handle.before |
| 233 | handleAfter = self.handle.after |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 234 | # Get the rest of the handle |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 235 | self.handle.sendline( "" ) |
| 236 | self.handle.expect( self.prompt ) |
andrew@onlab.us | c400b11 | 2015-01-21 15:33:19 -0800 | [diff] [blame] | 237 | handleMore = self.handle.before |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 238 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 239 | main.log.info( "Cell call returned: " + handleBefore + |
| 240 | handleAfter + handleMore ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 241 | |
| 242 | return main.TRUE |
| 243 | |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 244 | except TypeError: |
| 245 | main.log.exception( self.name + ": Object not as expected" ) |
| 246 | return None |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 247 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 248 | main.log.error( self.name + ": eof exception found" ) |
| 249 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 250 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 251 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 252 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 253 | main.cleanAndExit() |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 254 | |
pingping-lin | 57a56ce | 2015-05-20 16:43:48 -0700 | [diff] [blame] | 255 | def startOnosCli( self, ONOSIp, karafTimeout="", |
Chiyu Cheng | ef10950 | 2016-11-21 15:51:38 -0800 | [diff] [blame] | 256 | commandlineTimeout=10, onosStartTimeout=60, waitForStart=False ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 257 | """ |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 258 | karafTimeout is an optional argument. karafTimeout value passed |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 259 | by user would be used to set the current karaf shell idle timeout. |
| 260 | 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] | 261 | the subsequent login would reflect new idle timeout. |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 262 | Below is an example to start a session with 60 seconds idle timeout |
| 263 | ( input value is in milliseconds ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 264 | |
Hari Krishna | 25d42f7 | 2015-01-05 15:08:28 -0800 | [diff] [blame] | 265 | tValue = "60000" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 266 | main.ONOScli1.startOnosCli( ONOSIp, karafTimeout=tValue ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 267 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 268 | Note: karafTimeout is left as str so that this could be read |
| 269 | and passed to startOnosCli from PARAMS file as str. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 270 | """ |
You Wang | f69ab39 | 2016-01-26 16:34:38 -0800 | [diff] [blame] | 271 | self.onosIp = ONOSIp |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 272 | try: |
Jon Hall | 6725383 | 2016-12-05 09:47:13 -0800 | [diff] [blame] | 273 | # Check if we are already in the cli |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 274 | self.handle.sendline( "" ) |
| 275 | x = self.handle.expect( [ |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 276 | self.prompt, "onos>" ], commandlineTimeout ) |
andrewonlab | 48829f6 | 2014-11-17 13:49:01 -0500 | [diff] [blame] | 277 | if x == 1: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 278 | main.log.info( "ONOS cli is already running" ) |
andrewonlab | 48829f6 | 2014-11-17 13:49:01 -0500 | [diff] [blame] | 279 | return main.TRUE |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 280 | |
Jon Hall | 6725383 | 2016-12-05 09:47:13 -0800 | [diff] [blame] | 281 | # Not in CLI so login |
Chiyu Cheng | ef10950 | 2016-11-21 15:51:38 -0800 | [diff] [blame] | 282 | if waitForStart: |
Jeremy Ronquillo | ec916a4 | 2018-02-02 13:05:57 -0800 | [diff] [blame] | 283 | # Wait for onos start ( onos-wait-for-start ) and enter onos cli |
| 284 | startCliCommand = "onos-wait-for-start " |
Chiyu Cheng | ef10950 | 2016-11-21 15:51:38 -0800 | [diff] [blame] | 285 | else: |
| 286 | startCliCommand = "onos " |
| 287 | self.handle.sendline( startCliCommand + str( ONOSIp ) ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 288 | i = self.handle.expect( [ |
| 289 | "onos>", |
pingping-lin | 57a56ce | 2015-05-20 16:43:48 -0700 | [diff] [blame] | 290 | pexpect.TIMEOUT ], onosStartTimeout ) |
andrewonlab | 2a7ea9b | 2014-10-24 12:21:05 -0400 | [diff] [blame] | 291 | |
| 292 | if i == 0: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 293 | main.log.info( str( ONOSIp ) + " CLI Started successfully" ) |
Hari Krishna | e36ef21 | 2015-01-04 14:09:13 -0800 | [diff] [blame] | 294 | if karafTimeout: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 295 | self.handle.sendline( |
Hari Krishna | ac4e178 | 2015-01-26 12:09:12 -0800 | [diff] [blame] | 296 | "config:property-set -p org.apache.karaf.shell\ |
| 297 | sshIdleTimeout " + |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 298 | karafTimeout ) |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 299 | self.handle.expect( self.prompt ) |
Chiyu Cheng | ef10950 | 2016-11-21 15:51:38 -0800 | [diff] [blame] | 300 | self.handle.sendline( startCliCommand + str( ONOSIp ) ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 301 | self.handle.expect( "onos>" ) |
andrewonlab | 2a7ea9b | 2014-10-24 12:21:05 -0400 | [diff] [blame] | 302 | return main.TRUE |
| 303 | else: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 304 | # If failed, send ctrl+c to process and try again |
| 305 | main.log.info( "Starting CLI failed. Retrying..." ) |
| 306 | self.handle.send( "\x03" ) |
Chiyu Cheng | ef10950 | 2016-11-21 15:51:38 -0800 | [diff] [blame] | 307 | self.handle.sendline( startCliCommand + str( ONOSIp ) ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 308 | i = self.handle.expect( [ "onos>", pexpect.TIMEOUT ], |
| 309 | timeout=30 ) |
andrewonlab | 3a7c3c7 | 2014-10-24 17:21:03 -0400 | [diff] [blame] | 310 | if i == 0: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 311 | main.log.info( str( ONOSIp ) + " CLI Started " + |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 312 | "successfully after retry attempt" ) |
Hari Krishna | e36ef21 | 2015-01-04 14:09:13 -0800 | [diff] [blame] | 313 | if karafTimeout: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 314 | self.handle.sendline( |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 315 | "config:property-set -p org.apache.karaf.shell\ |
| 316 | sshIdleTimeout " + |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 317 | karafTimeout ) |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 318 | self.handle.expect( self.prompt ) |
Chiyu Cheng | ef10950 | 2016-11-21 15:51:38 -0800 | [diff] [blame] | 319 | self.handle.sendline( startCliCommand + str( ONOSIp ) ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 320 | self.handle.expect( "onos>" ) |
andrewonlab | 3a7c3c7 | 2014-10-24 17:21:03 -0400 | [diff] [blame] | 321 | return main.TRUE |
| 322 | else: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 323 | main.log.error( "Connection to CLI " + |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 324 | str( ONOSIp ) + " timeout" ) |
andrewonlab | 3a7c3c7 | 2014-10-24 17:21:03 -0400 | [diff] [blame] | 325 | return main.FALSE |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 326 | |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 327 | except TypeError: |
| 328 | main.log.exception( self.name + ": Object not as expected" ) |
| 329 | return None |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 330 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 331 | main.log.error( self.name + ": EOF exception found" ) |
| 332 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 333 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 334 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 335 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 336 | main.cleanAndExit() |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 337 | |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 338 | def startCellCli( self, karafTimeout="", |
| 339 | commandlineTimeout=10, onosStartTimeout=60 ): |
| 340 | """ |
| 341 | Start CLI on onos ecll handle. |
| 342 | |
| 343 | karafTimeout is an optional argument. karafTimeout value passed |
| 344 | by user would be used to set the current karaf shell idle timeout. |
| 345 | Note that when ever this property is modified the shell will exit and |
| 346 | the subsequent login would reflect new idle timeout. |
| 347 | Below is an example to start a session with 60 seconds idle timeout |
| 348 | ( input value is in milliseconds ): |
| 349 | |
| 350 | tValue = "60000" |
| 351 | |
| 352 | Note: karafTimeout is left as str so that this could be read |
| 353 | and passed to startOnosCli from PARAMS file as str. |
| 354 | """ |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 355 | |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 356 | try: |
| 357 | self.handle.sendline( "" ) |
| 358 | x = self.handle.expect( [ |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 359 | self.prompt, "onos>" ], commandlineTimeout ) |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 360 | |
| 361 | if x == 1: |
| 362 | main.log.info( "ONOS cli is already running" ) |
| 363 | return main.TRUE |
| 364 | |
Jeremy Ronquillo | ec916a4 | 2018-02-02 13:05:57 -0800 | [diff] [blame] | 365 | # Wait for onos start ( onos-wait-for-start ) and enter onos cli |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 366 | self.handle.sendline( "/opt/onos/bin/onos" ) |
| 367 | i = self.handle.expect( [ |
| 368 | "onos>", |
| 369 | pexpect.TIMEOUT ], onosStartTimeout ) |
| 370 | |
| 371 | if i == 0: |
| 372 | main.log.info( self.name + " CLI Started successfully" ) |
| 373 | if karafTimeout: |
| 374 | self.handle.sendline( |
| 375 | "config:property-set -p org.apache.karaf.shell\ |
| 376 | sshIdleTimeout " + |
| 377 | karafTimeout ) |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 378 | self.handle.expect( self.prompt ) |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 379 | self.handle.sendline( "/opt/onos/bin/onos" ) |
| 380 | self.handle.expect( "onos>" ) |
| 381 | return main.TRUE |
| 382 | else: |
| 383 | # If failed, send ctrl+c to process and try again |
| 384 | main.log.info( "Starting CLI failed. Retrying..." ) |
| 385 | self.handle.send( "\x03" ) |
| 386 | self.handle.sendline( "/opt/onos/bin/onos" ) |
| 387 | i = self.handle.expect( [ "onos>", pexpect.TIMEOUT ], |
| 388 | timeout=30 ) |
| 389 | if i == 0: |
| 390 | main.log.info( self.name + " CLI Started " + |
| 391 | "successfully after retry attempt" ) |
| 392 | if karafTimeout: |
| 393 | self.handle.sendline( |
| 394 | "config:property-set -p org.apache.karaf.shell\ |
| 395 | sshIdleTimeout " + |
| 396 | karafTimeout ) |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 397 | self.handle.expect( self.prompt ) |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 398 | self.handle.sendline( "/opt/onos/bin/onos" ) |
| 399 | self.handle.expect( "onos>" ) |
| 400 | return main.TRUE |
| 401 | else: |
| 402 | main.log.error( "Connection to CLI " + |
| 403 | self.name + " timeout" ) |
| 404 | return main.FALSE |
| 405 | |
| 406 | except TypeError: |
| 407 | main.log.exception( self.name + ": Object not as expected" ) |
| 408 | return None |
| 409 | except pexpect.EOF: |
| 410 | main.log.error( self.name + ": EOF exception found" ) |
| 411 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 412 | main.cleanAndExit() |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 413 | except Exception: |
| 414 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 415 | main.cleanAndExit() |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 416 | |
Pratik Parab | 3b2ab5a | 2017-02-14 13:15:14 -0800 | [diff] [blame] | 417 | def log( self, cmdStr, level="", noExit=False ): |
kelvin-onlab | 9f54103 | 2015-02-04 16:19:53 -0800 | [diff] [blame] | 418 | """ |
| 419 | log the commands in the onos CLI. |
kelvin-onlab | 338f551 | 2015-02-06 10:53:16 -0800 | [diff] [blame] | 420 | returns main.TRUE on success |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 421 | returns main.FALSE if Error occurred |
YPZhang | ebf9eb5 | 2016-05-12 15:20:24 -0700 | [diff] [blame] | 422 | if noExit is True, TestON will not exit, but clean up |
kelvin-onlab | 338f551 | 2015-02-06 10:53:16 -0800 | [diff] [blame] | 423 | Available level: DEBUG, TRACE, INFO, WARN, ERROR |
| 424 | Level defaults to INFO |
Pratik Parab | 3b2ab5a | 2017-02-14 13:15:14 -0800 | [diff] [blame] | 425 | if cmdStr has spaces then put quotes in the passed string |
kelvin-onlab | 9f54103 | 2015-02-04 16:19:53 -0800 | [diff] [blame] | 426 | """ |
| 427 | try: |
kelvin-onlab | 338f551 | 2015-02-06 10:53:16 -0800 | [diff] [blame] | 428 | lvlStr = "" |
| 429 | if level: |
| 430 | lvlStr = "--level=" + level |
| 431 | |
kelvin-onlab | 338f551 | 2015-02-06 10:53:16 -0800 | [diff] [blame] | 432 | self.handle.sendline( "log:log " + lvlStr + " " + cmdStr ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 433 | self.handle.expect( "log:log" ) |
kelvin-onlab | 9f54103 | 2015-02-04 16:19:53 -0800 | [diff] [blame] | 434 | self.handle.expect( "onos>" ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 435 | |
kelvin-onlab | 9f54103 | 2015-02-04 16:19:53 -0800 | [diff] [blame] | 436 | response = self.handle.before |
| 437 | if re.search( "Error", response ): |
| 438 | return main.FALSE |
| 439 | return main.TRUE |
Jon Hall | 80daded | 2015-05-27 16:07:00 -0700 | [diff] [blame] | 440 | except pexpect.TIMEOUT: |
| 441 | main.log.exception( self.name + ": TIMEOUT exception found" ) |
YPZhang | ebf9eb5 | 2016-05-12 15:20:24 -0700 | [diff] [blame] | 442 | if noExit: |
| 443 | main.cleanup() |
| 444 | return None |
| 445 | else: |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 446 | main.cleanAndExit() |
kelvin-onlab | 9f54103 | 2015-02-04 16:19:53 -0800 | [diff] [blame] | 447 | except pexpect.EOF: |
| 448 | main.log.error( self.name + ": EOF exception found" ) |
| 449 | main.log.error( self.name + ": " + self.handle.before ) |
YPZhang | ebf9eb5 | 2016-05-12 15:20:24 -0700 | [diff] [blame] | 450 | if noExit: |
| 451 | main.cleanup() |
| 452 | return None |
| 453 | else: |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 454 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 455 | except Exception: |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 456 | main.log.exception( self.name + ": Uncaught exception!" ) |
YPZhang | ebf9eb5 | 2016-05-12 15:20:24 -0700 | [diff] [blame] | 457 | if noExit: |
| 458 | main.cleanup() |
| 459 | return None |
| 460 | else: |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 461 | main.cleanAndExit() |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 462 | |
Shreya Chowdhary | 6fbb96c | 2017-05-02 16:20:19 -0700 | [diff] [blame] | 463 | def sendline( self, cmdStr, showResponse=False, debug=False, timeout=10, noExit=False, dollarSign=False ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 464 | """ |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 465 | Send a completely user specified string to |
| 466 | the onos> prompt. Use this function if you have |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 467 | a very specific command to send. |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 468 | |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 469 | if noExit is True, TestON will not exit, and return None |
Shreya Chowdhary | 6fbb96c | 2017-05-02 16:20:19 -0700 | [diff] [blame] | 470 | if dollarSign is True, TestON will not expect for '$' as a new CLI or onos> prompt |
| 471 | since '$' can be in the output. |
YPZhang | ebf9eb5 | 2016-05-12 15:20:24 -0700 | [diff] [blame] | 472 | |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 473 | Warning: There are no sanity checking to commands |
| 474 | sent using this method. |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 475 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 476 | """ |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 477 | try: |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 478 | # Try to reconnect if disconnected from cli |
| 479 | self.handle.sendline( "" ) |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 480 | i = self.handle.expect( [ "onos>", self.prompt, pexpect.TIMEOUT ] ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 481 | if i == 1: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 482 | main.log.error( self.name + ": onos cli session closed. " ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 483 | if self.onosIp: |
| 484 | main.log.warn( "Trying to reconnect " + self.onosIp ) |
| 485 | reconnectResult = self.startOnosCli( self.onosIp ) |
| 486 | if reconnectResult: |
| 487 | main.log.info( self.name + ": onos cli session reconnected." ) |
| 488 | else: |
| 489 | main.log.error( self.name + ": reconnection failed." ) |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 490 | if noExit: |
| 491 | return None |
| 492 | else: |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 493 | main.cleanAndExit() |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 494 | else: |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 495 | main.cleanAndExit() |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 496 | if i == 2: |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 497 | main.log.warn( "Timeout when testing cli responsiveness" ) |
| 498 | main.log.debug( self.handle.before ) |
| 499 | self.handle.send( "\x03" ) # Send ctrl-c to clear previous output |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 500 | self.handle.expect( "onos>" ) |
| 501 | |
Jon Hall | 14a03b5 | 2016-05-11 12:07:30 -0700 | [diff] [blame] | 502 | if debug: |
| 503 | # NOTE: This adds and average of .4 seconds per call |
| 504 | logStr = "\"Sending CLI command: '" + cmdStr + "'\"" |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 505 | self.log( logStr, noExit=noExit ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 506 | self.handle.sendline( cmdStr ) |
Shreya Chowdhary | 6fbb96c | 2017-05-02 16:20:19 -0700 | [diff] [blame] | 507 | if dollarSign: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 508 | i = self.handle.expect( [ "onos>" ], timeout ) |
Shreya Chowdhary | 6fbb96c | 2017-05-02 16:20:19 -0700 | [diff] [blame] | 509 | else: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 510 | i = self.handle.expect( [ "onos>", self.prompt ], timeout ) |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 511 | response = self.handle.before |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 512 | # TODO: do something with i |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 513 | main.log.info( "Command '" + str( cmdStr ) + "' sent to " |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 514 | + self.name + "." ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 515 | if debug: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 516 | main.log.debug( self.name + ": Raw output" ) |
| 517 | main.log.debug( self.name + ": " + repr( response ) ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 518 | |
| 519 | # Remove ANSI color control strings from output |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 520 | ansiEscape = re.compile( r'\x1b[^m]*m' ) |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 521 | response = ansiEscape.sub( '', response ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 522 | if debug: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 523 | main.log.debug( self.name + ": ansiEscape output" ) |
| 524 | main.log.debug( self.name + ": " + repr( response ) ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 525 | |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 526 | # Remove extra return chars that get added |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 527 | response = re.sub( r"\s\r", "", response ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 528 | if debug: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 529 | main.log.debug( self.name + ": Removed extra returns " + |
| 530 | "from output" ) |
| 531 | main.log.debug( self.name + ": " + repr( response ) ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 532 | |
| 533 | # Strip excess whitespace |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 534 | response = response.strip() |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 535 | if debug: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 536 | main.log.debug( self.name + ": parsed and stripped output" ) |
| 537 | main.log.debug( self.name + ": " + repr( response ) ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 538 | |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 539 | # parse for just the output, remove the cmd from response |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 540 | output = response.split( cmdStr.strip(), 1 ) |
| 541 | if debug: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 542 | main.log.debug( self.name + ": split output" ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 543 | for r in output: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 544 | main.log.debug( self.name + ": " + repr( r ) ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 545 | output = output[ 1 ].strip() |
GlennRC | 8587043 | 2015-11-23 11:45:51 -0800 | [diff] [blame] | 546 | if showResponse: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 547 | main.log.info( "Response from ONOS: {}".format( output ) ) |
GlennRC | 8587043 | 2015-11-23 11:45:51 -0800 | [diff] [blame] | 548 | return output |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 549 | except pexpect.TIMEOUT: |
| 550 | main.log.error( self.name + ":ONOS timeout" ) |
| 551 | if debug: |
| 552 | main.log.debug( self.handle.before ) |
| 553 | return None |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 554 | except IndexError: |
| 555 | main.log.exception( self.name + ": Object not as expected" ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 556 | main.log.debug( "response: {}".format( repr( response ) ) ) |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 557 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 558 | except TypeError: |
| 559 | main.log.exception( self.name + ": Object not as expected" ) |
| 560 | return None |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 561 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 562 | main.log.error( self.name + ": EOF exception found" ) |
| 563 | main.log.error( self.name + ": " + self.handle.before ) |
YPZhang | ebf9eb5 | 2016-05-12 15:20:24 -0700 | [diff] [blame] | 564 | if noExit: |
YPZhang | ebf9eb5 | 2016-05-12 15:20:24 -0700 | [diff] [blame] | 565 | return None |
| 566 | else: |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 567 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 568 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 569 | main.log.exception( self.name + ": Uncaught exception!" ) |
YPZhang | ebf9eb5 | 2016-05-12 15:20:24 -0700 | [diff] [blame] | 570 | if noExit: |
YPZhang | ebf9eb5 | 2016-05-12 15:20:24 -0700 | [diff] [blame] | 571 | return None |
| 572 | else: |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 573 | main.cleanAndExit() |
andrewonlab | a18f6bf | 2014-10-13 19:31:54 -0400 | [diff] [blame] | 574 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 575 | # IMPORTANT NOTE: |
| 576 | # For all cli commands, naming convention should match |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 577 | # the cli command changing 'a:b' with 'aB'. |
| 578 | # Ex ) onos:topology > onosTopology |
| 579 | # onos:links > onosLinks |
| 580 | # feature:list > featureList |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 581 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 582 | def addNode( self, nodeId, ONOSIp, tcpPort="" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 583 | """ |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 584 | Adds a new cluster node by ID and address information. |
| 585 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 586 | * nodeId |
| 587 | * ONOSIp |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 588 | Optional: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 589 | * tcpPort |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 590 | """ |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 591 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 592 | cmdStr = "add-node " + str( nodeId ) + " " +\ |
| 593 | str( ONOSIp ) + " " + str( tcpPort ) |
| 594 | handle = self.sendline( cmdStr ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 595 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 596 | assert "Command not found:" not in handle, handle |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 597 | if re.search( "Error", handle ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 598 | main.log.error( "Error in adding node" ) |
| 599 | main.log.error( handle ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 600 | return main.FALSE |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 601 | else: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 602 | main.log.info( "Node " + str( ONOSIp ) + " added" ) |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 603 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 604 | except AssertionError: |
| 605 | main.log.exception( "" ) |
| 606 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 607 | except TypeError: |
| 608 | main.log.exception( self.name + ": Object not as expected" ) |
| 609 | return None |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 610 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 611 | main.log.error( self.name + ": EOF exception found" ) |
| 612 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 613 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 614 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 615 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 616 | main.cleanAndExit() |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 617 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 618 | def removeNode( self, nodeId ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 619 | """ |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 620 | Removes a cluster by ID |
| 621 | Issues command: 'remove-node [<node-id>]' |
| 622 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 623 | * nodeId |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 624 | """ |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 625 | try: |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 626 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 627 | cmdStr = "remove-node " + str( nodeId ) |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 628 | handle = self.sendline( cmdStr ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 629 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 630 | assert "Command not found:" not in handle, handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 631 | if re.search( "Error", handle ): |
| 632 | main.log.error( "Error in removing node" ) |
| 633 | main.log.error( handle ) |
| 634 | return main.FALSE |
| 635 | else: |
| 636 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 637 | except AssertionError: |
| 638 | main.log.exception( "" ) |
| 639 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 640 | except TypeError: |
| 641 | main.log.exception( self.name + ": Object not as expected" ) |
| 642 | return None |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 643 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 644 | main.log.error( self.name + ": EOF exception found" ) |
| 645 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 646 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 647 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 648 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 649 | main.cleanAndExit() |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 650 | |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 651 | def nodes( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 652 | """ |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 653 | List the nodes currently visible |
| 654 | Issues command: 'nodes' |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 655 | Optional argument: |
| 656 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 657 | """ |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 658 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 659 | cmdStr = "nodes" |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 660 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 661 | cmdStr += " -j" |
| 662 | output = self.sendline( cmdStr ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 663 | assert output is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 664 | assert "Command not found:" not in output, output |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 665 | return output |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 666 | except AssertionError: |
| 667 | main.log.exception( "" ) |
| 668 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 669 | except TypeError: |
| 670 | main.log.exception( self.name + ": Object not as expected" ) |
| 671 | return None |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 672 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 673 | main.log.error( self.name + ": EOF exception found" ) |
| 674 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 675 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 676 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 677 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 678 | main.cleanAndExit() |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 679 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 680 | def topology( self ): |
| 681 | """ |
Hari Krishna | ef1bd4e | 2015-03-12 16:55:30 -0700 | [diff] [blame] | 682 | Definition: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 683 | Returns the output of topology command. |
Hari Krishna | ef1bd4e | 2015-03-12 16:55:30 -0700 | [diff] [blame] | 684 | Return: |
| 685 | topology = current ONOS topology |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 686 | """ |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 687 | try: |
Hari Krishna | ef1bd4e | 2015-03-12 16:55:30 -0700 | [diff] [blame] | 688 | cmdStr = "topology -j" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 689 | handle = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 690 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 691 | assert "Command not found:" not in handle, handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 692 | main.log.info( cmdStr + " returned: " + str( handle ) ) |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 693 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 694 | except AssertionError: |
| 695 | main.log.exception( "" ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 696 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 697 | except TypeError: |
| 698 | main.log.exception( self.name + ": Object not as expected" ) |
| 699 | return None |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 700 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 701 | main.log.error( self.name + ": EOF exception found" ) |
| 702 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 703 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 704 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 705 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 706 | main.cleanAndExit() |
Jon Hall | ffb386d | 2014-11-21 13:43:38 -0800 | [diff] [blame] | 707 | |
jenkins | 7ead5a8 | 2015-03-13 10:28:21 -0700 | [diff] [blame] | 708 | def deviceRemove( self, deviceId ): |
| 709 | """ |
| 710 | Removes particular device from storage |
| 711 | |
| 712 | TODO: refactor this function |
| 713 | """ |
| 714 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 715 | cmdStr = "device-remove " + str( deviceId ) |
| 716 | handle = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 717 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 718 | assert "Command not found:" not in handle, handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 719 | if re.search( "Error", handle ): |
| 720 | main.log.error( "Error in removing device" ) |
| 721 | main.log.error( handle ) |
| 722 | return main.FALSE |
| 723 | else: |
| 724 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 725 | except AssertionError: |
| 726 | main.log.exception( "" ) |
| 727 | return None |
jenkins | 7ead5a8 | 2015-03-13 10:28:21 -0700 | [diff] [blame] | 728 | except TypeError: |
| 729 | main.log.exception( self.name + ": Object not as expected" ) |
| 730 | return None |
| 731 | except pexpect.EOF: |
| 732 | main.log.error( self.name + ": EOF exception found" ) |
| 733 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 734 | main.cleanAndExit() |
jenkins | 7ead5a8 | 2015-03-13 10:28:21 -0700 | [diff] [blame] | 735 | except Exception: |
| 736 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 737 | main.cleanAndExit() |
jenkins | 7ead5a8 | 2015-03-13 10:28:21 -0700 | [diff] [blame] | 738 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 739 | def devices( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 740 | """ |
Jon Hall | 7b02d95 | 2014-10-17 20:14:54 -0400 | [diff] [blame] | 741 | Lists all infrastructure devices or switches |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 742 | Optional argument: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 743 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 744 | """ |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 745 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 746 | cmdStr = "devices" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 747 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 748 | cmdStr += " -j" |
| 749 | handle = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 750 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 751 | assert "Command not found:" not in handle, handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 752 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 753 | except AssertionError: |
| 754 | main.log.exception( "" ) |
| 755 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 756 | except TypeError: |
| 757 | main.log.exception( self.name + ": Object not as expected" ) |
| 758 | return None |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 759 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 760 | main.log.error( self.name + ": EOF exception found" ) |
| 761 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 762 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 763 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 764 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 765 | main.cleanAndExit() |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 766 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 767 | def balanceMasters( self ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 768 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 769 | This balances the devices across all controllers |
| 770 | by issuing command: 'onos> onos:balance-masters' |
| 771 | If required this could be extended to return devices balanced output. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 772 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 773 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 774 | cmdStr = "onos:balance-masters" |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 775 | handle = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 776 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 777 | assert "Command not found:" not in handle, handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 778 | if re.search( "Error", handle ): |
| 779 | main.log.error( "Error in balancing masters" ) |
| 780 | main.log.error( handle ) |
| 781 | return main.FALSE |
| 782 | else: |
| 783 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 784 | except AssertionError: |
| 785 | main.log.exception( "" ) |
| 786 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 787 | except TypeError: |
| 788 | main.log.exception( self.name + ": Object not as expected" ) |
| 789 | return None |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 790 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 791 | main.log.error( self.name + ": EOF exception found" ) |
| 792 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 793 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 794 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 795 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 796 | main.cleanAndExit() |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 797 | |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 798 | def checkMasters( self, jsonFormat=True ): |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 799 | """ |
| 800 | Returns the output of the masters command. |
| 801 | Optional argument: |
| 802 | * jsonFormat - boolean indicating if you want output in json |
| 803 | """ |
| 804 | try: |
| 805 | cmdStr = "onos:masters" |
| 806 | if jsonFormat: |
| 807 | cmdStr += " -j" |
| 808 | output = self.sendline( cmdStr ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 809 | assert output is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 810 | assert "Command not found:" not in output, output |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 811 | return output |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 812 | except AssertionError: |
| 813 | main.log.exception( "" ) |
| 814 | return None |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 815 | except TypeError: |
| 816 | main.log.exception( self.name + ": Object not as expected" ) |
| 817 | return None |
| 818 | except pexpect.EOF: |
| 819 | main.log.error( self.name + ": EOF exception found" ) |
| 820 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 821 | main.cleanAndExit() |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 822 | except Exception: |
| 823 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 824 | main.cleanAndExit() |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 825 | |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 826 | def checkBalanceMasters( self, jsonFormat=True ): |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 827 | """ |
| 828 | Uses the master command to check that the devices' leadership |
| 829 | is evenly divided |
| 830 | |
| 831 | Dependencies: checkMasters() and summary() |
| 832 | |
Jon Hall | 6509dbf | 2016-06-21 17:01:17 -0700 | [diff] [blame] | 833 | Returns main.TRUE if the devices are balanced |
| 834 | Returns main.FALSE if the devices are unbalanced |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 835 | Exits on Exception |
| 836 | Returns None on TypeError |
| 837 | """ |
| 838 | try: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 839 | summaryOutput = self.summary() |
| 840 | totalDevices = json.loads( summaryOutput )[ "devices" ] |
| 841 | except ( TypeError, ValueError ): |
| 842 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, summaryOutput ) ) |
| 843 | return None |
| 844 | try: |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 845 | totalOwnedDevices = 0 |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 846 | mastersOutput = self.checkMasters() |
| 847 | masters = json.loads( mastersOutput ) |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 848 | first = masters[ 0 ][ "size" ] |
| 849 | for master in masters: |
| 850 | totalOwnedDevices += master[ "size" ] |
| 851 | if master[ "size" ] > first + 1 or master[ "size" ] < first - 1: |
| 852 | main.log.error( "Mastership not balanced" ) |
| 853 | main.log.info( "\n" + self.checkMasters( False ) ) |
| 854 | return main.FALSE |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 855 | main.log.info( "Mastership balanced between " + |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 856 | str( len( masters ) ) + " masters" ) |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 857 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 858 | except ( TypeError, ValueError ): |
| 859 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, mastersOutput ) ) |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 860 | return None |
| 861 | except pexpect.EOF: |
| 862 | main.log.error( self.name + ": EOF exception found" ) |
| 863 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 864 | main.cleanAndExit() |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 865 | except Exception: |
| 866 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 867 | main.cleanAndExit() |
acsmars | 2495002 | 2015-07-30 18:00:43 -0700 | [diff] [blame] | 868 | |
YPZhang | febf730 | 2016-05-24 16:45:56 -0700 | [diff] [blame] | 869 | def links( self, jsonFormat=True, timeout=30 ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 870 | """ |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 871 | Lists all core links |
| 872 | Optional argument: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 873 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 874 | """ |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 875 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 876 | cmdStr = "links" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 877 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 878 | cmdStr += " -j" |
YPZhang | febf730 | 2016-05-24 16:45:56 -0700 | [diff] [blame] | 879 | handle = self.sendline( cmdStr, timeout=timeout ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 880 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 881 | assert "Command not found:" not in handle, handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 882 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 883 | except AssertionError: |
| 884 | main.log.exception( "" ) |
| 885 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 886 | except TypeError: |
| 887 | main.log.exception( self.name + ": Object not as expected" ) |
| 888 | return None |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 889 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 890 | main.log.error( self.name + ": EOF exception found" ) |
| 891 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 892 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 893 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 894 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 895 | main.cleanAndExit() |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 896 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 897 | def ports( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 898 | """ |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 899 | Lists all ports |
| 900 | Optional argument: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 901 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 902 | """ |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 903 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 904 | cmdStr = "ports" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 905 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 906 | cmdStr += " -j" |
| 907 | handle = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 908 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 909 | assert "Command not found:" not in handle, handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 910 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 911 | except AssertionError: |
| 912 | main.log.exception( "" ) |
| 913 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 914 | except TypeError: |
| 915 | main.log.exception( self.name + ": Object not as expected" ) |
| 916 | return None |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 917 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 918 | main.log.error( self.name + ": EOF exception found" ) |
| 919 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 920 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 921 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 922 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 923 | main.cleanAndExit() |
Jon Hall | e821748 | 2014-10-17 13:49:14 -0400 | [diff] [blame] | 924 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 925 | def roles( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 926 | """ |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 927 | Lists all devices and the controllers with roles assigned to them |
| 928 | Optional argument: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 929 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 930 | """ |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 931 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 932 | cmdStr = "roles" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 933 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 934 | cmdStr += " -j" |
| 935 | handle = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 936 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 937 | assert "Command not found:" not in handle, 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: |
| 940 | main.log.exception( "" ) |
| 941 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 942 | except TypeError: |
| 943 | main.log.exception( self.name + ": Object not as expected" ) |
| 944 | return None |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 945 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 946 | main.log.error( self.name + ": EOF exception found" ) |
| 947 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 948 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 949 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 950 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 951 | main.cleanAndExit() |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 952 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 953 | def getRole( self, deviceId ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 954 | """ |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 955 | Given the a string containing the json representation of the "roles" |
| 956 | cli command and a partial or whole device id, returns a json object |
| 957 | containing the roles output for the first device whose id contains |
| 958 | "device_id" |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 959 | |
| 960 | Returns: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 961 | A dict of the role assignments for the given device or |
| 962 | None if no match |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 963 | """ |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 964 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 965 | if deviceId is None: |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 966 | return None |
| 967 | else: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 968 | rawRoles = self.roles() |
| 969 | rolesJson = json.loads( rawRoles ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 970 | # search json for the device with id then return the device |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 971 | for device in rolesJson: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 972 | # print device |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 973 | if str( deviceId ) in device[ 'id' ]: |
Jon Hall | 983a170 | 2014-10-28 18:44:22 -0400 | [diff] [blame] | 974 | return device |
| 975 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 976 | except ( TypeError, ValueError ): |
| 977 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawRoles ) ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 978 | return None |
andrewonlab | 86dc308 | 2014-10-13 18:18:38 -0400 | [diff] [blame] | 979 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 980 | main.log.error( self.name + ": EOF exception found" ) |
| 981 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 982 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 983 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 984 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 985 | main.cleanAndExit() |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 986 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 987 | def rolesNotNull( self ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 988 | """ |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 989 | Iterates through each device and checks if there is a master assigned |
| 990 | Returns: main.TRUE if each device has a master |
| 991 | main.FALSE any device has no master |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 992 | """ |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 993 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 994 | rawRoles = self.roles() |
| 995 | rolesJson = json.loads( rawRoles ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 996 | # search json for the device with id then return the device |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 997 | for device in rolesJson: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 998 | # print device |
| 999 | if device[ 'master' ] == "none": |
| 1000 | main.log.warn( "Device has no master: " + str( device ) ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 1001 | return main.FALSE |
| 1002 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1003 | except ( TypeError, ValueError ): |
| 1004 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawRoles ) ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1005 | return None |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 1006 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1007 | main.log.error( self.name + ": EOF exception found" ) |
| 1008 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1009 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1010 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1011 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1012 | main.cleanAndExit() |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 1013 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1014 | def paths( self, srcId, dstId ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1015 | """ |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 1016 | Returns string of paths, and the cost. |
| 1017 | Issues command: onos:paths <src> <dst> |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1018 | """ |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 1019 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1020 | cmdStr = "onos:paths " + str( srcId ) + " " + str( dstId ) |
| 1021 | handle = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 1022 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1023 | assert "Command not found:" not in handle, handle |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1024 | if re.search( "Error", handle ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1025 | main.log.error( "Error in getting paths" ) |
| 1026 | return ( handle, "Error" ) |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 1027 | else: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1028 | path = handle.split( ";" )[ 0 ] |
| 1029 | cost = handle.split( ";" )[ 1 ] |
| 1030 | return ( path, cost ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1031 | except AssertionError: |
| 1032 | main.log.exception( "" ) |
| 1033 | return ( handle, "Error" ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1034 | except TypeError: |
| 1035 | main.log.exception( self.name + ": Object not as expected" ) |
| 1036 | return ( handle, "Error" ) |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 1037 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1038 | main.log.error( self.name + ": EOF exception found" ) |
| 1039 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1040 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1041 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1042 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1043 | main.cleanAndExit() |
Jon Hall | ffb386d | 2014-11-21 13:43:38 -0800 | [diff] [blame] | 1044 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1045 | def hosts( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1046 | """ |
Jon Hall | ffb386d | 2014-11-21 13:43:38 -0800 | [diff] [blame] | 1047 | Lists all discovered hosts |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 1048 | Optional argument: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1049 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1050 | """ |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 1051 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1052 | cmdStr = "hosts" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1053 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1054 | cmdStr += " -j" |
| 1055 | handle = self.sendline( cmdStr ) |
Jeremy | d9e4eb1 | 2016-04-13 12:09:06 -0700 | [diff] [blame] | 1056 | if handle: |
| 1057 | assert "Command not found:" not in handle, handle |
Jon Hall | baf5316 | 2015-12-17 17:04:34 -0800 | [diff] [blame] | 1058 | # TODO: Maybe make this less hardcoded |
| 1059 | # ConsistentMap Exceptions |
| 1060 | assert "org.onosproject.store.service" not in handle |
| 1061 | # Node not leader |
| 1062 | assert "java.lang.IllegalStateException" not in handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1063 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1064 | except AssertionError: |
Jeremy | d9e4eb1 | 2016-04-13 12:09:06 -0700 | [diff] [blame] | 1065 | main.log.exception( "Error in processing '" + cmdStr + "' " + |
Jeremy Songster | 6949cea | 2016-04-19 18:13:18 -0700 | [diff] [blame] | 1066 | "command: " + str( handle ) ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1067 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1068 | except TypeError: |
| 1069 | main.log.exception( self.name + ": Object not as expected" ) |
| 1070 | return None |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 1071 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1072 | main.log.error( self.name + ": EOF exception found" ) |
| 1073 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1074 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1075 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1076 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1077 | main.cleanAndExit() |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 1078 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1079 | def getHost( self, mac ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1080 | """ |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 1081 | Return the first host from the hosts api whose 'id' contains 'mac' |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1082 | |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1083 | 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] | 1084 | partial mac address |
| 1085 | |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 1086 | Return None if there is no match |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1087 | """ |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 1088 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1089 | if mac is None: |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 1090 | return None |
| 1091 | else: |
| 1092 | mac = mac |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1093 | rawHosts = self.hosts() |
| 1094 | hostsJson = json.loads( rawHosts ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1095 | # search json for the host with mac then return the device |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1096 | for host in hostsJson: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1097 | # print "%s in %s?" % ( mac, host[ 'id' ] ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1098 | if not host: |
| 1099 | pass |
| 1100 | elif mac in host[ 'id' ]: |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 1101 | return host |
| 1102 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1103 | except ( TypeError, ValueError ): |
| 1104 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawHosts ) ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1105 | return None |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 1106 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1107 | main.log.error( self.name + ": EOF exception found" ) |
| 1108 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1109 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1110 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1111 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1112 | main.cleanAndExit() |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 1113 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1114 | def getHostsId( self, hostList ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1115 | """ |
| 1116 | Obtain list of hosts |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 1117 | Issues command: 'onos> hosts' |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1118 | |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 1119 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1120 | * hostList: List of hosts obtained by Mininet |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 1121 | IMPORTANT: |
| 1122 | This function assumes that you started your |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1123 | topology with the option '--mac'. |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 1124 | Furthermore, it assumes that value of VLAN is '-1' |
| 1125 | Description: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1126 | Converts mininet hosts ( h1, h2, h3... ) into |
| 1127 | ONOS format ( 00:00:00:00:00:01/-1 , ... ) |
| 1128 | """ |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 1129 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1130 | onosHostList = [] |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 1131 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1132 | for host in hostList: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1133 | host = host.replace( "h", "" ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1134 | hostHex = hex( int( host ) ).zfill( 12 ) |
| 1135 | hostHex = str( hostHex ).replace( 'x', '0' ) |
| 1136 | i = iter( str( hostHex ) ) |
| 1137 | hostHex = ":".join( a + b for a, b in zip( i, i ) ) |
| 1138 | hostHex = hostHex + "/-1" |
| 1139 | onosHostList.append( hostHex ) |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 1140 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1141 | return onosHostList |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 1142 | |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1143 | except TypeError: |
| 1144 | main.log.exception( self.name + ": Object not as expected" ) |
| 1145 | return None |
andrewonlab | 3f0a4af | 2014-10-17 12:25:14 -0400 | [diff] [blame] | 1146 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1147 | main.log.error( self.name + ": EOF exception found" ) |
| 1148 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1149 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1150 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1151 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1152 | main.cleanAndExit() |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 1153 | |
You Wang | bc898b8 | 2018-05-03 16:22:34 -0700 | [diff] [blame] | 1154 | def verifyHostLocation( self, hostIp, location ): |
| 1155 | """ |
| 1156 | Description: |
| 1157 | Verify the host given is discovered in all locations expected |
| 1158 | Required: |
| 1159 | hostIp: IP address of the host |
| 1160 | location: expected location(s) of the given host. ex. "of:0000000000000005/8" |
| 1161 | Could be a string or list |
| 1162 | Returns: |
| 1163 | main.TRUE if host is discovered on all locations provided |
| 1164 | main.FALSE otherwise |
| 1165 | """ |
| 1166 | import json |
| 1167 | locations = [ location ] if isinstance( location, str ) else location |
| 1168 | assert isinstance( locations, list ), "Wrong type of location: {}".format( type( location ) ) |
| 1169 | try: |
| 1170 | hosts = self.hosts() |
| 1171 | hosts = json.loads( hosts ) |
| 1172 | targetHost = None |
| 1173 | for host in hosts: |
| 1174 | if hostIp in host[ "ipAddresses" ]: |
| 1175 | targetHost = host |
You Wang | fd80ab4 | 2018-05-10 17:21:53 -0700 | [diff] [blame] | 1176 | assert targetHost, "Not able to find host with IP {}".format( hostIp ) |
You Wang | bc898b8 | 2018-05-03 16:22:34 -0700 | [diff] [blame] | 1177 | result = main.TRUE |
| 1178 | locationsDiscovered = [ loc[ "elementId" ] + "/" + loc[ "port" ] for loc in targetHost[ "locations" ] ] |
| 1179 | for loc in locations: |
| 1180 | discovered = False |
| 1181 | for locDiscovered in locationsDiscovered: |
You Wang | 547893e | 2018-05-08 13:34:59 -0700 | [diff] [blame] | 1182 | locToMatch = locDiscovered if "/" in loc else locDiscovered.split( "/" )[0] |
| 1183 | if loc == locToMatch: |
You Wang | bc898b8 | 2018-05-03 16:22:34 -0700 | [diff] [blame] | 1184 | main.log.debug( "Host {} discovered with location {}".format( hostIp, loc ) ) |
You Wang | 547893e | 2018-05-08 13:34:59 -0700 | [diff] [blame] | 1185 | discovered = True |
You Wang | bc898b8 | 2018-05-03 16:22:34 -0700 | [diff] [blame] | 1186 | break |
| 1187 | if discovered: |
| 1188 | locationsDiscovered.remove( locDiscovered ) |
| 1189 | else: |
| 1190 | main.log.warn( "Host {} not discovered with location {}".format( hostIp, loc ) ) |
| 1191 | result = main.FALSE |
| 1192 | if locationsDiscovered: |
| 1193 | main.log.warn( "Host {} is also discovered with location {}".format( hostIp, locationsDiscovered ) ) |
| 1194 | result = main.FALSE |
| 1195 | return result |
| 1196 | except KeyError: |
| 1197 | main.log.exception( self.name + ": host data not as expected: " + hosts ) |
| 1198 | return None |
| 1199 | except pexpect.EOF: |
| 1200 | main.log.error( self.name + ": EOF exception found" ) |
| 1201 | main.log.error( self.name + ": " + self.handle.before ) |
| 1202 | main.cleanAndExit() |
| 1203 | except Exception: |
| 1204 | main.log.exception( self.name + ": Uncaught exception" ) |
| 1205 | return None |
| 1206 | |
You Wang | 53dba1e | 2018-02-02 17:45:44 -0800 | [diff] [blame] | 1207 | def verifyHostIp( self, hostList=[], prefix="" ): |
| 1208 | """ |
| 1209 | Description: |
| 1210 | Verify that all hosts have IP address assigned to them |
| 1211 | Optional: |
| 1212 | hostList: If specified, verifications only happen to the hosts |
| 1213 | in hostList |
| 1214 | prefix: at least one of the ip address assigned to the host |
| 1215 | needs to have the specified prefix |
| 1216 | Returns: |
| 1217 | main.TRUE if all hosts have specific IP address assigned; |
| 1218 | main.FALSE otherwise |
| 1219 | """ |
| 1220 | import json |
| 1221 | try: |
| 1222 | hosts = self.hosts() |
| 1223 | hosts = json.loads( hosts ) |
| 1224 | if not hostList: |
| 1225 | hostList = [ host[ "id" ] for host in hosts ] |
| 1226 | for host in hosts: |
| 1227 | hostId = host[ "id" ] |
| 1228 | if hostId not in hostList: |
| 1229 | continue |
| 1230 | ipList = host[ "ipAddresses" ] |
| 1231 | main.log.debug( self.name + ": IP list on host " + str( hostId ) + ": " + str( ipList ) ) |
| 1232 | if not ipList: |
| 1233 | main.log.warn( self.name + ": Failed to discover any IP addresses on host " + str( hostId ) ) |
| 1234 | else: |
| 1235 | if not any( ip.startswith( str( prefix ) ) for ip in ipList ): |
| 1236 | main.log.warn( self.name + ": None of the IPs on host " + str( hostId ) + " has prefix " + str( prefix ) ) |
| 1237 | else: |
| 1238 | main.log.debug( self.name + ": Found matching IP on host " + str( hostId ) ) |
| 1239 | hostList.remove( hostId ) |
| 1240 | if hostList: |
| 1241 | main.log.warn( self.name + ": failed to verify IP on following hosts: " + str( hostList) ) |
| 1242 | return main.FALSE |
| 1243 | else: |
| 1244 | return main.TRUE |
| 1245 | except KeyError: |
| 1246 | main.log.exception( self.name + ": host data not as expected: " + hosts ) |
| 1247 | return None |
| 1248 | except pexpect.EOF: |
| 1249 | main.log.error( self.name + ": EOF exception found" ) |
| 1250 | main.log.error( self.name + ": " + self.handle.before ) |
| 1251 | main.cleanAndExit() |
| 1252 | except Exception: |
| 1253 | main.log.exception( self.name + ": Uncaught exception" ) |
| 1254 | return None |
| 1255 | |
Shreya Chowdhary | 6fbb96c | 2017-05-02 16:20:19 -0700 | [diff] [blame] | 1256 | def addHostIntent( self, hostIdOne, hostIdTwo, vlanId="", setVlan="", encap="", bandwidth="" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1257 | """ |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1258 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1259 | * hostIdOne: ONOS host id for host1 |
| 1260 | * hostIdTwo: ONOS host id for host2 |
Jeremy Songster | 832f9e9 | 2016-05-05 14:30:49 -0700 | [diff] [blame] | 1261 | Optional: |
| 1262 | * vlanId: specify a VLAN id for the intent |
Jeremy Songster | ff55367 | 2016-05-12 17:06:23 -0700 | [diff] [blame] | 1263 | * setVlan: specify a VLAN id treatment |
Jeremy Songster | c032f16 | 2016-08-04 17:14:49 -0700 | [diff] [blame] | 1264 | * encap: specify an encapsulation type |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1265 | Description: |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1266 | Adds a host-to-host intent ( bidirectional ) by |
Jon Hall | b1290e8 | 2014-11-18 16:17:48 -0500 | [diff] [blame] | 1267 | specifying the two hosts. |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1268 | Returns: |
| 1269 | A string of the intent id or None on Error |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1270 | """ |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1271 | try: |
Jeremy Songster | 832f9e9 | 2016-05-05 14:30:49 -0700 | [diff] [blame] | 1272 | cmdStr = "add-host-intent " |
| 1273 | if vlanId: |
| 1274 | cmdStr += "-v " + str( vlanId ) + " " |
Jeremy Songster | ff55367 | 2016-05-12 17:06:23 -0700 | [diff] [blame] | 1275 | if setVlan: |
| 1276 | cmdStr += "--setVlan " + str( vlanId ) + " " |
Jeremy Songster | c032f16 | 2016-08-04 17:14:49 -0700 | [diff] [blame] | 1277 | if encap: |
| 1278 | cmdStr += "--encapsulation " + str( encap ) + " " |
Shreya Chowdhary | 6fbb96c | 2017-05-02 16:20:19 -0700 | [diff] [blame] | 1279 | if bandwidth: |
| 1280 | cmdStr += "-b " + str( bandwidth ) + " " |
Jeremy Songster | 832f9e9 | 2016-05-05 14:30:49 -0700 | [diff] [blame] | 1281 | cmdStr += str( hostIdOne ) + " " + str( hostIdTwo ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1282 | handle = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 1283 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1284 | assert "Command not found:" not in handle, handle |
Hari Krishna | ac4e178 | 2015-01-26 12:09:12 -0800 | [diff] [blame] | 1285 | if re.search( "Error", handle ): |
| 1286 | main.log.error( "Error in adding Host intent" ) |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 1287 | main.log.debug( "Response from ONOS was: " + repr( handle ) ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1288 | return None |
Hari Krishna | ac4e178 | 2015-01-26 12:09:12 -0800 | [diff] [blame] | 1289 | else: |
| 1290 | main.log.info( "Host intent installed between " + |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1291 | str( hostIdOne ) + " and " + str( hostIdTwo ) ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 1292 | match = re.search( 'id=0x([\da-f]+),', handle ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1293 | if match: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 1294 | return match.group()[ 3:-1 ] |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1295 | else: |
| 1296 | main.log.error( "Error, intent ID not found" ) |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 1297 | main.log.debug( "Response from ONOS was: " + |
| 1298 | repr( handle ) ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1299 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1300 | except AssertionError: |
| 1301 | main.log.exception( "" ) |
| 1302 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1303 | except TypeError: |
| 1304 | main.log.exception( self.name + ": Object not as expected" ) |
| 1305 | return None |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1306 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1307 | main.log.error( self.name + ": EOF exception found" ) |
| 1308 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1309 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1310 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1311 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1312 | main.cleanAndExit() |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 1313 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1314 | def addOpticalIntent( self, ingressDevice, egressDevice ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1315 | """ |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 1316 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1317 | * ingressDevice: device id of ingress device |
| 1318 | * egressDevice: device id of egress device |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 1319 | Optional: |
| 1320 | TODO: Still needs to be implemented via dev side |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1321 | Description: |
| 1322 | Adds an optical intent by specifying an ingress and egress device |
| 1323 | Returns: |
| 1324 | A string of the intent id or None on error |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1325 | """ |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 1326 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1327 | cmdStr = "add-optical-intent " + str( ingressDevice ) +\ |
| 1328 | " " + str( egressDevice ) |
| 1329 | handle = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 1330 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1331 | assert "Command not found:" not in handle, handle |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1332 | # If error, return error message |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1333 | if re.search( "Error", handle ): |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1334 | main.log.error( "Error in adding Optical intent" ) |
| 1335 | return None |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 1336 | else: |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1337 | main.log.info( "Optical intent installed between " + |
| 1338 | str( ingressDevice ) + " and " + |
| 1339 | str( egressDevice ) ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 1340 | match = re.search( 'id=0x([\da-f]+),', handle ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1341 | if match: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 1342 | return match.group()[ 3:-1 ] |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1343 | else: |
| 1344 | main.log.error( "Error, intent ID not found" ) |
| 1345 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1346 | except AssertionError: |
| 1347 | main.log.exception( "" ) |
| 1348 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1349 | except TypeError: |
| 1350 | main.log.exception( self.name + ": Object not as expected" ) |
| 1351 | return None |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 1352 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1353 | main.log.error( self.name + ": EOF exception found" ) |
| 1354 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1355 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1356 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1357 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1358 | main.cleanAndExit() |
andrewonlab | 7b31d23 | 2014-10-24 13:31:47 -0400 | [diff] [blame] | 1359 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1360 | def addPointIntent( |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1361 | self, |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1362 | ingressDevice, |
| 1363 | egressDevice, |
| 1364 | portIngress="", |
| 1365 | portEgress="", |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1366 | ethType="", |
| 1367 | ethSrc="", |
| 1368 | ethDst="", |
| 1369 | bandwidth="", |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1370 | lambdaAlloc=False, |
alison | da15727 | 2016-12-22 01:13:21 -0800 | [diff] [blame] | 1371 | protected=False, |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1372 | ipProto="", |
| 1373 | ipSrc="", |
| 1374 | ipDst="", |
| 1375 | tcpSrc="", |
Jeremy Songster | 832f9e9 | 2016-05-05 14:30:49 -0700 | [diff] [blame] | 1376 | tcpDst="", |
Jeremy Songster | ff55367 | 2016-05-12 17:06:23 -0700 | [diff] [blame] | 1377 | vlanId="", |
Jeremy Songster | c032f16 | 2016-08-04 17:14:49 -0700 | [diff] [blame] | 1378 | setVlan="", |
| 1379 | encap="" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1380 | """ |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1381 | Required: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1382 | * ingressDevice: device id of ingress device |
| 1383 | * egressDevice: device id of egress device |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 1384 | Optional: |
| 1385 | * ethType: specify ethType |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1386 | * ethSrc: specify ethSrc ( i.e. src mac addr ) |
| 1387 | * ethDst: specify ethDst ( i.e. dst mac addr ) |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 1388 | * bandwidth: specify bandwidth capacity of link |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1389 | * lambdaAlloc: if True, intent will allocate lambda |
andrewonlab | 40ccd8b | 2014-11-06 16:23:34 -0500 | [diff] [blame] | 1390 | for the specified intent |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1391 | * ipProto: specify ip protocol |
andrewonlab | f77e0cb | 2014-11-11 17:17:59 -0500 | [diff] [blame] | 1392 | * ipSrc: specify ip source address |
| 1393 | * ipDst: specify ip destination address |
| 1394 | * tcpSrc: specify tcp source port |
| 1395 | * tcpDst: specify tcp destination port |
Jeremy Songster | 832f9e9 | 2016-05-05 14:30:49 -0700 | [diff] [blame] | 1396 | * vlanId: specify vlan ID |
Jeremy Songster | ff55367 | 2016-05-12 17:06:23 -0700 | [diff] [blame] | 1397 | * setVlan: specify a VLAN id treatment |
Jeremy Songster | c032f16 | 2016-08-04 17:14:49 -0700 | [diff] [blame] | 1398 | * encap: specify an Encapsulation type to use |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1399 | Description: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1400 | Adds a point-to-point intent ( uni-directional ) by |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 1401 | specifying device id's and optional fields |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1402 | Returns: |
| 1403 | A string of the intent id or None on error |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 1404 | |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1405 | NOTE: This function may change depending on the |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1406 | options developers provide for point-to-point |
| 1407 | intent via cli |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1408 | """ |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1409 | try: |
Jeremy Songster | ff55367 | 2016-05-12 17:06:23 -0700 | [diff] [blame] | 1410 | cmd = "add-point-intent" |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1411 | |
Jeremy Songster | ff55367 | 2016-05-12 17:06:23 -0700 | [diff] [blame] | 1412 | if ethType: |
| 1413 | cmd += " --ethType " + str( ethType ) |
| 1414 | if ethSrc: |
| 1415 | cmd += " --ethSrc " + str( ethSrc ) |
| 1416 | if ethDst: |
| 1417 | cmd += " --ethDst " + str( ethDst ) |
| 1418 | if bandwidth: |
| 1419 | cmd += " --bandwidth " + str( bandwidth ) |
| 1420 | if lambdaAlloc: |
| 1421 | cmd += " --lambda " |
| 1422 | if ipProto: |
| 1423 | cmd += " --ipProto " + str( ipProto ) |
| 1424 | if ipSrc: |
| 1425 | cmd += " --ipSrc " + str( ipSrc ) |
| 1426 | if ipDst: |
| 1427 | cmd += " --ipDst " + str( ipDst ) |
| 1428 | if tcpSrc: |
| 1429 | cmd += " --tcpSrc " + str( tcpSrc ) |
| 1430 | if tcpDst: |
| 1431 | cmd += " --tcpDst " + str( tcpDst ) |
| 1432 | if vlanId: |
| 1433 | cmd += " -v " + str( vlanId ) |
| 1434 | if setVlan: |
| 1435 | cmd += " --setVlan " + str( setVlan ) |
Jeremy Songster | c032f16 | 2016-08-04 17:14:49 -0700 | [diff] [blame] | 1436 | if encap: |
| 1437 | cmd += " --encapsulation " + str( encap ) |
alison | da15727 | 2016-12-22 01:13:21 -0800 | [diff] [blame] | 1438 | if protected: |
| 1439 | cmd += " --protect " |
andrewonlab | 289e4b7 | 2014-10-21 21:24:18 -0400 | [diff] [blame] | 1440 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1441 | # Check whether the user appended the port |
| 1442 | # or provided it as an input |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1443 | if "/" in ingressDevice: |
| 1444 | cmd += " " + str( ingressDevice ) |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1445 | else: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1446 | if not portIngress: |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1447 | main.log.error( "You must specify the ingress port" ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1448 | # TODO: perhaps more meaningful return |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1449 | # Would it make sense to throw an exception and exit |
| 1450 | # the test? |
| 1451 | return None |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1452 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1453 | cmd += " " + \ |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1454 | str( ingressDevice ) + "/" +\ |
| 1455 | str( portIngress ) + " " |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1456 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1457 | if "/" in egressDevice: |
| 1458 | cmd += " " + str( egressDevice ) |
andrewonlab | 36af382 | 2014-11-18 17:48:18 -0500 | [diff] [blame] | 1459 | else: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1460 | if not portEgress: |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1461 | main.log.error( "You must specify the egress port" ) |
| 1462 | return None |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1463 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1464 | cmd += " " +\ |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1465 | str( egressDevice ) + "/" +\ |
| 1466 | str( portEgress ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1467 | |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1468 | handle = self.sendline( cmd ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 1469 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1470 | assert "Command not found:" not in handle, handle |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1471 | # If error, return error message |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1472 | if re.search( "Error", handle ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1473 | main.log.error( "Error in adding point-to-point intent" ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1474 | return None |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1475 | else: |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1476 | # TODO: print out all the options in this message? |
| 1477 | main.log.info( "Point-to-point intent installed between " + |
| 1478 | str( ingressDevice ) + " and " + |
| 1479 | str( egressDevice ) ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 1480 | match = re.search( 'id=0x([\da-f]+),', handle ) |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1481 | if match: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 1482 | return match.group()[ 3:-1 ] |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1483 | else: |
| 1484 | main.log.error( "Error, intent ID not found" ) |
| 1485 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1486 | except AssertionError: |
| 1487 | main.log.exception( "" ) |
| 1488 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1489 | except TypeError: |
| 1490 | main.log.exception( self.name + ": Object not as expected" ) |
| 1491 | return None |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1492 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1493 | main.log.error( self.name + ": EOF exception found" ) |
| 1494 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1495 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1496 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1497 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1498 | main.cleanAndExit() |
andrewonlab | 4dbb4d8 | 2014-10-17 18:22:31 -0400 | [diff] [blame] | 1499 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1500 | def addMultipointToSinglepointIntent( |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1501 | self, |
shahshreya | c2f9707 | 2015-03-19 17:04:29 -0700 | [diff] [blame] | 1502 | ingressDeviceList, |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1503 | egressDevice, |
shahshreya | c2f9707 | 2015-03-19 17:04:29 -0700 | [diff] [blame] | 1504 | portIngressList=None, |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1505 | portEgress="", |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1506 | ethType="", |
| 1507 | ethSrc="", |
| 1508 | ethDst="", |
| 1509 | bandwidth="", |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1510 | lambdaAlloc=False, |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1511 | ipProto="", |
| 1512 | ipSrc="", |
| 1513 | ipDst="", |
| 1514 | tcpSrc="", |
| 1515 | tcpDst="", |
| 1516 | setEthSrc="", |
Jeremy Songster | 832f9e9 | 2016-05-05 14:30:49 -0700 | [diff] [blame] | 1517 | setEthDst="", |
Jeremy Songster | ff55367 | 2016-05-12 17:06:23 -0700 | [diff] [blame] | 1518 | vlanId="", |
Jeremy Songster | 9385d41 | 2016-06-02 17:57:36 -0700 | [diff] [blame] | 1519 | setVlan="", |
Jeremy Songster | c032f16 | 2016-08-04 17:14:49 -0700 | [diff] [blame] | 1520 | partial=False, |
| 1521 | encap="" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1522 | """ |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1523 | Note: |
shahshreya | 70622b1 | 2015-03-19 17:19:00 -0700 | [diff] [blame] | 1524 | This function assumes the format of all ingress devices |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 1525 | is same. That is, all ingress devices include port numbers |
| 1526 | with a "/" or all ingress devices could specify device |
| 1527 | ids and port numbers seperately. |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1528 | Required: |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 1529 | * ingressDeviceList: List of device ids of ingress device |
shahshreya | c2f9707 | 2015-03-19 17:04:29 -0700 | [diff] [blame] | 1530 | ( Atleast 2 ingress devices required in the list ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1531 | * egressDevice: device id of egress device |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1532 | Optional: |
| 1533 | * ethType: specify ethType |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1534 | * ethSrc: specify ethSrc ( i.e. src mac addr ) |
| 1535 | * ethDst: specify ethDst ( i.e. dst mac addr ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1536 | * bandwidth: specify bandwidth capacity of link |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1537 | * lambdaAlloc: if True, intent will allocate lambda |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1538 | for the specified intent |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1539 | * ipProto: specify ip protocol |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1540 | * ipSrc: specify ip source address |
| 1541 | * ipDst: specify ip destination address |
| 1542 | * tcpSrc: specify tcp source port |
| 1543 | * tcpDst: specify tcp destination port |
| 1544 | * setEthSrc: action to Rewrite Source MAC Address |
| 1545 | * setEthDst: action to Rewrite Destination MAC Address |
Jeremy Songster | 832f9e9 | 2016-05-05 14:30:49 -0700 | [diff] [blame] | 1546 | * vlanId: specify vlan Id |
Jeremy Songster | ff55367 | 2016-05-12 17:06:23 -0700 | [diff] [blame] | 1547 | * setVlan: specify VLAN Id treatment |
Jeremy Songster | c032f16 | 2016-08-04 17:14:49 -0700 | [diff] [blame] | 1548 | * encap: specify a type of encapsulation |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1549 | Description: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1550 | Adds a multipoint-to-singlepoint intent ( uni-directional ) by |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1551 | specifying device id's and optional fields |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1552 | Returns: |
| 1553 | A string of the intent id or None on error |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1554 | |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1555 | NOTE: This function may change depending on the |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1556 | options developers provide for multipoint-to-singlepoint |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1557 | intent via cli |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1558 | """ |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1559 | try: |
Jeremy Songster | ff55367 | 2016-05-12 17:06:23 -0700 | [diff] [blame] | 1560 | cmd = "add-multi-to-single-intent" |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1561 | |
Jeremy Songster | ff55367 | 2016-05-12 17:06:23 -0700 | [diff] [blame] | 1562 | if ethType: |
| 1563 | cmd += " --ethType " + str( ethType ) |
| 1564 | if ethSrc: |
| 1565 | cmd += " --ethSrc " + str( ethSrc ) |
| 1566 | if ethDst: |
| 1567 | cmd += " --ethDst " + str( ethDst ) |
| 1568 | if bandwidth: |
| 1569 | cmd += " --bandwidth " + str( bandwidth ) |
| 1570 | if lambdaAlloc: |
| 1571 | cmd += " --lambda " |
| 1572 | if ipProto: |
| 1573 | cmd += " --ipProto " + str( ipProto ) |
| 1574 | if ipSrc: |
| 1575 | cmd += " --ipSrc " + str( ipSrc ) |
| 1576 | if ipDst: |
| 1577 | cmd += " --ipDst " + str( ipDst ) |
| 1578 | if tcpSrc: |
| 1579 | cmd += " --tcpSrc " + str( tcpSrc ) |
| 1580 | if tcpDst: |
| 1581 | cmd += " --tcpDst " + str( tcpDst ) |
| 1582 | if setEthSrc: |
| 1583 | cmd += " --setEthSrc " + str( setEthSrc ) |
| 1584 | if setEthDst: |
| 1585 | cmd += " --setEthDst " + str( setEthDst ) |
| 1586 | if vlanId: |
| 1587 | cmd += " -v " + str( vlanId ) |
| 1588 | if setVlan: |
| 1589 | cmd += " --setVlan " + str( setVlan ) |
Jeremy Songster | 9385d41 | 2016-06-02 17:57:36 -0700 | [diff] [blame] | 1590 | if partial: |
| 1591 | cmd += " --partial" |
Jeremy Songster | c032f16 | 2016-08-04 17:14:49 -0700 | [diff] [blame] | 1592 | if encap: |
| 1593 | cmd += " --encapsulation " + str( encap ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1594 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1595 | # Check whether the user appended the port |
| 1596 | # or provided it as an input |
shahshreya | c2f9707 | 2015-03-19 17:04:29 -0700 | [diff] [blame] | 1597 | |
| 1598 | if portIngressList is None: |
| 1599 | for ingressDevice in ingressDeviceList: |
| 1600 | if "/" in ingressDevice: |
| 1601 | cmd += " " + str( ingressDevice ) |
| 1602 | else: |
| 1603 | main.log.error( "You must specify " + |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 1604 | "the ingress port" ) |
shahshreya | c2f9707 | 2015-03-19 17:04:29 -0700 | [diff] [blame] | 1605 | # TODO: perhaps more meaningful return |
| 1606 | return main.FALSE |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1607 | else: |
Jon Hall | 71ce4e7 | 2015-03-23 14:05:58 -0700 | [diff] [blame] | 1608 | if len( ingressDeviceList ) == len( portIngressList ): |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 1609 | for ingressDevice, portIngress in zip( ingressDeviceList, |
| 1610 | portIngressList ): |
shahshreya | 70622b1 | 2015-03-19 17:19:00 -0700 | [diff] [blame] | 1611 | cmd += " " + \ |
| 1612 | str( ingressDevice ) + "/" +\ |
| 1613 | str( portIngress ) + " " |
kelvin-onlab | 3814381 | 2015-04-01 15:03:01 -0700 | [diff] [blame] | 1614 | else: |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 1615 | main.log.error( "Device list and port list does not " + |
| 1616 | "have the same length" ) |
kelvin-onlab | 3814381 | 2015-04-01 15:03:01 -0700 | [diff] [blame] | 1617 | return main.FALSE |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1618 | if "/" in egressDevice: |
| 1619 | cmd += " " + str( egressDevice ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1620 | else: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1621 | if not portEgress: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1622 | main.log.error( "You must specify " + |
| 1623 | "the egress port" ) |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1624 | return main.FALSE |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1625 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1626 | cmd += " " +\ |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1627 | str( egressDevice ) + "/" +\ |
| 1628 | str( portEgress ) |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1629 | handle = self.sendline( cmd ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 1630 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1631 | assert "Command not found:" not in handle, handle |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1632 | # If error, return error message |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1633 | if re.search( "Error", handle ): |
kelvin-onlab | fb52166 | 2015-02-27 09:52:40 -0800 | [diff] [blame] | 1634 | main.log.error( "Error in adding multipoint-to-singlepoint " + |
| 1635 | "intent" ) |
| 1636 | return None |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1637 | else: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 1638 | match = re.search( 'id=0x([\da-f]+),', handle ) |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1639 | if match: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 1640 | return match.group()[ 3:-1 ] |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1641 | else: |
| 1642 | main.log.error( "Error, intent ID not found" ) |
| 1643 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1644 | except AssertionError: |
| 1645 | main.log.exception( "" ) |
| 1646 | return None |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1647 | except TypeError: |
| 1648 | main.log.exception( self.name + ": Object not as expected" ) |
| 1649 | return None |
| 1650 | except pexpect.EOF: |
| 1651 | main.log.error( self.name + ": EOF exception found" ) |
| 1652 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1653 | main.cleanAndExit() |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1654 | except Exception: |
| 1655 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1656 | main.cleanAndExit() |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1657 | |
| 1658 | def addSinglepointToMultipointIntent( |
| 1659 | self, |
| 1660 | ingressDevice, |
| 1661 | egressDeviceList, |
| 1662 | portIngress="", |
| 1663 | portEgressList=None, |
| 1664 | ethType="", |
| 1665 | ethSrc="", |
| 1666 | ethDst="", |
| 1667 | bandwidth="", |
| 1668 | lambdaAlloc=False, |
| 1669 | ipProto="", |
| 1670 | ipSrc="", |
| 1671 | ipDst="", |
| 1672 | tcpSrc="", |
| 1673 | tcpDst="", |
| 1674 | setEthSrc="", |
Jeremy Songster | 832f9e9 | 2016-05-05 14:30:49 -0700 | [diff] [blame] | 1675 | setEthDst="", |
Jeremy Songster | ff55367 | 2016-05-12 17:06:23 -0700 | [diff] [blame] | 1676 | vlanId="", |
Jeremy Songster | 9385d41 | 2016-06-02 17:57:36 -0700 | [diff] [blame] | 1677 | setVlan="", |
Jeremy Songster | c032f16 | 2016-08-04 17:14:49 -0700 | [diff] [blame] | 1678 | partial=False, |
| 1679 | encap="" ): |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1680 | """ |
| 1681 | Note: |
| 1682 | This function assumes the format of all egress devices |
| 1683 | is same. That is, all egress devices include port numbers |
| 1684 | with a "/" or all egress devices could specify device |
| 1685 | ids and port numbers seperately. |
| 1686 | Required: |
| 1687 | * EgressDeviceList: List of device ids of egress device |
| 1688 | ( Atleast 2 eress devices required in the list ) |
| 1689 | * ingressDevice: device id of ingress device |
| 1690 | Optional: |
| 1691 | * ethType: specify ethType |
| 1692 | * ethSrc: specify ethSrc ( i.e. src mac addr ) |
| 1693 | * ethDst: specify ethDst ( i.e. dst mac addr ) |
| 1694 | * bandwidth: specify bandwidth capacity of link |
| 1695 | * lambdaAlloc: if True, intent will allocate lambda |
| 1696 | for the specified intent |
| 1697 | * ipProto: specify ip protocol |
| 1698 | * ipSrc: specify ip source address |
| 1699 | * ipDst: specify ip destination address |
| 1700 | * tcpSrc: specify tcp source port |
| 1701 | * tcpDst: specify tcp destination port |
| 1702 | * setEthSrc: action to Rewrite Source MAC Address |
| 1703 | * setEthDst: action to Rewrite Destination MAC Address |
Jeremy Songster | 832f9e9 | 2016-05-05 14:30:49 -0700 | [diff] [blame] | 1704 | * vlanId: specify vlan Id |
Jeremy Songster | ff55367 | 2016-05-12 17:06:23 -0700 | [diff] [blame] | 1705 | * setVlan: specify VLAN ID treatment |
Jeremy Songster | c032f16 | 2016-08-04 17:14:49 -0700 | [diff] [blame] | 1706 | * encap: specify an encapsulation type |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1707 | Description: |
| 1708 | Adds a singlepoint-to-multipoint intent ( uni-directional ) by |
| 1709 | specifying device id's and optional fields |
| 1710 | Returns: |
| 1711 | A string of the intent id or None on error |
| 1712 | |
| 1713 | NOTE: This function may change depending on the |
| 1714 | options developers provide for singlepoint-to-multipoint |
| 1715 | intent via cli |
| 1716 | """ |
| 1717 | try: |
Jeremy Songster | ff55367 | 2016-05-12 17:06:23 -0700 | [diff] [blame] | 1718 | cmd = "add-single-to-multi-intent" |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1719 | |
Jeremy Songster | ff55367 | 2016-05-12 17:06:23 -0700 | [diff] [blame] | 1720 | if ethType: |
| 1721 | cmd += " --ethType " + str( ethType ) |
| 1722 | if ethSrc: |
| 1723 | cmd += " --ethSrc " + str( ethSrc ) |
| 1724 | if ethDst: |
| 1725 | cmd += " --ethDst " + str( ethDst ) |
| 1726 | if bandwidth: |
| 1727 | cmd += " --bandwidth " + str( bandwidth ) |
| 1728 | if lambdaAlloc: |
| 1729 | cmd += " --lambda " |
| 1730 | if ipProto: |
| 1731 | cmd += " --ipProto " + str( ipProto ) |
| 1732 | if ipSrc: |
| 1733 | cmd += " --ipSrc " + str( ipSrc ) |
| 1734 | if ipDst: |
| 1735 | cmd += " --ipDst " + str( ipDst ) |
| 1736 | if tcpSrc: |
| 1737 | cmd += " --tcpSrc " + str( tcpSrc ) |
| 1738 | if tcpDst: |
| 1739 | cmd += " --tcpDst " + str( tcpDst ) |
| 1740 | if setEthSrc: |
| 1741 | cmd += " --setEthSrc " + str( setEthSrc ) |
| 1742 | if setEthDst: |
| 1743 | cmd += " --setEthDst " + str( setEthDst ) |
| 1744 | if vlanId: |
| 1745 | cmd += " -v " + str( vlanId ) |
| 1746 | if setVlan: |
| 1747 | cmd += " --setVlan " + str( setVlan ) |
Jeremy Songster | 9385d41 | 2016-06-02 17:57:36 -0700 | [diff] [blame] | 1748 | if partial: |
| 1749 | cmd += " --partial" |
Jeremy Songster | c032f16 | 2016-08-04 17:14:49 -0700 | [diff] [blame] | 1750 | if encap: |
| 1751 | cmd += " --encapsulation " + str( encap ) |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1752 | |
| 1753 | # Check whether the user appended the port |
| 1754 | # or provided it as an input |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 1755 | |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1756 | if "/" in ingressDevice: |
| 1757 | cmd += " " + str( ingressDevice ) |
| 1758 | else: |
| 1759 | if not portIngress: |
| 1760 | main.log.error( "You must specify " + |
| 1761 | "the Ingress port" ) |
| 1762 | return main.FALSE |
| 1763 | |
| 1764 | cmd += " " +\ |
| 1765 | str( ingressDevice ) + "/" +\ |
| 1766 | str( portIngress ) |
| 1767 | |
| 1768 | if portEgressList is None: |
| 1769 | for egressDevice in egressDeviceList: |
| 1770 | if "/" in egressDevice: |
| 1771 | cmd += " " + str( egressDevice ) |
| 1772 | else: |
| 1773 | main.log.error( "You must specify " + |
| 1774 | "the egress port" ) |
| 1775 | # TODO: perhaps more meaningful return |
| 1776 | return main.FALSE |
| 1777 | else: |
| 1778 | if len( egressDeviceList ) == len( portEgressList ): |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 1779 | for egressDevice, portEgress in zip( egressDeviceList, |
| 1780 | portEgressList ): |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1781 | cmd += " " + \ |
| 1782 | str( egressDevice ) + "/" +\ |
| 1783 | str( portEgress ) |
kelvin-onlab | 3814381 | 2015-04-01 15:03:01 -0700 | [diff] [blame] | 1784 | else: |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 1785 | main.log.error( "Device list and port list does not " + |
| 1786 | "have the same length" ) |
kelvin-onlab | 3814381 | 2015-04-01 15:03:01 -0700 | [diff] [blame] | 1787 | return main.FALSE |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1788 | handle = self.sendline( cmd ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 1789 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1790 | assert "Command not found:" not in handle, handle |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1791 | # If error, return error message |
| 1792 | if re.search( "Error", handle ): |
| 1793 | main.log.error( "Error in adding singlepoint-to-multipoint " + |
| 1794 | "intent" ) |
shahshreya | c2f9707 | 2015-03-19 17:04:29 -0700 | [diff] [blame] | 1795 | return None |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1796 | else: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 1797 | match = re.search( 'id=0x([\da-f]+),', handle ) |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1798 | if match: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 1799 | return match.group()[ 3:-1 ] |
kelvin-onlab | b940821 | 2015-04-01 13:34:04 -0700 | [diff] [blame] | 1800 | else: |
| 1801 | main.log.error( "Error, intent ID not found" ) |
| 1802 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1803 | except AssertionError: |
| 1804 | main.log.exception( "" ) |
| 1805 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1806 | except TypeError: |
| 1807 | main.log.exception( self.name + ": Object not as expected" ) |
| 1808 | return None |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1809 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1810 | main.log.error( self.name + ": EOF exception found" ) |
| 1811 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1812 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1813 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1814 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1815 | main.cleanAndExit() |
shahshreya | d0c8043 | 2014-12-04 16:56:05 -0800 | [diff] [blame] | 1816 | |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1817 | def addMplsIntent( |
| 1818 | self, |
| 1819 | ingressDevice, |
| 1820 | egressDevice, |
Hari Krishna | 87a17f1 | 2015-04-13 17:42:23 -0700 | [diff] [blame] | 1821 | ingressPort="", |
| 1822 | egressPort="", |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1823 | ethType="", |
| 1824 | ethSrc="", |
| 1825 | ethDst="", |
| 1826 | bandwidth="", |
| 1827 | lambdaAlloc=False, |
| 1828 | ipProto="", |
| 1829 | ipSrc="", |
| 1830 | ipDst="", |
| 1831 | tcpSrc="", |
| 1832 | tcpDst="", |
Hari Krishna | 87a17f1 | 2015-04-13 17:42:23 -0700 | [diff] [blame] | 1833 | ingressLabel="", |
Hari Krishna | dfff667 | 2015-04-13 17:53:27 -0700 | [diff] [blame] | 1834 | egressLabel="", |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 1835 | priority="" ): |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1836 | """ |
| 1837 | Required: |
| 1838 | * ingressDevice: device id of ingress device |
| 1839 | * egressDevice: device id of egress device |
| 1840 | Optional: |
| 1841 | * ethType: specify ethType |
| 1842 | * ethSrc: specify ethSrc ( i.e. src mac addr ) |
| 1843 | * ethDst: specify ethDst ( i.e. dst mac addr ) |
| 1844 | * bandwidth: specify bandwidth capacity of link |
| 1845 | * lambdaAlloc: if True, intent will allocate lambda |
| 1846 | for the specified intent |
| 1847 | * ipProto: specify ip protocol |
| 1848 | * ipSrc: specify ip source address |
| 1849 | * ipDst: specify ip destination address |
| 1850 | * tcpSrc: specify tcp source port |
| 1851 | * tcpDst: specify tcp destination port |
| 1852 | * ingressLabel: Ingress MPLS label |
| 1853 | * egressLabel: Egress MPLS label |
| 1854 | Description: |
| 1855 | Adds MPLS intent by |
| 1856 | specifying device id's and optional fields |
| 1857 | Returns: |
| 1858 | A string of the intent id or None on error |
| 1859 | |
| 1860 | NOTE: This function may change depending on the |
| 1861 | options developers provide for MPLS |
| 1862 | intent via cli |
| 1863 | """ |
| 1864 | try: |
Jeremy Songster | ff55367 | 2016-05-12 17:06:23 -0700 | [diff] [blame] | 1865 | cmd = "add-mpls-intent" |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1866 | |
Jeremy Songster | ff55367 | 2016-05-12 17:06:23 -0700 | [diff] [blame] | 1867 | if ethType: |
| 1868 | cmd += " --ethType " + str( ethType ) |
| 1869 | if ethSrc: |
| 1870 | cmd += " --ethSrc " + str( ethSrc ) |
| 1871 | if ethDst: |
| 1872 | cmd += " --ethDst " + str( ethDst ) |
| 1873 | if bandwidth: |
| 1874 | cmd += " --bandwidth " + str( bandwidth ) |
| 1875 | if lambdaAlloc: |
| 1876 | cmd += " --lambda " |
| 1877 | if ipProto: |
| 1878 | cmd += " --ipProto " + str( ipProto ) |
| 1879 | if ipSrc: |
| 1880 | cmd += " --ipSrc " + str( ipSrc ) |
| 1881 | if ipDst: |
| 1882 | cmd += " --ipDst " + str( ipDst ) |
| 1883 | if tcpSrc: |
| 1884 | cmd += " --tcpSrc " + str( tcpSrc ) |
| 1885 | if tcpDst: |
| 1886 | cmd += " --tcpDst " + str( tcpDst ) |
| 1887 | if ingressLabel: |
| 1888 | cmd += " --ingressLabel " + str( ingressLabel ) |
| 1889 | if egressLabel: |
| 1890 | cmd += " --egressLabel " + str( egressLabel ) |
| 1891 | if priority: |
| 1892 | cmd += " --priority " + str( priority ) |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1893 | |
| 1894 | # Check whether the user appended the port |
| 1895 | # or provided it as an input |
| 1896 | if "/" in ingressDevice: |
| 1897 | cmd += " " + str( ingressDevice ) |
| 1898 | else: |
Hari Krishna | 87a17f1 | 2015-04-13 17:42:23 -0700 | [diff] [blame] | 1899 | if not ingressPort: |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1900 | main.log.error( "You must specify the ingress port" ) |
| 1901 | return None |
| 1902 | |
| 1903 | cmd += " " + \ |
| 1904 | str( ingressDevice ) + "/" +\ |
Hari Krishna | 87a17f1 | 2015-04-13 17:42:23 -0700 | [diff] [blame] | 1905 | str( ingressPort ) + " " |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1906 | |
| 1907 | if "/" in egressDevice: |
| 1908 | cmd += " " + str( egressDevice ) |
| 1909 | else: |
Hari Krishna | 87a17f1 | 2015-04-13 17:42:23 -0700 | [diff] [blame] | 1910 | if not egressPort: |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1911 | main.log.error( "You must specify the egress port" ) |
| 1912 | return None |
| 1913 | |
| 1914 | cmd += " " +\ |
| 1915 | str( egressDevice ) + "/" +\ |
Hari Krishna | 87a17f1 | 2015-04-13 17:42:23 -0700 | [diff] [blame] | 1916 | str( egressPort ) |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1917 | |
| 1918 | handle = self.sendline( cmd ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 1919 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1920 | assert "Command not found:" not in handle, handle |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1921 | # If error, return error message |
| 1922 | if re.search( "Error", handle ): |
| 1923 | main.log.error( "Error in adding mpls intent" ) |
| 1924 | return None |
| 1925 | else: |
| 1926 | # TODO: print out all the options in this message? |
| 1927 | main.log.info( "MPLS intent installed between " + |
| 1928 | str( ingressDevice ) + " and " + |
| 1929 | str( egressDevice ) ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 1930 | match = re.search( 'id=0x([\da-f]+),', handle ) |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1931 | if match: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 1932 | return match.group()[ 3:-1 ] |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1933 | else: |
| 1934 | main.log.error( "Error, intent ID not found" ) |
| 1935 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1936 | except AssertionError: |
| 1937 | main.log.exception( "" ) |
| 1938 | return None |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1939 | except TypeError: |
| 1940 | main.log.exception( self.name + ": Object not as expected" ) |
| 1941 | return None |
| 1942 | except pexpect.EOF: |
| 1943 | main.log.error( self.name + ": EOF exception found" ) |
| 1944 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1945 | main.cleanAndExit() |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1946 | except Exception: |
| 1947 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1948 | main.cleanAndExit() |
Hari Krishna | 9e23260 | 2015-04-13 17:29:08 -0700 | [diff] [blame] | 1949 | |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 1950 | def removeIntent( self, intentId, app='org.onosproject.cli', |
| 1951 | purge=False, sync=False ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1952 | """ |
shahshreya | 1c818fc | 2015-02-26 13:44:08 -0800 | [diff] [blame] | 1953 | Remove intent for specified application id and intent id |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 1954 | Optional args:- |
shahshreya | 1c818fc | 2015-02-26 13:44:08 -0800 | [diff] [blame] | 1955 | -s or --sync: Waits for the removal before returning |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 1956 | -p or --purge: Purge the intent from the store after removal |
| 1957 | |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1958 | Returns: |
Jon Hall | 6509dbf | 2016-06-21 17:01:17 -0700 | [diff] [blame] | 1959 | main.FALSE on error and |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1960 | cli output otherwise |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1961 | """ |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1962 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 1963 | cmdStr = "remove-intent" |
shahshreya | 1c818fc | 2015-02-26 13:44:08 -0800 | [diff] [blame] | 1964 | if purge: |
| 1965 | cmdStr += " -p" |
| 1966 | if sync: |
| 1967 | cmdStr += " -s" |
| 1968 | |
| 1969 | cmdStr += " " + app + " " + str( intentId ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 1970 | handle = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 1971 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1972 | assert "Command not found:" not in handle, handle |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1973 | if re.search( "Error", handle ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 1974 | main.log.error( "Error in removing intent" ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1975 | return main.FALSE |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1976 | else: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 1977 | # TODO: Should this be main.TRUE |
| 1978 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 1979 | except AssertionError: |
| 1980 | main.log.exception( "" ) |
| 1981 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1982 | except TypeError: |
| 1983 | main.log.exception( self.name + ": Object not as expected" ) |
| 1984 | return None |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1985 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 1986 | main.log.error( self.name + ": EOF exception found" ) |
| 1987 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1988 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 1989 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 1990 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 1991 | main.cleanAndExit() |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 1992 | |
YPZhang | febf730 | 2016-05-24 16:45:56 -0700 | [diff] [blame] | 1993 | def removeAllIntents( self, purge=False, sync=False, app='org.onosproject.cli', timeout=30 ): |
Jeremy | 42df2e7 | 2016-02-23 16:37:46 -0800 | [diff] [blame] | 1994 | """ |
| 1995 | Description: |
| 1996 | Remove all the intents |
| 1997 | Optional args:- |
| 1998 | -s or --sync: Waits for the removal before returning |
| 1999 | -p or --purge: Purge the intent from the store after removal |
| 2000 | Returns: |
| 2001 | Returns main.TRUE if all intents are removed, otherwise returns |
| 2002 | main.FALSE; Returns None for exception |
| 2003 | """ |
| 2004 | try: |
| 2005 | cmdStr = "remove-intent" |
| 2006 | if purge: |
| 2007 | cmdStr += " -p" |
| 2008 | if sync: |
| 2009 | cmdStr += " -s" |
| 2010 | |
| 2011 | cmdStr += " " + app |
YPZhang | febf730 | 2016-05-24 16:45:56 -0700 | [diff] [blame] | 2012 | handle = self.sendline( cmdStr, timeout=timeout ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 2013 | assert handle is not None, "Error in sendline" |
Jeremy | 42df2e7 | 2016-02-23 16:37:46 -0800 | [diff] [blame] | 2014 | assert "Command not found:" not in handle, handle |
| 2015 | if re.search( "Error", handle ): |
| 2016 | main.log.error( "Error in removing intent" ) |
| 2017 | return main.FALSE |
| 2018 | else: |
| 2019 | return main.TRUE |
| 2020 | except AssertionError: |
| 2021 | main.log.exception( "" ) |
| 2022 | return None |
| 2023 | except TypeError: |
| 2024 | main.log.exception( self.name + ": Object not as expected" ) |
| 2025 | return None |
| 2026 | except pexpect.EOF: |
| 2027 | main.log.error( self.name + ": EOF exception found" ) |
| 2028 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2029 | main.cleanAndExit() |
Jeremy | 42df2e7 | 2016-02-23 16:37:46 -0800 | [diff] [blame] | 2030 | except Exception: |
| 2031 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2032 | main.cleanAndExit() |
Jeremy | 42df2e7 | 2016-02-23 16:37:46 -0800 | [diff] [blame] | 2033 | |
Hari Krishna | acabd5a | 2015-07-01 17:10:19 -0700 | [diff] [blame] | 2034 | def purgeWithdrawnIntents( self ): |
Hari Krishna | 0ce0e15 | 2015-06-23 09:55:29 -0700 | [diff] [blame] | 2035 | """ |
| 2036 | Purges all WITHDRAWN Intents |
| 2037 | """ |
| 2038 | try: |
| 2039 | cmdStr = "purge-intents" |
| 2040 | handle = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 2041 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2042 | assert "Command not found:" not in handle, handle |
Hari Krishna | 0ce0e15 | 2015-06-23 09:55:29 -0700 | [diff] [blame] | 2043 | if re.search( "Error", handle ): |
| 2044 | main.log.error( "Error in purging intents" ) |
| 2045 | return main.FALSE |
| 2046 | else: |
| 2047 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2048 | except AssertionError: |
| 2049 | main.log.exception( "" ) |
| 2050 | return None |
Hari Krishna | 0ce0e15 | 2015-06-23 09:55:29 -0700 | [diff] [blame] | 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 ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2057 | main.cleanAndExit() |
Hari Krishna | 0ce0e15 | 2015-06-23 09:55:29 -0700 | [diff] [blame] | 2058 | except Exception: |
| 2059 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2060 | main.cleanAndExit() |
Hari Krishna | 0ce0e15 | 2015-06-23 09:55:29 -0700 | [diff] [blame] | 2061 | |
Devin Lim | e6fe3c4 | 2017-10-18 16:28:40 -0700 | [diff] [blame] | 2062 | def wipeout( self ): |
| 2063 | """ |
| 2064 | Wipe out the flows,intents,links,devices,hosts, and groups from the ONOS. |
| 2065 | """ |
| 2066 | try: |
| 2067 | cmdStr = "wipe-out please" |
| 2068 | handle = self.sendline( cmdStr, timeout=60 ) |
| 2069 | assert handle is not None, "Error in sendline" |
| 2070 | assert "Command not found:" not in handle, handle |
| 2071 | return main.TRUE |
| 2072 | except AssertionError: |
| 2073 | main.log.exception( "" ) |
| 2074 | return None |
| 2075 | except TypeError: |
| 2076 | main.log.exception( self.name + ": Object not as expected" ) |
| 2077 | return None |
| 2078 | except pexpect.EOF: |
| 2079 | main.log.error( self.name + ": EOF exception found" ) |
| 2080 | main.log.error( self.name + ": " + self.handle.before ) |
| 2081 | main.cleanAndExit() |
| 2082 | except Exception: |
| 2083 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2084 | main.cleanAndExit() |
| 2085 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2086 | def routes( self, jsonFormat=False ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2087 | """ |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2088 | NOTE: This method should be used after installing application: |
| 2089 | onos-app-sdnip |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 2090 | Optional: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2091 | * jsonFormat: enable output formatting in json |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 2092 | Description: |
| 2093 | Obtain all routes in the system |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2094 | """ |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 2095 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2096 | cmdStr = "routes" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2097 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2098 | cmdStr += " -j" |
| 2099 | handle = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 2100 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2101 | assert "Command not found:" not in handle, handle |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 2102 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2103 | except AssertionError: |
| 2104 | main.log.exception( "" ) |
| 2105 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2106 | except TypeError: |
| 2107 | main.log.exception( self.name + ": Object not as expected" ) |
| 2108 | return None |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 2109 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2110 | main.log.error( self.name + ": EOF exception found" ) |
| 2111 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2112 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2113 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2114 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2115 | main.cleanAndExit() |
pingping-lin | 8b306ac | 2014-11-17 18:13:51 -0800 | [diff] [blame] | 2116 | |
pingping-lin | 54b0337 | 2015-08-13 14:43:10 -0700 | [diff] [blame] | 2117 | def ipv4RouteNumber( self ): |
| 2118 | """ |
| 2119 | NOTE: This method should be used after installing application: |
| 2120 | onos-app-sdnip |
| 2121 | Description: |
| 2122 | Obtain the total IPv4 routes number in the system |
| 2123 | """ |
| 2124 | try: |
Pratik Parab | 5796357 | 2017-05-09 11:37:54 -0700 | [diff] [blame] | 2125 | cmdStr = "routes -j" |
pingping-lin | 54b0337 | 2015-08-13 14:43:10 -0700 | [diff] [blame] | 2126 | handle = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 2127 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2128 | assert "Command not found:" not in handle, handle |
pingping-lin | 54b0337 | 2015-08-13 14:43:10 -0700 | [diff] [blame] | 2129 | jsonResult = json.loads( handle ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2130 | return len( jsonResult[ 'routes4' ] ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2131 | except AssertionError: |
| 2132 | main.log.exception( "" ) |
| 2133 | return None |
| 2134 | except ( TypeError, ValueError ): |
| 2135 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, handle ) ) |
pingping-lin | 54b0337 | 2015-08-13 14:43:10 -0700 | [diff] [blame] | 2136 | return None |
| 2137 | except pexpect.EOF: |
| 2138 | main.log.error( self.name + ": EOF exception found" ) |
| 2139 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2140 | main.cleanAndExit() |
pingping-lin | 54b0337 | 2015-08-13 14:43:10 -0700 | [diff] [blame] | 2141 | except Exception: |
| 2142 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2143 | main.cleanAndExit() |
pingping-lin | 54b0337 | 2015-08-13 14:43:10 -0700 | [diff] [blame] | 2144 | |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2145 | # =============Function to check Bandwidth allocation======== |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 2146 | def allocations( self, jsonFormat = True, dollarSign = True ): |
Shreya Chowdhary | 6fbb96c | 2017-05-02 16:20:19 -0700 | [diff] [blame] | 2147 | """ |
| 2148 | Description: |
| 2149 | Obtain Bandwidth Allocation Information from ONOS cli. |
| 2150 | """ |
| 2151 | try: |
| 2152 | cmdStr = "allocations" |
| 2153 | if jsonFormat: |
| 2154 | cmdStr += " -j" |
| 2155 | handle = self.sendline( cmdStr, timeout=300, dollarSign=True ) |
| 2156 | assert handle is not None, "Error in sendline" |
| 2157 | assert "Command not found:" not in handle, handle |
| 2158 | return handle |
| 2159 | except AssertionError: |
| 2160 | main.log.exception( "" ) |
| 2161 | return None |
| 2162 | except ( TypeError, ValueError ): |
| 2163 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, handle ) ) |
| 2164 | return None |
| 2165 | except pexpect.EOF: |
| 2166 | main.log.error( self.name + ": EOF exception found" ) |
| 2167 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2168 | main.cleanAndExit() |
Shreya Chowdhary | 6fbb96c | 2017-05-02 16:20:19 -0700 | [diff] [blame] | 2169 | except Exception: |
| 2170 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2171 | main.cleanAndExit() |
Shreya Chowdhary | 6fbb96c | 2017-05-02 16:20:19 -0700 | [diff] [blame] | 2172 | |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2173 | def intents( self, jsonFormat = True, summary = False, **intentargs ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2174 | """ |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 2175 | Description: |
Jon Hall | ff566d5 | 2016-01-15 14:45:36 -0800 | [diff] [blame] | 2176 | Obtain intents from the ONOS cli. |
| 2177 | Optional: |
| 2178 | * jsonFormat: Enable output formatting in json, default to True |
| 2179 | * summary: Whether only output the intent summary, defaults to False |
| 2180 | * type: Only output a certain type of intent. This options is valid |
| 2181 | only when jsonFormat is True and summary is True. |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2182 | """ |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 2183 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2184 | cmdStr = "intents" |
pingping-lin | 8244a3b | 2015-09-16 13:36:56 -0700 | [diff] [blame] | 2185 | if summary: |
| 2186 | cmdStr += " -s" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2187 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2188 | cmdStr += " -j" |
Shreya Chowdhary | 6fbb96c | 2017-05-02 16:20:19 -0700 | [diff] [blame] | 2189 | handle = self.sendline( cmdStr, timeout=300 ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 2190 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2191 | assert "Command not found:" not in handle, handle |
pingping-lin | 8244a3b | 2015-09-16 13:36:56 -0700 | [diff] [blame] | 2192 | args = utilities.parse_args( [ "TYPE" ], **intentargs ) |
acsmars | 5b5fbaf | 2015-09-18 10:38:20 -0700 | [diff] [blame] | 2193 | if "TYPE" in args.keys(): |
Jon Hall | ff566d5 | 2016-01-15 14:45:36 -0800 | [diff] [blame] | 2194 | intentType = args[ "TYPE" ] |
acsmars | 5b5fbaf | 2015-09-18 10:38:20 -0700 | [diff] [blame] | 2195 | else: |
Jon Hall | ff566d5 | 2016-01-15 14:45:36 -0800 | [diff] [blame] | 2196 | intentType = "" |
| 2197 | # IF we want the summary of a specific intent type |
| 2198 | if jsonFormat and summary and ( intentType != "" ): |
pingping-lin | 8244a3b | 2015-09-16 13:36:56 -0700 | [diff] [blame] | 2199 | jsonResult = json.loads( handle ) |
Jon Hall | ff566d5 | 2016-01-15 14:45:36 -0800 | [diff] [blame] | 2200 | if intentType in jsonResult.keys(): |
| 2201 | return jsonResult[ intentType ] |
pingping-lin | 8244a3b | 2015-09-16 13:36:56 -0700 | [diff] [blame] | 2202 | else: |
Jon Hall | ff566d5 | 2016-01-15 14:45:36 -0800 | [diff] [blame] | 2203 | main.log.error( "unknown TYPE, returning all types of intents" ) |
pingping-lin | 8244a3b | 2015-09-16 13:36:56 -0700 | [diff] [blame] | 2204 | return handle |
| 2205 | else: |
| 2206 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2207 | except AssertionError: |
| 2208 | main.log.exception( "" ) |
| 2209 | return None |
| 2210 | except ( TypeError, ValueError ): |
| 2211 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, handle ) ) |
pingping-lin | 54b0337 | 2015-08-13 14:43:10 -0700 | [diff] [blame] | 2212 | return None |
| 2213 | except pexpect.EOF: |
| 2214 | main.log.error( self.name + ": EOF exception found" ) |
| 2215 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2216 | main.cleanAndExit() |
pingping-lin | 54b0337 | 2015-08-13 14:43:10 -0700 | [diff] [blame] | 2217 | except Exception: |
| 2218 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2219 | main.cleanAndExit() |
pingping-lin | 54b0337 | 2015-08-13 14:43:10 -0700 | [diff] [blame] | 2220 | |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2221 | def getIntentState( self, intentsId, intentsJson=None ): |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 2222 | """ |
You Wang | fdcbfc4 | 2016-05-16 12:16:53 -0700 | [diff] [blame] | 2223 | Description: |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 2224 | Gets intent state. Accepts a single intent ID (string type) or a |
You Wang | fdcbfc4 | 2016-05-16 12:16:53 -0700 | [diff] [blame] | 2225 | list of intent IDs. |
| 2226 | Parameters: |
| 2227 | intentsId: intent ID, both string type and list type are acceptable |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 2228 | intentsJson: parsed json object from the onos:intents api |
You Wang | fdcbfc4 | 2016-05-16 12:16:53 -0700 | [diff] [blame] | 2229 | Returns: |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 2230 | Returns the state (string type) of the ID if a single intent ID is |
You Wang | fdcbfc4 | 2016-05-16 12:16:53 -0700 | [diff] [blame] | 2231 | accepted. |
| 2232 | Returns a list of dictionaries if a list of intent IDs is accepted, |
| 2233 | and each dictionary maps 'id' to the Intent ID and 'state' to |
| 2234 | corresponding intent state. |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 2235 | """ |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 2236 | |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 2237 | try: |
| 2238 | state = "State is Undefined" |
| 2239 | if not intentsJson: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2240 | rawJson = self.intents() |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 2241 | else: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2242 | rawJson = intentsJson |
| 2243 | parsedIntentsJson = json.loads( rawJson ) |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2244 | if isinstance( intentsId, types.StringType ): |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2245 | for intent in parsedIntentsJson: |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 2246 | if intentsId == intent[ 'id' ]: |
| 2247 | state = intent[ 'state' ] |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 2248 | return state |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2249 | main.log.info( "Cannot find intent ID" + str( intentsId ) + |
Jon Hall | 5315808 | 2017-05-18 11:17:00 -0700 | [diff] [blame] | 2250 | " in the list" ) |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 2251 | return state |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2252 | elif isinstance( intentsId, types.ListType ): |
kelvin-onlab | 07dbd01 | 2015-03-04 16:29:39 -0800 | [diff] [blame] | 2253 | dictList = [] |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 2254 | for i in xrange( len( intentsId ) ): |
kelvin-onlab | 07dbd01 | 2015-03-04 16:29:39 -0800 | [diff] [blame] | 2255 | stateDict = {} |
Jon Hall | 5315808 | 2017-05-18 11:17:00 -0700 | [diff] [blame] | 2256 | for intent in parsedIntentsJson: |
| 2257 | if intentsId[ i ] == intent[ 'id' ]: |
| 2258 | stateDict[ 'state' ] = intent[ 'state' ] |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 2259 | stateDict[ 'id' ] = intentsId[ i ] |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2260 | dictList.append( stateDict ) |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 2261 | break |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 2262 | if len( intentsId ) != len( dictList ): |
Jon Hall | 5315808 | 2017-05-18 11:17:00 -0700 | [diff] [blame] | 2263 | main.log.warn( "Could not find all intents in ONOS output" ) |
| 2264 | main.log.debug( "expected ids: {} \n ONOS intents: {}".format( intentsId, parsedIntentsJson ) ) |
kelvin-onlab | 07dbd01 | 2015-03-04 16:29:39 -0800 | [diff] [blame] | 2265 | return dictList |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 2266 | else: |
Jon Hall | 5315808 | 2017-05-18 11:17:00 -0700 | [diff] [blame] | 2267 | main.log.info( "Invalid type for intentsId argument" ) |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 2268 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2269 | except ( TypeError, ValueError ): |
| 2270 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawJson ) ) |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 2271 | return None |
| 2272 | except pexpect.EOF: |
| 2273 | main.log.error( self.name + ": EOF exception found" ) |
| 2274 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2275 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2276 | except Exception: |
kelvin-onlab | 54400a9 | 2015-02-26 18:05:51 -0800 | [diff] [blame] | 2277 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2278 | main.cleanAndExit() |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 2279 | |
Jon Hall | f539eb9 | 2017-05-22 17:18:42 -0700 | [diff] [blame] | 2280 | def checkIntentState( self, intentsId, expectedState='INSTALLED' ): |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 2281 | """ |
| 2282 | Description: |
| 2283 | Check intents state |
| 2284 | Required: |
| 2285 | intentsId - List of intents ID to be checked |
| 2286 | Optional: |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 2287 | expectedState - Check the expected state(s) of each intents |
kelvin-onlab | f512e94 | 2015-06-08 19:42:59 -0700 | [diff] [blame] | 2288 | state in the list. |
| 2289 | *NOTE: You can pass in a list of expected state, |
| 2290 | Eg: expectedState = [ 'INSTALLED' , 'INSTALLING' ] |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 2291 | Return: |
Jon Hall | 5315808 | 2017-05-18 11:17:00 -0700 | [diff] [blame] | 2292 | Returns main.TRUE only if all intent are the same as expected states, |
| 2293 | otherwise returns main.FALSE. |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 2294 | """ |
| 2295 | try: |
kelvin-onlab | f512e94 | 2015-06-08 19:42:59 -0700 | [diff] [blame] | 2296 | returnValue = main.TRUE |
Jon Hall | f539eb9 | 2017-05-22 17:18:42 -0700 | [diff] [blame] | 2297 | # Generating a dictionary: intent id as a key and state as value |
Devin Lim | 752dd7b | 2017-06-27 14:40:03 -0700 | [diff] [blame] | 2298 | |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2299 | # intentsDict = self.getIntentState( intentsId ) |
Devin Lim | 752dd7b | 2017-06-27 14:40:03 -0700 | [diff] [blame] | 2300 | intentsDict = [] |
| 2301 | for intent in json.loads( self.intents() ): |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2302 | if isinstance( intentsId, types.StringType ) \ |
| 2303 | and intent.get( 'id' ) == intentsId: |
| 2304 | intentsDict.append( intent ) |
| 2305 | elif isinstance( intentsId, types.ListType ) \ |
Devin Lim | 752dd7b | 2017-06-27 14:40:03 -0700 | [diff] [blame] | 2306 | and any( intent.get( 'id' ) == ids for ids in intentsId ): |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2307 | intentsDict.append( intent ) |
Devin Lim | 752dd7b | 2017-06-27 14:40:03 -0700 | [diff] [blame] | 2308 | |
| 2309 | if not intentsDict: |
Jon Hall | ae04e62 | 2016-01-27 10:38:05 -0800 | [diff] [blame] | 2310 | main.log.info( self.name + ": There is something wrong " + |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 2311 | "getting intents state" ) |
| 2312 | return main.FALSE |
kelvin-onlab | f512e94 | 2015-06-08 19:42:59 -0700 | [diff] [blame] | 2313 | |
| 2314 | if isinstance( expectedState, types.StringType ): |
| 2315 | for intents in intentsDict: |
| 2316 | if intents.get( 'state' ) != expectedState: |
kelvin-onlab | a297c4d | 2015-06-01 13:53:55 -0700 | [diff] [blame] | 2317 | main.log.debug( self.name + " : Intent ID - " + |
| 2318 | intents.get( 'id' ) + |
kelvin-onlab | f512e94 | 2015-06-08 19:42:59 -0700 | [diff] [blame] | 2319 | " actual state = " + |
| 2320 | intents.get( 'state' ) |
| 2321 | + " does not equal expected state = " |
| 2322 | + expectedState ) |
kelvin-onlab | a297c4d | 2015-06-01 13:53:55 -0700 | [diff] [blame] | 2323 | returnValue = main.FALSE |
kelvin-onlab | f512e94 | 2015-06-08 19:42:59 -0700 | [diff] [blame] | 2324 | elif isinstance( expectedState, types.ListType ): |
| 2325 | for intents in intentsDict: |
| 2326 | if not any( state == intents.get( 'state' ) for state in |
| 2327 | expectedState ): |
| 2328 | main.log.debug( self.name + " : Intent ID - " + |
| 2329 | intents.get( 'id' ) + |
| 2330 | " actual state = " + |
| 2331 | intents.get( 'state' ) + |
| 2332 | " does not equal expected states = " |
| 2333 | + str( expectedState ) ) |
| 2334 | returnValue = main.FALSE |
| 2335 | |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 2336 | if returnValue == main.TRUE: |
| 2337 | main.log.info( self.name + ": All " + |
| 2338 | str( len( intentsDict ) ) + |
kelvin-onlab | f512e94 | 2015-06-08 19:42:59 -0700 | [diff] [blame] | 2339 | " intents are in " + str( expectedState ) + |
| 2340 | " state" ) |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 2341 | return returnValue |
| 2342 | except TypeError: |
| 2343 | main.log.exception( self.name + ": Object not as expected" ) |
| 2344 | return None |
| 2345 | except pexpect.EOF: |
| 2346 | main.log.error( self.name + ": EOF exception found" ) |
| 2347 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2348 | main.cleanAndExit() |
kelvin-onlab | c2dcd3f | 2015-04-09 16:40:02 -0700 | [diff] [blame] | 2349 | except Exception: |
| 2350 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2351 | main.cleanAndExit() |
andrewonlab | e674534 | 2014-10-17 14:29:13 -0400 | [diff] [blame] | 2352 | |
Jon Hall | f539eb9 | 2017-05-22 17:18:42 -0700 | [diff] [blame] | 2353 | def compareBandwidthAllocations( self, expectedAllocations ): |
| 2354 | """ |
| 2355 | Description: |
| 2356 | Compare the allocated bandwidth with the given allocations |
| 2357 | Required: |
| 2358 | expectedAllocations - The expected ONOS output of the allocations command |
| 2359 | Return: |
| 2360 | Returns main.TRUE only if all intent are the same as expected states, |
| 2361 | otherwise returns main.FALSE. |
| 2362 | """ |
| 2363 | # FIXME: Convert these string comparisons to object comparisons |
| 2364 | try: |
| 2365 | returnValue = main.TRUE |
| 2366 | bandwidthFailed = False |
| 2367 | rawAlloc = self.allocations() |
| 2368 | expectedFormat = StringIO( expectedAllocations ) |
| 2369 | ONOSOutput = StringIO( rawAlloc ) |
| 2370 | main.log.debug( "ONOSOutput: {}\nexpected output: {}".format( str( ONOSOutput ), |
| 2371 | str( expectedFormat ) ) ) |
| 2372 | |
| 2373 | for actual, expected in izip( ONOSOutput, expectedFormat ): |
| 2374 | actual = actual.rstrip() |
| 2375 | expected = expected.rstrip() |
| 2376 | main.log.debug( "Expect: {}\nactual: {}".format( expected, actual ) ) |
| 2377 | if actual != expected and 'allocated' in actual and 'allocated' in expected: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2378 | marker1 = actual.find( 'allocated' ) |
| 2379 | m1 = actual[ :marker1 ] |
| 2380 | marker2 = expected.find( 'allocated' ) |
| 2381 | m2 = expected[ :marker2 ] |
Jon Hall | f539eb9 | 2017-05-22 17:18:42 -0700 | [diff] [blame] | 2382 | if m1 != m2: |
| 2383 | bandwidthFailed = True |
| 2384 | elif actual != expected and 'allocated' not in actual and 'allocated' not in expected: |
| 2385 | bandwidthFailed = True |
| 2386 | expectedFormat.close() |
| 2387 | ONOSOutput.close() |
| 2388 | |
| 2389 | if bandwidthFailed: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2390 | main.log.error( "Bandwidth not allocated correctly using Intents!!" ) |
Jon Hall | f539eb9 | 2017-05-22 17:18:42 -0700 | [diff] [blame] | 2391 | returnValue = main.FALSE |
| 2392 | return returnValue |
| 2393 | except TypeError: |
| 2394 | main.log.exception( self.name + ": Object not as expected" ) |
| 2395 | return None |
| 2396 | except pexpect.EOF: |
| 2397 | main.log.error( self.name + ": EOF exception found" ) |
| 2398 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2399 | main.cleanAndExit() |
Jon Hall | f539eb9 | 2017-05-22 17:18:42 -0700 | [diff] [blame] | 2400 | except Exception: |
| 2401 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2402 | main.cleanAndExit() |
Jon Hall | f539eb9 | 2017-05-22 17:18:42 -0700 | [diff] [blame] | 2403 | |
You Wang | 66518af | 2016-05-16 15:32:59 -0700 | [diff] [blame] | 2404 | def compareIntent( self, intentDict ): |
| 2405 | """ |
| 2406 | Description: |
| 2407 | Compare the intent ids and states provided in the argument with all intents in ONOS |
| 2408 | Return: |
| 2409 | Returns main.TRUE if the two sets of intents match exactly, otherwise main.FALSE |
| 2410 | Arguments: |
| 2411 | intentDict: a dictionary which maps intent ids to intent states |
| 2412 | """ |
| 2413 | try: |
| 2414 | intentsRaw = self.intents() |
| 2415 | intentsJson = json.loads( intentsRaw ) |
| 2416 | intentDictONOS = {} |
| 2417 | for intent in intentsJson: |
| 2418 | intentDictONOS[ intent[ 'id' ] ] = intent[ 'state' ] |
You Wang | 58d0445 | 2016-09-21 15:13:05 -0700 | [diff] [blame] | 2419 | returnValue = main.TRUE |
You Wang | 66518af | 2016-05-16 15:32:59 -0700 | [diff] [blame] | 2420 | if len( intentDict ) != len( intentDictONOS ): |
You Wang | 58d0445 | 2016-09-21 15:13:05 -0700 | [diff] [blame] | 2421 | main.log.warn( self.name + ": expected intent count does not match that in ONOS, " + |
You Wang | 66518af | 2016-05-16 15:32:59 -0700 | [diff] [blame] | 2422 | str( len( intentDict ) ) + " expected and " + |
| 2423 | str( len( intentDictONOS ) ) + " actual" ) |
You Wang | 58d0445 | 2016-09-21 15:13:05 -0700 | [diff] [blame] | 2424 | returnValue = main.FALSE |
You Wang | 66518af | 2016-05-16 15:32:59 -0700 | [diff] [blame] | 2425 | for intentID in intentDict.keys(): |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 2426 | if intentID not in intentDictONOS.keys(): |
You Wang | 66518af | 2016-05-16 15:32:59 -0700 | [diff] [blame] | 2427 | main.log.debug( self.name + ": intent ID - " + intentID + " is not in ONOS" ) |
| 2428 | returnValue = main.FALSE |
You Wang | 58d0445 | 2016-09-21 15:13:05 -0700 | [diff] [blame] | 2429 | else: |
| 2430 | if intentDict[ intentID ] != intentDictONOS[ intentID ]: |
| 2431 | main.log.debug( self.name + ": intent ID - " + intentID + |
| 2432 | " expected state is " + intentDict[ intentID ] + |
| 2433 | " but actual state is " + intentDictONOS[ intentID ] ) |
| 2434 | returnValue = main.FALSE |
| 2435 | intentDictONOS.pop( intentID ) |
| 2436 | if len( intentDictONOS ) > 0: |
| 2437 | returnValue = main.FALSE |
| 2438 | for intentID in intentDictONOS.keys(): |
| 2439 | main.log.debug( self.name + ": find extra intent in ONOS: intent ID " + intentID ) |
You Wang | 66518af | 2016-05-16 15:32:59 -0700 | [diff] [blame] | 2440 | if returnValue == main.TRUE: |
| 2441 | main.log.info( self.name + ": all intent IDs and states match that in ONOS" ) |
| 2442 | return returnValue |
You Wang | 1be9a51 | 2016-05-26 16:54:17 -0700 | [diff] [blame] | 2443 | except KeyError: |
| 2444 | main.log.exception( self.name + ": KeyError exception found" ) |
| 2445 | return main.ERROR |
You Wang | 66518af | 2016-05-16 15:32:59 -0700 | [diff] [blame] | 2446 | except ( TypeError, ValueError ): |
| 2447 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, intentsRaw ) ) |
You Wang | 8556037 | 2016-05-18 10:44:33 -0700 | [diff] [blame] | 2448 | return main.ERROR |
You Wang | 66518af | 2016-05-16 15:32:59 -0700 | [diff] [blame] | 2449 | except pexpect.EOF: |
| 2450 | main.log.error( self.name + ": EOF exception found" ) |
| 2451 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2452 | main.cleanAndExit() |
You Wang | 66518af | 2016-05-16 15:32:59 -0700 | [diff] [blame] | 2453 | except Exception: |
| 2454 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2455 | main.cleanAndExit() |
You Wang | 66518af | 2016-05-16 15:32:59 -0700 | [diff] [blame] | 2456 | |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2457 | def checkIntentSummary( self, timeout=60, noExit=True ): |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2458 | """ |
| 2459 | Description: |
| 2460 | Check the number of installed intents. |
| 2461 | Optional: |
| 2462 | timeout - the timeout for pexcept |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2463 | noExit - If noExit, TestON will not exit if any except. |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2464 | Return: |
| 2465 | Returns main.TRUE only if the number of all installed intents are the same as total intents number |
| 2466 | , otherwise, returns main.FALSE. |
| 2467 | """ |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 2468 | |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2469 | try: |
| 2470 | cmd = "intents -s -j" |
| 2471 | |
| 2472 | # Check response if something wrong |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2473 | response = self.sendline( cmd, timeout=timeout, noExit=noExit ) |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 2474 | if response is None: |
YPZhang | 0584d43 | 2016-06-21 15:20:13 -0700 | [diff] [blame] | 2475 | return main.FALSE |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2476 | response = json.loads( response ) |
| 2477 | |
| 2478 | # get total and installed number, see if they are match |
| 2479 | allState = response.get( 'all' ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2480 | if allState.get( 'total' ) == allState.get( 'installed' ): |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 2481 | main.log.info( 'Total Intents: {} Installed Intents: {}'.format( |
| 2482 | allState.get( 'total' ), allState.get( 'installed' ) ) ) |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2483 | return main.TRUE |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 2484 | main.log.info( 'Verified Intents failed Expected intents: {} installed intents: {}'.format( |
| 2485 | allState.get( 'total' ), allState.get( 'installed' ) ) ) |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2486 | return main.FALSE |
| 2487 | |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2488 | except ( TypeError, ValueError ): |
| 2489 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, response ) ) |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2490 | return None |
| 2491 | except pexpect.EOF: |
| 2492 | main.log.error( self.name + ": EOF exception found" ) |
| 2493 | main.log.error( self.name + ": " + self.handle.before ) |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2494 | if noExit: |
| 2495 | return main.FALSE |
| 2496 | else: |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2497 | main.cleanAndExit() |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 2498 | except pexpect.TIMEOUT: |
| 2499 | main.log.error( self.name + ": ONOS timeout" ) |
| 2500 | return None |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2501 | except Exception: |
| 2502 | main.log.exception( self.name + ": Uncaught exception!" ) |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2503 | if noExit: |
| 2504 | return main.FALSE |
| 2505 | else: |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2506 | main.cleanAndExit() |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2507 | |
Jeremy Songster | 306ed7a | 2016-07-19 10:59:07 -0700 | [diff] [blame] | 2508 | def flows( self, state="", jsonFormat=True, timeout=60, noExit=False, noCore=False ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2509 | """ |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 2510 | Optional: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2511 | * jsonFormat: enable output formatting in json |
Jeremy Songster | 306ed7a | 2016-07-19 10:59:07 -0700 | [diff] [blame] | 2512 | * noCore: suppress core flows |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 2513 | Description: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2514 | Obtain flows currently installed |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2515 | """ |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 2516 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2517 | cmdStr = "flows" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2518 | if jsonFormat: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2519 | cmdStr += " -j " |
Jeremy Songster | 306ed7a | 2016-07-19 10:59:07 -0700 | [diff] [blame] | 2520 | if noCore: |
| 2521 | cmdStr += " -n " |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2522 | cmdStr += state |
YPZhang | ebf9eb5 | 2016-05-12 15:20:24 -0700 | [diff] [blame] | 2523 | handle = self.sendline( cmdStr, timeout=timeout, noExit=noExit ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 2524 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2525 | assert "Command not found:" not in handle, handle |
| 2526 | if re.search( "Error:", handle ): |
| 2527 | main.log.error( self.name + ": flows() response: " + |
| 2528 | str( handle ) ) |
| 2529 | return handle |
| 2530 | except AssertionError: |
| 2531 | main.log.exception( "" ) |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2532 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2533 | except TypeError: |
| 2534 | main.log.exception( self.name + ": Object not as expected" ) |
| 2535 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2536 | except pexpect.TIMEOUT: |
| 2537 | main.log.error( self.name + ": ONOS timeout" ) |
| 2538 | return None |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 2539 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2540 | main.log.error( self.name + ": EOF exception found" ) |
| 2541 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2542 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2543 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2544 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2545 | main.cleanAndExit() |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 2546 | |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2547 | def checkFlowCount( self, min=0, timeout=60 ): |
Flavio Castro | a1286fe | 2016-07-25 14:48:51 -0700 | [diff] [blame] | 2548 | count = self.getTotalFlowsNum( timeout=timeout ) |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 2549 | count = int( count ) if count else 0 |
| 2550 | return count if ( count > min ) else False |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2551 | |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 2552 | def checkFlowsState( self, isPENDING=True, timeout=60, noExit=False ): |
kelvin-onlab | 4df89f2 | 2015-04-13 18:10:23 -0700 | [diff] [blame] | 2553 | """ |
| 2554 | Description: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2555 | Check the if all the current flows are in ADDED state |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2556 | We check PENDING_ADD, PENDING_REMOVE, REMOVED, and FAILED flows, |
| 2557 | if the count of those states is 0, which means all current flows |
| 2558 | are in ADDED state, and return main.TRUE otherwise return main.FALSE |
pingping-lin | bab7f8a | 2015-09-21 17:33:36 -0700 | [diff] [blame] | 2559 | Optional: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2560 | * isPENDING: whether the PENDING_ADD is also a correct status |
kelvin-onlab | 4df89f2 | 2015-04-13 18:10:23 -0700 | [diff] [blame] | 2561 | Return: |
| 2562 | returnValue - Returns main.TRUE only if all flows are in |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2563 | ADDED state or PENDING_ADD if the isPENDING |
pingping-lin | bab7f8a | 2015-09-21 17:33:36 -0700 | [diff] [blame] | 2564 | parameter is set true, return main.FALSE otherwise. |
kelvin-onlab | 4df89f2 | 2015-04-13 18:10:23 -0700 | [diff] [blame] | 2565 | """ |
| 2566 | try: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2567 | states = [ "PENDING_ADD", "PENDING_REMOVE", "REMOVED", "FAILED" ] |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2568 | checkedStates = [] |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2569 | statesCount = [ 0, 0, 0, 0 ] |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2570 | for s in states: |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 2571 | rawFlows = self.flows( state=s, timeout = timeout ) |
YPZhang | 240842b | 2016-05-17 12:00:50 -0700 | [diff] [blame] | 2572 | if rawFlows: |
| 2573 | # if we didn't get flows or flows function return None, we should return |
| 2574 | # main.Flase |
| 2575 | checkedStates.append( json.loads( rawFlows ) ) |
| 2576 | else: |
| 2577 | return main.FALSE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2578 | for i in range( len( states ) ): |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2579 | for c in checkedStates[ i ]: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2580 | try: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2581 | statesCount[ i ] += int( c.get( "flowCount" ) ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2582 | except TypeError: |
| 2583 | main.log.exception( "Json object not as expected" ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2584 | main.log.info( states[ i ] + " flows: " + str( statesCount[ i ] ) ) |
kelvin-onlab | f2ec6e0 | 2015-05-27 14:15:28 -0700 | [diff] [blame] | 2585 | |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2586 | # We want to count PENDING_ADD if isPENDING is true |
| 2587 | if isPENDING: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2588 | if statesCount[ 1 ] + statesCount[ 2 ] + statesCount[ 3 ] > 0: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2589 | return main.FALSE |
pingping-lin | bab7f8a | 2015-09-21 17:33:36 -0700 | [diff] [blame] | 2590 | else: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2591 | if statesCount[ 0 ] + statesCount[ 1 ] + statesCount[ 2 ] + statesCount[ 3 ] > 0: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2592 | return main.FALSE |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2593 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2594 | except ( TypeError, ValueError ): |
| 2595 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawFlows ) ) |
kelvin-onlab | 4df89f2 | 2015-04-13 18:10:23 -0700 | [diff] [blame] | 2596 | return None |
Jeremy Songster | 9385d41 | 2016-06-02 17:57:36 -0700 | [diff] [blame] | 2597 | |
YPZhang | 240842b | 2016-05-17 12:00:50 -0700 | [diff] [blame] | 2598 | except AssertionError: |
| 2599 | main.log.exception( "" ) |
| 2600 | return None |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 2601 | except pexpect.TIMEOUT: |
| 2602 | main.log.error( self.name + ": ONOS timeout" ) |
| 2603 | return None |
kelvin-onlab | 4df89f2 | 2015-04-13 18:10:23 -0700 | [diff] [blame] | 2604 | except pexpect.EOF: |
| 2605 | main.log.error( self.name + ": EOF exception found" ) |
| 2606 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2607 | main.cleanAndExit() |
kelvin-onlab | 4df89f2 | 2015-04-13 18:10:23 -0700 | [diff] [blame] | 2608 | except Exception: |
| 2609 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2610 | main.cleanAndExit() |
kelvin-onlab | 4df89f2 | 2015-04-13 18:10:23 -0700 | [diff] [blame] | 2611 | |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2612 | def pushTestIntents( self, ingress, egress, batchSize, offset="", |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 2613 | options="", timeout=10, background = False, noExit=False, getResponse=False ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2614 | """ |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 2615 | Description: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2616 | Push a number of intents in a batch format to |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 2617 | a specific point-to-point intent definition |
| 2618 | Required: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2619 | * ingress: specify source dpid |
| 2620 | * egress: specify destination dpid |
| 2621 | * batchSize: specify number of intents to push |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 2622 | Optional: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2623 | * offset: the keyOffset is where the next batch of intents |
| 2624 | will be installed |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 2625 | * noExit: If set to True, TestON will not exit if any error when issus command |
| 2626 | * getResponse: If set to True, function will return ONOS response. |
| 2627 | |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2628 | Returns: If failed to push test intents, it will returen None, |
| 2629 | if successful, return true. |
| 2630 | Timeout expection will return None, |
| 2631 | TypeError will return false |
| 2632 | other expections will exit() |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2633 | """ |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 2634 | try: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2635 | if background: |
| 2636 | back = "&" |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 2637 | else: |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2638 | back = "" |
| 2639 | cmd = "push-test-intents {} {} {} {} {} {}".format( options, |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2640 | ingress, |
| 2641 | egress, |
| 2642 | batchSize, |
| 2643 | offset, |
| 2644 | back ) |
YPZhang | ebf9eb5 | 2016-05-12 15:20:24 -0700 | [diff] [blame] | 2645 | response = self.sendline( cmd, timeout=timeout, noExit=noExit ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 2646 | assert response is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2647 | assert "Command not found:" not in response, response |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2648 | main.log.info( response ) |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 2649 | if getResponse: |
| 2650 | return response |
| 2651 | |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2652 | # TODO: We should handle if there is failure in installation |
| 2653 | return main.TRUE |
| 2654 | |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2655 | except AssertionError: |
| 2656 | main.log.exception( "" ) |
| 2657 | return None |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2658 | except pexpect.TIMEOUT: |
| 2659 | main.log.error( self.name + ": ONOS timeout" ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2660 | return None |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 2661 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2662 | main.log.error( self.name + ": EOF exception found" ) |
| 2663 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2664 | main.cleanAndExit() |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 2665 | except TypeError: |
| 2666 | main.log.exception( self.name + ": Object not as expected" ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2667 | return None |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2668 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2669 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2670 | main.cleanAndExit() |
andrewonlab | 87852b0 | 2014-11-19 18:44:19 -0500 | [diff] [blame] | 2671 | |
YPZhang | ebf9eb5 | 2016-05-12 15:20:24 -0700 | [diff] [blame] | 2672 | def getTotalFlowsNum( self, timeout=60, noExit=False ): |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2673 | """ |
| 2674 | Description: |
YPZhang | f6f14a0 | 2016-01-28 15:17:31 -0800 | [diff] [blame] | 2675 | Get the number of ADDED flows. |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2676 | Return: |
YPZhang | f6f14a0 | 2016-01-28 15:17:31 -0800 | [diff] [blame] | 2677 | The number of ADDED flows |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2678 | Or return None if any exceptions |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2679 | """ |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 2680 | |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2681 | try: |
YPZhang | e3109a7 | 2016-02-02 11:25:37 -0800 | [diff] [blame] | 2682 | # get total added flows number |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2683 | cmd = "flows -c added" |
| 2684 | rawFlows = self.sendline( cmd, timeout=timeout, noExit=noExit ) |
| 2685 | if rawFlows: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2686 | rawFlows = rawFlows.split( "\n" ) |
YPZhang | e3109a7 | 2016-02-02 11:25:37 -0800 | [diff] [blame] | 2687 | totalFlows = 0 |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2688 | for l in rawFlows: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2689 | totalFlows += int( l.split( "Count=" )[ 1 ] ) |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2690 | else: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2691 | main.log.error( "Response not as expected!" ) |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2692 | return None |
| 2693 | return totalFlows |
YPZhang | e3109a7 | 2016-02-02 11:25:37 -0800 | [diff] [blame] | 2694 | |
You Wang | d3cb2ce | 2016-05-16 14:01:24 -0700 | [diff] [blame] | 2695 | except ( TypeError, ValueError ): |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2696 | main.log.exception( "{}: Object not as expected!".format( self.name ) ) |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2697 | return None |
| 2698 | except pexpect.EOF: |
| 2699 | main.log.error( self.name + ": EOF exception found" ) |
| 2700 | main.log.error( self.name + ": " + self.handle.before ) |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2701 | if not noExit: |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2702 | main.cleanAndExit() |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2703 | return None |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 2704 | except pexpect.TIMEOUT: |
| 2705 | main.log.error( self.name + ": ONOS timeout" ) |
| 2706 | return None |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2707 | except Exception: |
| 2708 | main.log.exception( self.name + ": Uncaught exception!" ) |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2709 | if not noExit: |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2710 | main.cleanAndExit() |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2711 | return None |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2712 | |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 2713 | def getTotalIntentsNum( self, timeout=60, noExit = False ): |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2714 | """ |
| 2715 | Description: |
| 2716 | Get the total number of intents, include every states. |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2717 | Optional: |
| 2718 | noExit - If noExit, TestON will not exit if any except. |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2719 | Return: |
| 2720 | The number of intents |
| 2721 | """ |
| 2722 | try: |
| 2723 | cmd = "summary -j" |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2724 | response = self.sendline( cmd, timeout=timeout, noExit=noExit ) |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 2725 | if response is None: |
| 2726 | return -1 |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2727 | response = json.loads( response ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2728 | return int( response.get( "intents" ) ) |
You Wang | d3cb2ce | 2016-05-16 14:01:24 -0700 | [diff] [blame] | 2729 | except ( TypeError, ValueError ): |
| 2730 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, response ) ) |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2731 | return None |
| 2732 | except pexpect.EOF: |
| 2733 | main.log.error( self.name + ": EOF exception found" ) |
| 2734 | main.log.error( self.name + ": " + self.handle.before ) |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2735 | if noExit: |
| 2736 | return -1 |
| 2737 | else: |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2738 | main.cleanAndExit() |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2739 | except Exception: |
| 2740 | main.log.exception( self.name + ": Uncaught exception!" ) |
YPZhang | 14a4aa9 | 2016-07-15 13:37:15 -0700 | [diff] [blame] | 2741 | if noExit: |
| 2742 | return -1 |
| 2743 | else: |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2744 | main.cleanAndExit() |
YPZhang | b5d3f83 | 2016-01-23 22:54:26 -0800 | [diff] [blame] | 2745 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2746 | def intentsEventsMetrics( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2747 | """ |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 2748 | Description:Returns topology metrics |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 2749 | Optional: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2750 | * jsonFormat: enable json formatting of output |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2751 | """ |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 2752 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2753 | cmdStr = "intents-events-metrics" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2754 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2755 | cmdStr += " -j" |
| 2756 | handle = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 2757 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2758 | assert "Command not found:" not in handle, handle |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 2759 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2760 | except AssertionError: |
| 2761 | main.log.exception( "" ) |
| 2762 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2763 | except TypeError: |
| 2764 | main.log.exception( self.name + ": Object not as expected" ) |
| 2765 | return None |
andrewonlab | 0dbb6ec | 2014-11-06 13:46:55 -0500 | [diff] [blame] | 2766 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2767 | main.log.error( self.name + ": EOF exception found" ) |
| 2768 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2769 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2770 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2771 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2772 | main.cleanAndExit() |
Shreya Shah | 0f01c81 | 2014-10-26 20:15:28 -0400 | [diff] [blame] | 2773 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2774 | def topologyEventsMetrics( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2775 | """ |
| 2776 | Description:Returns topology metrics |
andrewonlab | 867212a | 2014-10-22 20:13:38 -0400 | [diff] [blame] | 2777 | Optional: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2778 | * jsonFormat: enable json formatting of output |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2779 | """ |
andrewonlab | 867212a | 2014-10-22 20:13:38 -0400 | [diff] [blame] | 2780 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2781 | cmdStr = "topology-events-metrics" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2782 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2783 | cmdStr += " -j" |
| 2784 | handle = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 2785 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2786 | assert "Command not found:" not in handle, handle |
jenkins | 7ead5a8 | 2015-03-13 10:28:21 -0700 | [diff] [blame] | 2787 | if handle: |
| 2788 | return handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2789 | elif jsonFormat: |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 2790 | # Return empty json |
jenkins | 7ead5a8 | 2015-03-13 10:28:21 -0700 | [diff] [blame] | 2791 | return '{}' |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 2792 | else: |
| 2793 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2794 | except AssertionError: |
| 2795 | main.log.exception( "" ) |
| 2796 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2797 | except TypeError: |
| 2798 | main.log.exception( self.name + ": Object not as expected" ) |
| 2799 | return None |
andrewonlab | 867212a | 2014-10-22 20:13:38 -0400 | [diff] [blame] | 2800 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2801 | main.log.error( self.name + ": EOF exception found" ) |
| 2802 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2803 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2804 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2805 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2806 | main.cleanAndExit() |
andrewonlab | 867212a | 2014-10-22 20:13:38 -0400 | [diff] [blame] | 2807 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2808 | # Wrapper functions **************** |
| 2809 | # Wrapper functions use existing driver |
| 2810 | # functions and extends their use case. |
| 2811 | # For example, we may use the output of |
| 2812 | # a normal driver function, and parse it |
| 2813 | # using a wrapper function |
andrewonlab | c2d05aa | 2014-10-13 16:51:10 -0400 | [diff] [blame] | 2814 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2815 | def getAllIntentsId( self ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2816 | """ |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 2817 | Description: |
| 2818 | Obtain all intent id's in a list |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2819 | """ |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 2820 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2821 | # Obtain output of intents function |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 2822 | intentsStr = self.intents( jsonFormat=True ) |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 2823 | if intentsStr is None: |
| 2824 | raise TypeError |
Jon Hall | 6021e06 | 2017-01-30 11:10:06 -0800 | [diff] [blame] | 2825 | # Convert to a dictionary |
| 2826 | intents = json.loads( intentsStr ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2827 | intentIdList = [] |
Jon Hall | 6021e06 | 2017-01-30 11:10:06 -0800 | [diff] [blame] | 2828 | for intent in intents: |
| 2829 | intentIdList.append( intent[ 'id' ] ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2830 | return intentIdList |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2831 | except TypeError: |
| 2832 | main.log.exception( self.name + ": Object not as expected" ) |
| 2833 | return None |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 2834 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2835 | main.log.error( self.name + ": EOF exception found" ) |
| 2836 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2837 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2838 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2839 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2840 | main.cleanAndExit() |
andrewonlab | 9a50dfe | 2014-10-17 17:22:31 -0400 | [diff] [blame] | 2841 | |
You Wang | 3c27625 | 2016-09-21 15:21:36 -0700 | [diff] [blame] | 2842 | def flowAddedCount( self, deviceId, core=False ): |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 2843 | """ |
| 2844 | Determine the number of flow rules for the given device id that are |
| 2845 | in the added state |
You Wang | 3c27625 | 2016-09-21 15:21:36 -0700 | [diff] [blame] | 2846 | Params: |
| 2847 | core: if True, only return the number of core flows added |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 2848 | """ |
| 2849 | try: |
You Wang | 3c27625 | 2016-09-21 15:21:36 -0700 | [diff] [blame] | 2850 | if core: |
| 2851 | cmdStr = "flows any " + str( deviceId ) + " | " +\ |
| 2852 | "grep 'state=ADDED' | grep org.onosproject.core | wc -l" |
| 2853 | else: |
| 2854 | cmdStr = "flows any " + str( deviceId ) + " | " +\ |
| 2855 | "grep 'state=ADDED' | wc -l" |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 2856 | handle = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 2857 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2858 | assert "Command not found:" not in handle, handle |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 2859 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 2860 | except AssertionError: |
| 2861 | main.log.exception( "" ) |
| 2862 | return None |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 2863 | except pexpect.EOF: |
| 2864 | main.log.error( self.name + ": EOF exception found" ) |
| 2865 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2866 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 2867 | except Exception: |
Jon Hall | 30b82fa | 2015-03-04 17:15:43 -0800 | [diff] [blame] | 2868 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 2869 | main.cleanAndExit() |
andrewonlab | 95ce832 | 2014-10-13 14:12:04 -0400 | [diff] [blame] | 2870 | |
Andreas Pantelopoulos | 9173d44 | 2018-03-01 17:07:37 -0800 | [diff] [blame] | 2871 | def groupAddedCount( self, deviceId, core=False ): |
| 2872 | """ |
| 2873 | Determine the number of group rules for the given device id that are |
| 2874 | in the added state |
| 2875 | Params: |
| 2876 | core: if True, only return the number of core groups added |
| 2877 | """ |
| 2878 | try: |
| 2879 | if core: |
| 2880 | cmdStr = "groups any " + str( deviceId ) + " | " +\ |
| 2881 | "grep 'state=ADDED' | grep org.onosproject.core | wc -l" |
| 2882 | else: |
| 2883 | cmdStr = "groups any " + str( deviceId ) + " | " +\ |
| 2884 | "grep 'state=ADDED' | wc -l" |
| 2885 | handle = self.sendline( cmdStr ) |
| 2886 | assert handle is not None, "Error in sendline" |
| 2887 | assert "Command not found:" not in handle, handle |
| 2888 | return handle |
| 2889 | except AssertionError: |
| 2890 | main.log.exception( "" ) |
| 2891 | return None |
| 2892 | except pexpect.EOF: |
| 2893 | main.log.error( self.name + ": EOF exception found" ) |
| 2894 | main.log.error( self.name + ": " + self.handle.before ) |
| 2895 | main.cleanAndExit() |
| 2896 | except Exception: |
| 2897 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2898 | main.cleanAndExit() |
| 2899 | |
Andreas Pantelopoulos | 2eae324 | 2018-03-06 13:47:20 -0800 | [diff] [blame] | 2900 | def addStaticRoute( self, subnet, intf): |
| 2901 | """ |
| 2902 | Adds a static route to onos. |
| 2903 | Params: |
| 2904 | subnet: The subnet reaching through this route |
| 2905 | intf: The interface this route is reachable through |
| 2906 | """ |
| 2907 | try: |
| 2908 | cmdStr = "route-add " + subnet + " " + intf |
| 2909 | handle = self.sendline( cmdStr ) |
| 2910 | assert handle is not None, "Error in sendline" |
| 2911 | assert "Command not found:" not in handle, handle |
| 2912 | return handle |
| 2913 | except AssertionError: |
| 2914 | main.log.exception( "" ) |
| 2915 | return None |
| 2916 | except pexpect.EOF: |
| 2917 | main.log.error( self.name + ": EOF exception found" ) |
| 2918 | main.log.error( self.name + ": " + self.handle.before ) |
| 2919 | main.cleanAndExit() |
| 2920 | except Exception: |
| 2921 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 2922 | main.cleanAndExit() |
| 2923 | |
Andreas Pantelopoulos | 9173d44 | 2018-03-01 17:07:37 -0800 | [diff] [blame] | 2924 | def checkGroupAddedCount( self, deviceId, expectedGroupCount=0, core=False, comparison=0): |
| 2925 | """ |
| 2926 | Description: |
| 2927 | Check whether the number of groups for the given device id that |
| 2928 | are in ADDED state is bigger than minGroupCount. |
| 2929 | Required: |
| 2930 | * deviceId: device id to check the number of added group rules |
| 2931 | Optional: |
| 2932 | * minGroupCount: the number of groups to compare |
| 2933 | * core: if True, only check the number of core groups added |
| 2934 | * comparison: if 0, compare with greater than minFlowCount |
| 2935 | * if 1, compare with equal to minFlowCount |
| 2936 | Return: |
| 2937 | Returns the number of groups if it is bigger than minGroupCount, |
| 2938 | returns main.FALSE otherwise. |
| 2939 | """ |
| 2940 | count = self.groupAddedCount( deviceId, core ) |
| 2941 | count = int( count ) if count else 0 |
Jon Hall | 9677ed3 | 2018-04-24 11:16:23 -0700 | [diff] [blame] | 2942 | main.log.debug( "found {} groups".format( count ) ) |
Andreas Pantelopoulos | 9173d44 | 2018-03-01 17:07:37 -0800 | [diff] [blame] | 2943 | return count if ((count > expectedGroupCount) if (comparison == 0) else (count == expectedGroupCount)) else main.FALSE |
| 2944 | |
| 2945 | def checkFlowAddedCount( self, deviceId, expectedFlowCount=0, core=False, comparison=0): |
Jonghwan Hyun | cf2345c | 2018-02-26 11:07:54 -0800 | [diff] [blame] | 2946 | """ |
| 2947 | Description: |
| 2948 | Check whether the number of flow rules for the given device id that |
| 2949 | are in ADDED state is bigger than minFlowCount. |
| 2950 | Required: |
| 2951 | * deviceId: device id to check the number of added flow rules |
| 2952 | Optional: |
| 2953 | * minFlowCount: the number of flow rules to compare |
| 2954 | * core: if True, only check the number of core flows added |
Andreas Pantelopoulos | 9173d44 | 2018-03-01 17:07:37 -0800 | [diff] [blame] | 2955 | * comparison: if 0, compare with greater than minFlowCount |
| 2956 | * if 1, compare with equal to minFlowCount |
Jonghwan Hyun | cf2345c | 2018-02-26 11:07:54 -0800 | [diff] [blame] | 2957 | Return: |
| 2958 | Returns the number of flow rules if it is bigger than minFlowCount, |
| 2959 | returns main.FALSE otherwise. |
| 2960 | """ |
| 2961 | count = self.flowAddedCount( deviceId, core ) |
| 2962 | count = int( count ) if count else 0 |
Jon Hall | 9677ed3 | 2018-04-24 11:16:23 -0700 | [diff] [blame] | 2963 | main.log.debug( "found {} flows".format( count ) ) |
Andreas Pantelopoulos | 2eae324 | 2018-03-06 13:47:20 -0800 | [diff] [blame] | 2964 | return count if ((count > expectedFlowCount) if (comparison == 0) else (count == expectedFlowCount)) else main.FALSE |
Jonghwan Hyun | cf2345c | 2018-02-26 11:07:54 -0800 | [diff] [blame] | 2965 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2966 | def getAllDevicesId( self ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2967 | """ |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 2968 | Use 'devices' function to obtain list of all devices |
| 2969 | and parse the result to obtain a list of all device |
| 2970 | id's. Returns this list. Returns empty list if no |
| 2971 | devices exist |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2972 | List is ordered sequentially |
| 2973 | |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 2974 | This function may be useful if you are not sure of the |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2975 | device id, and wish to execute other commands using |
andrewonlab | 3e15ead | 2014-10-15 14:21:34 -0400 | [diff] [blame] | 2976 | the ids. By obtaining the list of device ids on the fly, |
| 2977 | you can iterate through the list to get mastership, etc. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2978 | """ |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 2979 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2980 | # Call devices and store result string |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2981 | devicesStr = self.devices( jsonFormat=False ) |
| 2982 | idList = [] |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2983 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2984 | if not devicesStr: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2985 | main.log.info( "There are no devices to get id from" ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2986 | return idList |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2987 | |
| 2988 | # Split the string into list by comma |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2989 | deviceList = devicesStr.split( "," ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2990 | # Get temporary list of all arguments with string 'id=' |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2991 | tempList = [ dev for dev in deviceList if "id=" in dev ] |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2992 | # Split list further into arguments before and after string |
| 2993 | # 'id='. Get the latter portion ( the actual device id ) and |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 2994 | # append to idList |
| 2995 | for arg in tempList: |
| 2996 | idList.append( arg.split( "id=" )[ 1 ] ) |
| 2997 | return idList |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 2998 | |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 2999 | except TypeError: |
| 3000 | main.log.exception( self.name + ": Object not as expected" ) |
| 3001 | return None |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 3002 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3003 | main.log.error( self.name + ": EOF exception found" ) |
| 3004 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3005 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 3006 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3007 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3008 | main.cleanAndExit() |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 3009 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3010 | def getAllNodesId( self ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3011 | """ |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 3012 | Uses 'nodes' function to obtain list of all nodes |
| 3013 | and parse the result of nodes to obtain just the |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3014 | node id's. |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 3015 | Returns: |
| 3016 | list of node id's |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3017 | """ |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 3018 | try: |
Jon Hall | 5aa168b | 2015-03-23 14:23:09 -0700 | [diff] [blame] | 3019 | nodesStr = self.nodes( jsonFormat=True ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3020 | idList = [] |
Jon Hall | 5aa168b | 2015-03-23 14:23:09 -0700 | [diff] [blame] | 3021 | # Sample nodesStr output |
Jon Hall | bd18278 | 2016-03-28 16:42:22 -0700 | [diff] [blame] | 3022 | # id=local, address=127.0.0.1:9876, state=READY * |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3023 | if not nodesStr: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3024 | main.log.info( "There are no nodes to get id from" ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3025 | return idList |
Jon Hall | 5aa168b | 2015-03-23 14:23:09 -0700 | [diff] [blame] | 3026 | nodesJson = json.loads( nodesStr ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 3027 | idList = [ node.get( 'id' ) for node in nodesJson ] |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3028 | return idList |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3029 | except ( TypeError, ValueError ): |
| 3030 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, nodesStr ) ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3031 | return None |
andrewonlab | 7c21157 | 2014-10-15 16:45:20 -0400 | [diff] [blame] | 3032 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3033 | main.log.error( self.name + ": EOF exception found" ) |
| 3034 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3035 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 3036 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3037 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3038 | main.cleanAndExit() |
andrewonlab | 7e4d2d3 | 2014-10-15 13:23:21 -0400 | [diff] [blame] | 3039 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3040 | def getDevice( self, dpid=None ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3041 | """ |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 3042 | Return the first device from the devices api whose 'id' contains 'dpid' |
| 3043 | Return None if there is no match |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3044 | """ |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 3045 | try: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3046 | if dpid is None: |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 3047 | return None |
| 3048 | else: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3049 | dpid = dpid.replace( ':', '' ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3050 | rawDevices = self.devices() |
| 3051 | devicesJson = json.loads( rawDevices ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3052 | # search json for the device with dpid then return the device |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3053 | for device in devicesJson: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3054 | # print "%s in %s?" % ( dpid, device[ 'id' ] ) |
| 3055 | if dpid in device[ 'id' ]: |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 3056 | return device |
| 3057 | return None |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3058 | except ( TypeError, ValueError ): |
| 3059 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawDevices ) ) |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3060 | return None |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 3061 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3062 | main.log.error( self.name + ": EOF exception found" ) |
| 3063 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3064 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 3065 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3066 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3067 | main.cleanAndExit() |
Jon Hall | a91c4dc | 2014-10-22 12:57:04 -0400 | [diff] [blame] | 3068 | |
You Wang | 2413987 | 2016-05-03 11:48:47 -0700 | [diff] [blame] | 3069 | def getTopology( self, topologyOutput ): |
| 3070 | """ |
| 3071 | Definition: |
| 3072 | Loads a json topology output |
| 3073 | Return: |
| 3074 | topology = current ONOS topology |
| 3075 | """ |
| 3076 | import json |
| 3077 | try: |
| 3078 | # either onos:topology or 'topology' will work in CLI |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 3079 | topology = json.loads( topologyOutput ) |
Jeremy Songster | bc2d8ac | 2016-05-04 11:25:42 -0700 | [diff] [blame] | 3080 | main.log.debug( topology ) |
You Wang | 2413987 | 2016-05-03 11:48:47 -0700 | [diff] [blame] | 3081 | return topology |
You Wang | d3cb2ce | 2016-05-16 14:01:24 -0700 | [diff] [blame] | 3082 | except ( TypeError, ValueError ): |
| 3083 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, topologyOutput ) ) |
| 3084 | return None |
You Wang | 2413987 | 2016-05-03 11:48:47 -0700 | [diff] [blame] | 3085 | except pexpect.EOF: |
| 3086 | main.log.error( self.name + ": EOF exception found" ) |
| 3087 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3088 | main.cleanAndExit() |
You Wang | 2413987 | 2016-05-03 11:48:47 -0700 | [diff] [blame] | 3089 | except Exception: |
| 3090 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3091 | main.cleanAndExit() |
You Wang | 2413987 | 2016-05-03 11:48:47 -0700 | [diff] [blame] | 3092 | |
Pier | 6a0c4de | 2018-03-18 16:01:30 -0700 | [diff] [blame] | 3093 | def checkStatus( self, numoswitch, numolink = -1, numoctrl = -1, logLevel="info" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3094 | """ |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 3095 | Checks the number of switches & links that ONOS sees against the |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3096 | supplied values. By default this will report to main.log, but the |
You Wang | 2413987 | 2016-05-03 11:48:47 -0700 | [diff] [blame] | 3097 | log level can be specific. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3098 | |
Flavio Castro | 82ee2f6 | 2016-06-07 15:04:12 -0700 | [diff] [blame] | 3099 | Params: numoswitch = expected number of switches |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 3100 | numolink = expected number of links |
Flavio Castro | 82ee2f6 | 2016-06-07 15:04:12 -0700 | [diff] [blame] | 3101 | numoctrl = expected number of controllers |
You Wang | 2413987 | 2016-05-03 11:48:47 -0700 | [diff] [blame] | 3102 | logLevel = level to log to. |
| 3103 | Currently accepts 'info', 'warn' and 'report' |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 3104 | |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 3105 | Returns: main.TRUE if the number of switches and links are correct, |
| 3106 | main.FALSE if the number of switches and links is incorrect, |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 3107 | and main.ERROR otherwise |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3108 | """ |
Flavio Castro | 82ee2f6 | 2016-06-07 15:04:12 -0700 | [diff] [blame] | 3109 | import json |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 3110 | try: |
You Wang | 1331025 | 2016-07-31 10:56:14 -0700 | [diff] [blame] | 3111 | summary = self.summary() |
| 3112 | summary = json.loads( summary ) |
Flavio Castro | f5b3f87 | 2016-06-23 17:52:31 -0700 | [diff] [blame] | 3113 | except ( TypeError, ValueError ): |
| 3114 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, summary ) ) |
| 3115 | return main.ERROR |
| 3116 | try: |
| 3117 | topology = self.getTopology( self.topology() ) |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 3118 | if topology == {} or topology is None or summary == {} or summary is None: |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 3119 | return main.ERROR |
| 3120 | output = "" |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3121 | # Is the number of switches is what we expected |
| 3122 | devices = topology.get( 'devices', False ) |
| 3123 | links = topology.get( 'links', False ) |
Flavio Castro | 82ee2f6 | 2016-06-07 15:04:12 -0700 | [diff] [blame] | 3124 | nodes = summary.get( 'nodes', False ) |
| 3125 | if devices is False or links is False or nodes is False: |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 3126 | return main.ERROR |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3127 | switchCheck = ( int( devices ) == int( numoswitch ) ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3128 | # Is the number of links is what we expected |
Pier | 6a0c4de | 2018-03-18 16:01:30 -0700 | [diff] [blame] | 3129 | linkCheck = ( int( links ) == int( numolink ) ) or int( numolink ) == -1 |
Flavio Castro | 82ee2f6 | 2016-06-07 15:04:12 -0700 | [diff] [blame] | 3130 | nodeCheck = ( int( nodes ) == int( numoctrl ) ) or int( numoctrl ) == -1 |
| 3131 | if switchCheck and linkCheck and nodeCheck: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3132 | # We expected the correct numbers |
You Wang | 2413987 | 2016-05-03 11:48:47 -0700 | [diff] [blame] | 3133 | output = output + "The number of links and switches match "\ |
| 3134 | + "what was expected" |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 3135 | result = main.TRUE |
| 3136 | else: |
You Wang | 2413987 | 2016-05-03 11:48:47 -0700 | [diff] [blame] | 3137 | output = output + \ |
| 3138 | "The number of links and switches does not match " + \ |
| 3139 | "what was expected" |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 3140 | result = main.FALSE |
You Wang | 2413987 | 2016-05-03 11:48:47 -0700 | [diff] [blame] | 3141 | output = output + "\n ONOS sees %i devices" % int( devices ) |
| 3142 | output = output + " (%i expected) " % int( numoswitch ) |
Pier | 6a0c4de | 2018-03-18 16:01:30 -0700 | [diff] [blame] | 3143 | if int( numolink ) > 0: |
| 3144 | output = output + "and %i links " % int( links ) |
| 3145 | output = output + "(%i expected)" % int( numolink ) |
YPZhang | d7e4b6e | 2016-06-17 16:07:55 -0700 | [diff] [blame] | 3146 | if int( numoctrl ) > 0: |
Flavio Castro | 82ee2f6 | 2016-06-07 15:04:12 -0700 | [diff] [blame] | 3147 | output = output + "and %i controllers " % int( nodes ) |
| 3148 | output = output + "(%i expected)" % int( numoctrl ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3149 | if logLevel == "report": |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3150 | main.log.report( output ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3151 | elif logLevel == "warn": |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3152 | main.log.warn( output ) |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 3153 | else: |
You Wang | 2413987 | 2016-05-03 11:48:47 -0700 | [diff] [blame] | 3154 | main.log.info( output ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3155 | return result |
Jon Hall | 42db6dc | 2014-10-24 19:03:48 -0400 | [diff] [blame] | 3156 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3157 | main.log.error( self.name + ": EOF exception found" ) |
| 3158 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3159 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 3160 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3161 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3162 | main.cleanAndExit() |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 3163 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3164 | def deviceRole( self, deviceId, onosNode, role="master" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3165 | """ |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 3166 | Calls the device-role cli command. |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3167 | deviceId must be the id of a device as seen in the onos devices command |
| 3168 | 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] | 3169 | role must be either master, standby, or none |
| 3170 | |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 3171 | Returns: |
| 3172 | main.TRUE or main.FALSE based on argument verification and |
| 3173 | main.ERROR if command returns and error |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3174 | """ |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 3175 | try: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 3176 | if role.lower() == "master" or role.lower() == "standby" or\ |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 3177 | role.lower() == "none": |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3178 | cmdStr = "device-role " +\ |
| 3179 | str( deviceId ) + " " +\ |
| 3180 | str( onosNode ) + " " +\ |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3181 | str( role ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3182 | handle = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 3183 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3184 | assert "Command not found:" not in handle, handle |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3185 | if re.search( "Error", handle ): |
| 3186 | # end color output to escape any colours |
| 3187 | # from the cli |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3188 | main.log.error( self.name + ": " + |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3189 | handle + '\033[0m' ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3190 | return main.ERROR |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3191 | return main.TRUE |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 3192 | else: |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3193 | main.log.error( "Invalid 'role' given to device_role(). " + |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 3194 | "Value was '" + str( role ) + "'." ) |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 3195 | return main.FALSE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3196 | except AssertionError: |
| 3197 | main.log.exception( "" ) |
| 3198 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3199 | except TypeError: |
| 3200 | main.log.exception( self.name + ": Object not as expected" ) |
| 3201 | return None |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 3202 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3203 | main.log.error( self.name + ": EOF exception found" ) |
| 3204 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3205 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 3206 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3207 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3208 | main.cleanAndExit() |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 3209 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3210 | def clusters( self, jsonFormat=True ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3211 | """ |
Jon Hall | 0dd0995 | 2018-04-19 09:59:11 -0700 | [diff] [blame] | 3212 | Lists all topology clusters |
Jon Hall | ffb386d | 2014-11-21 13:43:38 -0800 | [diff] [blame] | 3213 | Optional argument: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3214 | * jsonFormat - boolean indicating if you want output in json |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3215 | """ |
Jon Hall | 73cf9cc | 2014-11-20 22:28:38 -0800 | [diff] [blame] | 3216 | try: |
Jon Hall | 0dd0995 | 2018-04-19 09:59:11 -0700 | [diff] [blame] | 3217 | cmdStr = "topo-clusters" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3218 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3219 | cmdStr += " -j" |
| 3220 | handle = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 3221 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3222 | assert "Command not found:" not in handle, handle |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3223 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3224 | except AssertionError: |
| 3225 | main.log.exception( "" ) |
| 3226 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3227 | except TypeError: |
| 3228 | main.log.exception( self.name + ": Object not as expected" ) |
| 3229 | return None |
Jon Hall | 73cf9cc | 2014-11-20 22:28:38 -0800 | [diff] [blame] | 3230 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3231 | main.log.error( self.name + ": EOF exception found" ) |
| 3232 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3233 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 3234 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3235 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3236 | main.cleanAndExit() |
Jon Hall | 73cf9cc | 2014-11-20 22:28:38 -0800 | [diff] [blame] | 3237 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3238 | def electionTestLeader( self ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3239 | """ |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 3240 | CLI command to get the current leader for the Election test application |
| 3241 | NOTE: Requires installation of the onos-app-election feature |
| 3242 | Returns: Node IP of the leader if one exists |
| 3243 | None if none exists |
| 3244 | Main.FALSE on error |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3245 | """ |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 3246 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3247 | cmdStr = "election-test-leader" |
| 3248 | response = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 3249 | assert response is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3250 | assert "Command not found:" not in response, response |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 3251 | # Leader |
| 3252 | leaderPattern = "The\scurrent\sleader\sfor\sthe\sElection\s" +\ |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3253 | "app\sis\s(?P<node>.+)\." |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3254 | nodeSearch = re.search( leaderPattern, response ) |
| 3255 | if nodeSearch: |
| 3256 | node = nodeSearch.group( 'node' ) |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 3257 | main.log.info( "Election-test-leader on " + str( self.name ) + |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3258 | " found " + node + " as the leader" ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 3259 | return node |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 3260 | # no leader |
| 3261 | nullPattern = "There\sis\scurrently\sno\sleader\selected\sfor\s" +\ |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3262 | "the\sElection\sapp" |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3263 | nullSearch = re.search( nullPattern, response ) |
| 3264 | if nullSearch: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 3265 | main.log.info( "Election-test-leader found no leader on " + |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3266 | self.name ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 3267 | return None |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3268 | # error |
Jon Hall | 97cf84a | 2016-06-20 13:35:58 -0700 | [diff] [blame] | 3269 | main.log.error( "Error in electionTestLeader on " + self.name + |
| 3270 | ": " + "unexpected response" ) |
| 3271 | main.log.error( repr( response ) ) |
| 3272 | return main.FALSE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3273 | except AssertionError: |
| 3274 | main.log.exception( "" ) |
| 3275 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3276 | except TypeError: |
| 3277 | main.log.exception( self.name + ": Object not as expected" ) |
| 3278 | return main.FALSE |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 3279 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3280 | main.log.error( self.name + ": EOF exception found" ) |
| 3281 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3282 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 3283 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3284 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3285 | main.cleanAndExit() |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 3286 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3287 | def electionTestRun( self ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3288 | """ |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 3289 | CLI command to run for leadership of the Election test application. |
| 3290 | NOTE: Requires installation of the onos-app-election feature |
| 3291 | Returns: Main.TRUE on success |
| 3292 | Main.FALSE on error |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3293 | """ |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 3294 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3295 | cmdStr = "election-test-run" |
| 3296 | response = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 3297 | assert response is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3298 | assert "Command not found:" not in response, response |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3299 | # success |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 3300 | successPattern = "Entering\sleadership\selections\sfor\sthe\s" +\ |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3301 | "Election\sapp." |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 3302 | search = re.search( successPattern, response ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 3303 | if search: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 3304 | main.log.info( self.name + " entering leadership elections " + |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3305 | "for the Election app." ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 3306 | return main.TRUE |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3307 | # error |
Jon Hall | 97cf84a | 2016-06-20 13:35:58 -0700 | [diff] [blame] | 3308 | main.log.error( "Error in electionTestRun on " + self.name + |
| 3309 | ": " + "unexpected response" ) |
| 3310 | main.log.error( repr( response ) ) |
| 3311 | return main.FALSE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3312 | except AssertionError: |
| 3313 | main.log.exception( "" ) |
| 3314 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3315 | except TypeError: |
| 3316 | main.log.exception( self.name + ": Object not as expected" ) |
| 3317 | return main.FALSE |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 3318 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3319 | main.log.error( self.name + ": EOF exception found" ) |
| 3320 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3321 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 3322 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3323 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3324 | main.cleanAndExit() |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 3325 | |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3326 | def electionTestWithdraw( self ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3327 | """ |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 3328 | * CLI command to withdraw the local node from leadership election for |
| 3329 | * the Election test application. |
| 3330 | #NOTE: Requires installation of the onos-app-election feature |
| 3331 | Returns: Main.TRUE on success |
| 3332 | Main.FALSE on error |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3333 | """ |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 3334 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3335 | cmdStr = "election-test-withdraw" |
| 3336 | response = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 3337 | assert response is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3338 | assert "Command not found:" not in response, response |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3339 | # success |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 3340 | successPattern = "Withdrawing\sfrom\sleadership\selections\sfor" +\ |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3341 | "\sthe\sElection\sapp." |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 3342 | if re.search( successPattern, response ): |
| 3343 | main.log.info( self.name + " withdrawing from leadership " + |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3344 | "elections for the Election app." ) |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 3345 | return main.TRUE |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3346 | # error |
Jon Hall | 97cf84a | 2016-06-20 13:35:58 -0700 | [diff] [blame] | 3347 | main.log.error( "Error in electionTestWithdraw on " + |
| 3348 | self.name + ": " + "unexpected response" ) |
| 3349 | main.log.error( repr( response ) ) |
| 3350 | return main.FALSE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3351 | except AssertionError: |
| 3352 | main.log.exception( "" ) |
| 3353 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3354 | except TypeError: |
| 3355 | main.log.exception( self.name + ": Object not as expected" ) |
| 3356 | return main.FALSE |
Jon Hall | 94fd047 | 2014-12-08 11:52:42 -0800 | [diff] [blame] | 3357 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3358 | main.log.error( self.name + ": EOF exception found" ) |
| 3359 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3360 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 3361 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3362 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3363 | main.cleanAndExit() |
Jon Hall | 1c9e873 | 2014-10-27 19:29:27 -0400 | [diff] [blame] | 3364 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3365 | def getDevicePortsEnabledCount( self, dpid ): |
| 3366 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 3367 | Get the count of all enabled ports on a particular device/switch |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3368 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 3369 | try: |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 3370 | dpid = str( dpid ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3371 | cmdStr = "onos:ports -e " + dpid + " | wc -l" |
| 3372 | output = self.sendline( cmdStr ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 3373 | assert output is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3374 | assert "Command not found:" not in output, output |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 3375 | if re.search( "No such device", output ): |
| 3376 | main.log.error( "Error in getting ports" ) |
| 3377 | return ( output, "Error" ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 3378 | return output |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3379 | except AssertionError: |
| 3380 | main.log.exception( "" ) |
| 3381 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3382 | except TypeError: |
| 3383 | main.log.exception( self.name + ": Object not as expected" ) |
| 3384 | return ( output, "Error" ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 3385 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3386 | main.log.error( self.name + ": EOF exception found" ) |
| 3387 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3388 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 3389 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3390 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3391 | main.cleanAndExit() |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 3392 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3393 | def getDeviceLinksActiveCount( self, dpid ): |
| 3394 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 3395 | Get the count of all enabled ports on a particular device/switch |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3396 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 3397 | try: |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3398 | dpid = str( dpid ) |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3399 | cmdStr = "onos:links " + dpid + " | grep ACTIVE | wc -l" |
| 3400 | output = self.sendline( cmdStr ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 3401 | assert output is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3402 | assert "Command not found:" not in output, output |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 3403 | if re.search( "No such device", output ): |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 3404 | main.log.error( "Error in getting ports " ) |
| 3405 | return ( output, "Error " ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 3406 | return output |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3407 | except AssertionError: |
| 3408 | main.log.exception( "" ) |
| 3409 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3410 | except TypeError: |
| 3411 | main.log.exception( self.name + ": Object not as expected" ) |
| 3412 | return ( output, "Error " ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 3413 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3414 | main.log.error( self.name + ": EOF exception found" ) |
| 3415 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3416 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 3417 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3418 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3419 | main.cleanAndExit() |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 3420 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3421 | def getAllIntentIds( self ): |
| 3422 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 3423 | Return a list of all Intent IDs |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3424 | """ |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 3425 | try: |
kelvin-onlab | d3b6489 | 2015-01-20 13:26:24 -0800 | [diff] [blame] | 3426 | cmdStr = "onos:intents | grep id=" |
| 3427 | output = self.sendline( cmdStr ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 3428 | assert output is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3429 | assert "Command not found:" not in output, output |
Jon Hall | e3f39ff | 2015-01-13 11:50:53 -0800 | [diff] [blame] | 3430 | if re.search( "Error", output ): |
| 3431 | main.log.error( "Error in getting ports" ) |
| 3432 | return ( output, "Error" ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 3433 | return output |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3434 | except AssertionError: |
| 3435 | main.log.exception( "" ) |
| 3436 | return None |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3437 | except TypeError: |
| 3438 | main.log.exception( self.name + ": Object not as expected" ) |
| 3439 | return ( output, "Error" ) |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 3440 | except pexpect.EOF: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 3441 | main.log.error( self.name + ": EOF exception found" ) |
| 3442 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3443 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 3444 | except Exception: |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3445 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3446 | main.cleanAndExit() |
Jon Hall | d4d4b37 | 2015-01-28 16:02:41 -0800 | [diff] [blame] | 3447 | |
Jon Hall | 7350995 | 2015-02-24 16:42:56 -0800 | [diff] [blame] | 3448 | def intentSummary( self ): |
| 3449 | """ |
Jon Hall | efbd979 | 2015-03-05 16:11:36 -0800 | [diff] [blame] | 3450 | Returns a dictionary containing the current intent states and the count |
Jon Hall | 7350995 | 2015-02-24 16:42:56 -0800 | [diff] [blame] | 3451 | """ |
| 3452 | try: |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 3453 | intents = self.intents( ) |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 3454 | states = [] |
Jon Hall | 5aa168b | 2015-03-23 14:23:09 -0700 | [diff] [blame] | 3455 | for intent in json.loads( intents ): |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 3456 | states.append( intent.get( 'state', None ) ) |
| 3457 | out = [ ( i, states.count( i ) ) for i in set( states ) ] |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3458 | main.log.info( dict( out ) ) |
Jon Hall | 7350995 | 2015-02-24 16:42:56 -0800 | [diff] [blame] | 3459 | return dict( out ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3460 | except ( TypeError, ValueError ): |
| 3461 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, intents ) ) |
Jon Hall | 7350995 | 2015-02-24 16:42:56 -0800 | [diff] [blame] | 3462 | return None |
| 3463 | except pexpect.EOF: |
| 3464 | main.log.error( self.name + ": EOF exception found" ) |
| 3465 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3466 | main.cleanAndExit() |
Jon Hall | febb1c7 | 2015-03-05 13:30:09 -0800 | [diff] [blame] | 3467 | except Exception: |
Jon Hall | 7350995 | 2015-02-24 16:42:56 -0800 | [diff] [blame] | 3468 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3469 | main.cleanAndExit() |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3470 | |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 3471 | def leaders( self, jsonFormat=True ): |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3472 | """ |
| 3473 | Returns the output of the leaders command. |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 3474 | Optional argument: |
| 3475 | * jsonFormat - boolean indicating if you want output in json |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3476 | """ |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3477 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3478 | cmdStr = "onos:leaders" |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 3479 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3480 | cmdStr += " -j" |
| 3481 | output = self.sendline( cmdStr ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 3482 | assert output is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3483 | assert "Command not found:" not in output, output |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3484 | return output |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3485 | except AssertionError: |
| 3486 | main.log.exception( "" ) |
| 3487 | return None |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3488 | except TypeError: |
| 3489 | main.log.exception( self.name + ": Object not as expected" ) |
| 3490 | return None |
Hari Krishna | a43d4e9 | 2014-12-19 13:22:40 -0800 | [diff] [blame] | 3491 | except pexpect.EOF: |
| 3492 | main.log.error( self.name + ": EOF exception found" ) |
| 3493 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3494 | main.cleanAndExit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3495 | except Exception: |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3496 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3497 | main.cleanAndExit() |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3498 | |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3499 | def leaderCandidates( self, jsonFormat=True ): |
| 3500 | """ |
| 3501 | Returns the output of the leaders -c command. |
| 3502 | Optional argument: |
| 3503 | * jsonFormat - boolean indicating if you want output in json |
| 3504 | """ |
| 3505 | try: |
| 3506 | cmdStr = "onos:leaders -c" |
| 3507 | if jsonFormat: |
| 3508 | cmdStr += " -j" |
| 3509 | output = self.sendline( cmdStr ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 3510 | assert output is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3511 | assert "Command not found:" not in output, output |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3512 | return output |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3513 | except AssertionError: |
| 3514 | main.log.exception( "" ) |
| 3515 | return None |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3516 | except TypeError: |
| 3517 | main.log.exception( self.name + ": Object not as expected" ) |
| 3518 | return None |
| 3519 | except pexpect.EOF: |
| 3520 | main.log.error( self.name + ": EOF exception found" ) |
| 3521 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3522 | main.cleanAndExit() |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3523 | except Exception: |
| 3524 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3525 | main.cleanAndExit() |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3526 | |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3527 | def specificLeaderCandidate( self, topic ): |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3528 | """ |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 3529 | Returns a list in format [leader,candidate1,candidate2,...] for a given |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3530 | topic parameter and an empty list if the topic doesn't exist |
| 3531 | If no leader is elected leader in the returned list will be "none" |
| 3532 | Returns None if there is a type error processing the json object |
| 3533 | """ |
| 3534 | try: |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 3535 | cmdStr = "onos:leaders -j" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3536 | rawOutput = self.sendline( cmdStr ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 3537 | assert rawOutput is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3538 | assert "Command not found:" not in rawOutput, rawOutput |
| 3539 | output = json.loads( rawOutput ) |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3540 | results = [] |
| 3541 | for dict in output: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 3542 | if dict[ "topic" ] == topic: |
| 3543 | leader = dict[ "leader" ] |
| 3544 | candidates = re.split( ", ", dict[ "candidates" ][ 1:-1 ] ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3545 | results.append( leader ) |
| 3546 | results.extend( candidates ) |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3547 | return results |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3548 | except AssertionError: |
| 3549 | main.log.exception( "" ) |
| 3550 | return None |
| 3551 | except ( TypeError, ValueError ): |
| 3552 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawOutput ) ) |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3553 | return None |
| 3554 | except pexpect.EOF: |
| 3555 | main.log.error( self.name + ": EOF exception found" ) |
| 3556 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3557 | main.cleanAndExit() |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3558 | except Exception: |
| 3559 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3560 | main.cleanAndExit() |
acsmars | a4a4d1e | 2015-07-10 16:01:24 -0700 | [diff] [blame] | 3561 | |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 3562 | def pendingMap( self, jsonFormat=True ): |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3563 | """ |
| 3564 | Returns the output of the intent Pending map. |
| 3565 | """ |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3566 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3567 | cmdStr = "onos:intents -p" |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 3568 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3569 | cmdStr += " -j" |
| 3570 | output = self.sendline( cmdStr ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 3571 | assert output is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3572 | assert "Command not found:" not in output, output |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3573 | return output |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3574 | except AssertionError: |
| 3575 | main.log.exception( "" ) |
| 3576 | return None |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3577 | except TypeError: |
| 3578 | main.log.exception( self.name + ": Object not as expected" ) |
| 3579 | return None |
| 3580 | except pexpect.EOF: |
| 3581 | main.log.error( self.name + ": EOF exception found" ) |
| 3582 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3583 | main.cleanAndExit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3584 | except Exception: |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3585 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3586 | main.cleanAndExit() |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3587 | |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 3588 | def partitions( self, candidates=False, jsonFormat=True ): |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3589 | """ |
| 3590 | Returns the output of the raft partitions command for ONOS. |
| 3591 | """ |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 3592 | # Sample JSON |
| 3593 | # { |
| 3594 | # "leader": "tcp://10.128.30.11:7238", |
| 3595 | # "members": [ |
| 3596 | # "tcp://10.128.30.11:7238", |
| 3597 | # "tcp://10.128.30.17:7238", |
| 3598 | # "tcp://10.128.30.13:7238", |
| 3599 | # ], |
| 3600 | # "name": "p1", |
| 3601 | # "term": 3 |
| 3602 | # }, |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3603 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3604 | cmdStr = "onos:partitions" |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 3605 | if candidates: |
| 3606 | cmdStr += " -c" |
Jon Hall | 61282e3 | 2015-03-19 11:34:11 -0700 | [diff] [blame] | 3607 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3608 | cmdStr += " -j" |
| 3609 | output = self.sendline( cmdStr ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 3610 | assert output is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3611 | assert "Command not found:" not in output, output |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3612 | return output |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3613 | except AssertionError: |
| 3614 | main.log.exception( "" ) |
| 3615 | return None |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3616 | except TypeError: |
| 3617 | main.log.exception( self.name + ": Object not as expected" ) |
| 3618 | return None |
| 3619 | except pexpect.EOF: |
| 3620 | main.log.error( self.name + ": EOF exception found" ) |
| 3621 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3622 | main.cleanAndExit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3623 | except Exception: |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3624 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3625 | main.cleanAndExit() |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 3626 | |
Jon Hall | e9f909e | 2016-09-23 10:43:12 -0700 | [diff] [blame] | 3627 | def apps( self, summary=False, active=False, jsonFormat=True ): |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3628 | """ |
| 3629 | Returns the output of the apps command for ONOS. This command lists |
| 3630 | information about installed ONOS applications |
| 3631 | """ |
| 3632 | # Sample JSON object |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 3633 | # [{"name":"org.onosproject.openflow","id":0,"version":"1.2.0", |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3634 | # "description":"ONOS OpenFlow protocol southbound providers", |
| 3635 | # "origin":"ON.Lab","permissions":"[]","featuresRepo":"", |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 3636 | # "features":"[onos-openflow]","state":"ACTIVE"}] |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3637 | try: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3638 | cmdStr = "onos:apps" |
Jon Hall | e9f909e | 2016-09-23 10:43:12 -0700 | [diff] [blame] | 3639 | if summary: |
| 3640 | cmdStr += " -s" |
| 3641 | if active: |
| 3642 | cmdStr += " -a" |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3643 | if jsonFormat: |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3644 | cmdStr += " -j" |
| 3645 | output = self.sendline( cmdStr ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 3646 | assert output is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3647 | assert "Command not found:" not in output, output |
| 3648 | assert "Error executing command" not in output, output |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3649 | return output |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3650 | # FIXME: look at specific exceptions/Errors |
| 3651 | except AssertionError: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3652 | main.log.exception( "Error in processing onos:app command." ) |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3653 | return None |
| 3654 | except TypeError: |
| 3655 | main.log.exception( self.name + ": Object not as expected" ) |
| 3656 | return None |
| 3657 | except pexpect.EOF: |
| 3658 | main.log.error( self.name + ": EOF exception found" ) |
| 3659 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3660 | main.cleanAndExit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3661 | except Exception: |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3662 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3663 | main.cleanAndExit() |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3664 | |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3665 | def appStatus( self, appName ): |
| 3666 | """ |
| 3667 | Uses the onos:apps cli command to return the status of an application. |
| 3668 | Returns: |
| 3669 | "ACTIVE" - If app is installed and activated |
| 3670 | "INSTALLED" - If app is installed and deactivated |
| 3671 | "UNINSTALLED" - If app is not installed |
| 3672 | None - on error |
| 3673 | """ |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3674 | try: |
| 3675 | if not isinstance( appName, types.StringType ): |
| 3676 | main.log.error( self.name + ".appStatus(): appName must be" + |
| 3677 | " a string" ) |
| 3678 | return None |
| 3679 | output = self.apps( jsonFormat=True ) |
| 3680 | appsJson = json.loads( output ) |
| 3681 | state = None |
| 3682 | for app in appsJson: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 3683 | if appName == app.get( 'name' ): |
| 3684 | state = app.get( 'state' ) |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3685 | break |
| 3686 | if state == "ACTIVE" or state == "INSTALLED": |
| 3687 | return state |
| 3688 | elif state is None: |
Jon Hall | 8bafdc0 | 2017-09-05 11:36:26 -0700 | [diff] [blame] | 3689 | main.log.warn( "{} app not found", appName ) |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3690 | return "UNINSTALLED" |
| 3691 | elif state: |
| 3692 | main.log.error( "Unexpected state from 'onos:apps': " + |
| 3693 | str( state ) ) |
| 3694 | return state |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3695 | except ( TypeError, ValueError ): |
| 3696 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, output ) ) |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3697 | return None |
| 3698 | except pexpect.EOF: |
| 3699 | main.log.error( self.name + ": EOF exception found" ) |
| 3700 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3701 | main.cleanAndExit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3702 | except Exception: |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3703 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3704 | main.cleanAndExit() |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3705 | |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3706 | def app( self, appName, option ): |
| 3707 | """ |
| 3708 | Interacts with the app command for ONOS. This command manages |
| 3709 | application inventory. |
| 3710 | """ |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3711 | try: |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3712 | # Validate argument types |
| 3713 | valid = True |
| 3714 | if not isinstance( appName, types.StringType ): |
| 3715 | main.log.error( self.name + ".app(): appName must be a " + |
| 3716 | "string" ) |
| 3717 | valid = False |
| 3718 | if not isinstance( option, types.StringType ): |
| 3719 | main.log.error( self.name + ".app(): option must be a string" ) |
| 3720 | valid = False |
| 3721 | if not valid: |
| 3722 | return main.FALSE |
| 3723 | # Validate Option |
| 3724 | option = option.lower() |
| 3725 | # NOTE: Install may become a valid option |
| 3726 | if option == "activate": |
| 3727 | pass |
| 3728 | elif option == "deactivate": |
| 3729 | pass |
| 3730 | elif option == "uninstall": |
| 3731 | pass |
| 3732 | else: |
| 3733 | # Invalid option |
| 3734 | main.log.error( "The ONOS app command argument only takes " + |
| 3735 | "the values: (activate|deactivate|uninstall)" + |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 3736 | "; was given '" + option + "'" ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3737 | return main.FALSE |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3738 | cmdStr = "onos:app " + option + " " + appName |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3739 | output = self.sendline( cmdStr ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 3740 | assert output is not None, "Error in sendline" |
| 3741 | assert "Command not found:" not in output, output |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3742 | if "Error executing command" in output: |
| 3743 | main.log.error( "Error in processing onos:app command: " + |
| 3744 | str( output ) ) |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3745 | return main.FALSE |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3746 | elif "No such application" in output: |
| 3747 | main.log.error( "The application '" + appName + |
| 3748 | "' is not installed in ONOS" ) |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3749 | return main.FALSE |
| 3750 | elif "Command not found:" in output: |
| 3751 | main.log.error( "Error in processing onos:app command: " + |
| 3752 | str( output ) ) |
| 3753 | return main.FALSE |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3754 | elif "Unsupported command:" in output: |
| 3755 | main.log.error( "Incorrect command given to 'app': " + |
| 3756 | str( output ) ) |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3757 | # NOTE: we may need to add more checks here |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3758 | # else: Command was successful |
Jon Hall | 08f61bc | 2015-04-13 16:00:30 -0700 | [diff] [blame] | 3759 | # main.log.debug( "app response: " + repr( output ) ) |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3760 | return main.TRUE |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 3761 | except AssertionError: |
| 3762 | main.log.exception( self.name + ": AssertionError exception found" ) |
| 3763 | return main.ERROR |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3764 | except TypeError: |
| 3765 | main.log.exception( self.name + ": Object not as expected" ) |
| 3766 | return main.ERROR |
| 3767 | except pexpect.EOF: |
| 3768 | main.log.error( self.name + ": EOF exception found" ) |
| 3769 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3770 | main.cleanAndExit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3771 | except Exception: |
Jon Hall | be37960 | 2015-03-24 13:39:32 -0700 | [diff] [blame] | 3772 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3773 | main.cleanAndExit() |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3774 | |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3775 | def activateApp( self, appName, check=True ): |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3776 | """ |
| 3777 | Activate an app that is already installed in ONOS |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3778 | appName is the hierarchical app name, not the feature name |
| 3779 | If check is True, method will check the status of the app after the |
| 3780 | command is issued |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3781 | Returns main.TRUE if the command was successfully sent |
| 3782 | main.FALSE if the cli responded with an error or given |
| 3783 | incorrect input |
| 3784 | """ |
| 3785 | try: |
| 3786 | if not isinstance( appName, types.StringType ): |
| 3787 | main.log.error( self.name + ".activateApp(): appName must be" + |
| 3788 | " a string" ) |
| 3789 | return main.FALSE |
| 3790 | status = self.appStatus( appName ) |
| 3791 | if status == "INSTALLED": |
| 3792 | response = self.app( appName, "activate" ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3793 | if check and response == main.TRUE: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 3794 | for i in range( 10 ): # try 10 times then give up |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3795 | status = self.appStatus( appName ) |
| 3796 | if status == "ACTIVE": |
| 3797 | return main.TRUE |
| 3798 | else: |
Jon Hall | 050e1bd | 2015-03-30 13:33:02 -0700 | [diff] [blame] | 3799 | main.log.debug( "The state of application " + |
| 3800 | appName + " is " + status ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3801 | time.sleep( 1 ) |
| 3802 | return main.FALSE |
| 3803 | else: # not 'check' or command didn't succeed |
| 3804 | return response |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3805 | elif status == "ACTIVE": |
| 3806 | return main.TRUE |
| 3807 | elif status == "UNINSTALLED": |
| 3808 | main.log.error( self.name + ": Tried to activate the " + |
| 3809 | "application '" + appName + "' which is not " + |
| 3810 | "installed." ) |
| 3811 | else: |
| 3812 | main.log.error( "Unexpected return value from appStatus: " + |
| 3813 | str( status ) ) |
| 3814 | return main.ERROR |
| 3815 | except TypeError: |
| 3816 | main.log.exception( self.name + ": Object not as expected" ) |
| 3817 | return main.ERROR |
| 3818 | except pexpect.EOF: |
| 3819 | main.log.error( self.name + ": EOF exception found" ) |
| 3820 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3821 | main.cleanAndExit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3822 | except Exception: |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3823 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3824 | main.cleanAndExit() |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3825 | |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3826 | def deactivateApp( self, appName, check=True ): |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3827 | """ |
| 3828 | Deactivate an app that is already activated in ONOS |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3829 | appName is the hierarchical app name, not the feature name |
| 3830 | If check is True, method will check the status of the app after the |
| 3831 | command is issued |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3832 | Returns main.TRUE if the command was successfully sent |
| 3833 | main.FALSE if the cli responded with an error or given |
| 3834 | incorrect input |
| 3835 | """ |
| 3836 | try: |
| 3837 | if not isinstance( appName, types.StringType ): |
| 3838 | main.log.error( self.name + ".deactivateApp(): appName must " + |
| 3839 | "be a string" ) |
| 3840 | return main.FALSE |
| 3841 | status = self.appStatus( appName ) |
| 3842 | if status == "INSTALLED": |
| 3843 | return main.TRUE |
| 3844 | elif status == "ACTIVE": |
| 3845 | response = self.app( appName, "deactivate" ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3846 | if check and response == main.TRUE: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 3847 | for i in range( 10 ): # try 10 times then give up |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3848 | status = self.appStatus( appName ) |
| 3849 | if status == "INSTALLED": |
| 3850 | return main.TRUE |
| 3851 | else: |
| 3852 | time.sleep( 1 ) |
| 3853 | return main.FALSE |
| 3854 | else: # not check or command didn't succeed |
| 3855 | return response |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3856 | elif status == "UNINSTALLED": |
| 3857 | main.log.warn( self.name + ": Tried to deactivate the " + |
| 3858 | "application '" + appName + "' which is not " + |
| 3859 | "installed." ) |
| 3860 | return main.TRUE |
| 3861 | else: |
| 3862 | main.log.error( "Unexpected return value from appStatus: " + |
| 3863 | str( status ) ) |
| 3864 | return main.ERROR |
| 3865 | except TypeError: |
| 3866 | main.log.exception( self.name + ": Object not as expected" ) |
| 3867 | return main.ERROR |
| 3868 | except pexpect.EOF: |
| 3869 | main.log.error( self.name + ": EOF exception found" ) |
| 3870 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3871 | main.cleanAndExit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3872 | except Exception: |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3873 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3874 | main.cleanAndExit() |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3875 | |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3876 | def uninstallApp( self, appName, check=True ): |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3877 | """ |
| 3878 | Uninstall an app that is already installed in ONOS |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3879 | appName is the hierarchical app name, not the feature name |
| 3880 | If check is True, method will check the status of the app after the |
| 3881 | command is issued |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3882 | Returns main.TRUE if the command was successfully sent |
| 3883 | main.FALSE if the cli responded with an error or given |
| 3884 | incorrect input |
| 3885 | """ |
| 3886 | # TODO: check with Thomas about the state machine for apps |
| 3887 | try: |
| 3888 | if not isinstance( appName, types.StringType ): |
| 3889 | main.log.error( self.name + ".uninstallApp(): appName must " + |
| 3890 | "be a string" ) |
| 3891 | return main.FALSE |
| 3892 | status = self.appStatus( appName ) |
| 3893 | if status == "INSTALLED": |
| 3894 | response = self.app( appName, "uninstall" ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3895 | if check and response == main.TRUE: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 3896 | for i in range( 10 ): # try 10 times then give up |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3897 | status = self.appStatus( appName ) |
| 3898 | if status == "UNINSTALLED": |
| 3899 | return main.TRUE |
| 3900 | else: |
| 3901 | time.sleep( 1 ) |
| 3902 | return main.FALSE |
| 3903 | else: # not check or command didn't succeed |
| 3904 | return response |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3905 | elif status == "ACTIVE": |
| 3906 | main.log.warn( self.name + ": Tried to uninstall the " + |
| 3907 | "application '" + appName + "' which is " + |
| 3908 | "currently active." ) |
| 3909 | response = self.app( appName, "uninstall" ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3910 | if check and response == main.TRUE: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 3911 | for i in range( 10 ): # try 10 times then give up |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3912 | status = self.appStatus( appName ) |
| 3913 | if status == "UNINSTALLED": |
| 3914 | return main.TRUE |
| 3915 | else: |
| 3916 | time.sleep( 1 ) |
| 3917 | return main.FALSE |
| 3918 | else: # not check or command didn't succeed |
| 3919 | return response |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3920 | elif status == "UNINSTALLED": |
| 3921 | return main.TRUE |
| 3922 | else: |
| 3923 | main.log.error( "Unexpected return value from appStatus: " + |
| 3924 | str( status ) ) |
| 3925 | return main.ERROR |
| 3926 | except TypeError: |
| 3927 | main.log.exception( self.name + ": Object not as expected" ) |
| 3928 | return main.ERROR |
| 3929 | except pexpect.EOF: |
| 3930 | main.log.error( self.name + ": EOF exception found" ) |
| 3931 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3932 | main.cleanAndExit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3933 | except Exception: |
Jon Hall | 146f152 | 2015-03-24 15:33:24 -0700 | [diff] [blame] | 3934 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3935 | main.cleanAndExit() |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3936 | |
| 3937 | def appIDs( self, jsonFormat=True ): |
| 3938 | """ |
| 3939 | Show the mappings between app id and app names given by the 'app-ids' |
| 3940 | cli command |
| 3941 | """ |
| 3942 | try: |
| 3943 | cmdStr = "app-ids" |
| 3944 | if jsonFormat: |
| 3945 | cmdStr += " -j" |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3946 | output = self.sendline( cmdStr ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 3947 | assert output is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3948 | assert "Command not found:" not in output, output |
| 3949 | assert "Error executing command" not in output, output |
Jon Hall | c6358dd | 2015-04-10 12:44:28 -0700 | [diff] [blame] | 3950 | return output |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3951 | except AssertionError: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3952 | main.log.exception( "Error in processing onos:app-ids command." ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3953 | return None |
| 3954 | except TypeError: |
| 3955 | main.log.exception( self.name + ": Object not as expected" ) |
| 3956 | return None |
| 3957 | except pexpect.EOF: |
| 3958 | main.log.error( self.name + ": EOF exception found" ) |
| 3959 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3960 | main.cleanAndExit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 3961 | except Exception: |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3962 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 3963 | main.cleanAndExit() |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3964 | |
| 3965 | def appToIDCheck( self ): |
| 3966 | """ |
| 3967 | This method will check that each application's ID listed in 'apps' is |
| 3968 | the same as the ID listed in 'app-ids'. The check will also check that |
| 3969 | there are no duplicate IDs issued. Note that an app ID should be |
| 3970 | a globaly unique numerical identifier for app/app-like features. Once |
| 3971 | an ID is registered, the ID is never freed up so that if an app is |
| 3972 | reinstalled it will have the same ID. |
| 3973 | |
| 3974 | Returns: main.TRUE if the check passes and |
| 3975 | main.FALSE if the check fails or |
| 3976 | main.ERROR if there is some error in processing the test |
| 3977 | """ |
| 3978 | try: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3979 | bail = False |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3980 | rawJson = self.appIDs( jsonFormat=True ) |
| 3981 | if rawJson: |
| 3982 | ids = json.loads( rawJson ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3983 | else: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3984 | main.log.error( "app-ids returned nothing:" + repr( rawJson ) ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3985 | bail = True |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3986 | rawJson = self.apps( jsonFormat=True ) |
| 3987 | if rawJson: |
| 3988 | apps = json.loads( rawJson ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3989 | else: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 3990 | main.log.error( "apps returned nothing:" + repr( rawJson ) ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 3991 | bail = True |
| 3992 | if bail: |
| 3993 | return main.FALSE |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 3994 | result = main.TRUE |
| 3995 | for app in apps: |
| 3996 | appID = app.get( 'id' ) |
| 3997 | if appID is None: |
| 3998 | main.log.error( "Error parsing app: " + str( app ) ) |
| 3999 | result = main.FALSE |
| 4000 | appName = app.get( 'name' ) |
| 4001 | if appName is None: |
| 4002 | main.log.error( "Error parsing app: " + str( app ) ) |
| 4003 | result = main.FALSE |
| 4004 | # get the entry in ids that has the same appID |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4005 | current = filter( lambda item: item[ 'id' ] == appID, ids ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 4006 | if not current: # if ids doesn't have this id |
| 4007 | result = main.FALSE |
| 4008 | main.log.error( "'app-ids' does not have the ID for " + |
| 4009 | str( appName ) + " that apps does." ) |
Jon Hall | b9d381e | 2018-02-05 12:02:10 -0800 | [diff] [blame] | 4010 | main.log.debug( "apps command returned: " + str( app ) + |
| 4011 | "; app-ids has: " + str( ids ) ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 4012 | elif len( current ) > 1: |
| 4013 | # there is more than one app with this ID |
| 4014 | result = main.FALSE |
| 4015 | # We will log this later in the method |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 4016 | elif not current[ 0 ][ 'name' ] == appName: |
| 4017 | currentName = current[ 0 ][ 'name' ] |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 4018 | result = main.FALSE |
| 4019 | main.log.error( "'app-ids' has " + str( currentName ) + |
| 4020 | " registered under id:" + str( appID ) + |
| 4021 | " but 'apps' has " + str( appName ) ) |
| 4022 | else: |
| 4023 | pass # id and name match! |
| 4024 | # now make sure that app-ids has no duplicates |
| 4025 | idsList = [] |
| 4026 | namesList = [] |
| 4027 | for item in ids: |
| 4028 | idsList.append( item[ 'id' ] ) |
| 4029 | namesList.append( item[ 'name' ] ) |
| 4030 | if len( idsList ) != len( set( idsList ) ) or\ |
| 4031 | len( namesList ) != len( set( namesList ) ): |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 4032 | main.log.error( "'app-ids' has some duplicate entries: \n" |
| 4033 | + json.dumps( ids, |
| 4034 | sort_keys=True, |
| 4035 | indent=4, |
| 4036 | separators=( ',', ': ' ) ) ) |
| 4037 | result = main.FALSE |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 4038 | return result |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4039 | except ( TypeError, ValueError ): |
| 4040 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawJson ) ) |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 4041 | return main.ERROR |
| 4042 | except pexpect.EOF: |
| 4043 | main.log.error( self.name + ": EOF exception found" ) |
| 4044 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4045 | main.cleanAndExit() |
Jon Hall | 77ba41c | 2015-04-06 10:25:40 -0700 | [diff] [blame] | 4046 | except Exception: |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 4047 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4048 | main.cleanAndExit() |
Jon Hall | bd16b92 | 2015-03-26 17:53:15 -0700 | [diff] [blame] | 4049 | |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 4050 | def getCfg( self, component=None, propName=None, short=False, |
| 4051 | jsonFormat=True ): |
| 4052 | """ |
| 4053 | Get configuration settings from onos cli |
| 4054 | Optional arguments: |
| 4055 | component - Optionally only list configurations for a specific |
| 4056 | component. If None, all components with configurations |
| 4057 | are displayed. Case Sensitive string. |
| 4058 | propName - If component is specified, propName option will show |
| 4059 | only this specific configuration from that component. |
| 4060 | Case Sensitive string. |
| 4061 | jsonFormat - Returns output as json. Note that this will override |
| 4062 | the short option |
| 4063 | short - Short, less verbose, version of configurations. |
| 4064 | This is overridden by the json option |
| 4065 | returns: |
| 4066 | Output from cli as a string or None on error |
| 4067 | """ |
| 4068 | try: |
| 4069 | baseStr = "cfg" |
| 4070 | cmdStr = " get" |
| 4071 | componentStr = "" |
| 4072 | if component: |
| 4073 | componentStr += " " + component |
| 4074 | if propName: |
| 4075 | componentStr += " " + propName |
| 4076 | if jsonFormat: |
| 4077 | baseStr += " -j" |
| 4078 | elif short: |
| 4079 | baseStr += " -s" |
| 4080 | output = self.sendline( baseStr + cmdStr + componentStr ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 4081 | assert output is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4082 | assert "Command not found:" not in output, output |
| 4083 | assert "Error executing command" not in output, output |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 4084 | return output |
| 4085 | except AssertionError: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4086 | main.log.exception( "Error in processing 'cfg get' command." ) |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 4087 | return None |
| 4088 | except TypeError: |
| 4089 | main.log.exception( self.name + ": Object not as expected" ) |
| 4090 | return None |
| 4091 | except pexpect.EOF: |
| 4092 | main.log.error( self.name + ": EOF exception found" ) |
| 4093 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4094 | main.cleanAndExit() |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 4095 | except Exception: |
| 4096 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4097 | main.cleanAndExit() |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 4098 | |
| 4099 | def setCfg( self, component, propName, value=None, check=True ): |
| 4100 | """ |
| 4101 | Set/Unset configuration settings from ONOS cli |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4102 | Required arguments: |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 4103 | component - The case sensitive name of the component whose |
| 4104 | property is to be set |
| 4105 | propName - The case sensitive name of the property to be set/unset |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4106 | Optional arguments: |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 4107 | value - The value to set the property to. If None, will unset the |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 4108 | property and revert it to it's default value(if applicable) |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 4109 | check - Boolean, Check whether the option was successfully set this |
| 4110 | only applies when a value is given. |
| 4111 | returns: |
| 4112 | main.TRUE on success or main.FALSE on failure. If check is False, |
| 4113 | will return main.TRUE unless there is an error |
| 4114 | """ |
| 4115 | try: |
| 4116 | baseStr = "cfg" |
| 4117 | cmdStr = " set " + str( component ) + " " + str( propName ) |
| 4118 | if value is not None: |
| 4119 | cmdStr += " " + str( value ) |
| 4120 | output = self.sendline( baseStr + cmdStr ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 4121 | assert output is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4122 | assert "Command not found:" not in output, output |
| 4123 | assert "Error executing command" not in output, output |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 4124 | if value and check: |
| 4125 | results = self.getCfg( component=str( component ), |
| 4126 | propName=str( propName ), |
| 4127 | jsonFormat=True ) |
| 4128 | # Check if current value is what we just set |
| 4129 | try: |
| 4130 | jsonOutput = json.loads( results ) |
| 4131 | current = jsonOutput[ 'value' ] |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4132 | except ( TypeError, ValueError ): |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 4133 | main.log.exception( "Error parsing cfg output" ) |
| 4134 | main.log.error( "output:" + repr( results ) ) |
| 4135 | return main.FALSE |
| 4136 | if current == str( value ): |
| 4137 | return main.TRUE |
| 4138 | return main.FALSE |
| 4139 | return main.TRUE |
| 4140 | except AssertionError: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4141 | main.log.exception( "Error in processing 'cfg set' command." ) |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 4142 | return main.FALSE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4143 | except ( TypeError, ValueError ): |
| 4144 | main.log.exception( "{}: Object not as expected: {!r}".format( self.name, results ) ) |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 4145 | return main.FALSE |
| 4146 | except pexpect.EOF: |
| 4147 | main.log.error( self.name + ": EOF exception found" ) |
| 4148 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4149 | main.cleanAndExit() |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 4150 | except Exception: |
| 4151 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4152 | main.cleanAndExit() |
Jon Hall | fb760a0 | 2015-04-13 15:35:03 -0700 | [diff] [blame] | 4153 | |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 4154 | def distPrimitivesSend( self, cmd ): |
| 4155 | """ |
| 4156 | Function to handle sending cli commands for the distributed primitives test app |
| 4157 | |
| 4158 | This command will catch some exceptions and retry the command on some |
| 4159 | specific store exceptions. |
| 4160 | |
| 4161 | Required arguments: |
| 4162 | cmd - The command to send to the cli |
| 4163 | returns: |
| 4164 | string containing the cli output |
| 4165 | None on Error |
| 4166 | """ |
| 4167 | try: |
| 4168 | output = self.sendline( cmd ) |
| 4169 | try: |
| 4170 | assert output is not None, "Error in sendline" |
| 4171 | # TODO: Maybe make this less hardcoded |
| 4172 | # ConsistentMap Exceptions |
| 4173 | assert "org.onosproject.store.service" not in output |
| 4174 | # Node not leader |
| 4175 | assert "java.lang.IllegalStateException" not in output |
| 4176 | except AssertionError: |
| 4177 | main.log.error( "Error in processing '" + cmd + "' " + |
| 4178 | "command: " + str( output ) ) |
| 4179 | retryTime = 30 # Conservative time, given by Madan |
| 4180 | main.log.info( "Waiting " + str( retryTime ) + |
| 4181 | "seconds before retrying." ) |
| 4182 | time.sleep( retryTime ) # Due to change in mastership |
| 4183 | output = self.sendline( cmd ) |
| 4184 | assert output is not None, "Error in sendline" |
| 4185 | assert "Command not found:" not in output, output |
| 4186 | assert "Error executing command" not in output, output |
| 4187 | main.log.info( self.name + ": " + output ) |
| 4188 | return output |
| 4189 | except AssertionError: |
| 4190 | main.log.exception( "Error in processing '" + cmd + "' command." ) |
| 4191 | return None |
| 4192 | except TypeError: |
| 4193 | main.log.exception( self.name + ": Object not as expected" ) |
| 4194 | return None |
| 4195 | except pexpect.EOF: |
| 4196 | main.log.error( self.name + ": EOF exception found" ) |
| 4197 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4198 | main.cleanAndExit() |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 4199 | except Exception: |
| 4200 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4201 | main.cleanAndExit() |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 4202 | |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4203 | def setTestAdd( self, setName, values ): |
| 4204 | """ |
| 4205 | CLI command to add elements to a distributed set. |
| 4206 | Arguments: |
| 4207 | setName - The name of the set to add to. |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 4208 | values - The value(s) to add to the set, space seperated. |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4209 | Example usages: |
| 4210 | setTestAdd( "set1", "a b c" ) |
| 4211 | setTestAdd( "set2", "1" ) |
| 4212 | returns: |
| 4213 | main.TRUE on success OR |
| 4214 | main.FALSE if elements were already in the set OR |
| 4215 | main.ERROR on error |
| 4216 | """ |
| 4217 | try: |
| 4218 | cmdStr = "set-test-add " + str( setName ) + " " + str( values ) |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 4219 | output = self.distPrimitivesSend( cmdStr ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4220 | positiveMatch = "\[(.*)\] was added to the set " + str( setName ) |
| 4221 | negativeMatch = "\[(.*)\] was already in set " + str( setName ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 4222 | if re.search( positiveMatch, output ): |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4223 | return main.TRUE |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 4224 | elif re.search( negativeMatch, output ): |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4225 | return main.FALSE |
| 4226 | else: |
| 4227 | main.log.error( self.name + ": setTestAdd did not" + |
| 4228 | " match expected output" ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4229 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 4230 | return main.ERROR |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4231 | except TypeError: |
| 4232 | main.log.exception( self.name + ": Object not as expected" ) |
| 4233 | return main.ERROR |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4234 | except Exception: |
| 4235 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4236 | main.cleanAndExit() |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4237 | |
| 4238 | def setTestRemove( self, setName, values, clear=False, retain=False ): |
| 4239 | """ |
| 4240 | CLI command to remove elements from a distributed set. |
| 4241 | Required arguments: |
| 4242 | setName - The name of the set to remove from. |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 4243 | values - The value(s) to remove from the set, space seperated. |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4244 | Optional arguments: |
| 4245 | clear - Clear all elements from the set |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 4246 | retain - Retain only the given values. (intersection of the |
| 4247 | original set and the given set) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4248 | returns: |
| 4249 | main.TRUE on success OR |
| 4250 | main.FALSE if the set was not changed OR |
| 4251 | main.ERROR on error |
| 4252 | """ |
| 4253 | try: |
| 4254 | cmdStr = "set-test-remove " |
| 4255 | if clear: |
| 4256 | cmdStr += "-c " + str( setName ) |
| 4257 | elif retain: |
| 4258 | cmdStr += "-r " + str( setName ) + " " + str( values ) |
| 4259 | else: |
| 4260 | cmdStr += str( setName ) + " " + str( values ) |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 4261 | output = self.distPrimitivesSend( cmdStr ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4262 | if clear: |
| 4263 | pattern = "Set " + str( setName ) + " cleared" |
| 4264 | if re.search( pattern, output ): |
| 4265 | return main.TRUE |
| 4266 | elif retain: |
| 4267 | positivePattern = str( setName ) + " was pruned to contain " +\ |
| 4268 | "only elements of set \[(.*)\]" |
| 4269 | negativePattern = str( setName ) + " was not changed by " +\ |
| 4270 | "retaining only elements of the set " +\ |
| 4271 | "\[(.*)\]" |
| 4272 | if re.search( positivePattern, output ): |
| 4273 | return main.TRUE |
| 4274 | elif re.search( negativePattern, output ): |
| 4275 | return main.FALSE |
| 4276 | else: |
| 4277 | positivePattern = "\[(.*)\] was removed from the set " +\ |
| 4278 | str( setName ) |
| 4279 | if ( len( values.split() ) == 1 ): |
| 4280 | negativePattern = "\[(.*)\] was not in set " +\ |
| 4281 | str( setName ) |
| 4282 | else: |
| 4283 | negativePattern = "No element of \[(.*)\] was in set " +\ |
| 4284 | str( setName ) |
| 4285 | if re.search( positivePattern, output ): |
| 4286 | return main.TRUE |
| 4287 | elif re.search( negativePattern, output ): |
| 4288 | return main.FALSE |
| 4289 | main.log.error( self.name + ": setTestRemove did not" + |
| 4290 | " match expected output" ) |
| 4291 | main.log.debug( self.name + " expected: " + pattern ) |
| 4292 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 4293 | return main.ERROR |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4294 | except TypeError: |
| 4295 | main.log.exception( self.name + ": Object not as expected" ) |
| 4296 | return main.ERROR |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4297 | except Exception: |
| 4298 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4299 | main.cleanAndExit() |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4300 | |
| 4301 | def setTestGet( self, setName, values="" ): |
| 4302 | """ |
| 4303 | CLI command to get the elements in a distributed set. |
| 4304 | Required arguments: |
| 4305 | setName - The name of the set to remove from. |
| 4306 | Optional arguments: |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 4307 | values - The value(s) to check if in the set, space seperated. |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4308 | returns: |
| 4309 | main.ERROR on error OR |
| 4310 | A list of elements in the set if no optional arguments are |
| 4311 | supplied OR |
| 4312 | A tuple containing the list then: |
| 4313 | main.FALSE if the given values are not in the set OR |
| 4314 | main.TRUE if the given values are in the set OR |
| 4315 | """ |
| 4316 | try: |
| 4317 | values = str( values ).strip() |
| 4318 | setName = str( setName ).strip() |
| 4319 | length = len( values.split() ) |
| 4320 | containsCheck = None |
| 4321 | # Patterns to match |
| 4322 | setPattern = "\[(.*)\]" |
Jon Hall | 6725383 | 2016-12-05 09:47:13 -0800 | [diff] [blame] | 4323 | pattern = "Items in set " + setName + ":\r\n" + setPattern |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4324 | containsTrue = "Set " + setName + " contains the value " + values |
| 4325 | containsFalse = "Set " + setName + " did not contain the value " +\ |
| 4326 | values |
| 4327 | containsAllTrue = "Set " + setName + " contains the the subset " +\ |
| 4328 | setPattern |
| 4329 | containsAllFalse = "Set " + setName + " did not contain the the" +\ |
| 4330 | " subset " + setPattern |
| 4331 | |
| 4332 | cmdStr = "set-test-get " |
| 4333 | cmdStr += setName + " " + values |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 4334 | output = self.distPrimitivesSend( cmdStr ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4335 | if length == 0: |
| 4336 | match = re.search( pattern, output ) |
| 4337 | else: # if given values |
| 4338 | if length == 1: # Contains output |
Jon Hall | 54b994f | 2016-12-05 10:48:59 -0800 | [diff] [blame] | 4339 | patternTrue = pattern + "\r\n" + containsTrue |
| 4340 | patternFalse = pattern + "\r\n" + containsFalse |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4341 | else: # ContainsAll output |
Jon Hall | 54b994f | 2016-12-05 10:48:59 -0800 | [diff] [blame] | 4342 | patternTrue = pattern + "\r\n" + containsAllTrue |
| 4343 | patternFalse = pattern + "\r\n" + containsAllFalse |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4344 | matchTrue = re.search( patternTrue, output ) |
| 4345 | matchFalse = re.search( patternFalse, output ) |
| 4346 | if matchTrue: |
| 4347 | containsCheck = main.TRUE |
| 4348 | match = matchTrue |
| 4349 | elif matchFalse: |
| 4350 | containsCheck = main.FALSE |
| 4351 | match = matchFalse |
| 4352 | else: |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 4353 | main.log.error( self.name + " setTestGet did not match " + |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4354 | "expected output" ) |
| 4355 | main.log.debug( self.name + " expected: " + pattern ) |
| 4356 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 4357 | match = None |
| 4358 | if match: |
| 4359 | setMatch = match.group( 1 ) |
| 4360 | if setMatch == '': |
| 4361 | setList = [] |
| 4362 | else: |
| 4363 | setList = setMatch.split( ", " ) |
| 4364 | if length > 0: |
| 4365 | return ( setList, containsCheck ) |
| 4366 | else: |
| 4367 | return setList |
| 4368 | else: # no match |
| 4369 | main.log.error( self.name + ": setTestGet did not" + |
| 4370 | " match expected output" ) |
| 4371 | main.log.debug( self.name + " expected: " + pattern ) |
| 4372 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 4373 | return main.ERROR |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4374 | except TypeError: |
| 4375 | main.log.exception( self.name + ": Object not as expected" ) |
| 4376 | return main.ERROR |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4377 | except Exception: |
| 4378 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4379 | main.cleanAndExit() |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4380 | |
| 4381 | def setTestSize( self, setName ): |
| 4382 | """ |
| 4383 | CLI command to get the elements in a distributed set. |
| 4384 | Required arguments: |
| 4385 | setName - The name of the set to remove from. |
| 4386 | returns: |
Jon Hall | feff308 | 2015-05-19 10:23:26 -0700 | [diff] [blame] | 4387 | The integer value of the size returned or |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4388 | None on error |
| 4389 | """ |
| 4390 | try: |
| 4391 | # TODO: Should this check against the number of elements returned |
| 4392 | # and then return true/false based on that? |
| 4393 | setName = str( setName ).strip() |
| 4394 | # Patterns to match |
| 4395 | setPattern = "\[(.*)\]" |
Jon Hall | 6725383 | 2016-12-05 09:47:13 -0800 | [diff] [blame] | 4396 | pattern = "There are (\d+) items in set " + setName + ":\r\n" +\ |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4397 | setPattern |
| 4398 | cmdStr = "set-test-get -s " |
| 4399 | cmdStr += setName |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 4400 | output = self.distPrimitivesSend( cmdStr ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4401 | match = re.search( pattern, output ) |
| 4402 | if match: |
| 4403 | setSize = int( match.group( 1 ) ) |
| 4404 | setMatch = match.group( 2 ) |
| 4405 | if len( setMatch.split() ) == setSize: |
| 4406 | main.log.info( "The size returned by " + self.name + |
| 4407 | " matches the number of elements in " + |
| 4408 | "the returned set" ) |
| 4409 | else: |
| 4410 | main.log.error( "The size returned by " + self.name + |
| 4411 | " does not match the number of " + |
| 4412 | "elements in the returned set." ) |
| 4413 | return setSize |
| 4414 | else: # no match |
| 4415 | main.log.error( self.name + ": setTestGet did not" + |
| 4416 | " match expected output" ) |
| 4417 | main.log.debug( self.name + " expected: " + pattern ) |
| 4418 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 4419 | return None |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4420 | except TypeError: |
| 4421 | main.log.exception( self.name + ": Object not as expected" ) |
| 4422 | return None |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4423 | except Exception: |
| 4424 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4425 | main.cleanAndExit() |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4426 | |
Jon Hall | 80daded | 2015-05-27 16:07:00 -0700 | [diff] [blame] | 4427 | def counters( self, jsonFormat=True ): |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4428 | """ |
| 4429 | Command to list the various counters in the system. |
| 4430 | returns: |
Jon Hall | 80daded | 2015-05-27 16:07:00 -0700 | [diff] [blame] | 4431 | if jsonFormat, a string of the json object returned by the cli |
| 4432 | command |
| 4433 | if not jsonFormat, the normal string output of the cli command |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4434 | None on error |
| 4435 | """ |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4436 | try: |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4437 | cmdStr = "counters" |
Jon Hall | 80daded | 2015-05-27 16:07:00 -0700 | [diff] [blame] | 4438 | if jsonFormat: |
| 4439 | cmdStr += " -j" |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4440 | output = self.sendline( cmdStr ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 4441 | assert output is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4442 | assert "Command not found:" not in output, output |
| 4443 | assert "Error executing command" not in output, output |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4444 | main.log.info( self.name + ": " + output ) |
Jon Hall | 80daded | 2015-05-27 16:07:00 -0700 | [diff] [blame] | 4445 | return output |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4446 | except AssertionError: |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4447 | main.log.exception( "Error in processing 'counters' command." ) |
Jon Hall | 80daded | 2015-05-27 16:07:00 -0700 | [diff] [blame] | 4448 | return None |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4449 | except TypeError: |
| 4450 | main.log.exception( self.name + ": Object not as expected" ) |
Jon Hall | 80daded | 2015-05-27 16:07:00 -0700 | [diff] [blame] | 4451 | return None |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4452 | except pexpect.EOF: |
| 4453 | main.log.error( self.name + ": EOF exception found" ) |
| 4454 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4455 | main.cleanAndExit() |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4456 | except Exception: |
| 4457 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4458 | main.cleanAndExit() |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4459 | |
Jon Hall | 935db19 | 2016-04-19 00:22:04 -0700 | [diff] [blame] | 4460 | def counterTestAddAndGet( self, counter, delta=1 ): |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4461 | """ |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4462 | CLI command to add a delta to then get a distributed counter. |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4463 | Required arguments: |
| 4464 | counter - The name of the counter to increment. |
| 4465 | Optional arguments: |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4466 | delta - The long to add to the counter |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4467 | returns: |
| 4468 | integer value of the counter or |
| 4469 | None on Error |
| 4470 | """ |
| 4471 | try: |
| 4472 | counter = str( counter ) |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4473 | delta = int( delta ) |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4474 | cmdStr = "counter-test-increment " |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4475 | cmdStr += counter |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4476 | if delta != 1: |
| 4477 | cmdStr += " " + str( delta ) |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 4478 | output = self.distPrimitivesSend( cmdStr ) |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4479 | pattern = counter + " was updated to (-?\d+)" |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4480 | match = re.search( pattern, output ) |
| 4481 | if match: |
| 4482 | return int( match.group( 1 ) ) |
| 4483 | else: |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4484 | main.log.error( self.name + ": counterTestAddAndGet did not" + |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4485 | " match expected output." ) |
| 4486 | main.log.debug( self.name + " expected: " + pattern ) |
| 4487 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 4488 | return None |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4489 | except TypeError: |
| 4490 | main.log.exception( self.name + ": Object not as expected" ) |
| 4491 | return None |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4492 | except Exception: |
| 4493 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4494 | main.cleanAndExit() |
Jon Hall | 390696c | 2015-05-05 17:13:41 -0700 | [diff] [blame] | 4495 | |
Jon Hall | 935db19 | 2016-04-19 00:22:04 -0700 | [diff] [blame] | 4496 | def counterTestGetAndAdd( self, counter, delta=1 ): |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4497 | """ |
| 4498 | CLI command to get a distributed counter then add a delta to it. |
| 4499 | Required arguments: |
| 4500 | counter - The name of the counter to increment. |
| 4501 | Optional arguments: |
| 4502 | delta - The long to add to the counter |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4503 | returns: |
| 4504 | integer value of the counter or |
| 4505 | None on Error |
| 4506 | """ |
| 4507 | try: |
| 4508 | counter = str( counter ) |
| 4509 | delta = int( delta ) |
| 4510 | cmdStr = "counter-test-increment -g " |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4511 | cmdStr += counter |
| 4512 | if delta != 1: |
| 4513 | cmdStr += " " + str( delta ) |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 4514 | output = self.distPrimitivesSend( cmdStr ) |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4515 | pattern = counter + " was updated to (-?\d+)" |
| 4516 | match = re.search( pattern, output ) |
| 4517 | if match: |
| 4518 | return int( match.group( 1 ) ) |
| 4519 | else: |
| 4520 | main.log.error( self.name + ": counterTestGetAndAdd did not" + |
| 4521 | " match expected output." ) |
| 4522 | main.log.debug( self.name + " expected: " + pattern ) |
| 4523 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 4524 | return None |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4525 | except TypeError: |
| 4526 | main.log.exception( self.name + ": Object not as expected" ) |
| 4527 | return None |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 4528 | except Exception: |
| 4529 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4530 | main.cleanAndExit() |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 4531 | |
| 4532 | def valueTestGet( self, valueName ): |
| 4533 | """ |
| 4534 | CLI command to get the value of an atomic value. |
| 4535 | Required arguments: |
| 4536 | valueName - The name of the value to get. |
| 4537 | returns: |
| 4538 | string value of the value or |
| 4539 | None on Error |
| 4540 | """ |
| 4541 | try: |
| 4542 | valueName = str( valueName ) |
| 4543 | cmdStr = "value-test " |
| 4544 | operation = "get" |
| 4545 | cmdStr = "value-test {} {}".format( valueName, |
| 4546 | operation ) |
| 4547 | output = self.distPrimitivesSend( cmdStr ) |
| 4548 | pattern = "(\w+)" |
| 4549 | match = re.search( pattern, output ) |
| 4550 | if match: |
| 4551 | return match.group( 1 ) |
| 4552 | else: |
| 4553 | main.log.error( self.name + ": valueTestGet did not" + |
| 4554 | " match expected output." ) |
| 4555 | main.log.debug( self.name + " expected: " + pattern ) |
| 4556 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 4557 | return None |
| 4558 | except TypeError: |
| 4559 | main.log.exception( self.name + ": Object not as expected" ) |
| 4560 | return None |
| 4561 | except Exception: |
| 4562 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4563 | main.cleanAndExit() |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 4564 | |
| 4565 | def valueTestSet( self, valueName, newValue ): |
| 4566 | """ |
| 4567 | CLI command to set the value of an atomic value. |
| 4568 | Required arguments: |
| 4569 | valueName - The name of the value to set. |
| 4570 | newValue - The value to assign to the given value. |
| 4571 | returns: |
| 4572 | main.TRUE on success or |
| 4573 | main.ERROR on Error |
| 4574 | """ |
| 4575 | try: |
| 4576 | valueName = str( valueName ) |
| 4577 | newValue = str( newValue ) |
| 4578 | operation = "set" |
| 4579 | cmdStr = "value-test {} {} {}".format( valueName, |
| 4580 | operation, |
| 4581 | newValue ) |
| 4582 | output = self.distPrimitivesSend( cmdStr ) |
| 4583 | if output is not None: |
| 4584 | return main.TRUE |
| 4585 | else: |
| 4586 | return main.ERROR |
| 4587 | except TypeError: |
| 4588 | main.log.exception( self.name + ": Object not as expected" ) |
| 4589 | return main.ERROR |
| 4590 | except Exception: |
| 4591 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4592 | main.cleanAndExit() |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 4593 | |
| 4594 | def valueTestCompareAndSet( self, valueName, oldValue, newValue ): |
| 4595 | """ |
| 4596 | CLI command to compareAndSet the value of an atomic value. |
| 4597 | Required arguments: |
| 4598 | valueName - The name of the value. |
| 4599 | oldValue - Compare the current value of the atomic value to this |
| 4600 | newValue - If the value equals oldValue, set the value to newValue |
| 4601 | returns: |
| 4602 | main.TRUE on success or |
| 4603 | main.FALSE on failure or |
| 4604 | main.ERROR on Error |
| 4605 | """ |
| 4606 | try: |
| 4607 | valueName = str( valueName ) |
| 4608 | oldValue = str( oldValue ) |
| 4609 | newValue = str( newValue ) |
| 4610 | operation = "compareAndSet" |
| 4611 | cmdStr = "value-test {} {} {} {}".format( valueName, |
| 4612 | operation, |
| 4613 | oldValue, |
| 4614 | newValue ) |
| 4615 | output = self.distPrimitivesSend( cmdStr ) |
| 4616 | pattern = "(\w+)" |
| 4617 | match = re.search( pattern, output ) |
| 4618 | if match: |
| 4619 | result = match.group( 1 ) |
| 4620 | if result == "true": |
| 4621 | return main.TRUE |
| 4622 | elif result == "false": |
| 4623 | return main.FALSE |
| 4624 | else: |
| 4625 | main.log.error( self.name + ": valueTestCompareAndSet did not" + |
| 4626 | " match expected output." ) |
| 4627 | main.log.debug( self.name + " expected: " + pattern ) |
| 4628 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 4629 | return main.ERROR |
| 4630 | except TypeError: |
| 4631 | main.log.exception( self.name + ": Object not as expected" ) |
| 4632 | return main.ERROR |
| 4633 | except Exception: |
| 4634 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4635 | main.cleanAndExit() |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 4636 | |
| 4637 | def valueTestGetAndSet( self, valueName, newValue ): |
| 4638 | """ |
| 4639 | CLI command to getAndSet the value of an atomic value. |
| 4640 | Required arguments: |
| 4641 | valueName - The name of the value to get. |
| 4642 | newValue - The value to assign to the given value |
| 4643 | returns: |
| 4644 | string value of the value or |
| 4645 | None on Error |
| 4646 | """ |
| 4647 | try: |
| 4648 | valueName = str( valueName ) |
| 4649 | cmdStr = "value-test " |
| 4650 | operation = "getAndSet" |
| 4651 | cmdStr += valueName + " " + operation |
| 4652 | cmdStr = "value-test {} {} {}".format( valueName, |
| 4653 | operation, |
| 4654 | newValue ) |
| 4655 | output = self.distPrimitivesSend( cmdStr ) |
| 4656 | pattern = "(\w+)" |
| 4657 | match = re.search( pattern, output ) |
| 4658 | if match: |
| 4659 | return match.group( 1 ) |
| 4660 | else: |
| 4661 | main.log.error( self.name + ": valueTestGetAndSet did not" + |
| 4662 | " match expected output." ) |
| 4663 | main.log.debug( self.name + " expected: " + pattern ) |
| 4664 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 4665 | return None |
| 4666 | except TypeError: |
| 4667 | main.log.exception( self.name + ": Object not as expected" ) |
| 4668 | return None |
| 4669 | except Exception: |
| 4670 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4671 | main.cleanAndExit() |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 4672 | |
| 4673 | def valueTestDestroy( self, valueName ): |
| 4674 | """ |
| 4675 | CLI command to destroy an atomic value. |
| 4676 | Required arguments: |
| 4677 | valueName - The name of the value to destroy. |
| 4678 | returns: |
| 4679 | main.TRUE on success or |
| 4680 | main.ERROR on Error |
| 4681 | """ |
| 4682 | try: |
| 4683 | valueName = str( valueName ) |
| 4684 | cmdStr = "value-test " |
| 4685 | operation = "destroy" |
| 4686 | cmdStr += valueName + " " + operation |
| 4687 | output = self.distPrimitivesSend( cmdStr ) |
| 4688 | if output is not None: |
| 4689 | return main.TRUE |
| 4690 | else: |
| 4691 | return main.ERROR |
| 4692 | except TypeError: |
| 4693 | main.log.exception( self.name + ": Object not as expected" ) |
| 4694 | return main.ERROR |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4695 | except Exception: |
| 4696 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4697 | main.cleanAndExit() |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 4698 | |
YPZhang | febf730 | 2016-05-24 16:45:56 -0700 | [diff] [blame] | 4699 | def summary( self, jsonFormat=True, timeout=30 ): |
kelvin-onlab | a297c4d | 2015-06-01 13:53:55 -0700 | [diff] [blame] | 4700 | """ |
| 4701 | Description: Execute summary command in onos |
| 4702 | Returns: json object ( summary -j ), returns main.FALSE if there is |
| 4703 | no output |
| 4704 | |
| 4705 | """ |
| 4706 | try: |
| 4707 | cmdStr = "summary" |
| 4708 | if jsonFormat: |
| 4709 | cmdStr += " -j" |
YPZhang | febf730 | 2016-05-24 16:45:56 -0700 | [diff] [blame] | 4710 | handle = self.sendline( cmdStr, timeout=timeout ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 4711 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4712 | assert "Command not found:" not in handle, handle |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 4713 | assert "Error:" not in handle, handle |
Devin Lim | a7cfdbd | 2017-09-29 15:02:22 -0700 | [diff] [blame] | 4714 | assert "Error executing" not in handle, handle |
kelvin-onlab | a297c4d | 2015-06-01 13:53:55 -0700 | [diff] [blame] | 4715 | if not handle: |
| 4716 | main.log.error( self.name + ": There is no output in " + |
| 4717 | "summary command" ) |
| 4718 | return main.FALSE |
| 4719 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4720 | except AssertionError: |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 4721 | main.log.exception( "{} Error in summary output:".format( self.name ) ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4722 | return None |
kelvin-onlab | a297c4d | 2015-06-01 13:53:55 -0700 | [diff] [blame] | 4723 | except TypeError: |
| 4724 | main.log.exception( self.name + ": Object not as expected" ) |
| 4725 | return None |
| 4726 | except pexpect.EOF: |
| 4727 | main.log.error( self.name + ": EOF exception found" ) |
| 4728 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4729 | main.cleanAndExit() |
kelvin-onlab | a297c4d | 2015-06-01 13:53:55 -0700 | [diff] [blame] | 4730 | except Exception: |
| 4731 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4732 | main.cleanAndExit() |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4733 | |
Jon Hall | 935db19 | 2016-04-19 00:22:04 -0700 | [diff] [blame] | 4734 | def transactionalMapGet( self, keyName ): |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4735 | """ |
| 4736 | CLI command to get the value of a key in a consistent map using |
| 4737 | transactions. This a test function and can only get keys from the |
| 4738 | test map hard coded into the cli command |
| 4739 | Required arguments: |
| 4740 | keyName - The name of the key to get |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4741 | returns: |
| 4742 | The string value of the key or |
| 4743 | None on Error |
| 4744 | """ |
| 4745 | try: |
| 4746 | keyName = str( keyName ) |
| 4747 | cmdStr = "transactional-map-test-get " |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4748 | cmdStr += keyName |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 4749 | output = self.distPrimitivesSend( cmdStr ) |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4750 | pattern = "Key-value pair \(" + keyName + ", (?P<value>.+)\) found." |
| 4751 | if "Key " + keyName + " not found." in output: |
Jon Hall | 9bfadd2 | 2016-05-11 14:48:07 -0700 | [diff] [blame] | 4752 | main.log.warn( output ) |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4753 | return None |
| 4754 | else: |
| 4755 | match = re.search( pattern, output ) |
| 4756 | if match: |
| 4757 | return match.groupdict()[ 'value' ] |
| 4758 | else: |
| 4759 | main.log.error( self.name + ": transactionlMapGet did not" + |
| 4760 | " match expected output." ) |
| 4761 | main.log.debug( self.name + " expected: " + pattern ) |
| 4762 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 4763 | return None |
| 4764 | except TypeError: |
| 4765 | main.log.exception( self.name + ": Object not as expected" ) |
| 4766 | return None |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4767 | except Exception: |
| 4768 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4769 | main.cleanAndExit() |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4770 | |
Jon Hall | 935db19 | 2016-04-19 00:22:04 -0700 | [diff] [blame] | 4771 | def transactionalMapPut( self, numKeys, value ): |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4772 | """ |
| 4773 | CLI command to put a value into 'numKeys' number of keys in a |
| 4774 | consistent map using transactions. This a test function and can only |
| 4775 | put into keys named 'Key#' of the test map hard coded into the cli command |
| 4776 | Required arguments: |
| 4777 | numKeys - Number of keys to add the value to |
| 4778 | value - The string value to put into the keys |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4779 | returns: |
| 4780 | A dictionary whose keys are the name of the keys put into the map |
| 4781 | and the values of the keys are dictionaries whose key-values are |
| 4782 | 'value': value put into map and optionaly |
| 4783 | 'oldValue': Previous value in the key or |
| 4784 | None on Error |
| 4785 | |
| 4786 | Example output |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 4787 | { 'Key1': {'oldValue': 'oldTestValue', 'value': 'Testing'}, |
| 4788 | 'Key2': {'value': 'Testing'} } |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4789 | """ |
| 4790 | try: |
| 4791 | numKeys = str( numKeys ) |
| 4792 | value = str( value ) |
| 4793 | cmdStr = "transactional-map-test-put " |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4794 | cmdStr += numKeys + " " + value |
Jon Hall | 7a6ebfd | 2017-03-13 10:58:58 -0700 | [diff] [blame] | 4795 | output = self.distPrimitivesSend( cmdStr ) |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4796 | newPattern = 'Created Key (?P<key>(\w)+) with value (?P<value>(.)+)\.' |
| 4797 | updatedPattern = "Put (?P<value>(.)+) into key (?P<key>(\w)+)\. The old value was (?P<oldValue>(.)+)\." |
| 4798 | results = {} |
| 4799 | for line in output.splitlines(): |
| 4800 | new = re.search( newPattern, line ) |
| 4801 | updated = re.search( updatedPattern, line ) |
| 4802 | if new: |
| 4803 | results[ new.groupdict()[ 'key' ] ] = { 'value': new.groupdict()[ 'value' ] } |
| 4804 | elif updated: |
| 4805 | results[ updated.groupdict()[ 'key' ] ] = { 'value': updated.groupdict()[ 'value' ], |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4806 | 'oldValue': updated.groupdict()[ 'oldValue' ] } |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4807 | else: |
| 4808 | main.log.error( self.name + ": transactionlMapGet did not" + |
| 4809 | " match expected output." ) |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4810 | main.log.debug( "{} expected: {!r} or {!r}".format( self.name, |
| 4811 | newPattern, |
| 4812 | updatedPattern ) ) |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4813 | main.log.debug( self.name + " actual: " + repr( output ) ) |
| 4814 | return results |
| 4815 | except TypeError: |
| 4816 | main.log.exception( self.name + ": Object not as expected" ) |
| 4817 | return None |
Jon Hall | 2a5002c | 2015-08-21 16:49:11 -0700 | [diff] [blame] | 4818 | except Exception: |
| 4819 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4820 | main.cleanAndExit() |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4821 | |
acsmars | daea66c | 2015-09-03 11:44:06 -0700 | [diff] [blame] | 4822 | def maps( self, jsonFormat=True ): |
| 4823 | """ |
| 4824 | Description: Returns result of onos:maps |
| 4825 | Optional: |
| 4826 | * jsonFormat: enable json formatting of output |
| 4827 | """ |
| 4828 | try: |
| 4829 | cmdStr = "maps" |
| 4830 | if jsonFormat: |
| 4831 | cmdStr += " -j" |
| 4832 | handle = self.sendline( cmdStr ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 4833 | assert handle is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4834 | assert "Command not found:" not in handle, handle |
acsmars | daea66c | 2015-09-03 11:44:06 -0700 | [diff] [blame] | 4835 | return handle |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4836 | except AssertionError: |
| 4837 | main.log.exception( "" ) |
| 4838 | return None |
acsmars | daea66c | 2015-09-03 11:44:06 -0700 | [diff] [blame] | 4839 | except TypeError: |
| 4840 | main.log.exception( self.name + ": Object not as expected" ) |
| 4841 | return None |
| 4842 | except pexpect.EOF: |
| 4843 | main.log.error( self.name + ": EOF exception found" ) |
| 4844 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4845 | main.cleanAndExit() |
acsmars | daea66c | 2015-09-03 11:44:06 -0700 | [diff] [blame] | 4846 | except Exception: |
| 4847 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4848 | main.cleanAndExit() |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4849 | |
| 4850 | def getSwController( self, uri, jsonFormat=True ): |
| 4851 | """ |
| 4852 | Descrition: Gets the controller information from the device |
| 4853 | """ |
| 4854 | try: |
| 4855 | cmd = "device-controllers " |
| 4856 | if jsonFormat: |
| 4857 | cmd += "-j " |
| 4858 | response = self.sendline( cmd + uri ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 4859 | assert response is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4860 | assert "Command not found:" not in response, response |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4861 | return response |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4862 | except AssertionError: |
| 4863 | main.log.exception( "" ) |
| 4864 | return None |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4865 | except TypeError: |
| 4866 | main.log.exception( self.name + ": Object not as expected" ) |
| 4867 | return None |
| 4868 | except pexpect.EOF: |
| 4869 | main.log.error( self.name + ": EOF exception found" ) |
| 4870 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4871 | main.cleanAndExit() |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4872 | except Exception: |
| 4873 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4874 | main.cleanAndExit() |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4875 | |
| 4876 | def setSwController( self, uri, ip, proto="tcp", port="6653", jsonFormat=True ): |
| 4877 | """ |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 4878 | Descrition: sets the controller(s) for the specified device |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4879 | |
| 4880 | Parameters: |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 4881 | Required: uri - String: The uri of the device(switch). |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4882 | ip - String or List: The ip address of the controller. |
| 4883 | This parameter can be formed in a couple of different ways. |
| 4884 | VALID: |
| 4885 | 10.0.0.1 - just the ip address |
| 4886 | tcp:10.0.0.1 - the protocol and the ip address |
| 4887 | tcp:10.0.0.1:6653 - the protocol and port can be specified, |
| 4888 | so that you can add controllers with different |
| 4889 | protocols and ports |
| 4890 | INVALID: |
| 4891 | 10.0.0.1:6653 - this is not supported by ONOS |
| 4892 | |
| 4893 | Optional: proto - The type of connection e.g. tcp, ssl. If a list of ips are given |
| 4894 | port - The port number. |
| 4895 | jsonFormat - If set ONOS will output in json NOTE: This is currently not supported |
| 4896 | |
| 4897 | Returns: main.TRUE if ONOS returns without any errors, otherwise returns main.FALSE |
| 4898 | """ |
| 4899 | try: |
| 4900 | cmd = "device-setcontrollers" |
| 4901 | |
| 4902 | if jsonFormat: |
| 4903 | cmd += " -j" |
| 4904 | cmd += " " + uri |
| 4905 | if isinstance( ip, str ): |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 4906 | ip = [ ip ] |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4907 | for item in ip: |
| 4908 | if ":" in item: |
| 4909 | sitem = item.split( ":" ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 4910 | if len( sitem ) == 3: |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4911 | cmd += " " + item |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 4912 | elif "." in sitem[ 1 ]: |
| 4913 | cmd += " {}:{}".format( item, port ) |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4914 | else: |
| 4915 | main.log.error( "Malformed entry: " + item ) |
| 4916 | raise TypeError |
| 4917 | else: |
| 4918 | cmd += " {}:{}:{}".format( proto, item, port ) |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4919 | response = self.sendline( cmd ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 4920 | assert response is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4921 | assert "Command not found:" not in response, response |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4922 | if "Error" in response: |
| 4923 | main.log.error( response ) |
| 4924 | return main.FALSE |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4925 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4926 | except AssertionError: |
| 4927 | main.log.exception( "" ) |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 4928 | return main.FALSE |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4929 | except TypeError: |
| 4930 | main.log.exception( self.name + ": Object not as expected" ) |
| 4931 | return main.FALSE |
| 4932 | except pexpect.EOF: |
| 4933 | main.log.error( self.name + ": EOF exception found" ) |
| 4934 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4935 | main.cleanAndExit() |
GlennRC | 050596c | 2015-11-18 17:06:41 -0800 | [diff] [blame] | 4936 | except Exception: |
| 4937 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4938 | main.cleanAndExit() |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4939 | |
| 4940 | def removeDevice( self, device ): |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 4941 | ''' |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4942 | Description: |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 4943 | Remove a device from ONOS by passing the uri of the device(s). |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4944 | Parameters: |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 4945 | device - (str or list) the id or uri of the device ex. "of:0000000000000001" |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4946 | Returns: |
| 4947 | Returns main.FALSE if an exception is thrown or an error is present |
| 4948 | in the response. Otherwise, returns main.TRUE. |
| 4949 | NOTE: |
| 4950 | If a host cannot be removed, then this function will return main.FALSE |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 4951 | ''' |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4952 | try: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 4953 | if isinstance( device, str ): |
You Wang | 823f502 | 2016-08-18 15:24:41 -0700 | [diff] [blame] | 4954 | deviceStr = device |
| 4955 | device = [] |
| 4956 | device.append( deviceStr ) |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4957 | |
| 4958 | for d in device: |
| 4959 | time.sleep( 1 ) |
| 4960 | response = self.sendline( "device-remove {}".format( d ) ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 4961 | assert response is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4962 | assert "Command not found:" not in response, response |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4963 | if "Error" in response: |
| 4964 | main.log.warn( "Error for device: {}\nResponse: {}".format( d, response ) ) |
| 4965 | return main.FALSE |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4966 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 4967 | except AssertionError: |
| 4968 | main.log.exception( "" ) |
| 4969 | return main.FALSE |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4970 | except TypeError: |
| 4971 | main.log.exception( self.name + ": Object not as expected" ) |
| 4972 | return main.FALSE |
| 4973 | except pexpect.EOF: |
| 4974 | main.log.error( self.name + ": EOF exception found" ) |
| 4975 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4976 | main.cleanAndExit() |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4977 | except Exception: |
| 4978 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 4979 | main.cleanAndExit() |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4980 | |
| 4981 | def removeHost( self, host ): |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 4982 | ''' |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4983 | Description: |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 4984 | Remove a host from ONOS by passing the id of the host(s) |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4985 | Parameters: |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 4986 | hostId - (str or list) the id or mac of the host ex. "00:00:00:00:00:01" |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4987 | Returns: |
| 4988 | Returns main.FALSE if an exception is thrown or an error is present |
| 4989 | in the response. Otherwise, returns main.TRUE. |
| 4990 | NOTE: |
| 4991 | If a host cannot be removed, then this function will return main.FALSE |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 4992 | ''' |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4993 | try: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 4994 | if isinstance( host, str ): |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 4995 | host = list( host ) |
| 4996 | |
| 4997 | for h in host: |
| 4998 | time.sleep( 1 ) |
| 4999 | response = self.sendline( "host-remove {}".format( h ) ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 5000 | assert response is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 5001 | assert "Command not found:" not in response, response |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 5002 | if "Error" in response: |
| 5003 | main.log.warn( "Error for host: {}\nResponse: {}".format( h, response ) ) |
| 5004 | return main.FALSE |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 5005 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 5006 | except AssertionError: |
| 5007 | main.log.exception( "" ) |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5008 | return main.FALSE |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 5009 | except TypeError: |
| 5010 | main.log.exception( self.name + ": Object not as expected" ) |
| 5011 | return main.FALSE |
| 5012 | except pexpect.EOF: |
| 5013 | main.log.error( self.name + ": EOF exception found" ) |
| 5014 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5015 | main.cleanAndExit() |
GlennRC | 20fc652 | 2015-12-23 23:26:57 -0800 | [diff] [blame] | 5016 | except Exception: |
| 5017 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5018 | main.cleanAndExit() |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 5019 | |
YPZhang | febf730 | 2016-05-24 16:45:56 -0700 | [diff] [blame] | 5020 | def link( self, begin, end, state, timeout=30, showResponse=True ): |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 5021 | ''' |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 5022 | Description: |
| 5023 | Bring link down or up in the null-provider. |
| 5024 | params: |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 5025 | begin - (string) One end of a device or switch. |
| 5026 | end - (string) the other end of the device or switch |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 5027 | returns: |
| 5028 | main.TRUE if no exceptions were thrown and no Errors are |
| 5029 | present in the resoponse. Otherwise, returns main.FALSE |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 5030 | ''' |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 5031 | try: |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5032 | cmd = "null-link null:{} null:{} {}".format( begin, end, state ) |
YPZhang | febf730 | 2016-05-24 16:45:56 -0700 | [diff] [blame] | 5033 | response = self.sendline( cmd, showResponse=showResponse, timeout=timeout ) |
Jon Hall | a495f56 | 2016-05-16 18:03:26 -0700 | [diff] [blame] | 5034 | assert response is not None, "Error in sendline" |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 5035 | assert "Command not found:" not in response, response |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 5036 | if "Error" in response or "Failure" in response: |
| 5037 | main.log.error( response ) |
| 5038 | return main.FALSE |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 5039 | return main.TRUE |
Jon Hall | c679355 | 2016-01-19 14:18:37 -0800 | [diff] [blame] | 5040 | except AssertionError: |
| 5041 | main.log.exception( "" ) |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5042 | return main.FALSE |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 5043 | except TypeError: |
| 5044 | main.log.exception( self.name + ": Object not as expected" ) |
| 5045 | return main.FALSE |
| 5046 | except pexpect.EOF: |
| 5047 | main.log.error( self.name + ": EOF exception found" ) |
| 5048 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5049 | main.cleanAndExit() |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 5050 | except Exception: |
| 5051 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5052 | main.cleanAndExit() |
GlennRC | ed77124 | 2016-01-13 17:02:47 -0800 | [diff] [blame] | 5053 | |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5054 | def portstate( self, dpid, port, state ): |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 5055 | ''' |
Flavio Castro | 82ee2f6 | 2016-06-07 15:04:12 -0700 | [diff] [blame] | 5056 | Description: |
| 5057 | Changes the state of port in an OF switch by means of the |
| 5058 | PORTSTATUS OF messages. |
| 5059 | params: |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 5060 | dpid - (string) Datapath ID of the device. Ex: 'of:0000000000000102' |
| 5061 | port - (string) target port in the device. Ex: '2' |
| 5062 | state - (string) target state (enable or disable) |
Flavio Castro | 82ee2f6 | 2016-06-07 15:04:12 -0700 | [diff] [blame] | 5063 | returns: |
| 5064 | main.TRUE if no exceptions were thrown and no Errors are |
| 5065 | present in the resoponse. Otherwise, returns main.FALSE |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 5066 | ''' |
Flavio Castro | 82ee2f6 | 2016-06-07 15:04:12 -0700 | [diff] [blame] | 5067 | try: |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5068 | state = state.lower() |
| 5069 | assert state == 'enable' or state == 'disable', "Unknown state" |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5070 | cmd = "portstate {} {} {}".format( dpid, port, state ) |
Flavio Castro | 82ee2f6 | 2016-06-07 15:04:12 -0700 | [diff] [blame] | 5071 | response = self.sendline( cmd, showResponse=True ) |
| 5072 | assert response is not None, "Error in sendline" |
| 5073 | assert "Command not found:" not in response, response |
| 5074 | if "Error" in response or "Failure" in response: |
| 5075 | main.log.error( response ) |
| 5076 | return main.FALSE |
| 5077 | return main.TRUE |
| 5078 | except AssertionError: |
| 5079 | main.log.exception( "" ) |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5080 | return main.FALSE |
Flavio Castro | 82ee2f6 | 2016-06-07 15:04:12 -0700 | [diff] [blame] | 5081 | except TypeError: |
| 5082 | main.log.exception( self.name + ": Object not as expected" ) |
| 5083 | return main.FALSE |
| 5084 | except pexpect.EOF: |
| 5085 | main.log.error( self.name + ": EOF exception found" ) |
| 5086 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5087 | main.cleanAndExit() |
Flavio Castro | 82ee2f6 | 2016-06-07 15:04:12 -0700 | [diff] [blame] | 5088 | except Exception: |
| 5089 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5090 | main.cleanAndExit() |
Flavio Castro | 82ee2f6 | 2016-06-07 15:04:12 -0700 | [diff] [blame] | 5091 | |
| 5092 | def logSet( self, level="INFO", app="org.onosproject" ): |
| 5093 | """ |
| 5094 | Set the logging level to lvl for a specific app |
| 5095 | returns main.TRUE on success |
| 5096 | returns main.FALSE if Error occurred |
| 5097 | if noExit is True, TestON will not exit, but clean up |
| 5098 | Available level: DEBUG, TRACE, INFO, WARN, ERROR |
| 5099 | Level defaults to INFO |
| 5100 | """ |
| 5101 | try: |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5102 | self.handle.sendline( "log:set %s %s" % ( level, app ) ) |
Flavio Castro | 82ee2f6 | 2016-06-07 15:04:12 -0700 | [diff] [blame] | 5103 | self.handle.expect( "onos>" ) |
| 5104 | |
| 5105 | response = self.handle.before |
| 5106 | if re.search( "Error", response ): |
| 5107 | return main.FALSE |
| 5108 | return main.TRUE |
| 5109 | except pexpect.TIMEOUT: |
| 5110 | main.log.exception( self.name + ": TIMEOUT exception found" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5111 | main.cleanAndExit() |
Flavio Castro | 82ee2f6 | 2016-06-07 15:04:12 -0700 | [diff] [blame] | 5112 | except pexpect.EOF: |
| 5113 | main.log.error( self.name + ": EOF exception found" ) |
| 5114 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5115 | main.cleanAndExit() |
Flavio Castro | 82ee2f6 | 2016-06-07 15:04:12 -0700 | [diff] [blame] | 5116 | except Exception: |
| 5117 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5118 | main.cleanAndExit() |
You Wang | db8cd0a | 2016-05-26 15:19:45 -0700 | [diff] [blame] | 5119 | |
| 5120 | def getGraphDict( self, timeout=60, includeHost=False ): |
| 5121 | """ |
| 5122 | Return a dictionary which describes the latest network topology data as a |
| 5123 | graph. |
| 5124 | An example of the dictionary: |
| 5125 | { vertex1: { 'edges': ..., 'name': ..., 'protocol': ... }, |
| 5126 | vertex2: { 'edges': ..., 'name': ..., 'protocol': ... } } |
| 5127 | Each vertex should at least have an 'edges' attribute which describes the |
| 5128 | adjacency information. The value of 'edges' attribute is also represented by |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 5129 | a dictionary, which maps each edge (identified by the neighbor vertex) to a |
You Wang | db8cd0a | 2016-05-26 15:19:45 -0700 | [diff] [blame] | 5130 | list of attributes. |
| 5131 | An example of the edges dictionary: |
| 5132 | 'edges': { vertex2: { 'port': ..., 'weight': ... }, |
| 5133 | vertex3: { 'port': ..., 'weight': ... } } |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 5134 | If includeHost == True, all hosts (and host-switch links) will be included |
You Wang | db8cd0a | 2016-05-26 15:19:45 -0700 | [diff] [blame] | 5135 | in topology data. |
| 5136 | """ |
| 5137 | graphDict = {} |
| 5138 | try: |
| 5139 | links = self.links() |
| 5140 | links = json.loads( links ) |
| 5141 | devices = self.devices() |
| 5142 | devices = json.loads( devices ) |
| 5143 | idToDevice = {} |
| 5144 | for device in devices: |
| 5145 | idToDevice[ device[ 'id' ] ] = device |
| 5146 | if includeHost: |
| 5147 | hosts = self.hosts() |
| 5148 | # FIXME: support 'includeHost' argument |
| 5149 | for link in links: |
| 5150 | nodeA = link[ 'src' ][ 'device' ] |
| 5151 | nodeB = link[ 'dst' ][ 'device' ] |
| 5152 | assert idToDevice[ nodeA ][ 'available' ] and idToDevice[ nodeB ][ 'available' ] |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5153 | if nodeA not in graphDict.keys(): |
| 5154 | graphDict[ nodeA ] = { 'edges': {}, |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 5155 | 'dpid': idToDevice[ nodeA ][ 'id' ][ 3: ], |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5156 | 'type': idToDevice[ nodeA ][ 'type' ], |
| 5157 | 'available': idToDevice[ nodeA ][ 'available' ], |
| 5158 | 'role': idToDevice[ nodeA ][ 'role' ], |
| 5159 | 'mfr': idToDevice[ nodeA ][ 'mfr' ], |
| 5160 | 'hw': idToDevice[ nodeA ][ 'hw' ], |
| 5161 | 'sw': idToDevice[ nodeA ][ 'sw' ], |
| 5162 | 'serial': idToDevice[ nodeA ][ 'serial' ], |
| 5163 | 'chassisId': idToDevice[ nodeA ][ 'chassisId' ], |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 5164 | 'annotations': idToDevice[ nodeA ][ 'annotations' ]} |
You Wang | db8cd0a | 2016-05-26 15:19:45 -0700 | [diff] [blame] | 5165 | else: |
| 5166 | # Assert nodeB is not connected to any current links of nodeA |
| 5167 | assert nodeB not in graphDict[ nodeA ][ 'edges' ].keys() |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5168 | graphDict[ nodeA ][ 'edges' ][ nodeB ] = { 'port': link[ 'src' ][ 'port' ], |
| 5169 | 'type': link[ 'type' ], |
| 5170 | 'state': link[ 'state' ] } |
You Wang | db8cd0a | 2016-05-26 15:19:45 -0700 | [diff] [blame] | 5171 | return graphDict |
| 5172 | except ( TypeError, ValueError ): |
| 5173 | main.log.exception( self.name + ": Object not as expected" ) |
| 5174 | return None |
| 5175 | except KeyError: |
| 5176 | main.log.exception( self.name + ": KeyError exception found" ) |
| 5177 | return None |
| 5178 | except AssertionError: |
| 5179 | main.log.exception( self.name + ": AssertionError exception found" ) |
| 5180 | return None |
| 5181 | except pexpect.EOF: |
| 5182 | main.log.error( self.name + ": EOF exception found" ) |
| 5183 | main.log.error( self.name + ": " + self.handle.before ) |
| 5184 | return None |
| 5185 | except Exception: |
| 5186 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 5187 | return None |
YPZhang | cbc2a06 | 2016-07-11 10:55:44 -0700 | [diff] [blame] | 5188 | |
| 5189 | def getIntentPerfSummary( self ): |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 5190 | ''' |
YPZhang | cbc2a06 | 2016-07-11 10:55:44 -0700 | [diff] [blame] | 5191 | Send command to check intent-perf summary |
| 5192 | Returns: dictionary for intent-perf summary |
| 5193 | if something wrong, function will return None |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 5194 | ''' |
YPZhang | cbc2a06 | 2016-07-11 10:55:44 -0700 | [diff] [blame] | 5195 | cmd = "intent-perf -s" |
| 5196 | respDic = {} |
| 5197 | resp = self.sendline( cmd ) |
You Wang | b5a55f7 | 2017-03-03 12:51:05 -0800 | [diff] [blame] | 5198 | assert resp is not None, "Error in sendline" |
| 5199 | assert "Command not found:" not in resp, resp |
YPZhang | cbc2a06 | 2016-07-11 10:55:44 -0700 | [diff] [blame] | 5200 | try: |
| 5201 | # Generate the dictionary to return |
| 5202 | for l in resp.split( "\n" ): |
| 5203 | # Delete any white space in line |
| 5204 | temp = re.sub( r'\s+', '', l ) |
| 5205 | temp = temp.split( ":" ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 5206 | respDic[ temp[ 0 ] ] = temp[ 1 ] |
YPZhang | cbc2a06 | 2016-07-11 10:55:44 -0700 | [diff] [blame] | 5207 | |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 5208 | except ( TypeError, ValueError ): |
YPZhang | cbc2a06 | 2016-07-11 10:55:44 -0700 | [diff] [blame] | 5209 | main.log.exception( self.name + ": Object not as expected" ) |
| 5210 | return None |
| 5211 | except KeyError: |
| 5212 | main.log.exception( self.name + ": KeyError exception found" ) |
| 5213 | return None |
| 5214 | except AssertionError: |
| 5215 | main.log.exception( self.name + ": AssertionError exception found" ) |
| 5216 | return None |
| 5217 | except pexpect.EOF: |
| 5218 | main.log.error( self.name + ": EOF exception found" ) |
| 5219 | main.log.error( self.name + ": " + self.handle.before ) |
| 5220 | return None |
| 5221 | except Exception: |
| 5222 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 5223 | return None |
| 5224 | return respDic |
| 5225 | |
Chiyu Cheng | ec63bde | 2016-11-17 18:11:36 -0800 | [diff] [blame] | 5226 | def logSearch( self, mode='all', searchTerm='', startLine='', logNum=1 ): |
chengchiyu | 08303a0 | 2016-09-08 17:40:26 -0700 | [diff] [blame] | 5227 | """ |
| 5228 | Searches the latest ONOS log file for the given search term and |
| 5229 | return a list that contains all the lines that have the search term. |
YPZhang | cbc2a06 | 2016-07-11 10:55:44 -0700 | [diff] [blame] | 5230 | |
chengchiyu | 08303a0 | 2016-09-08 17:40:26 -0700 | [diff] [blame] | 5231 | Arguments: |
Chiyu Cheng | ec63bde | 2016-11-17 18:11:36 -0800 | [diff] [blame] | 5232 | searchTerm: |
| 5233 | The string to grep from the ONOS log. |
| 5234 | startLine: |
| 5235 | The term that decides which line is the start to search the searchTerm in |
| 5236 | the karaf log. For now, startTerm only works in 'first' mode. |
| 5237 | logNum: |
| 5238 | In some extreme cases, one karaf log is not big enough to contain all the |
| 5239 | information.Because of this, search mutiply logs is necessary to capture |
| 5240 | the right result. logNum is the number of karaf logs that we need to search |
| 5241 | the searchTerm. |
chengchiyu | 08303a0 | 2016-09-08 17:40:26 -0700 | [diff] [blame] | 5242 | mode: |
| 5243 | all: return all the strings that contain the search term |
| 5244 | last: return the last string that contains the search term |
| 5245 | first: return the first string that contains the search term |
Chiyu Cheng | ec63bde | 2016-11-17 18:11:36 -0800 | [diff] [blame] | 5246 | num: return the number of times that the searchTerm appears in the log |
| 5247 | total: return how many lines in karaf log |
chengchiyu | 08303a0 | 2016-09-08 17:40:26 -0700 | [diff] [blame] | 5248 | """ |
| 5249 | try: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 5250 | assert isinstance( searchTerm, str ) |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5251 | # Build the log paths string |
Chiyu Cheng | ec63bde | 2016-11-17 18:11:36 -0800 | [diff] [blame] | 5252 | logPath = '/opt/onos/log/karaf.log.' |
| 5253 | logPaths = '/opt/onos/log/karaf.log' |
| 5254 | for i in range( 1, logNum ): |
| 5255 | logPaths = logPath + str( i ) + " " + logPaths |
| 5256 | cmd = "cat " + logPaths |
You Wang | 6d301d4 | 2017-04-21 10:49:33 -0700 | [diff] [blame] | 5257 | if startLine: |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 5258 | # 100000000 is just a extreme large number to make sure this function can |
| 5259 | # grep all the lines after startLine |
You Wang | 6d301d4 | 2017-04-21 10:49:33 -0700 | [diff] [blame] | 5260 | cmd = cmd + " | grep -A 100000000 \'" + startLine + "\'" |
Chiyu Cheng | ec63bde | 2016-11-17 18:11:36 -0800 | [diff] [blame] | 5261 | if mode == 'all': |
| 5262 | cmd = cmd + " | grep \'" + searchTerm + "\'" |
You Wang | 6d301d4 | 2017-04-21 10:49:33 -0700 | [diff] [blame] | 5263 | elif mode == 'last': |
Chiyu Cheng | ec63bde | 2016-11-17 18:11:36 -0800 | [diff] [blame] | 5264 | cmd = cmd + " | grep \'" + searchTerm + "\'" + " | tail -n 1" |
You Wang | 6d301d4 | 2017-04-21 10:49:33 -0700 | [diff] [blame] | 5265 | elif mode == 'first': |
| 5266 | cmd = cmd + " | grep \'" + searchTerm + "\'" + " | head -n 1" |
| 5267 | elif mode == 'num': |
Chiyu Cheng | ec63bde | 2016-11-17 18:11:36 -0800 | [diff] [blame] | 5268 | cmd = cmd + " | grep -c \'" + searchTerm + "\'" |
You Wang | 118ba58 | 2017-01-02 17:14:43 -0800 | [diff] [blame] | 5269 | num = self.sendline( cmd ) |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 5270 | return num |
You Wang | 6d301d4 | 2017-04-21 10:49:33 -0700 | [diff] [blame] | 5271 | elif mode == 'total': |
Chiyu Cheng | ec63bde | 2016-11-17 18:11:36 -0800 | [diff] [blame] | 5272 | totalLines = self.sendline( "cat /opt/onos/log/karaf.log | wc -l" ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 5273 | return int( totalLines ) |
You Wang | 6d301d4 | 2017-04-21 10:49:33 -0700 | [diff] [blame] | 5274 | else: |
| 5275 | main.log.error( self.name + " unsupported mode" ) |
| 5276 | return main.ERROR |
chengchiyu | 08303a0 | 2016-09-08 17:40:26 -0700 | [diff] [blame] | 5277 | before = self.sendline( cmd ) |
| 5278 | before = before.splitlines() |
| 5279 | # make sure the returned list only contains the search term |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 5280 | returnLines = [ line for line in before if searchTerm in line ] |
chengchiyu | 08303a0 | 2016-09-08 17:40:26 -0700 | [diff] [blame] | 5281 | return returnLines |
| 5282 | except AssertionError: |
| 5283 | main.log.error( self.name + " searchTerm is not string type" ) |
| 5284 | return None |
| 5285 | except pexpect.EOF: |
| 5286 | main.log.error( self.name + ": EOF exception found" ) |
| 5287 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5288 | main.cleanAndExit() |
chengchiyu | 08303a0 | 2016-09-08 17:40:26 -0700 | [diff] [blame] | 5289 | except pexpect.TIMEOUT: |
| 5290 | main.log.error( self.name + ": TIMEOUT exception found" ) |
| 5291 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5292 | main.cleanAndExit() |
chengchiyu | 08303a0 | 2016-09-08 17:40:26 -0700 | [diff] [blame] | 5293 | except Exception: |
| 5294 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5295 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5296 | |
| 5297 | def vplsShow( self, jsonFormat=True ): |
| 5298 | """ |
| 5299 | Description: Returns result of onos:vpls show, which should list the |
| 5300 | configured VPLS networks and the assigned interfaces. |
| 5301 | Optional: |
| 5302 | * jsonFormat: enable json formatting of output |
| 5303 | Returns: |
| 5304 | The output of the command or None on error. |
| 5305 | """ |
| 5306 | try: |
| 5307 | cmdStr = "vpls show" |
| 5308 | if jsonFormat: |
| 5309 | raise NotImplementedError |
| 5310 | cmdStr += " -j" |
| 5311 | handle = self.sendline( cmdStr ) |
| 5312 | assert handle is not None, "Error in sendline" |
| 5313 | assert "Command not found:" not in handle, handle |
| 5314 | return handle |
| 5315 | except AssertionError: |
| 5316 | main.log.exception( "" ) |
| 5317 | return None |
| 5318 | except TypeError: |
| 5319 | main.log.exception( self.name + ": Object not as expected" ) |
| 5320 | return None |
| 5321 | except pexpect.EOF: |
| 5322 | main.log.error( self.name + ": EOF exception found" ) |
| 5323 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5324 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5325 | except NotImplementedError: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 5326 | main.log.exception( self.name + ": Json output not supported" ) |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5327 | return None |
| 5328 | except Exception: |
| 5329 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5330 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5331 | |
| 5332 | def parseVplsShow( self ): |
| 5333 | """ |
| 5334 | Parse the cli output of 'vpls show' into json output. This is required |
| 5335 | as there is currently no json output available. |
| 5336 | """ |
| 5337 | try: |
| 5338 | output = [] |
| 5339 | raw = self.vplsShow( jsonFormat=False ) |
| 5340 | namePat = "VPLS name: (?P<name>\w+)" |
| 5341 | interfacesPat = "Associated interfaces: \[(?P<interfaces>.*)\]" |
| 5342 | encapPat = "Encapsulation: (?P<encap>\w+)" |
| 5343 | pattern = "\s+".join( [ namePat, interfacesPat, encapPat ] ) |
| 5344 | mIter = re.finditer( pattern, raw ) |
| 5345 | for match in mIter: |
| 5346 | item = {} |
| 5347 | item[ 'name' ] = match.group( 'name' ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 5348 | ifaces = match.group( 'interfaces' ).split( ', ' ) |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5349 | if ifaces == [ "" ]: |
| 5350 | ifaces = [] |
| 5351 | item[ 'interfaces' ] = ifaces |
| 5352 | encap = match.group( 'encap' ) |
| 5353 | if encap != 'NONE': |
| 5354 | item[ 'encapsulation' ] = encap.lower() |
| 5355 | output.append( item ) |
| 5356 | return output |
| 5357 | except Exception: |
| 5358 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5359 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5360 | |
| 5361 | def vplsList( self, jsonFormat=True ): |
| 5362 | """ |
| 5363 | Description: Returns result of onos:vpls list, which should list the |
| 5364 | configured VPLS networks. |
| 5365 | Optional: |
| 5366 | * jsonFormat: enable json formatting of output |
| 5367 | """ |
| 5368 | try: |
| 5369 | cmdStr = "vpls list" |
| 5370 | if jsonFormat: |
| 5371 | raise NotImplementedError |
| 5372 | cmdStr += " -j" |
| 5373 | handle = self.sendline( cmdStr ) |
| 5374 | assert handle is not None, "Error in sendline" |
| 5375 | assert "Command not found:" not in handle, handle |
| 5376 | return handle |
| 5377 | except AssertionError: |
| 5378 | main.log.exception( "" ) |
| 5379 | return None |
| 5380 | except TypeError: |
| 5381 | main.log.exception( self.name + ": Object not as expected" ) |
| 5382 | return None |
| 5383 | except pexpect.EOF: |
| 5384 | main.log.error( self.name + ": EOF exception found" ) |
| 5385 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5386 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5387 | except NotImplementedError: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 5388 | main.log.exception( self.name + ": Json output not supported" ) |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5389 | return None |
| 5390 | except Exception: |
| 5391 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5392 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5393 | |
| 5394 | def vplsCreate( self, network ): |
| 5395 | """ |
| 5396 | CLI command to create a new VPLS network. |
| 5397 | Required arguments: |
| 5398 | network - String name of the network to create. |
| 5399 | returns: |
| 5400 | main.TRUE on success and main.FALSE on failure |
| 5401 | """ |
| 5402 | try: |
| 5403 | network = str( network ) |
| 5404 | cmdStr = "vpls create " |
| 5405 | cmdStr += network |
| 5406 | output = self.sendline( cmdStr ) |
| 5407 | assert output is not None, "Error in sendline" |
| 5408 | assert "Command not found:" not in output, output |
| 5409 | assert "Error executing command" not in output, output |
| 5410 | assert "VPLS already exists:" not in output, output |
| 5411 | return main.TRUE |
| 5412 | except AssertionError: |
| 5413 | main.log.exception( "" ) |
| 5414 | return main.FALSE |
| 5415 | except TypeError: |
| 5416 | main.log.exception( self.name + ": Object not as expected" ) |
| 5417 | return main.FALSE |
| 5418 | except pexpect.EOF: |
| 5419 | main.log.error( self.name + ": EOF exception found" ) |
| 5420 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5421 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5422 | except Exception: |
| 5423 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5424 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5425 | |
| 5426 | def vplsDelete( self, network ): |
| 5427 | """ |
| 5428 | CLI command to delete a VPLS network. |
| 5429 | Required arguments: |
| 5430 | network - Name of the network to delete. |
| 5431 | returns: |
| 5432 | main.TRUE on success and main.FALSE on failure |
| 5433 | """ |
| 5434 | try: |
| 5435 | network = str( network ) |
| 5436 | cmdStr = "vpls delete " |
| 5437 | cmdStr += network |
| 5438 | output = self.sendline( cmdStr ) |
| 5439 | assert output is not None, "Error in sendline" |
| 5440 | assert "Command not found:" not in output, output |
| 5441 | assert "Error executing command" not in output, output |
| 5442 | assert " not found" not in output, output |
Jon Hall | cf97cf1 | 2017-06-06 09:37:51 -0700 | [diff] [blame] | 5443 | assert "still updating" not in output, output |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5444 | return main.TRUE |
| 5445 | except AssertionError: |
| 5446 | main.log.exception( "" ) |
| 5447 | return main.FALSE |
| 5448 | except TypeError: |
| 5449 | main.log.exception( self.name + ": Object not as expected" ) |
| 5450 | return main.FALSE |
| 5451 | except pexpect.EOF: |
| 5452 | main.log.error( self.name + ": EOF exception found" ) |
| 5453 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5454 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5455 | except Exception: |
| 5456 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5457 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5458 | |
| 5459 | def vplsAddIface( self, network, iface ): |
| 5460 | """ |
| 5461 | CLI command to add an interface to a VPLS network. |
| 5462 | Required arguments: |
| 5463 | network - Name of the network to add the interface to. |
| 5464 | iface - The ONOS name for an interface. |
| 5465 | returns: |
| 5466 | main.TRUE on success and main.FALSE on failure |
| 5467 | """ |
| 5468 | try: |
| 5469 | network = str( network ) |
| 5470 | iface = str( iface ) |
| 5471 | cmdStr = "vpls add-if " |
| 5472 | cmdStr += network + " " + iface |
| 5473 | output = self.sendline( cmdStr ) |
| 5474 | assert output is not None, "Error in sendline" |
| 5475 | assert "Command not found:" not in output, output |
| 5476 | assert "Error executing command" not in output, output |
| 5477 | assert "already associated to network" not in output, output |
| 5478 | assert "Interface cannot be added." not in output, output |
Jon Hall | cf97cf1 | 2017-06-06 09:37:51 -0700 | [diff] [blame] | 5479 | assert "still updating" not in output, output |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5480 | return main.TRUE |
| 5481 | except AssertionError: |
| 5482 | main.log.exception( "" ) |
| 5483 | return main.FALSE |
| 5484 | except TypeError: |
| 5485 | main.log.exception( self.name + ": Object not as expected" ) |
| 5486 | return main.FALSE |
| 5487 | except pexpect.EOF: |
| 5488 | main.log.error( self.name + ": EOF exception found" ) |
| 5489 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5490 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5491 | except Exception: |
| 5492 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5493 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5494 | |
| 5495 | def vplsRemIface( self, network, iface ): |
| 5496 | """ |
| 5497 | CLI command to remove an interface from a VPLS network. |
| 5498 | Required arguments: |
| 5499 | network - Name of the network to remove the interface from. |
| 5500 | iface - Name of the interface to remove. |
| 5501 | returns: |
| 5502 | main.TRUE on success and main.FALSE on failure |
| 5503 | """ |
| 5504 | try: |
| 5505 | iface = str( iface ) |
| 5506 | cmdStr = "vpls rem-if " |
| 5507 | cmdStr += network + " " + iface |
| 5508 | output = self.sendline( cmdStr ) |
| 5509 | assert output is not None, "Error in sendline" |
| 5510 | assert "Command not found:" not in output, output |
| 5511 | assert "Error executing command" not in output, output |
| 5512 | assert "is not configured" not in output, output |
Jon Hall | cf97cf1 | 2017-06-06 09:37:51 -0700 | [diff] [blame] | 5513 | assert "still updating" not in output, output |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5514 | return main.TRUE |
| 5515 | except AssertionError: |
| 5516 | main.log.exception( "" ) |
| 5517 | return main.FALSE |
| 5518 | except TypeError: |
| 5519 | main.log.exception( self.name + ": Object not as expected" ) |
| 5520 | return main.FALSE |
| 5521 | except pexpect.EOF: |
| 5522 | main.log.error( self.name + ": EOF exception found" ) |
| 5523 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5524 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5525 | except Exception: |
| 5526 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5527 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5528 | |
| 5529 | def vplsClean( self ): |
| 5530 | """ |
| 5531 | Description: Clears the VPLS app configuration. |
| 5532 | Returns: main.TRUE on success and main.FALSE on failure |
| 5533 | """ |
| 5534 | try: |
| 5535 | cmdStr = "vpls clean" |
| 5536 | handle = self.sendline( cmdStr ) |
| 5537 | assert handle is not None, "Error in sendline" |
| 5538 | assert "Command not found:" not in handle, handle |
Jon Hall | cf97cf1 | 2017-06-06 09:37:51 -0700 | [diff] [blame] | 5539 | assert "still updating" not in handle, handle |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5540 | return handle |
| 5541 | except AssertionError: |
| 5542 | main.log.exception( "" ) |
| 5543 | return main.FALSE |
| 5544 | except TypeError: |
| 5545 | main.log.exception( self.name + ": Object not as expected" ) |
| 5546 | return main.FALSE |
| 5547 | except pexpect.EOF: |
| 5548 | main.log.error( self.name + ": EOF exception found" ) |
| 5549 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5550 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5551 | except Exception: |
| 5552 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5553 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5554 | |
| 5555 | def vplsSetEncap( self, network, encapType ): |
| 5556 | """ |
| 5557 | CLI command to add an interface to a VPLS network. |
| 5558 | Required arguments: |
| 5559 | network - Name of the network to create. |
| 5560 | encapType - Type of encapsulation. |
| 5561 | returns: |
| 5562 | main.TRUE on success and main.FALSE on failure |
| 5563 | """ |
| 5564 | try: |
| 5565 | network = str( network ) |
| 5566 | encapType = str( encapType ).upper() |
| 5567 | assert encapType in [ "MPLS", "VLAN", "NONE" ], "Incorrect type" |
| 5568 | cmdStr = "vpls set-encap " |
| 5569 | cmdStr += network + " " + encapType |
| 5570 | output = self.sendline( cmdStr ) |
| 5571 | assert output is not None, "Error in sendline" |
| 5572 | assert "Command not found:" not in output, output |
| 5573 | assert "Error executing command" not in output, output |
| 5574 | assert "already associated to network" not in output, output |
| 5575 | assert "Encapsulation type " not in output, output |
Jon Hall | cf97cf1 | 2017-06-06 09:37:51 -0700 | [diff] [blame] | 5576 | assert "still updating" not in output, output |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5577 | return main.TRUE |
| 5578 | except AssertionError: |
| 5579 | main.log.exception( "" ) |
| 5580 | return main.FALSE |
| 5581 | except TypeError: |
| 5582 | main.log.exception( self.name + ": Object not as expected" ) |
| 5583 | return main.FALSE |
| 5584 | except pexpect.EOF: |
| 5585 | main.log.error( self.name + ": EOF exception found" ) |
| 5586 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5587 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5588 | except Exception: |
| 5589 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5590 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5591 | |
| 5592 | def interfaces( self, jsonFormat=True ): |
| 5593 | """ |
| 5594 | Description: Returns result of interfaces command. |
| 5595 | Optional: |
| 5596 | * jsonFormat: enable json formatting of output |
| 5597 | Returns: |
| 5598 | The output of the command or None on error. |
| 5599 | """ |
| 5600 | try: |
| 5601 | cmdStr = "interfaces" |
| 5602 | if jsonFormat: |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5603 | raise NotImplementedError |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5604 | cmdStr += " -j" |
| 5605 | handle = self.sendline( cmdStr ) |
| 5606 | assert handle is not None, "Error in sendline" |
| 5607 | assert "Command not found:" not in handle, handle |
| 5608 | return handle |
| 5609 | except AssertionError: |
| 5610 | main.log.exception( "" ) |
| 5611 | return None |
| 5612 | except TypeError: |
| 5613 | main.log.exception( self.name + ": Object not as expected" ) |
| 5614 | return None |
| 5615 | except pexpect.EOF: |
| 5616 | main.log.error( self.name + ": EOF exception found" ) |
| 5617 | main.log.error( self.name + ": " + self.handle.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5618 | main.cleanAndExit() |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5619 | except NotImplementedError: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 5620 | main.log.exception( self.name + ": Json output not supported" ) |
Jon Hall | 2c8959e | 2016-12-16 12:17:34 -0800 | [diff] [blame] | 5621 | return None |
| 5622 | except Exception: |
| 5623 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5624 | main.cleanAndExit() |
Chiyu Cheng | ec63bde | 2016-11-17 18:11:36 -0800 | [diff] [blame] | 5625 | |
| 5626 | def getTimeStampFromLog( self, mode, searchTerm, splitTerm_before, splitTerm_after, startLine='', logNum=1 ): |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 5627 | ''' |
Chiyu Cheng | ec63bde | 2016-11-17 18:11:36 -0800 | [diff] [blame] | 5628 | Get the timestamp of searchTerm from karaf log. |
| 5629 | |
| 5630 | Arguments: |
| 5631 | splitTerm_before and splitTerm_after: |
| 5632 | |
| 5633 | The terms that split the string that contains the timeStamp of |
| 5634 | searchTerm. For example, if that string is "xxxxxxxcreationTime = |
| 5635 | 1419510501xxxxxx", then the splitTerm_before is "CreationTime = " |
| 5636 | and the splitTerm_after is "x" |
| 5637 | |
| 5638 | others: |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5639 | Please look at the "logsearch" Function in onosclidriver.py |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 5640 | ''' |
Chiyu Cheng | ec63bde | 2016-11-17 18:11:36 -0800 | [diff] [blame] | 5641 | if logNum < 0: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 5642 | main.log.error( "Get wrong log number ") |
Chiyu Cheng | ec63bde | 2016-11-17 18:11:36 -0800 | [diff] [blame] | 5643 | return main.ERROR |
| 5644 | lines = self.logSearch( mode=mode, searchTerm=searchTerm, startLine=startLine, logNum=logNum ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 5645 | if len( lines ) == 0: |
Chiyu Cheng | ec63bde | 2016-11-17 18:11:36 -0800 | [diff] [blame] | 5646 | main.log.warn( "Captured timestamp string is empty" ) |
| 5647 | return main.ERROR |
| 5648 | lines = lines[ 0 ] |
| 5649 | try: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 5650 | assert isinstance( lines, str ) |
Chiyu Cheng | ec63bde | 2016-11-17 18:11:36 -0800 | [diff] [blame] | 5651 | # get the target value |
| 5652 | line = lines.split( splitTerm_before ) |
| 5653 | key = line[ 1 ].split( splitTerm_after ) |
| 5654 | return int( key[ 0 ] ) |
| 5655 | except IndexError: |
| 5656 | main.log.warn( "Index Error!" ) |
| 5657 | return main.ERROR |
| 5658 | except AssertionError: |
| 5659 | main.log.warn( "Search Term Not Found " ) |
| 5660 | return main.ERROR |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5661 | |
| 5662 | def workQueueAdd( self, queueName, value ): |
| 5663 | """ |
| 5664 | CLI command to add a string to the specified Work Queue. |
| 5665 | This function uses the distributed primitives test app, which |
| 5666 | gives some cli access to distributed primitives for testing |
| 5667 | purposes only. |
| 5668 | |
| 5669 | Required arguments: |
| 5670 | queueName - The name of the queue to add to |
| 5671 | value - The value to add to the queue |
| 5672 | returns: |
| 5673 | main.TRUE on success, main.FALSE on failure and |
| 5674 | main.ERROR on error. |
| 5675 | """ |
| 5676 | try: |
| 5677 | queueName = str( queueName ) |
| 5678 | value = str( value ) |
| 5679 | prefix = "work-queue-test" |
| 5680 | operation = "add" |
| 5681 | cmdStr = " ".join( [ prefix, queueName, operation, value ] ) |
| 5682 | output = self.distPrimitivesSend( cmdStr ) |
| 5683 | if "Invalid operation name" in output: |
| 5684 | main.log.warn( output ) |
| 5685 | return main.ERROR |
| 5686 | elif "Done" in output: |
| 5687 | return main.TRUE |
| 5688 | except TypeError: |
| 5689 | main.log.exception( self.name + ": Object not as expected" ) |
| 5690 | return main.ERROR |
| 5691 | except Exception: |
| 5692 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5693 | main.cleanAndExit() |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5694 | |
| 5695 | def workQueueAddMultiple( self, queueName, value1, value2 ): |
| 5696 | """ |
| 5697 | CLI command to add two strings to the specified Work Queue. |
| 5698 | This function uses the distributed primitives test app, which |
| 5699 | gives some cli access to distributed primitives for testing |
| 5700 | purposes only. |
| 5701 | |
| 5702 | Required arguments: |
| 5703 | queueName - The name of the queue to add to |
| 5704 | value1 - The first value to add to the queue |
| 5705 | value2 - The second value to add to the queue |
| 5706 | returns: |
| 5707 | main.TRUE on success, main.FALSE on failure and |
| 5708 | main.ERROR on error. |
| 5709 | """ |
| 5710 | try: |
| 5711 | queueName = str( queueName ) |
| 5712 | value1 = str( value1 ) |
| 5713 | value2 = str( value2 ) |
| 5714 | prefix = "work-queue-test" |
| 5715 | operation = "addMultiple" |
| 5716 | cmdStr = " ".join( [ prefix, queueName, operation, value1, value2 ] ) |
| 5717 | output = self.distPrimitivesSend( cmdStr ) |
| 5718 | if "Invalid operation name" in output: |
| 5719 | main.log.warn( output ) |
| 5720 | return main.ERROR |
| 5721 | elif "Done" in output: |
| 5722 | return main.TRUE |
| 5723 | except TypeError: |
| 5724 | main.log.exception( self.name + ": Object not as expected" ) |
| 5725 | return main.ERROR |
| 5726 | except Exception: |
| 5727 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5728 | main.cleanAndExit() |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5729 | |
| 5730 | def workQueueTakeAndComplete( self, queueName, number=1 ): |
| 5731 | """ |
| 5732 | CLI command to take a value from the specified Work Queue and compelte it. |
| 5733 | This function uses the distributed primitives test app, which |
| 5734 | gives some cli access to distributed primitives for testing |
| 5735 | purposes only. |
| 5736 | |
| 5737 | Required arguments: |
| 5738 | queueName - The name of the queue to add to |
| 5739 | number - The number of items to take and complete |
| 5740 | returns: |
| 5741 | main.TRUE on success, main.FALSE on failure and |
| 5742 | main.ERROR on error. |
| 5743 | """ |
| 5744 | try: |
| 5745 | queueName = str( queueName ) |
| 5746 | number = str( int( number ) ) |
| 5747 | prefix = "work-queue-test" |
| 5748 | operation = "takeAndComplete" |
| 5749 | cmdStr = " ".join( [ prefix, queueName, operation, number ] ) |
| 5750 | output = self.distPrimitivesSend( cmdStr ) |
| 5751 | if "Invalid operation name" in output: |
| 5752 | main.log.warn( output ) |
| 5753 | return main.ERROR |
| 5754 | elif "Done" in output: |
| 5755 | return main.TRUE |
| 5756 | except TypeError: |
| 5757 | main.log.exception( self.name + ": Object not as expected" ) |
| 5758 | return main.ERROR |
| 5759 | except Exception: |
| 5760 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5761 | main.cleanAndExit() |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5762 | |
| 5763 | def workQueueDestroy( self, queueName ): |
| 5764 | """ |
| 5765 | CLI command to destroy the specified Work Queue. |
| 5766 | This function uses the distributed primitives test app, which |
| 5767 | gives some cli access to distributed primitives for testing |
| 5768 | purposes only. |
| 5769 | |
| 5770 | Required arguments: |
| 5771 | queueName - The name of the queue to add to |
| 5772 | returns: |
| 5773 | main.TRUE on success, main.FALSE on failure and |
| 5774 | main.ERROR on error. |
| 5775 | """ |
| 5776 | try: |
| 5777 | queueName = str( queueName ) |
| 5778 | prefix = "work-queue-test" |
| 5779 | operation = "destroy" |
| 5780 | cmdStr = " ".join( [ prefix, queueName, operation ] ) |
| 5781 | output = self.distPrimitivesSend( cmdStr ) |
| 5782 | if "Invalid operation name" in output: |
| 5783 | main.log.warn( output ) |
| 5784 | return main.ERROR |
| 5785 | return main.TRUE |
| 5786 | except TypeError: |
| 5787 | main.log.exception( self.name + ": Object not as expected" ) |
| 5788 | return main.ERROR |
| 5789 | except Exception: |
| 5790 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5791 | main.cleanAndExit() |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5792 | |
| 5793 | def workQueueTotalPending( self, queueName ): |
| 5794 | """ |
| 5795 | CLI command to get the Total Pending items of the specified Work Queue. |
| 5796 | This function uses the distributed primitives test app, which |
| 5797 | gives some cli access to distributed primitives for testing |
| 5798 | purposes only. |
| 5799 | |
| 5800 | Required arguments: |
| 5801 | queueName - The name of the queue to add to |
| 5802 | returns: |
| 5803 | The number of Pending items in the specified work queue or |
| 5804 | None on error |
| 5805 | """ |
| 5806 | try: |
| 5807 | queueName = str( queueName ) |
| 5808 | prefix = "work-queue-test" |
| 5809 | operation = "totalPending" |
| 5810 | cmdStr = " ".join( [ prefix, queueName, operation ] ) |
| 5811 | output = self.distPrimitivesSend( cmdStr ) |
| 5812 | pattern = r'\d+' |
| 5813 | if "Invalid operation name" in output: |
| 5814 | main.log.warn( output ) |
| 5815 | return None |
| 5816 | else: |
| 5817 | match = re.search( pattern, output ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 5818 | return match.group( 0 ) |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5819 | except ( AttributeError, TypeError ): |
| 5820 | main.log.exception( self.name + ": Object not as expected; " + str( output ) ) |
| 5821 | return None |
| 5822 | except Exception: |
| 5823 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5824 | main.cleanAndExit() |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5825 | |
| 5826 | def workQueueTotalCompleted( self, queueName ): |
| 5827 | """ |
| 5828 | CLI command to get the Total Completed items of the specified Work Queue. |
| 5829 | This function uses the distributed primitives test app, which |
| 5830 | gives some cli access to distributed primitives for testing |
| 5831 | purposes only. |
| 5832 | |
| 5833 | Required arguments: |
| 5834 | queueName - The name of the queue to add to |
| 5835 | returns: |
| 5836 | The number of complete items in the specified work queue or |
| 5837 | None on error |
| 5838 | """ |
| 5839 | try: |
| 5840 | queueName = str( queueName ) |
| 5841 | prefix = "work-queue-test" |
| 5842 | operation = "totalCompleted" |
| 5843 | cmdStr = " ".join( [ prefix, queueName, operation ] ) |
| 5844 | output = self.distPrimitivesSend( cmdStr ) |
| 5845 | pattern = r'\d+' |
| 5846 | if "Invalid operation name" in output: |
| 5847 | main.log.warn( output ) |
| 5848 | return None |
| 5849 | else: |
| 5850 | match = re.search( pattern, output ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 5851 | return match.group( 0 ) |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5852 | except ( AttributeError, TypeError ): |
| 5853 | main.log.exception( self.name + ": Object not as expected; " + str( output ) ) |
| 5854 | return None |
| 5855 | except Exception: |
| 5856 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5857 | main.cleanAndExit() |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5858 | |
| 5859 | def workQueueTotalInProgress( self, queueName ): |
| 5860 | """ |
| 5861 | CLI command to get the Total In Progress items of the specified Work Queue. |
| 5862 | This function uses the distributed primitives test app, which |
| 5863 | gives some cli access to distributed primitives for testing |
| 5864 | purposes only. |
| 5865 | |
| 5866 | Required arguments: |
| 5867 | queueName - The name of the queue to add to |
| 5868 | returns: |
| 5869 | The number of In Progress items in the specified work queue or |
| 5870 | None on error |
| 5871 | """ |
| 5872 | try: |
| 5873 | queueName = str( queueName ) |
| 5874 | prefix = "work-queue-test" |
| 5875 | operation = "totalInProgress" |
| 5876 | cmdStr = " ".join( [ prefix, queueName, operation ] ) |
| 5877 | output = self.distPrimitivesSend( cmdStr ) |
| 5878 | pattern = r'\d+' |
| 5879 | if "Invalid operation name" in output: |
| 5880 | main.log.warn( output ) |
| 5881 | return None |
| 5882 | else: |
| 5883 | match = re.search( pattern, output ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 5884 | return match.group( 0 ) |
Jon Hall | e0f0b34 | 2017-04-18 11:43:47 -0700 | [diff] [blame] | 5885 | except ( AttributeError, TypeError ): |
| 5886 | main.log.exception( self.name + ": Object not as expected; " + str( output ) ) |
| 5887 | return None |
| 5888 | except Exception: |
| 5889 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 5890 | main.cleanAndExit() |
Jeremy Ronquillo | 818bc7c | 2017-08-09 17:14:53 +0000 | [diff] [blame] | 5891 | |
| 5892 | def events( self, args='-a' ): |
| 5893 | """ |
| 5894 | Description: Returns events -a command output |
| 5895 | Optional: |
| 5896 | add other arguments |
| 5897 | """ |
| 5898 | try: |
| 5899 | cmdStr = "events" |
| 5900 | if args: |
| 5901 | cmdStr += " " + args |
| 5902 | handle = self.sendline( cmdStr ) |
| 5903 | assert handle is not None, "Error in sendline" |
| 5904 | assert "Command not found:" not in handle, handle |
| 5905 | return handle |
| 5906 | except AssertionError: |
| 5907 | main.log.exception( "" ) |
| 5908 | return None |
| 5909 | except TypeError: |
| 5910 | main.log.exception( self.name + ": Object not as expected" ) |
| 5911 | return None |
| 5912 | except pexpect.EOF: |
| 5913 | main.log.error( self.name + ": EOF exception found" ) |
| 5914 | main.log.error( self.name + ": " + self.handle.before ) |
| 5915 | main.cleanAndExit() |
| 5916 | except Exception: |
| 5917 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 5918 | main.cleanAndExit() |
| 5919 | |
| 5920 | def getMaster( self, deviceID ): |
| 5921 | """ |
| 5922 | Description: Obtains current master using "roles" command for a specific deviceID |
| 5923 | """ |
| 5924 | try: |
| 5925 | return str( self.getRole( deviceID )[ 'master' ] ) |
| 5926 | except AssertionError: |
| 5927 | main.log.exception( "" ) |
| 5928 | return None |
| 5929 | except TypeError: |
| 5930 | main.log.exception( self.name + ": Object not as expected" ) |
| 5931 | return None |
| 5932 | except pexpect.EOF: |
| 5933 | main.log.error( self.name + ": EOF exception found" ) |
| 5934 | main.log.error( self.name + ": " + self.handle.before ) |
| 5935 | main.cleanAndExit() |
| 5936 | except Exception: |
| 5937 | main.log.exception( self.name + ": Uncaught exception!" ) |
Devin Lim | e6fe3c4 | 2017-10-18 16:28:40 -0700 | [diff] [blame] | 5938 | main.cleanAndExit() |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 5939 | |
| 5940 | def issu( self ): |
| 5941 | """ |
| 5942 | Short summary of In-Service Software Upgrade status |
| 5943 | |
| 5944 | Returns the output of the cli command or None on Error |
| 5945 | """ |
| 5946 | try: |
| 5947 | cmdStr = "issu" |
| 5948 | handle = self.sendline( cmdStr ) |
| 5949 | assert handle is not None, "Error in sendline" |
| 5950 | assert "Command not found:" not in handle, handle |
| 5951 | assert "Unsupported command:" not in handle, handle |
| 5952 | return handle |
| 5953 | except AssertionError: |
| 5954 | main.log.exception( "" ) |
| 5955 | return None |
| 5956 | except TypeError: |
| 5957 | main.log.exception( self.name + ": Object not as expected" ) |
| 5958 | return None |
| 5959 | except pexpect.EOF: |
| 5960 | main.log.error( self.name + ": EOF exception found" ) |
| 5961 | main.log.error( self.name + ": " + self.handle.before ) |
| 5962 | main.cleanAndExit() |
| 5963 | except Exception: |
| 5964 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 5965 | main.cleanAndExit() |
| 5966 | |
| 5967 | def issuInit( self ): |
| 5968 | """ |
| 5969 | Initiates an In-Service Software Upgrade |
| 5970 | |
| 5971 | Returns main.TRUE on success, main.ERROR on error, else main.FALSE |
| 5972 | """ |
| 5973 | try: |
| 5974 | cmdStr = "issu init" |
| 5975 | handle = self.sendline( cmdStr ) |
| 5976 | assert handle is not None, "Error in sendline" |
| 5977 | assert "Command not found:" not in handle, handle |
| 5978 | assert "Unsupported command:" not in handle, handle |
| 5979 | if "Initialized" in handle: |
| 5980 | return main.TRUE |
| 5981 | else: |
| 5982 | return main.FALSE |
| 5983 | except AssertionError: |
| 5984 | main.log.exception( "" ) |
| 5985 | return main.ERROR |
| 5986 | except TypeError: |
| 5987 | main.log.exception( self.name + ": Object not as expected" ) |
| 5988 | return main.ERROR |
| 5989 | except pexpect.EOF: |
| 5990 | main.log.error( self.name + ": EOF exception found" ) |
| 5991 | main.log.error( self.name + ": " + self.handle.before ) |
| 5992 | main.cleanAndExit() |
| 5993 | except Exception: |
| 5994 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 5995 | main.cleanAndExit() |
| 5996 | |
| 5997 | def issuUpgrade( self ): |
| 5998 | """ |
| 5999 | Transitions stores to upgraded nodes |
| 6000 | |
| 6001 | Returns main.TRUE on success, main.ERROR on error, else main.FALSE |
| 6002 | """ |
| 6003 | try: |
| 6004 | cmdStr = "issu upgrade" |
| 6005 | handle = self.sendline( cmdStr ) |
| 6006 | assert handle is not None, "Error in sendline" |
| 6007 | assert "Command not found:" not in handle, handle |
| 6008 | assert "Unsupported command:" not in handle, handle |
| 6009 | if "Upgraded" in handle: |
| 6010 | return main.TRUE |
| 6011 | else: |
| 6012 | return main.FALSE |
| 6013 | except AssertionError: |
| 6014 | main.log.exception( "" ) |
| 6015 | return main.ERROR |
| 6016 | except TypeError: |
| 6017 | main.log.exception( self.name + ": Object not as expected" ) |
| 6018 | return main.ERROR |
| 6019 | except pexpect.EOF: |
| 6020 | main.log.error( self.name + ": EOF exception found" ) |
| 6021 | main.log.error( self.name + ": " + self.handle.before ) |
| 6022 | main.cleanAndExit() |
| 6023 | except Exception: |
| 6024 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 6025 | main.cleanAndExit() |
| 6026 | |
| 6027 | def issuCommit( self ): |
| 6028 | """ |
| 6029 | Finalizes an In-Service Software Upgrade |
| 6030 | |
| 6031 | Returns main.TRUE on success, main.ERROR on error, else main.FALSE |
| 6032 | """ |
| 6033 | try: |
| 6034 | cmdStr = "issu commit" |
| 6035 | handle = self.sendline( cmdStr ) |
| 6036 | assert handle is not None, "Error in sendline" |
| 6037 | assert "Command not found:" not in handle, handle |
| 6038 | assert "Unsupported command:" not in handle, handle |
| 6039 | # TODO: Check the version returned by this command |
| 6040 | if "Committed version" in handle: |
| 6041 | return main.TRUE |
| 6042 | else: |
| 6043 | return main.FALSE |
| 6044 | except AssertionError: |
| 6045 | main.log.exception( "" ) |
| 6046 | return main.ERROR |
| 6047 | except TypeError: |
| 6048 | main.log.exception( self.name + ": Object not as expected" ) |
| 6049 | return main.ERROR |
| 6050 | except pexpect.EOF: |
| 6051 | main.log.error( self.name + ": EOF exception found" ) |
| 6052 | main.log.error( self.name + ": " + self.handle.before ) |
| 6053 | main.cleanAndExit() |
| 6054 | except Exception: |
| 6055 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 6056 | main.cleanAndExit() |
| 6057 | |
| 6058 | def issuRollback( self ): |
| 6059 | """ |
| 6060 | Rolls back an In-Service Software Upgrade |
| 6061 | |
| 6062 | Returns main.TRUE on success, main.ERROR on error, else main.FALSE |
| 6063 | """ |
| 6064 | try: |
| 6065 | cmdStr = "issu rollback" |
| 6066 | handle = self.sendline( cmdStr ) |
| 6067 | assert handle is not None, "Error in sendline" |
| 6068 | assert "Command not found:" not in handle, handle |
| 6069 | assert "Unsupported command:" not in handle, handle |
| 6070 | # TODO: Check the version returned by this command |
| 6071 | if "Rolled back to version" in handle: |
| 6072 | return main.TRUE |
| 6073 | else: |
| 6074 | return main.FALSE |
| 6075 | except AssertionError: |
| 6076 | main.log.exception( "" ) |
| 6077 | return main.ERROR |
| 6078 | except TypeError: |
| 6079 | main.log.exception( self.name + ": Object not as expected" ) |
| 6080 | return main.ERROR |
| 6081 | except pexpect.EOF: |
| 6082 | main.log.error( self.name + ": EOF exception found" ) |
| 6083 | main.log.error( self.name + ": " + self.handle.before ) |
| 6084 | main.cleanAndExit() |
| 6085 | except Exception: |
| 6086 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 6087 | main.cleanAndExit() |
| 6088 | |
| 6089 | def issuReset( self ): |
| 6090 | """ |
| 6091 | Resets the In-Service Software Upgrade status after a rollback |
| 6092 | |
| 6093 | Returns main.TRUE on success, main.ERROR on error, else main.FALSE |
| 6094 | """ |
| 6095 | try: |
| 6096 | cmdStr = "issu reset" |
| 6097 | handle = self.sendline( cmdStr ) |
| 6098 | assert handle is not None, "Error in sendline" |
| 6099 | assert "Command not found:" not in handle, handle |
| 6100 | assert "Unsupported command:" not in handle, handle |
| 6101 | # TODO: Check the version returned by this command |
| 6102 | if "Reset version" in handle: |
| 6103 | return main.TRUE |
| 6104 | else: |
| 6105 | return main.FALSE |
| 6106 | except AssertionError: |
| 6107 | main.log.exception( "" ) |
| 6108 | return main.ERROR |
| 6109 | except TypeError: |
| 6110 | main.log.exception( self.name + ": Object not as expected" ) |
| 6111 | return main.ERROR |
| 6112 | except pexpect.EOF: |
| 6113 | main.log.error( self.name + ": EOF exception found" ) |
| 6114 | main.log.error( self.name + ": " + self.handle.before ) |
| 6115 | main.cleanAndExit() |
| 6116 | except Exception: |
| 6117 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 6118 | main.cleanAndExit() |
| 6119 | |
| 6120 | def issuStatus( self ): |
| 6121 | """ |
| 6122 | Status of an In-Service Software Upgrade |
| 6123 | |
| 6124 | Returns the output of the cli command or None on Error |
| 6125 | """ |
| 6126 | try: |
| 6127 | cmdStr = "issu status" |
| 6128 | handle = self.sendline( cmdStr ) |
| 6129 | assert handle is not None, "Error in sendline" |
| 6130 | assert "Command not found:" not in handle, handle |
| 6131 | assert "Unsupported command:" not in handle, handle |
| 6132 | return handle |
| 6133 | except AssertionError: |
| 6134 | main.log.exception( "" ) |
| 6135 | return None |
| 6136 | except TypeError: |
| 6137 | main.log.exception( self.name + ": Object not as expected" ) |
| 6138 | return None |
| 6139 | except pexpect.EOF: |
| 6140 | main.log.error( self.name + ": EOF exception found" ) |
| 6141 | main.log.error( self.name + ": " + self.handle.before ) |
| 6142 | main.cleanAndExit() |
| 6143 | except Exception: |
| 6144 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 6145 | main.cleanAndExit() |
| 6146 | |
| 6147 | def issuVersion( self ): |
| 6148 | """ |
| 6149 | Get the version of an In-Service Software Upgrade |
| 6150 | |
| 6151 | Returns the output of the cli command or None on Error |
| 6152 | """ |
| 6153 | try: |
| 6154 | cmdStr = "issu version" |
| 6155 | handle = self.sendline( cmdStr ) |
| 6156 | assert handle is not None, "Error in sendline" |
| 6157 | assert "Command not found:" not in handle, handle |
| 6158 | assert "Unsupported command:" not in handle, handle |
| 6159 | return handle |
| 6160 | except AssertionError: |
| 6161 | main.log.exception( "" ) |
| 6162 | return None |
| 6163 | except TypeError: |
| 6164 | main.log.exception( self.name + ": Object not as expected" ) |
| 6165 | return None |
| 6166 | except pexpect.EOF: |
| 6167 | main.log.error( self.name + ": EOF exception found" ) |
| 6168 | main.log.error( self.name + ": " + self.handle.before ) |
| 6169 | main.cleanAndExit() |
| 6170 | except Exception: |
| 6171 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 6172 | main.cleanAndExit() |
You Wang | e24d627 | 2018-03-27 21:18:50 -0700 | [diff] [blame] | 6173 | |
| 6174 | def mcastJoin( self, sIP, groupIP, sPort, dPorts ): |
| 6175 | """ |
| 6176 | Create a multicast route by calling 'mcast-join' command |
| 6177 | sIP: source IP of the multicast route |
| 6178 | groupIP: group IP of the multicast route |
| 6179 | sPort: source port (e.g. of:0000000000000001/3 ) of the multicast route |
| 6180 | dPorts: a list of destination ports of the multicast route |
| 6181 | Returns main.TRUE if mcast route is added; Otherwise main.FALSE |
| 6182 | """ |
| 6183 | try: |
| 6184 | cmdStr = "mcast-join" |
| 6185 | cmdStr += " " + str( sIP ) |
| 6186 | cmdStr += " " + str( groupIP ) |
| 6187 | cmdStr += " " + str( sPort ) |
| 6188 | assert isinstance( dPorts, list ) |
| 6189 | for dPort in dPorts: |
| 6190 | cmdStr += " " + str( dPort ) |
| 6191 | handle = self.sendline( cmdStr ) |
| 6192 | assert handle is not None, "Error in sendline" |
| 6193 | assert "Command not found:" not in handle, handle |
| 6194 | assert "Unsupported command:" not in handle, handle |
| 6195 | assert "Error executing command" not in handle, handle |
| 6196 | if "Added the mcast route" in handle: |
| 6197 | return main.TRUE |
| 6198 | else: |
| 6199 | return main.FALSE |
| 6200 | except AssertionError: |
| 6201 | main.log.exception( "" ) |
| 6202 | return None |
| 6203 | except TypeError: |
| 6204 | main.log.exception( self.name + ": Object not as expected" ) |
| 6205 | return None |
| 6206 | except pexpect.EOF: |
| 6207 | main.log.error( self.name + ": EOF exception found" ) |
| 6208 | main.log.error( self.name + ": " + self.handle.before ) |
| 6209 | main.cleanAndExit() |
| 6210 | except Exception: |
| 6211 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 6212 | main.cleanAndExit() |
| 6213 | |
| 6214 | def mcastDelete( self, sIP, groupIP, dPorts ): |
| 6215 | """ |
| 6216 | Delete a multicast route by calling 'mcast-delete' command |
| 6217 | sIP: source IP of the multicast route |
| 6218 | groupIP: group IP of the multicast route |
| 6219 | dPorts: a list of destination ports of the multicast route |
| 6220 | Returns main.TRUE if mcast route is deleted; Otherwise main.FALSE |
| 6221 | """ |
| 6222 | try: |
| 6223 | cmdStr = "mcast-delete" |
| 6224 | cmdStr += " " + str( sIP ) |
| 6225 | cmdStr += " " + str( groupIP ) |
| 6226 | assert isinstance( dPorts, list ) |
| 6227 | for dPort in dPorts: |
| 6228 | cmdStr += " " + str( dPort ) |
| 6229 | handle = self.sendline( cmdStr ) |
| 6230 | assert handle is not None, "Error in sendline" |
| 6231 | assert "Command not found:" not in handle, handle |
| 6232 | assert "Unsupported command:" not in handle, handle |
| 6233 | assert "Error executing command" not in handle, handle |
| 6234 | if "Updated the mcast route" in handle: |
| 6235 | return main.TRUE |
| 6236 | else: |
| 6237 | return main.FALSE |
| 6238 | except AssertionError: |
| 6239 | main.log.exception( "" ) |
| 6240 | return None |
| 6241 | except TypeError: |
| 6242 | main.log.exception( self.name + ": Object not as expected" ) |
| 6243 | return None |
| 6244 | except pexpect.EOF: |
| 6245 | main.log.error( self.name + ": EOF exception found" ) |
| 6246 | main.log.error( self.name + ": " + self.handle.before ) |
| 6247 | main.cleanAndExit() |
| 6248 | except Exception: |
| 6249 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 6250 | main.cleanAndExit() |
| 6251 | |
| 6252 | def mcastHostJoin( self, sAddr, gAddr, srcs, sinks ): |
| 6253 | """ |
| 6254 | Create a multicast route by calling 'mcast-host-join' command |
| 6255 | sAddr: we can provide * for ASM or a specific address for SSM |
| 6256 | gAddr: specifies multicast group address |
You Wang | 547893e | 2018-05-08 13:34:59 -0700 | [diff] [blame] | 6257 | srcs: a list of HostId of the sources e.g. ["00:AA:00:00:00:01/None"] |
You Wang | e24d627 | 2018-03-27 21:18:50 -0700 | [diff] [blame] | 6258 | sinks: a list of HostId of the sinks e.g. ["00:AA:00:00:01:05/40"] |
| 6259 | Returns main.TRUE if mcast route is added; Otherwise main.FALSE |
| 6260 | """ |
| 6261 | try: |
| 6262 | cmdStr = "mcast-host-join" |
| 6263 | cmdStr += " -sAddr " + str( sAddr ) |
| 6264 | cmdStr += " -gAddr " + str( gAddr ) |
| 6265 | assert isinstance( srcs, list ) |
| 6266 | for src in srcs: |
| 6267 | cmdStr += " -srcs " + str( src ) |
| 6268 | assert isinstance( sinks, list ) |
| 6269 | for sink in sinks: |
| 6270 | cmdStr += " -sinks " + str( sink ) |
| 6271 | handle = self.sendline( cmdStr ) |
| 6272 | assert handle is not None, "Error in sendline" |
| 6273 | assert "Command not found:" not in handle, handle |
| 6274 | assert "Unsupported command:" not in handle, handle |
| 6275 | assert "Error executing command" not in handle, handle |
| 6276 | if "Added the mcast route" in handle: |
| 6277 | return main.TRUE |
| 6278 | else: |
| 6279 | return main.FALSE |
| 6280 | except AssertionError: |
| 6281 | main.log.exception( "" ) |
| 6282 | return None |
| 6283 | except TypeError: |
| 6284 | main.log.exception( self.name + ": Object not as expected" ) |
| 6285 | return None |
| 6286 | except pexpect.EOF: |
| 6287 | main.log.error( self.name + ": EOF exception found" ) |
| 6288 | main.log.error( self.name + ": " + self.handle.before ) |
| 6289 | main.cleanAndExit() |
| 6290 | except Exception: |
| 6291 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 6292 | main.cleanAndExit() |
| 6293 | |
| 6294 | def mcastHostDelete( self, sAddr, gAddr, host=None ): |
| 6295 | """ |
| 6296 | Delete multicast sink(s) by calling 'mcast-host-delete' command |
| 6297 | sAddr: we can provide * for ASM or a specific address for SSM |
| 6298 | gAddr: specifies multicast group address |
You Wang | c02d835 | 2018-04-17 16:42:10 -0700 | [diff] [blame] | 6299 | host: HostId of the sink e.g. "00:AA:00:00:01:05/40", |
You Wang | e24d627 | 2018-03-27 21:18:50 -0700 | [diff] [blame] | 6300 | will delete the route if not specified |
| 6301 | Returns main.TRUE if the mcast sink is deleted; Otherwise main.FALSE |
| 6302 | """ |
| 6303 | try: |
| 6304 | cmdStr = "mcast-host-delete" |
| 6305 | cmdStr += " -sAddr " + str( sAddr ) |
| 6306 | cmdStr += " -gAddr " + str( gAddr ) |
| 6307 | if host: |
| 6308 | cmdStr += " -h " + str( host ) |
| 6309 | handle = self.sendline( cmdStr ) |
| 6310 | assert handle is not None, "Error in sendline" |
| 6311 | assert "Command not found:" not in handle, handle |
| 6312 | assert "Unsupported command:" not in handle, handle |
| 6313 | assert "Error executing command" not in handle, handle |
| 6314 | if "Updated the mcast route" in handle: |
| 6315 | return main.TRUE |
| 6316 | elif "Deleted the mcast route" in handle: |
| 6317 | return main.TRUE |
| 6318 | else: |
| 6319 | return main.FALSE |
| 6320 | except AssertionError: |
| 6321 | main.log.exception( "" ) |
| 6322 | return None |
| 6323 | except TypeError: |
| 6324 | main.log.exception( self.name + ": Object not as expected" ) |
| 6325 | return None |
| 6326 | except pexpect.EOF: |
| 6327 | main.log.error( self.name + ": EOF exception found" ) |
| 6328 | main.log.error( self.name + ": " + self.handle.before ) |
| 6329 | main.cleanAndExit() |
| 6330 | except Exception: |
| 6331 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 6332 | main.cleanAndExit() |
| 6333 | |
You Wang | 547893e | 2018-05-08 13:34:59 -0700 | [diff] [blame] | 6334 | def mcastSinkDelete( self, sAddr, gAddr, sink=None ): |
| 6335 | """ |
| 6336 | Delete multicast sink(s) by calling 'mcast-sink-delete' command |
| 6337 | sAddr: we can provide * for ASM or a specific address for SSM |
| 6338 | gAddr: specifies multicast group address |
| 6339 | host: HostId of the sink e.g. "00:AA:00:00:01:05/40", |
| 6340 | will delete the route if not specified |
| 6341 | Returns main.TRUE if the mcast sink is deleted; Otherwise main.FALSE |
| 6342 | """ |
| 6343 | try: |
| 6344 | cmdStr = "mcast-sink-delete" |
| 6345 | cmdStr += " -sAddr " + str( sAddr ) |
| 6346 | cmdStr += " -gAddr " + str( gAddr ) |
| 6347 | if sink: |
| 6348 | cmdStr += " -s " + str( sink ) |
| 6349 | handle = self.sendline( cmdStr ) |
| 6350 | assert handle is not None, "Error in sendline" |
| 6351 | assert "Command not found:" not in handle, handle |
| 6352 | assert "Unsupported command:" not in handle, handle |
| 6353 | assert "Error executing command" not in handle, handle |
| 6354 | if "Updated the mcast route" in handle: |
| 6355 | return main.TRUE |
| 6356 | elif "Deleted the mcast route" in handle: |
| 6357 | return main.TRUE |
| 6358 | else: |
| 6359 | return main.FALSE |
| 6360 | except AssertionError: |
| 6361 | main.log.exception( "" ) |
| 6362 | return None |
| 6363 | except TypeError: |
| 6364 | main.log.exception( self.name + ": Object not as expected" ) |
| 6365 | return None |
| 6366 | except pexpect.EOF: |
| 6367 | main.log.error( self.name + ": EOF exception found" ) |
| 6368 | main.log.error( self.name + ": " + self.handle.before ) |
| 6369 | main.cleanAndExit() |
| 6370 | except Exception: |
| 6371 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 6372 | main.cleanAndExit() |
| 6373 | |
You Wang | e24d627 | 2018-03-27 21:18:50 -0700 | [diff] [blame] | 6374 | def mcastSourceDelete( self, sAddr, gAddr, srcs=None ): |
| 6375 | """ |
| 6376 | Delete multicast src(s) by calling 'mcast-source-delete' command |
| 6377 | sAddr: we can provide * for ASM or a specific address for SSM |
| 6378 | gAddr: specifies multicast group address |
You Wang | 547893e | 2018-05-08 13:34:59 -0700 | [diff] [blame] | 6379 | srcs: a list of host IDs of the sources e.g. ["00:AA:00:00:01:05/40"], |
You Wang | e24d627 | 2018-03-27 21:18:50 -0700 | [diff] [blame] | 6380 | will delete the route if not specified |
| 6381 | Returns main.TRUE if mcast sink is deleted; Otherwise main.FALSE |
| 6382 | """ |
| 6383 | try: |
| 6384 | cmdStr = "mcast-source-delete" |
| 6385 | cmdStr += " -sAddr " + str( sAddr ) |
| 6386 | cmdStr += " -gAddr " + str( gAddr ) |
| 6387 | if srcs: |
| 6388 | assert isinstance( srcs, list ) |
| 6389 | for src in srcs: |
| 6390 | cmdStr += " -src " + str( src ) |
| 6391 | handle = self.sendline( cmdStr ) |
| 6392 | assert handle is not None, "Error in sendline" |
| 6393 | assert "Command not found:" not in handle, handle |
| 6394 | assert "Unsupported command:" not in handle, handle |
| 6395 | assert "Error executing command" not in handle, handle |
| 6396 | if "Updated the mcast route" in handle: |
| 6397 | return main.TRUE |
| 6398 | elif "Deleted the mcast route" in handle: |
| 6399 | return main.TRUE |
| 6400 | else: |
| 6401 | return main.FALSE |
| 6402 | except AssertionError: |
| 6403 | main.log.exception( "" ) |
| 6404 | return None |
| 6405 | except TypeError: |
| 6406 | main.log.exception( self.name + ": Object not as expected" ) |
| 6407 | return None |
| 6408 | except pexpect.EOF: |
| 6409 | main.log.error( self.name + ": EOF exception found" ) |
| 6410 | main.log.error( self.name + ": " + self.handle.before ) |
| 6411 | main.cleanAndExit() |
| 6412 | except Exception: |
| 6413 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 6414 | main.cleanAndExit() |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 6415 | |
| 6416 | def netcfg( self, jsonFormat=True, args="" ): |
| 6417 | """ |
| 6418 | Run netcfg cli command with given args |
| 6419 | """ |
| 6420 | try: |
| 6421 | cmdStr = "netcfg" |
| 6422 | if jsonFormat: |
| 6423 | cmdStr = cmdStr + " -j" |
| 6424 | if args: |
| 6425 | cmdStr = cmdStr + " " + str( args ) |
| 6426 | handle = self.sendline( cmdStr ) |
| 6427 | assert handle is not None, "Error in sendline" |
| 6428 | assert "Command not found:" not in handle, handle |
| 6429 | assert "Unsupported command:" not in handle, handle |
| 6430 | assert "Error executing command" not in handle, handle |
| 6431 | return handle |
| 6432 | except AssertionError: |
| 6433 | main.log.exception( "" ) |
| 6434 | return None |
| 6435 | except TypeError: |
| 6436 | main.log.exception( self.name + ": Object not as expected" ) |
| 6437 | return None |
| 6438 | except pexpect.EOF: |
| 6439 | main.log.error( self.name + ": EOF exception found" ) |
| 6440 | main.log.error( self.name + ": " + self.handle.before ) |
| 6441 | main.cleanAndExit() |
| 6442 | except Exception: |
| 6443 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 6444 | main.cleanAndExit() |
| 6445 | |
| 6446 | def composeT3Command( self, sAddr, dAddr, ipv6=False, verbose=True ): |
| 6447 | """ |
| 6448 | Compose and return t3-troubleshoot cli command for given source and destination addresses |
| 6449 | Options: |
| 6450 | sAddr: IP address of the source host |
| 6451 | dAddr: IP address of the destination host |
| 6452 | """ |
| 6453 | try: |
| 6454 | # Collect information of both hosts from onos |
| 6455 | hosts = self.hosts() |
| 6456 | hosts = json.loads( hosts ) |
| 6457 | sHost = None |
| 6458 | dHost = None |
| 6459 | for host in hosts: |
| 6460 | if sAddr in host[ "ipAddresses" ]: |
| 6461 | sHost = host |
| 6462 | elif dAddr in host[ "ipAddresses" ]: |
| 6463 | dHost = host |
| 6464 | if sHost and dHost: |
| 6465 | break |
| 6466 | assert sHost, "Not able to find host with IP {}".format( sAddr ) |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 6467 | cmdStr = "t3-troubleshoot" |
| 6468 | if verbose: |
| 6469 | cmdStr += " -vv" |
| 6470 | cmdStr += " -s " + str( sAddr ) |
| 6471 | # TODO: collect t3 for all locations of source host? |
| 6472 | cmdStr += " -sp " + str( sHost[ "locations" ][ 0 ][ "elementId" ] ) + "/" + str( sHost[ "locations" ][ 0 ][ "port" ] ) |
| 6473 | cmdStr += " -sm " + str( sHost[ "mac" ] ) |
You Wang | c9faf4c | 2018-05-02 12:05:50 -0700 | [diff] [blame] | 6474 | if sHost[ "vlan" ] != "None": |
| 6475 | cmdStr += " -vid " + sHost[ "vlan" ] |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 6476 | cmdStr += " -d " + str( dAddr ) |
| 6477 | netcfg = self.netcfg( args="devices {}".format( sHost[ "locations" ][ 0 ][ "elementId" ] ) ) |
| 6478 | netcfg = json.loads( netcfg ) |
| 6479 | assert netcfg, "Failed to get netcfg" |
| 6480 | cmdStr += " -dm " + str( netcfg[ "segmentrouting" ][ "routerMac" ] ) |
| 6481 | if ipv6: |
| 6482 | cmdStr += " -et ipv6" |
| 6483 | return cmdStr |
| 6484 | except AssertionError: |
| 6485 | main.log.exception( "" ) |
| 6486 | return None |
| 6487 | except ( KeyError, TypeError ): |
| 6488 | main.log.exception( self.name + ": Object not as expected" ) |
| 6489 | return None |
| 6490 | except Exception: |
| 6491 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 6492 | main.cleanAndExit() |
| 6493 | |
| 6494 | def t3( self, sAddr, dAddr, ipv6=False ): |
| 6495 | """ |
| 6496 | Run t3-troubleshoot cli command for given source and destination addresses |
| 6497 | Options: |
| 6498 | sAddr: IP address of the source host |
| 6499 | dAddr: IP address of the destination host |
| 6500 | """ |
| 6501 | try: |
| 6502 | cmdStr = self.composeT3Command( sAddr, dAddr, ipv6 ) |
| 6503 | handle = self.sendline( cmdStr ) |
| 6504 | assert handle is not None, "Error in sendline" |
| 6505 | assert "Command not found:" not in handle, handle |
| 6506 | assert "Unsupported command:" not in handle, handle |
| 6507 | assert "Error executing command" not in handle, handle |
| 6508 | assert "Tracing packet" in handle |
| 6509 | return handle |
| 6510 | except AssertionError: |
| 6511 | main.log.exception( "" ) |
| 6512 | return None |
| 6513 | except pexpect.EOF: |
| 6514 | main.log.error( self.name + ": EOF exception found" ) |
| 6515 | main.log.error( self.name + ": " + self.handle.before ) |
| 6516 | main.cleanAndExit() |
| 6517 | except Exception: |
| 6518 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 6519 | main.cleanAndExit() |