blob: db0b48caf24438ac0793950091adbc70ec01e06d [file] [log] [blame]
andrewonlab95ce8322014-10-13 14:12:04 -04001#!/usr/bin/env python
2
kelvin8ec71442015-01-15 16:57:00 -08003"""
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -07004OCT 13 2014
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00005Copyright 2014 Open Networking Foundation (ONF)
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -07006
7Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>,
8the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>,
9or 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 Ronquillo4d5f1d02017-10-13 20:23:57 +000014 (at your option) any later version.
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -070015
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 Ronquillo4d5f1d02017-10-13 20:23:57 +000024
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -070025"""
andrewonlab95ce8322014-10-13 14:12:04 -040026This driver enters the onos> prompt to issue commands.
27
kelvin8ec71442015-01-15 16:57:00 -080028Please follow the coding style demonstrated by existing
andrewonlab95ce8322014-10-13 14:12:04 -040029functions and document properly.
30
31If you are a contributor to the driver, please
32list your email here for future contact:
33
34jhall@onlab.us
35andrew@onlab.us
Jon Halle8217482014-10-17 13:49:14 -040036shreya@onlab.us
Jeremy Ronquillo818bc7c2017-08-09 17:14:53 +000037jeremyr@opennetworking.org
kelvin8ec71442015-01-15 16:57:00 -080038"""
andrewonlab95ce8322014-10-13 14:12:04 -040039import pexpect
40import re
Jon Hall30b82fa2015-03-04 17:15:43 -080041import json
42import types
Jon Hallbd16b922015-03-26 17:53:15 -070043import time
kelvin-onlaba4074292015-07-09 15:19:49 -070044import os
andrewonlab95ce8322014-10-13 14:12:04 -040045from drivers.common.clidriver import CLI
You Wangdb8cd0a2016-05-26 15:19:45 -070046from core.graph import Graph
Shreya Chowdhary6fbb96c2017-05-02 16:20:19 -070047from cStringIO import StringIO
48from itertools import izip
andrewonlab95ce8322014-10-13 14:12:04 -040049
kelvin8ec71442015-01-15 16:57:00 -080050class OnosCliDriver( CLI ):
andrewonlab95ce8322014-10-13 14:12:04 -040051
kelvin8ec71442015-01-15 16:57:00 -080052 def __init__( self ):
53 """
54 Initialize client
55 """
Jon Hallefbd9792015-03-05 16:11:36 -080056 self.name = None
57 self.home = None
58 self.handle = None
Devin Limdc78e202017-06-09 18:30:07 -070059 self.karafUser = None
60 self.karafPass = None
You Wangdb8cd0a2016-05-26 15:19:45 -070061 self.graph = Graph()
Devin Limdc78e202017-06-09 18:30:07 -070062 super( OnosCliDriver, self ).__init__()
kelvin8ec71442015-01-15 16:57:00 -080063
Jeremy Ronquillo82705492017-10-18 14:19:55 -070064 def checkOptions( self, var, defaultVar ):
Devin Limdc78e202017-06-09 18:30:07 -070065 if var is None or var == "":
66 return defaultVar
67 return var
Jeremy Ronquillo82705492017-10-18 14:19:55 -070068
kelvin8ec71442015-01-15 16:57:00 -080069 def connect( self, **connectargs ):
70 """
andrewonlab95ce8322014-10-13 14:12:04 -040071 Creates ssh handle for ONOS cli.
kelvin8ec71442015-01-15 16:57:00 -080072 """
andrewonlab95ce8322014-10-13 14:12:04 -040073 try:
74 for key in connectargs:
kelvin8ec71442015-01-15 16:57:00 -080075 vars( self )[ key ] = connectargs[ key ]
andrew@onlab.us658ec012015-03-11 15:13:09 -070076 self.home = "~/onos"
andrewonlab95ce8322014-10-13 14:12:04 -040077 for key in self.options:
78 if key == "home":
Devin Limdc78e202017-06-09 18:30:07 -070079 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 Ronquillo82705492017-10-18 14:19:55 -070085 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 )
andrewonlab95ce8322014-10-13 14:12:04 -040088
kelvin-onlaba4074292015-07-09 15:19:49 -070089 for key in self.options:
90 if key == 'onosIp':
91 self.onosIp = self.options[ 'onosIp' ]
92 break
93
kelvin8ec71442015-01-15 16:57:00 -080094 self.name = self.options[ 'name' ]
kelvin-onlaba4074292015-07-09 15:19:49 -070095
96 try:
Jon Hallc6793552016-01-19 14:18:37 -080097 if os.getenv( str( self.ip_address ) ) is not None:
kelvin-onlaba4074292015-07-09 15:19:49 -070098 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
kelvin8ec71442015-01-15 16:57:00 -0800111 self.handle = super( OnosCliDriver, self ).connect(
kelvin-onlab08679eb2015-01-21 16:11:48 -0800112 user_name=self.user_name,
113 ip_address=self.ip_address,
kelvin-onlab898a6c62015-01-16 14:13:53 -0800114 port=self.port,
115 pwd=self.pwd,
116 home=self.home )
andrewonlab95ce8322014-10-13 14:12:04 -0400117
kelvin8ec71442015-01-15 16:57:00 -0800118 self.handle.sendline( "cd " + self.home )
Devin Limdc78e202017-06-09 18:30:07 -0700119 self.handle.expect( self.prompt )
andrewonlab95ce8322014-10-13 14:12:04 -0400120 if self.handle:
121 return self.handle
kelvin8ec71442015-01-15 16:57:00 -0800122 else:
123 main.log.info( "NO ONOS HANDLE" )
andrewonlab95ce8322014-10-13 14:12:04 -0400124 return main.FALSE
Jon Halld4d4b372015-01-28 16:02:41 -0800125 except TypeError:
126 main.log.exception( self.name + ": Object not as expected" )
127 return None
andrewonlab95ce8322014-10-13 14:12:04 -0400128 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -0800129 main.log.error( self.name + ": EOF exception found" )
130 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -0700131 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -0800132 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -0800133 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -0700134 main.cleanAndExit()
andrewonlab95ce8322014-10-13 14:12:04 -0400135
kelvin8ec71442015-01-15 16:57:00 -0800136 def disconnect( self ):
137 """
andrewonlab95ce8322014-10-13 14:12:04 -0400138 Called when Test is complete to disconnect the ONOS handle.
kelvin8ec71442015-01-15 16:57:00 -0800139 """
Jon Halld61331b2015-02-17 16:35:47 -0800140 response = main.TRUE
andrewonlab95ce8322014-10-13 14:12:04 -0400141 try:
Jon Hall61282e32015-03-19 11:34:11 -0700142 if self.handle:
143 i = self.logout()
144 if i == main.TRUE:
145 self.handle.sendline( "" )
Devin Limdc78e202017-06-09 18:30:07 -0700146 self.handle.expect( self.prompt )
Jon Hall61282e32015-03-19 11:34:11 -0700147 self.handle.sendline( "exit" )
148 self.handle.expect( "closed" )
Jon Halld4d4b372015-01-28 16:02:41 -0800149 except TypeError:
150 main.log.exception( self.name + ": Object not as expected" )
Jon Halld61331b2015-02-17 16:35:47 -0800151 response = main.FALSE
andrewonlab95ce8322014-10-13 14:12:04 -0400152 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -0800153 main.log.error( self.name + ": EOF exception found" )
154 main.log.error( self.name + ": " + self.handle.before )
Jon Hall61282e32015-03-19 11:34:11 -0700155 except ValueError:
Jon Hall1a77a1e2015-04-06 10:41:13 -0700156 main.log.exception( "Exception in disconnect of " + self.name )
Jon Hall61282e32015-03-19 11:34:11 -0700157 response = main.TRUE
Jon Hallfebb1c72015-03-05 13:30:09 -0800158 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -0800159 main.log.exception( self.name + ": Connection failed to the host" )
andrewonlab95ce8322014-10-13 14:12:04 -0400160 response = main.FALSE
161 return response
162
kelvin8ec71442015-01-15 16:57:00 -0800163 def logout( self ):
164 """
andrewonlab38d2b4a2014-11-13 16:28:47 -0500165 Sends 'logout' command to ONOS cli
Jon Hall61282e32015-03-19 11:34:11 -0700166 Returns main.TRUE if exited CLI and
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000167 main.FALSE on timeout (not guranteed you are disconnected)
Jon Hall61282e32015-03-19 11:34:11 -0700168 None on TypeError
169 Exits test on unknown error or pexpect exits unexpectedly
kelvin8ec71442015-01-15 16:57:00 -0800170 """
andrewonlab38d2b4a2014-11-13 16:28:47 -0500171 try:
Jon Hall61282e32015-03-19 11:34:11 -0700172 if self.handle:
173 self.handle.sendline( "" )
Devin Limdc78e202017-06-09 18:30:07 -0700174 i = self.handle.expect( [ "onos>", self.prompt, pexpect.TIMEOUT ],
Jon Hall61282e32015-03-19 11:34:11 -0700175 timeout=10 )
176 if i == 0: # In ONOS CLI
177 self.handle.sendline( "logout" )
Devin Limdc78e202017-06-09 18:30:07 -0700178 j = self.handle.expect( [ self.prompt,
Jon Hallbfe00002016-04-05 10:23:54 -0700179 "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 Hall64ab3bd2016-05-13 11:29:44 -0700187 try:
Devin Limdc78e202017-06-09 18:30:07 -0700188 self.handle.expect( self.prompt )
Jon Hall64ab3bd2016-05-13 11:29:44 -0700189 except pexpect.TIMEOUT:
190 main.log.error( "ONOS did not respond to 'logout' or CTRL-d" )
Jon Hallbfe00002016-04-05 10:23:54 -0700191 return main.TRUE
Jon Halle0f0b342017-04-18 11:43:47 -0700192 else: # some other output
Jon Hallbfe00002016-04-05 10:23:54 -0700193 main.log.warn( "Unknown repsonse to logout command: '{}'",
194 repr( self.handle.before ) )
195 return main.FALSE
Jon Hall61282e32015-03-19 11:34:11 -0700196 elif i == 1: # not in CLI
197 return main.TRUE
198 elif i == 3: # Timeout
199 return main.FALSE
200 else:
andrewonlab9627f432014-11-14 12:45:10 -0500201 return main.TRUE
Jon Halld4d4b372015-01-28 16:02:41 -0800202 except TypeError:
203 main.log.exception( self.name + ": Object not as expected" )
204 return None
andrewonlab38d2b4a2014-11-13 16:28:47 -0500205 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -0800206 main.log.error( self.name + ": eof exception found" )
Jon Hall61282e32015-03-19 11:34:11 -0700207 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -0700208 main.cleanAndExit()
Jon Hall61282e32015-03-19 11:34:11 -0700209 except ValueError:
Jon Hall5aa168b2015-03-23 14:23:09 -0700210 main.log.error( self.name +
211 "ValueError exception in logout method" )
Jon Hallfebb1c72015-03-05 13:30:09 -0800212 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -0800213 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -0700214 main.cleanAndExit()
andrewonlab38d2b4a2014-11-13 16:28:47 -0500215
kelvin-onlabd3b64892015-01-20 13:26:24 -0800216 def setCell( self, cellname ):
kelvin8ec71442015-01-15 16:57:00 -0800217 """
andrewonlab95ce8322014-10-13 14:12:04 -0400218 Calls 'cell <name>' to set the environment variables on ONOSbench
kelvin8ec71442015-01-15 16:57:00 -0800219
andrewonlab95ce8322014-10-13 14:12:04 -0400220 Before issuing any cli commands, set the environment variable first.
kelvin8ec71442015-01-15 16:57:00 -0800221 """
andrewonlab95ce8322014-10-13 14:12:04 -0400222 try:
223 if not cellname:
kelvin8ec71442015-01-15 16:57:00 -0800224 main.log.error( "Must define cellname" )
Devin Lim44075962017-08-11 10:56:37 -0700225 main.cleanAndExit()
andrewonlab95ce8322014-10-13 14:12:04 -0400226 else:
kelvin8ec71442015-01-15 16:57:00 -0800227 self.handle.sendline( "cell " + str( cellname ) )
kelvin-onlabd3b64892015-01-20 13:26:24 -0800228 # Expect the cellname in the ONOSCELL variable.
kelvin8ec71442015-01-15 16:57:00 -0800229 # Note that this variable name is subject to change
andrewonlab95ce8322014-10-13 14:12:04 -0400230 # and that this driver will have to change accordingly
Jeremy Ronquillo82705492017-10-18 14:19:55 -0700231 self.handle.expect( str( cellname ) )
andrew@onlab.usc400b112015-01-21 15:33:19 -0800232 handleBefore = self.handle.before
233 handleAfter = self.handle.after
kelvin8ec71442015-01-15 16:57:00 -0800234 # Get the rest of the handle
Jeremy Ronquillo82705492017-10-18 14:19:55 -0700235 self.handle.sendline( "" )
236 self.handle.expect( self.prompt )
andrew@onlab.usc400b112015-01-21 15:33:19 -0800237 handleMore = self.handle.before
andrewonlab95ce8322014-10-13 14:12:04 -0400238
kelvin-onlabd3b64892015-01-20 13:26:24 -0800239 main.log.info( "Cell call returned: " + handleBefore +
240 handleAfter + handleMore )
andrewonlab95ce8322014-10-13 14:12:04 -0400241
242 return main.TRUE
243
Jon Halld4d4b372015-01-28 16:02:41 -0800244 except TypeError:
245 main.log.exception( self.name + ": Object not as expected" )
246 return None
andrewonlab95ce8322014-10-13 14:12:04 -0400247 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -0800248 main.log.error( self.name + ": eof exception found" )
249 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -0700250 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -0800251 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -0800252 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -0700253 main.cleanAndExit()
kelvin8ec71442015-01-15 16:57:00 -0800254
pingping-lin57a56ce2015-05-20 16:43:48 -0700255 def startOnosCli( self, ONOSIp, karafTimeout="",
Chiyu Chengef109502016-11-21 15:51:38 -0800256 commandlineTimeout=10, onosStartTimeout=60, waitForStart=False ):
kelvin8ec71442015-01-15 16:57:00 -0800257 """
Jon Hallefbd9792015-03-05 16:11:36 -0800258 karafTimeout is an optional argument. karafTimeout value passed
kelvin-onlabd3b64892015-01-20 13:26:24 -0800259 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 Krishnad7b9c202015-01-05 10:38:14 -0800261 the subsequent login would reflect new idle timeout.
kelvin-onlabd3b64892015-01-20 13:26:24 -0800262 Below is an example to start a session with 60 seconds idle timeout
263 ( input value is in milliseconds ):
kelvin8ec71442015-01-15 16:57:00 -0800264
Hari Krishna25d42f72015-01-05 15:08:28 -0800265 tValue = "60000"
kelvin-onlabd3b64892015-01-20 13:26:24 -0800266 main.ONOScli1.startOnosCli( ONOSIp, karafTimeout=tValue )
kelvin8ec71442015-01-15 16:57:00 -0800267
kelvin-onlabd3b64892015-01-20 13:26:24 -0800268 Note: karafTimeout is left as str so that this could be read
269 and passed to startOnosCli from PARAMS file as str.
kelvin8ec71442015-01-15 16:57:00 -0800270 """
You Wangf69ab392016-01-26 16:34:38 -0800271 self.onosIp = ONOSIp
andrewonlab95ce8322014-10-13 14:12:04 -0400272 try:
Jon Hall67253832016-12-05 09:47:13 -0800273 # Check if we are already in the cli
kelvin8ec71442015-01-15 16:57:00 -0800274 self.handle.sendline( "" )
275 x = self.handle.expect( [
Jeremy Ronquillo82705492017-10-18 14:19:55 -0700276 self.prompt, "onos>" ], commandlineTimeout )
andrewonlab48829f62014-11-17 13:49:01 -0500277 if x == 1:
kelvin8ec71442015-01-15 16:57:00 -0800278 main.log.info( "ONOS cli is already running" )
andrewonlab48829f62014-11-17 13:49:01 -0500279 return main.TRUE
andrewonlab95ce8322014-10-13 14:12:04 -0400280
Jon Hall67253832016-12-05 09:47:13 -0800281 # Not in CLI so login
Chiyu Chengef109502016-11-21 15:51:38 -0800282 if waitForStart:
283 # Wait for onos start ( -w ) and enter onos cli
284 startCliCommand = "onos -w "
285 else:
286 startCliCommand = "onos "
287 self.handle.sendline( startCliCommand + str( ONOSIp ) )
kelvin8ec71442015-01-15 16:57:00 -0800288 i = self.handle.expect( [
289 "onos>",
pingping-lin57a56ce2015-05-20 16:43:48 -0700290 pexpect.TIMEOUT ], onosStartTimeout )
andrewonlab2a7ea9b2014-10-24 12:21:05 -0400291
292 if i == 0:
kelvin-onlabd3b64892015-01-20 13:26:24 -0800293 main.log.info( str( ONOSIp ) + " CLI Started successfully" )
Hari Krishnae36ef212015-01-04 14:09:13 -0800294 if karafTimeout:
kelvin8ec71442015-01-15 16:57:00 -0800295 self.handle.sendline(
Hari Krishnaac4e1782015-01-26 12:09:12 -0800296 "config:property-set -p org.apache.karaf.shell\
297 sshIdleTimeout " +
kelvin8ec71442015-01-15 16:57:00 -0800298 karafTimeout )
Devin Limdc78e202017-06-09 18:30:07 -0700299 self.handle.expect( self.prompt )
Chiyu Chengef109502016-11-21 15:51:38 -0800300 self.handle.sendline( startCliCommand + str( ONOSIp ) )
kelvin8ec71442015-01-15 16:57:00 -0800301 self.handle.expect( "onos>" )
andrewonlab2a7ea9b2014-10-24 12:21:05 -0400302 return main.TRUE
303 else:
kelvin8ec71442015-01-15 16:57:00 -0800304 # If failed, send ctrl+c to process and try again
305 main.log.info( "Starting CLI failed. Retrying..." )
306 self.handle.send( "\x03" )
Chiyu Chengef109502016-11-21 15:51:38 -0800307 self.handle.sendline( startCliCommand + str( ONOSIp ) )
kelvin8ec71442015-01-15 16:57:00 -0800308 i = self.handle.expect( [ "onos>", pexpect.TIMEOUT ],
309 timeout=30 )
andrewonlab3a7c3c72014-10-24 17:21:03 -0400310 if i == 0:
kelvin-onlabd3b64892015-01-20 13:26:24 -0800311 main.log.info( str( ONOSIp ) + " CLI Started " +
kelvin8ec71442015-01-15 16:57:00 -0800312 "successfully after retry attempt" )
Hari Krishnae36ef212015-01-04 14:09:13 -0800313 if karafTimeout:
kelvin8ec71442015-01-15 16:57:00 -0800314 self.handle.sendline(
kelvin-onlabd3b64892015-01-20 13:26:24 -0800315 "config:property-set -p org.apache.karaf.shell\
316 sshIdleTimeout " +
kelvin8ec71442015-01-15 16:57:00 -0800317 karafTimeout )
Devin Limdc78e202017-06-09 18:30:07 -0700318 self.handle.expect( self.prompt )
Chiyu Chengef109502016-11-21 15:51:38 -0800319 self.handle.sendline( startCliCommand + str( ONOSIp ) )
kelvin8ec71442015-01-15 16:57:00 -0800320 self.handle.expect( "onos>" )
andrewonlab3a7c3c72014-10-24 17:21:03 -0400321 return main.TRUE
322 else:
kelvin8ec71442015-01-15 16:57:00 -0800323 main.log.error( "Connection to CLI " +
kelvin-onlabd3b64892015-01-20 13:26:24 -0800324 str( ONOSIp ) + " timeout" )
andrewonlab3a7c3c72014-10-24 17:21:03 -0400325 return main.FALSE
andrewonlab95ce8322014-10-13 14:12:04 -0400326
Jon Halld4d4b372015-01-28 16:02:41 -0800327 except TypeError:
328 main.log.exception( self.name + ": Object not as expected" )
329 return None
andrewonlab95ce8322014-10-13 14:12:04 -0400330 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -0800331 main.log.error( self.name + ": EOF exception found" )
332 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -0700333 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -0800334 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -0800335 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -0700336 main.cleanAndExit()
andrewonlab95ce8322014-10-13 14:12:04 -0400337
suibin zhang116647a2016-05-06 16:30:09 -0700338 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 Ronquillo4d5f1d02017-10-13 20:23:57 +0000355
suibin zhang116647a2016-05-06 16:30:09 -0700356 try:
357 self.handle.sendline( "" )
358 x = self.handle.expect( [
Jeremy Ronquillo82705492017-10-18 14:19:55 -0700359 self.prompt, "onos>" ], commandlineTimeout )
suibin zhang116647a2016-05-06 16:30:09 -0700360
361 if x == 1:
362 main.log.info( "ONOS cli is already running" )
363 return main.TRUE
364
365 # Wait for onos start ( -w ) and enter onos cli
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 Limdc78e202017-06-09 18:30:07 -0700378 self.handle.expect( self.prompt )
suibin zhang116647a2016-05-06 16:30:09 -0700379 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 Limdc78e202017-06-09 18:30:07 -0700397 self.handle.expect( self.prompt )
suibin zhang116647a2016-05-06 16:30:09 -0700398 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 Lim44075962017-08-11 10:56:37 -0700412 main.cleanAndExit()
suibin zhang116647a2016-05-06 16:30:09 -0700413 except Exception:
414 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -0700415 main.cleanAndExit()
suibin zhang116647a2016-05-06 16:30:09 -0700416
Pratik Parab3b2ab5a2017-02-14 13:15:14 -0800417 def log( self, cmdStr, level="", noExit=False ):
kelvin-onlab9f541032015-02-04 16:19:53 -0800418 """
419 log the commands in the onos CLI.
kelvin-onlab338f5512015-02-06 10:53:16 -0800420 returns main.TRUE on success
Jon Hallefbd9792015-03-05 16:11:36 -0800421 returns main.FALSE if Error occurred
YPZhangebf9eb52016-05-12 15:20:24 -0700422 if noExit is True, TestON will not exit, but clean up
kelvin-onlab338f5512015-02-06 10:53:16 -0800423 Available level: DEBUG, TRACE, INFO, WARN, ERROR
424 Level defaults to INFO
Pratik Parab3b2ab5a2017-02-14 13:15:14 -0800425 if cmdStr has spaces then put quotes in the passed string
kelvin-onlab9f541032015-02-04 16:19:53 -0800426 """
427 try:
kelvin-onlab338f5512015-02-06 10:53:16 -0800428 lvlStr = ""
429 if level:
430 lvlStr = "--level=" + level
431
kelvin-onlab338f5512015-02-06 10:53:16 -0800432 self.handle.sendline( "log:log " + lvlStr + " " + cmdStr )
Jon Hall390696c2015-05-05 17:13:41 -0700433 self.handle.expect( "log:log" )
kelvin-onlab9f541032015-02-04 16:19:53 -0800434 self.handle.expect( "onos>" )
kelvin-onlabfb521662015-02-27 09:52:40 -0800435
kelvin-onlab9f541032015-02-04 16:19:53 -0800436 response = self.handle.before
437 if re.search( "Error", response ):
438 return main.FALSE
439 return main.TRUE
Jon Hall80daded2015-05-27 16:07:00 -0700440 except pexpect.TIMEOUT:
441 main.log.exception( self.name + ": TIMEOUT exception found" )
YPZhangebf9eb52016-05-12 15:20:24 -0700442 if noExit:
443 main.cleanup()
444 return None
445 else:
Devin Lim44075962017-08-11 10:56:37 -0700446 main.cleanAndExit()
kelvin-onlab9f541032015-02-04 16:19:53 -0800447 except pexpect.EOF:
448 main.log.error( self.name + ": EOF exception found" )
449 main.log.error( self.name + ": " + self.handle.before )
YPZhangebf9eb52016-05-12 15:20:24 -0700450 if noExit:
451 main.cleanup()
452 return None
453 else:
Devin Lim44075962017-08-11 10:56:37 -0700454 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -0800455 except Exception:
kelvin-onlabfb521662015-02-27 09:52:40 -0800456 main.log.exception( self.name + ": Uncaught exception!" )
YPZhangebf9eb52016-05-12 15:20:24 -0700457 if noExit:
458 main.cleanup()
459 return None
460 else:
Devin Lim44075962017-08-11 10:56:37 -0700461 main.cleanAndExit()
andrewonlab95ce8322014-10-13 14:12:04 -0400462
Shreya Chowdhary6fbb96c2017-05-02 16:20:19 -0700463 def sendline( self, cmdStr, showResponse=False, debug=False, timeout=10, noExit=False, dollarSign=False ):
kelvin8ec71442015-01-15 16:57:00 -0800464 """
Jon Halle3f39ff2015-01-13 11:50:53 -0800465 Send a completely user specified string to
466 the onos> prompt. Use this function if you have
andrewonlaba18f6bf2014-10-13 19:31:54 -0400467 a very specific command to send.
Jon Halle3f39ff2015-01-13 11:50:53 -0800468
YPZhang14a4aa92016-07-15 13:37:15 -0700469 if noExit is True, TestON will not exit, and return None
Shreya Chowdhary6fbb96c2017-05-02 16:20:19 -0700470 if dollarSign is True, TestON will not expect for '$' as a new CLI or onos> prompt
471 since '$' can be in the output.
YPZhangebf9eb52016-05-12 15:20:24 -0700472
andrewonlaba18f6bf2014-10-13 19:31:54 -0400473 Warning: There are no sanity checking to commands
474 sent using this method.
GlennRCed771242016-01-13 17:02:47 -0800475
kelvin8ec71442015-01-15 16:57:00 -0800476 """
andrewonlaba18f6bf2014-10-13 19:31:54 -0400477 try:
Jon Halla495f562016-05-16 18:03:26 -0700478 # Try to reconnect if disconnected from cli
479 self.handle.sendline( "" )
Devin Limdc78e202017-06-09 18:30:07 -0700480 i = self.handle.expect( [ "onos>", self.prompt, pexpect.TIMEOUT ] )
Jon Halla495f562016-05-16 18:03:26 -0700481 if i == 1:
Jeremy Ronquillo82705492017-10-18 14:19:55 -0700482 main.log.error( self.name + ": onos cli session closed. " )
Jon Halla495f562016-05-16 18:03:26 -0700483 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." )
YPZhang14a4aa92016-07-15 13:37:15 -0700490 if noExit:
491 return None
492 else:
Devin Lim44075962017-08-11 10:56:37 -0700493 main.cleanAndExit()
Jon Halla495f562016-05-16 18:03:26 -0700494 else:
Devin Lim44075962017-08-11 10:56:37 -0700495 main.cleanAndExit()
Jon Halla495f562016-05-16 18:03:26 -0700496 if i == 2:
Jon Hall7a6ebfd2017-03-13 10:58:58 -0700497 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 Halla495f562016-05-16 18:03:26 -0700500 self.handle.expect( "onos>" )
501
Jon Hall14a03b52016-05-11 12:07:30 -0700502 if debug:
503 # NOTE: This adds and average of .4 seconds per call
504 logStr = "\"Sending CLI command: '" + cmdStr + "'\""
Jon Halle0f0b342017-04-18 11:43:47 -0700505 self.log( logStr, noExit=noExit )
kelvin-onlabd3b64892015-01-20 13:26:24 -0800506 self.handle.sendline( cmdStr )
Shreya Chowdhary6fbb96c2017-05-02 16:20:19 -0700507 if dollarSign:
Jeremy Ronquillo82705492017-10-18 14:19:55 -0700508 i = self.handle.expect( [ "onos>" ], timeout )
Shreya Chowdhary6fbb96c2017-05-02 16:20:19 -0700509 else:
Jeremy Ronquillo82705492017-10-18 14:19:55 -0700510 i = self.handle.expect( [ "onos>", self.prompt ], timeout )
Jon Hall63604932015-02-26 17:09:50 -0800511 response = self.handle.before
Jon Hall63604932015-02-26 17:09:50 -0800512 # TODO: do something with i
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000513 main.log.info( "Command '" + str( cmdStr ) + "' sent to "
Jon Hallc6793552016-01-19 14:18:37 -0800514 + self.name + "." )
Jon Hallc6358dd2015-04-10 12:44:28 -0700515 if debug:
Jon Hall390696c2015-05-05 17:13:41 -0700516 main.log.debug( self.name + ": Raw output" )
517 main.log.debug( self.name + ": " + repr( response ) )
Jon Hallc6358dd2015-04-10 12:44:28 -0700518
519 # Remove ANSI color control strings from output
kelvin-onlabd3b64892015-01-20 13:26:24 -0800520 ansiEscape = re.compile( r'\x1b[^m]*m' )
Jon Hall63604932015-02-26 17:09:50 -0800521 response = ansiEscape.sub( '', response )
Jon Hallc6358dd2015-04-10 12:44:28 -0700522 if debug:
Jon Hall390696c2015-05-05 17:13:41 -0700523 main.log.debug( self.name + ": ansiEscape output" )
524 main.log.debug( self.name + ": " + repr( response ) )
Jon Hallc6358dd2015-04-10 12:44:28 -0700525
kelvin-onlabfb521662015-02-27 09:52:40 -0800526 # Remove extra return chars that get added
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000527 response = re.sub( r"\s\r", "", response )
Jon Hallc6358dd2015-04-10 12:44:28 -0700528 if debug:
Jon Hall390696c2015-05-05 17:13:41 -0700529 main.log.debug( self.name + ": Removed extra returns " +
530 "from output" )
531 main.log.debug( self.name + ": " + repr( response ) )
Jon Hallc6358dd2015-04-10 12:44:28 -0700532
533 # Strip excess whitespace
Jon Hall63604932015-02-26 17:09:50 -0800534 response = response.strip()
Jon Hallc6358dd2015-04-10 12:44:28 -0700535 if debug:
Jon Hall390696c2015-05-05 17:13:41 -0700536 main.log.debug( self.name + ": parsed and stripped output" )
537 main.log.debug( self.name + ": " + repr( response ) )
Jon Hallc6358dd2015-04-10 12:44:28 -0700538
Jon Hall63604932015-02-26 17:09:50 -0800539 # parse for just the output, remove the cmd from response
Jon Hallc6358dd2015-04-10 12:44:28 -0700540 output = response.split( cmdStr.strip(), 1 )
541 if debug:
Jon Hall390696c2015-05-05 17:13:41 -0700542 main.log.debug( self.name + ": split output" )
Jon Hallc6358dd2015-04-10 12:44:28 -0700543 for r in output:
Jon Hall390696c2015-05-05 17:13:41 -0700544 main.log.debug( self.name + ": " + repr( r ) )
Jeremy Ronquillo82705492017-10-18 14:19:55 -0700545 output = output[ 1 ].strip()
GlennRC85870432015-11-23 11:45:51 -0800546 if showResponse:
GlennRCed771242016-01-13 17:02:47 -0800547 main.log.info( "Response from ONOS: {}".format( output ) )
GlennRC85870432015-11-23 11:45:51 -0800548 return output
GlennRCed771242016-01-13 17:02:47 -0800549 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 Hallc6358dd2015-04-10 12:44:28 -0700554 except IndexError:
555 main.log.exception( self.name + ": Object not as expected" )
Jon Halla495f562016-05-16 18:03:26 -0700556 main.log.debug( "response: {}".format( repr( response ) ) )
Jon Hallc6358dd2015-04-10 12:44:28 -0700557 return None
Jon Halld4d4b372015-01-28 16:02:41 -0800558 except TypeError:
559 main.log.exception( self.name + ": Object not as expected" )
560 return None
andrewonlaba18f6bf2014-10-13 19:31:54 -0400561 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -0800562 main.log.error( self.name + ": EOF exception found" )
563 main.log.error( self.name + ": " + self.handle.before )
YPZhangebf9eb52016-05-12 15:20:24 -0700564 if noExit:
YPZhangebf9eb52016-05-12 15:20:24 -0700565 return None
566 else:
Devin Lim44075962017-08-11 10:56:37 -0700567 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -0800568 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -0800569 main.log.exception( self.name + ": Uncaught exception!" )
YPZhangebf9eb52016-05-12 15:20:24 -0700570 if noExit:
YPZhangebf9eb52016-05-12 15:20:24 -0700571 return None
572 else:
Devin Lim44075962017-08-11 10:56:37 -0700573 main.cleanAndExit()
andrewonlaba18f6bf2014-10-13 19:31:54 -0400574
kelvin8ec71442015-01-15 16:57:00 -0800575 # IMPORTANT NOTE:
576 # For all cli commands, naming convention should match
kelvin-onlabd3b64892015-01-20 13:26:24 -0800577 # the cli command changing 'a:b' with 'aB'.
578 # Ex ) onos:topology > onosTopology
579 # onos:links > onosLinks
580 # feature:list > featureList
Jon Halle3f39ff2015-01-13 11:50:53 -0800581
kelvin-onlabd3b64892015-01-20 13:26:24 -0800582 def addNode( self, nodeId, ONOSIp, tcpPort="" ):
kelvin8ec71442015-01-15 16:57:00 -0800583 """
andrewonlabc2d05aa2014-10-13 16:51:10 -0400584 Adds a new cluster node by ID and address information.
585 Required:
kelvin-onlabd3b64892015-01-20 13:26:24 -0800586 * nodeId
587 * ONOSIp
andrewonlabc2d05aa2014-10-13 16:51:10 -0400588 Optional:
kelvin-onlabd3b64892015-01-20 13:26:24 -0800589 * tcpPort
kelvin8ec71442015-01-15 16:57:00 -0800590 """
andrewonlabc2d05aa2014-10-13 16:51:10 -0400591 try:
kelvin-onlabd3b64892015-01-20 13:26:24 -0800592 cmdStr = "add-node " + str( nodeId ) + " " +\
593 str( ONOSIp ) + " " + str( tcpPort )
594 handle = self.sendline( cmdStr )
Jon Halla495f562016-05-16 18:03:26 -0700595 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -0800596 assert "Command not found:" not in handle, handle
kelvin-onlab898a6c62015-01-16 14:13:53 -0800597 if re.search( "Error", handle ):
kelvin8ec71442015-01-15 16:57:00 -0800598 main.log.error( "Error in adding node" )
599 main.log.error( handle )
Jon Halle3f39ff2015-01-13 11:50:53 -0800600 return main.FALSE
andrewonlabc2d05aa2014-10-13 16:51:10 -0400601 else:
kelvin-onlabd3b64892015-01-20 13:26:24 -0800602 main.log.info( "Node " + str( ONOSIp ) + " added" )
andrewonlabc2d05aa2014-10-13 16:51:10 -0400603 return main.TRUE
Jon Hallc6793552016-01-19 14:18:37 -0800604 except AssertionError:
605 main.log.exception( "" )
606 return None
Jon Halld4d4b372015-01-28 16:02:41 -0800607 except TypeError:
608 main.log.exception( self.name + ": Object not as expected" )
609 return None
andrewonlabc2d05aa2014-10-13 16:51:10 -0400610 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -0800611 main.log.error( self.name + ": EOF exception found" )
612 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -0700613 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -0800614 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -0800615 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -0700616 main.cleanAndExit()
andrewonlabc2d05aa2014-10-13 16:51:10 -0400617
kelvin-onlabd3b64892015-01-20 13:26:24 -0800618 def removeNode( self, nodeId ):
kelvin8ec71442015-01-15 16:57:00 -0800619 """
andrewonlab86dc3082014-10-13 18:18:38 -0400620 Removes a cluster by ID
621 Issues command: 'remove-node [<node-id>]'
622 Required:
kelvin-onlabd3b64892015-01-20 13:26:24 -0800623 * nodeId
kelvin8ec71442015-01-15 16:57:00 -0800624 """
andrewonlab86dc3082014-10-13 18:18:38 -0400625 try:
andrewonlab86dc3082014-10-13 18:18:38 -0400626
kelvin-onlabd3b64892015-01-20 13:26:24 -0800627 cmdStr = "remove-node " + str( nodeId )
Jon Hall08f61bc2015-04-13 16:00:30 -0700628 handle = self.sendline( cmdStr )
Jon Halla495f562016-05-16 18:03:26 -0700629 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -0800630 assert "Command not found:" not in handle, handle
Jon Hallc6358dd2015-04-10 12:44:28 -0700631 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 Hallc6793552016-01-19 14:18:37 -0800637 except AssertionError:
638 main.log.exception( "" )
639 return None
Jon Halld4d4b372015-01-28 16:02:41 -0800640 except TypeError:
641 main.log.exception( self.name + ": Object not as expected" )
642 return None
andrewonlab86dc3082014-10-13 18:18:38 -0400643 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -0800644 main.log.error( self.name + ": EOF exception found" )
645 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -0700646 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -0800647 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -0800648 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -0700649 main.cleanAndExit()
andrewonlabc2d05aa2014-10-13 16:51:10 -0400650
Jeremy Ronquillo82705492017-10-18 14:19:55 -0700651 def nodes( self, jsonFormat=True ):
kelvin8ec71442015-01-15 16:57:00 -0800652 """
andrewonlab7c211572014-10-15 16:45:20 -0400653 List the nodes currently visible
654 Issues command: 'nodes'
Jon Hall61282e32015-03-19 11:34:11 -0700655 Optional argument:
656 * jsonFormat - boolean indicating if you want output in json
kelvin8ec71442015-01-15 16:57:00 -0800657 """
andrewonlab7c211572014-10-15 16:45:20 -0400658 try:
Jon Hallc6358dd2015-04-10 12:44:28 -0700659 cmdStr = "nodes"
Jon Hall61282e32015-03-19 11:34:11 -0700660 if jsonFormat:
Jon Hallc6358dd2015-04-10 12:44:28 -0700661 cmdStr += " -j"
662 output = self.sendline( cmdStr )
Jon Halla495f562016-05-16 18:03:26 -0700663 assert output is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -0800664 assert "Command not found:" not in output, output
Jon Hallc6358dd2015-04-10 12:44:28 -0700665 return output
Jon Hallc6793552016-01-19 14:18:37 -0800666 except AssertionError:
667 main.log.exception( "" )
668 return None
Jon Halld4d4b372015-01-28 16:02:41 -0800669 except TypeError:
670 main.log.exception( self.name + ": Object not as expected" )
671 return None
andrewonlab7c211572014-10-15 16:45:20 -0400672 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -0800673 main.log.error( self.name + ": EOF exception found" )
674 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -0700675 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -0800676 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -0800677 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -0700678 main.cleanAndExit()
andrewonlab7c211572014-10-15 16:45:20 -0400679
kelvin8ec71442015-01-15 16:57:00 -0800680 def topology( self ):
681 """
Hari Krishnaef1bd4e2015-03-12 16:55:30 -0700682 Definition:
Jon Hall390696c2015-05-05 17:13:41 -0700683 Returns the output of topology command.
Hari Krishnaef1bd4e2015-03-12 16:55:30 -0700684 Return:
685 topology = current ONOS topology
kelvin8ec71442015-01-15 16:57:00 -0800686 """
andrewonlab95ce8322014-10-13 14:12:04 -0400687 try:
Hari Krishnaef1bd4e2015-03-12 16:55:30 -0700688 cmdStr = "topology -j"
kelvin-onlabd3b64892015-01-20 13:26:24 -0800689 handle = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -0800690 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -0800691 assert "Command not found:" not in handle, handle
Jon Hallc6358dd2015-04-10 12:44:28 -0700692 main.log.info( cmdStr + " returned: " + str( handle ) )
andrewonlab95ce8322014-10-13 14:12:04 -0400693 return handle
Jon Hallc6793552016-01-19 14:18:37 -0800694 except AssertionError:
695 main.log.exception( "" )
Jon Halld4d4b372015-01-28 16:02:41 -0800696 return None
Jon Halld4d4b372015-01-28 16:02:41 -0800697 except TypeError:
698 main.log.exception( self.name + ": Object not as expected" )
699 return None
andrewonlabc2d05aa2014-10-13 16:51:10 -0400700 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -0800701 main.log.error( self.name + ": EOF exception found" )
702 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -0700703 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -0800704 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -0800705 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -0700706 main.cleanAndExit()
Jon Hallffb386d2014-11-21 13:43:38 -0800707
jenkins7ead5a82015-03-13 10:28:21 -0700708 def deviceRemove( self, deviceId ):
709 """
710 Removes particular device from storage
711
712 TODO: refactor this function
713 """
714 try:
Jon Hallc6358dd2015-04-10 12:44:28 -0700715 cmdStr = "device-remove " + str( deviceId )
716 handle = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -0800717 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -0800718 assert "Command not found:" not in handle, handle
Jon Hallc6358dd2015-04-10 12:44:28 -0700719 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 Hallc6793552016-01-19 14:18:37 -0800725 except AssertionError:
726 main.log.exception( "" )
727 return None
jenkins7ead5a82015-03-13 10:28:21 -0700728 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 Lim44075962017-08-11 10:56:37 -0700734 main.cleanAndExit()
jenkins7ead5a82015-03-13 10:28:21 -0700735 except Exception:
736 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -0700737 main.cleanAndExit()
jenkins7ead5a82015-03-13 10:28:21 -0700738
kelvin-onlabd3b64892015-01-20 13:26:24 -0800739 def devices( self, jsonFormat=True ):
kelvin8ec71442015-01-15 16:57:00 -0800740 """
Jon Hall7b02d952014-10-17 20:14:54 -0400741 Lists all infrastructure devices or switches
andrewonlab86dc3082014-10-13 18:18:38 -0400742 Optional argument:
kelvin-onlabd3b64892015-01-20 13:26:24 -0800743 * jsonFormat - boolean indicating if you want output in json
kelvin8ec71442015-01-15 16:57:00 -0800744 """
andrewonlab86dc3082014-10-13 18:18:38 -0400745 try:
Jon Hallc6358dd2015-04-10 12:44:28 -0700746 cmdStr = "devices"
kelvin-onlabd3b64892015-01-20 13:26:24 -0800747 if jsonFormat:
Jon Hallc6358dd2015-04-10 12:44:28 -0700748 cmdStr += " -j"
749 handle = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -0800750 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -0800751 assert "Command not found:" not in handle, handle
Jon Hallc6358dd2015-04-10 12:44:28 -0700752 return handle
Jon Hallc6793552016-01-19 14:18:37 -0800753 except AssertionError:
754 main.log.exception( "" )
755 return None
Jon Halld4d4b372015-01-28 16:02:41 -0800756 except TypeError:
757 main.log.exception( self.name + ": Object not as expected" )
758 return None
andrewonlab7c211572014-10-15 16:45:20 -0400759 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -0800760 main.log.error( self.name + ": EOF exception found" )
761 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -0700762 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -0800763 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -0800764 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -0700765 main.cleanAndExit()
andrewonlab7c211572014-10-15 16:45:20 -0400766
kelvin-onlabd3b64892015-01-20 13:26:24 -0800767 def balanceMasters( self ):
kelvin8ec71442015-01-15 16:57:00 -0800768 """
Hari Krishnaa43d4e92014-12-19 13:22:40 -0800769 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.
kelvin8ec71442015-01-15 16:57:00 -0800772 """
Hari Krishnaa43d4e92014-12-19 13:22:40 -0800773 try:
kelvin-onlabd3b64892015-01-20 13:26:24 -0800774 cmdStr = "onos:balance-masters"
Jon Hallc6358dd2015-04-10 12:44:28 -0700775 handle = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -0800776 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -0800777 assert "Command not found:" not in handle, handle
Jon Hallc6358dd2015-04-10 12:44:28 -0700778 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 Hallc6793552016-01-19 14:18:37 -0800784 except AssertionError:
785 main.log.exception( "" )
786 return None
Jon Halld4d4b372015-01-28 16:02:41 -0800787 except TypeError:
788 main.log.exception( self.name + ": Object not as expected" )
789 return None
Hari Krishnaa43d4e92014-12-19 13:22:40 -0800790 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -0800791 main.log.error( self.name + ": EOF exception found" )
792 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -0700793 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -0800794 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -0800795 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -0700796 main.cleanAndExit()
Hari Krishnaa43d4e92014-12-19 13:22:40 -0800797
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +0000798 def checkMasters( self, jsonFormat=True ):
acsmars24950022015-07-30 18:00:43 -0700799 """
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 Halla495f562016-05-16 18:03:26 -0700809 assert output is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -0800810 assert "Command not found:" not in output, output
acsmars24950022015-07-30 18:00:43 -0700811 return output
Jon Hallc6793552016-01-19 14:18:37 -0800812 except AssertionError:
813 main.log.exception( "" )
814 return None
acsmars24950022015-07-30 18:00:43 -0700815 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 Lim44075962017-08-11 10:56:37 -0700821 main.cleanAndExit()
acsmars24950022015-07-30 18:00:43 -0700822 except Exception:
823 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -0700824 main.cleanAndExit()
acsmars24950022015-07-30 18:00:43 -0700825
Jon Hallc6793552016-01-19 14:18:37 -0800826 def checkBalanceMasters( self, jsonFormat=True ):
acsmars24950022015-07-30 18:00:43 -0700827 """
828 Uses the master command to check that the devices' leadership
829 is evenly divided
830
831 Dependencies: checkMasters() and summary()
832
Jon Hall6509dbf2016-06-21 17:01:17 -0700833 Returns main.TRUE if the devices are balanced
834 Returns main.FALSE if the devices are unbalanced
acsmars24950022015-07-30 18:00:43 -0700835 Exits on Exception
836 Returns None on TypeError
837 """
838 try:
Jon Hallc6793552016-01-19 14:18:37 -0800839 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:
acsmars24950022015-07-30 18:00:43 -0700845 totalOwnedDevices = 0
Jon Hallc6793552016-01-19 14:18:37 -0800846 mastersOutput = self.checkMasters()
847 masters = json.loads( mastersOutput )
acsmars24950022015-07-30 18:00:43 -0700848 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 Halle0f0b342017-04-18 11:43:47 -0700855 main.log.info( "Mastership balanced between " +
Jeremy Ronquillo82705492017-10-18 14:19:55 -0700856 str( len( masters ) ) + " masters" )
acsmars24950022015-07-30 18:00:43 -0700857 return main.TRUE
Jon Hallc6793552016-01-19 14:18:37 -0800858 except ( TypeError, ValueError ):
859 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, mastersOutput ) )
acsmars24950022015-07-30 18:00:43 -0700860 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 Lim44075962017-08-11 10:56:37 -0700864 main.cleanAndExit()
acsmars24950022015-07-30 18:00:43 -0700865 except Exception:
866 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -0700867 main.cleanAndExit()
acsmars24950022015-07-30 18:00:43 -0700868
YPZhangfebf7302016-05-24 16:45:56 -0700869 def links( self, jsonFormat=True, timeout=30 ):
kelvin8ec71442015-01-15 16:57:00 -0800870 """
Jon Halle8217482014-10-17 13:49:14 -0400871 Lists all core links
872 Optional argument:
kelvin-onlabd3b64892015-01-20 13:26:24 -0800873 * jsonFormat - boolean indicating if you want output in json
kelvin8ec71442015-01-15 16:57:00 -0800874 """
Jon Halle8217482014-10-17 13:49:14 -0400875 try:
Jon Hallc6358dd2015-04-10 12:44:28 -0700876 cmdStr = "links"
kelvin-onlabd3b64892015-01-20 13:26:24 -0800877 if jsonFormat:
Jon Hallc6358dd2015-04-10 12:44:28 -0700878 cmdStr += " -j"
YPZhangfebf7302016-05-24 16:45:56 -0700879 handle = self.sendline( cmdStr, timeout=timeout )
You Wangb5a55f72017-03-03 12:51:05 -0800880 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -0800881 assert "Command not found:" not in handle, handle
Jon Hallc6358dd2015-04-10 12:44:28 -0700882 return handle
Jon Hallc6793552016-01-19 14:18:37 -0800883 except AssertionError:
884 main.log.exception( "" )
885 return None
Jon Halld4d4b372015-01-28 16:02:41 -0800886 except TypeError:
887 main.log.exception( self.name + ": Object not as expected" )
888 return None
Jon Halle8217482014-10-17 13:49:14 -0400889 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -0800890 main.log.error( self.name + ": EOF exception found" )
891 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -0700892 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -0800893 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -0800894 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -0700895 main.cleanAndExit()
Jon Halle8217482014-10-17 13:49:14 -0400896
kelvin-onlabd3b64892015-01-20 13:26:24 -0800897 def ports( self, jsonFormat=True ):
kelvin8ec71442015-01-15 16:57:00 -0800898 """
Jon Halle8217482014-10-17 13:49:14 -0400899 Lists all ports
900 Optional argument:
kelvin-onlabd3b64892015-01-20 13:26:24 -0800901 * jsonFormat - boolean indicating if you want output in json
kelvin8ec71442015-01-15 16:57:00 -0800902 """
Jon Halle8217482014-10-17 13:49:14 -0400903 try:
Jon Hallc6358dd2015-04-10 12:44:28 -0700904 cmdStr = "ports"
kelvin-onlabd3b64892015-01-20 13:26:24 -0800905 if jsonFormat:
Jon Hallc6358dd2015-04-10 12:44:28 -0700906 cmdStr += " -j"
907 handle = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -0800908 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -0800909 assert "Command not found:" not in handle, handle
Jon Hallc6358dd2015-04-10 12:44:28 -0700910 return handle
Jon Hallc6793552016-01-19 14:18:37 -0800911 except AssertionError:
912 main.log.exception( "" )
913 return None
Jon Halld4d4b372015-01-28 16:02:41 -0800914 except TypeError:
915 main.log.exception( self.name + ": Object not as expected" )
916 return None
Jon Halle8217482014-10-17 13:49:14 -0400917 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -0800918 main.log.error( self.name + ": EOF exception found" )
919 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -0700920 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -0800921 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -0800922 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -0700923 main.cleanAndExit()
Jon Halle8217482014-10-17 13:49:14 -0400924
kelvin-onlabd3b64892015-01-20 13:26:24 -0800925 def roles( self, jsonFormat=True ):
kelvin8ec71442015-01-15 16:57:00 -0800926 """
Jon Hall983a1702014-10-28 18:44:22 -0400927 Lists all devices and the controllers with roles assigned to them
928 Optional argument:
kelvin-onlabd3b64892015-01-20 13:26:24 -0800929 * jsonFormat - boolean indicating if you want output in json
kelvin8ec71442015-01-15 16:57:00 -0800930 """
andrewonlab7c211572014-10-15 16:45:20 -0400931 try:
Jon Hallc6358dd2015-04-10 12:44:28 -0700932 cmdStr = "roles"
kelvin-onlabd3b64892015-01-20 13:26:24 -0800933 if jsonFormat:
Jon Hallc6358dd2015-04-10 12:44:28 -0700934 cmdStr += " -j"
935 handle = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -0800936 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -0800937 assert "Command not found:" not in handle, handle
Jon Hallc6358dd2015-04-10 12:44:28 -0700938 return handle
Jon Hallc6793552016-01-19 14:18:37 -0800939 except AssertionError:
940 main.log.exception( "" )
941 return None
Jon Halld4d4b372015-01-28 16:02:41 -0800942 except TypeError:
943 main.log.exception( self.name + ": Object not as expected" )
944 return None
Jon Hall983a1702014-10-28 18:44:22 -0400945 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -0800946 main.log.error( self.name + ": EOF exception found" )
947 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -0700948 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -0800949 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -0800950 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -0700951 main.cleanAndExit()
Jon Hall983a1702014-10-28 18:44:22 -0400952
kelvin-onlabd3b64892015-01-20 13:26:24 -0800953 def getRole( self, deviceId ):
kelvin-onlab898a6c62015-01-16 14:13:53 -0800954 """
Jon Halle3f39ff2015-01-13 11:50:53 -0800955 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 Hall983a1702014-10-28 18:44:22 -0400959
960 Returns:
Jon Halle3f39ff2015-01-13 11:50:53 -0800961 A dict of the role assignments for the given device or
962 None if no match
kelvin8ec71442015-01-15 16:57:00 -0800963 """
Jon Hall983a1702014-10-28 18:44:22 -0400964 try:
kelvin-onlabd3b64892015-01-20 13:26:24 -0800965 if deviceId is None:
Jon Hall983a1702014-10-28 18:44:22 -0400966 return None
967 else:
kelvin-onlabd3b64892015-01-20 13:26:24 -0800968 rawRoles = self.roles()
969 rolesJson = json.loads( rawRoles )
kelvin8ec71442015-01-15 16:57:00 -0800970 # search json for the device with id then return the device
kelvin-onlabd3b64892015-01-20 13:26:24 -0800971 for device in rolesJson:
kelvin8ec71442015-01-15 16:57:00 -0800972 # print device
kelvin-onlabd3b64892015-01-20 13:26:24 -0800973 if str( deviceId ) in device[ 'id' ]:
Jon Hall983a1702014-10-28 18:44:22 -0400974 return device
975 return None
Jon Hallc6793552016-01-19 14:18:37 -0800976 except ( TypeError, ValueError ):
977 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawRoles ) )
Jon Halld4d4b372015-01-28 16:02:41 -0800978 return None
andrewonlab86dc3082014-10-13 18:18:38 -0400979 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -0800980 main.log.error( self.name + ": EOF exception found" )
981 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -0700982 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -0800983 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -0800984 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -0700985 main.cleanAndExit()
Jon Hall94fd0472014-12-08 11:52:42 -0800986
kelvin-onlabd3b64892015-01-20 13:26:24 -0800987 def rolesNotNull( self ):
kelvin8ec71442015-01-15 16:57:00 -0800988 """
Jon Hall94fd0472014-12-08 11:52:42 -0800989 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
kelvin8ec71442015-01-15 16:57:00 -0800992 """
Jon Hall94fd0472014-12-08 11:52:42 -0800993 try:
kelvin-onlabd3b64892015-01-20 13:26:24 -0800994 rawRoles = self.roles()
995 rolesJson = json.loads( rawRoles )
kelvin8ec71442015-01-15 16:57:00 -0800996 # search json for the device with id then return the device
kelvin-onlabd3b64892015-01-20 13:26:24 -0800997 for device in rolesJson:
kelvin8ec71442015-01-15 16:57:00 -0800998 # print device
999 if device[ 'master' ] == "none":
1000 main.log.warn( "Device has no master: " + str( device ) )
Jon Hall94fd0472014-12-08 11:52:42 -08001001 return main.FALSE
1002 return main.TRUE
Jon Hallc6793552016-01-19 14:18:37 -08001003 except ( TypeError, ValueError ):
1004 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawRoles ) )
Jon Halld4d4b372015-01-28 16:02:41 -08001005 return None
Jon Hall94fd0472014-12-08 11:52:42 -08001006 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08001007 main.log.error( self.name + ": EOF exception found" )
1008 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07001009 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08001010 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08001011 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07001012 main.cleanAndExit()
Jon Hall94fd0472014-12-08 11:52:42 -08001013
kelvin-onlabd3b64892015-01-20 13:26:24 -08001014 def paths( self, srcId, dstId ):
kelvin8ec71442015-01-15 16:57:00 -08001015 """
andrewonlab3e15ead2014-10-15 14:21:34 -04001016 Returns string of paths, and the cost.
1017 Issues command: onos:paths <src> <dst>
kelvin8ec71442015-01-15 16:57:00 -08001018 """
andrewonlab3e15ead2014-10-15 14:21:34 -04001019 try:
kelvin-onlabd3b64892015-01-20 13:26:24 -08001020 cmdStr = "onos:paths " + str( srcId ) + " " + str( dstId )
1021 handle = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -08001022 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08001023 assert "Command not found:" not in handle, handle
Jon Halle3f39ff2015-01-13 11:50:53 -08001024 if re.search( "Error", handle ):
kelvin8ec71442015-01-15 16:57:00 -08001025 main.log.error( "Error in getting paths" )
1026 return ( handle, "Error" )
andrewonlab3e15ead2014-10-15 14:21:34 -04001027 else:
kelvin8ec71442015-01-15 16:57:00 -08001028 path = handle.split( ";" )[ 0 ]
1029 cost = handle.split( ";" )[ 1 ]
1030 return ( path, cost )
Jon Hallc6793552016-01-19 14:18:37 -08001031 except AssertionError:
1032 main.log.exception( "" )
1033 return ( handle, "Error" )
Jon Halld4d4b372015-01-28 16:02:41 -08001034 except TypeError:
1035 main.log.exception( self.name + ": Object not as expected" )
1036 return ( handle, "Error" )
andrewonlab3e15ead2014-10-15 14:21:34 -04001037 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08001038 main.log.error( self.name + ": EOF exception found" )
1039 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07001040 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08001041 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08001042 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07001043 main.cleanAndExit()
Jon Hallffb386d2014-11-21 13:43:38 -08001044
kelvin-onlabd3b64892015-01-20 13:26:24 -08001045 def hosts( self, jsonFormat=True ):
kelvin8ec71442015-01-15 16:57:00 -08001046 """
Jon Hallffb386d2014-11-21 13:43:38 -08001047 Lists all discovered hosts
Jon Hall42db6dc2014-10-24 19:03:48 -04001048 Optional argument:
kelvin-onlabd3b64892015-01-20 13:26:24 -08001049 * jsonFormat - boolean indicating if you want output in json
kelvin8ec71442015-01-15 16:57:00 -08001050 """
Jon Hall42db6dc2014-10-24 19:03:48 -04001051 try:
Jon Hallc6358dd2015-04-10 12:44:28 -07001052 cmdStr = "hosts"
kelvin-onlabd3b64892015-01-20 13:26:24 -08001053 if jsonFormat:
Jon Hallc6358dd2015-04-10 12:44:28 -07001054 cmdStr += " -j"
1055 handle = self.sendline( cmdStr )
Jeremyd9e4eb12016-04-13 12:09:06 -07001056 if handle:
1057 assert "Command not found:" not in handle, handle
Jon Hallbaf53162015-12-17 17:04:34 -08001058 # 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 Hallc6358dd2015-04-10 12:44:28 -07001063 return handle
Jon Hallc6793552016-01-19 14:18:37 -08001064 except AssertionError:
Jeremyd9e4eb12016-04-13 12:09:06 -07001065 main.log.exception( "Error in processing '" + cmdStr + "' " +
Jeremy Songster6949cea2016-04-19 18:13:18 -07001066 "command: " + str( handle ) )
Jon Hallc6793552016-01-19 14:18:37 -08001067 return None
Jon Halld4d4b372015-01-28 16:02:41 -08001068 except TypeError:
1069 main.log.exception( self.name + ": Object not as expected" )
1070 return None
Jon Hall42db6dc2014-10-24 19:03:48 -04001071 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08001072 main.log.error( self.name + ": EOF exception found" )
1073 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07001074 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08001075 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08001076 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07001077 main.cleanAndExit()
Jon Hall42db6dc2014-10-24 19:03:48 -04001078
kelvin-onlabd3b64892015-01-20 13:26:24 -08001079 def getHost( self, mac ):
kelvin8ec71442015-01-15 16:57:00 -08001080 """
Jon Hall42db6dc2014-10-24 19:03:48 -04001081 Return the first host from the hosts api whose 'id' contains 'mac'
Jon Halle3f39ff2015-01-13 11:50:53 -08001082
Jon Hallefbd9792015-03-05 16:11:36 -08001083 Note: mac must be a colon separated mac address, but could be a
Jon Halle3f39ff2015-01-13 11:50:53 -08001084 partial mac address
1085
Jon Hall42db6dc2014-10-24 19:03:48 -04001086 Return None if there is no match
kelvin8ec71442015-01-15 16:57:00 -08001087 """
Jon Hall42db6dc2014-10-24 19:03:48 -04001088 try:
kelvin8ec71442015-01-15 16:57:00 -08001089 if mac is None:
Jon Hall42db6dc2014-10-24 19:03:48 -04001090 return None
1091 else:
1092 mac = mac
kelvin-onlabd3b64892015-01-20 13:26:24 -08001093 rawHosts = self.hosts()
1094 hostsJson = json.loads( rawHosts )
kelvin8ec71442015-01-15 16:57:00 -08001095 # search json for the host with mac then return the device
kelvin-onlabd3b64892015-01-20 13:26:24 -08001096 for host in hostsJson:
kelvin8ec71442015-01-15 16:57:00 -08001097 # print "%s in %s?" % ( mac, host[ 'id' ] )
Jon Halld4d4b372015-01-28 16:02:41 -08001098 if not host:
1099 pass
1100 elif mac in host[ 'id' ]:
Jon Hall42db6dc2014-10-24 19:03:48 -04001101 return host
1102 return None
Jon Hallc6793552016-01-19 14:18:37 -08001103 except ( TypeError, ValueError ):
1104 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawHosts ) )
Jon Halld4d4b372015-01-28 16:02:41 -08001105 return None
Jon Hall42db6dc2014-10-24 19:03:48 -04001106 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08001107 main.log.error( self.name + ": EOF exception found" )
1108 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07001109 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08001110 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08001111 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07001112 main.cleanAndExit()
Jon Hall42db6dc2014-10-24 19:03:48 -04001113
kelvin-onlabd3b64892015-01-20 13:26:24 -08001114 def getHostsId( self, hostList ):
kelvin8ec71442015-01-15 16:57:00 -08001115 """
1116 Obtain list of hosts
andrewonlab3f0a4af2014-10-17 12:25:14 -04001117 Issues command: 'onos> hosts'
kelvin8ec71442015-01-15 16:57:00 -08001118
andrewonlab3f0a4af2014-10-17 12:25:14 -04001119 Required:
kelvin-onlabd3b64892015-01-20 13:26:24 -08001120 * hostList: List of hosts obtained by Mininet
andrewonlab3f0a4af2014-10-17 12:25:14 -04001121 IMPORTANT:
1122 This function assumes that you started your
kelvin8ec71442015-01-15 16:57:00 -08001123 topology with the option '--mac'.
andrewonlab3f0a4af2014-10-17 12:25:14 -04001124 Furthermore, it assumes that value of VLAN is '-1'
1125 Description:
kelvin8ec71442015-01-15 16:57:00 -08001126 Converts mininet hosts ( h1, h2, h3... ) into
1127 ONOS format ( 00:00:00:00:00:01/-1 , ... )
1128 """
andrewonlab3f0a4af2014-10-17 12:25:14 -04001129 try:
kelvin-onlabd3b64892015-01-20 13:26:24 -08001130 onosHostList = []
andrewonlab3f0a4af2014-10-17 12:25:14 -04001131
kelvin-onlabd3b64892015-01-20 13:26:24 -08001132 for host in hostList:
kelvin8ec71442015-01-15 16:57:00 -08001133 host = host.replace( "h", "" )
kelvin-onlabd3b64892015-01-20 13:26:24 -08001134 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 )
andrewonlab3f0a4af2014-10-17 12:25:14 -04001140
kelvin-onlabd3b64892015-01-20 13:26:24 -08001141 return onosHostList
andrewonlab3f0a4af2014-10-17 12:25:14 -04001142
Jon Halld4d4b372015-01-28 16:02:41 -08001143 except TypeError:
1144 main.log.exception( self.name + ": Object not as expected" )
1145 return None
andrewonlab3f0a4af2014-10-17 12:25:14 -04001146 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08001147 main.log.error( self.name + ": EOF exception found" )
1148 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07001149 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08001150 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08001151 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07001152 main.cleanAndExit()
andrewonlab3e15ead2014-10-15 14:21:34 -04001153
Shreya Chowdhary6fbb96c2017-05-02 16:20:19 -07001154 def addHostIntent( self, hostIdOne, hostIdTwo, vlanId="", setVlan="", encap="", bandwidth="" ):
kelvin8ec71442015-01-15 16:57:00 -08001155 """
andrewonlabe6745342014-10-17 14:29:13 -04001156 Required:
kelvin-onlabd3b64892015-01-20 13:26:24 -08001157 * hostIdOne: ONOS host id for host1
1158 * hostIdTwo: ONOS host id for host2
Jeremy Songster832f9e92016-05-05 14:30:49 -07001159 Optional:
1160 * vlanId: specify a VLAN id for the intent
Jeremy Songsterff553672016-05-12 17:06:23 -07001161 * setVlan: specify a VLAN id treatment
Jeremy Songsterc032f162016-08-04 17:14:49 -07001162 * encap: specify an encapsulation type
andrewonlabe6745342014-10-17 14:29:13 -04001163 Description:
Jon Hallefbd9792015-03-05 16:11:36 -08001164 Adds a host-to-host intent ( bidirectional ) by
Jon Hallb1290e82014-11-18 16:17:48 -05001165 specifying the two hosts.
kelvin-onlabfb521662015-02-27 09:52:40 -08001166 Returns:
1167 A string of the intent id or None on Error
kelvin8ec71442015-01-15 16:57:00 -08001168 """
andrewonlabe6745342014-10-17 14:29:13 -04001169 try:
Jeremy Songster832f9e92016-05-05 14:30:49 -07001170 cmdStr = "add-host-intent "
1171 if vlanId:
1172 cmdStr += "-v " + str( vlanId ) + " "
Jeremy Songsterff553672016-05-12 17:06:23 -07001173 if setVlan:
1174 cmdStr += "--setVlan " + str( vlanId ) + " "
Jeremy Songsterc032f162016-08-04 17:14:49 -07001175 if encap:
1176 cmdStr += "--encapsulation " + str( encap ) + " "
Shreya Chowdhary6fbb96c2017-05-02 16:20:19 -07001177 if bandwidth:
1178 cmdStr += "-b " + str( bandwidth ) + " "
Jeremy Songster832f9e92016-05-05 14:30:49 -07001179 cmdStr += str( hostIdOne ) + " " + str( hostIdTwo )
kelvin-onlabd3b64892015-01-20 13:26:24 -08001180 handle = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -08001181 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08001182 assert "Command not found:" not in handle, handle
Hari Krishnaac4e1782015-01-26 12:09:12 -08001183 if re.search( "Error", handle ):
1184 main.log.error( "Error in adding Host intent" )
Jon Hall61282e32015-03-19 11:34:11 -07001185 main.log.debug( "Response from ONOS was: " + repr( handle ) )
kelvin-onlabfb521662015-02-27 09:52:40 -08001186 return None
Hari Krishnaac4e1782015-01-26 12:09:12 -08001187 else:
1188 main.log.info( "Host intent installed between " +
kelvin-onlabfb521662015-02-27 09:52:40 -08001189 str( hostIdOne ) + " and " + str( hostIdTwo ) )
Jeremy Ronquillo82705492017-10-18 14:19:55 -07001190 match = re.search( 'id=0x([\da-f]+),', handle )
kelvin-onlabfb521662015-02-27 09:52:40 -08001191 if match:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07001192 return match.group()[ 3:-1 ]
kelvin-onlabfb521662015-02-27 09:52:40 -08001193 else:
1194 main.log.error( "Error, intent ID not found" )
Jon Hall61282e32015-03-19 11:34:11 -07001195 main.log.debug( "Response from ONOS was: " +
1196 repr( handle ) )
kelvin-onlabfb521662015-02-27 09:52:40 -08001197 return None
Jon Hallc6793552016-01-19 14:18:37 -08001198 except AssertionError:
1199 main.log.exception( "" )
1200 return None
Jon Halld4d4b372015-01-28 16:02:41 -08001201 except TypeError:
1202 main.log.exception( self.name + ": Object not as expected" )
1203 return None
andrewonlabe6745342014-10-17 14:29:13 -04001204 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08001205 main.log.error( self.name + ": EOF exception found" )
1206 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07001207 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08001208 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08001209 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07001210 main.cleanAndExit()
andrewonlabe6745342014-10-17 14:29:13 -04001211
kelvin-onlabd3b64892015-01-20 13:26:24 -08001212 def addOpticalIntent( self, ingressDevice, egressDevice ):
kelvin8ec71442015-01-15 16:57:00 -08001213 """
andrewonlab7b31d232014-10-24 13:31:47 -04001214 Required:
kelvin-onlabd3b64892015-01-20 13:26:24 -08001215 * ingressDevice: device id of ingress device
1216 * egressDevice: device id of egress device
andrewonlab7b31d232014-10-24 13:31:47 -04001217 Optional:
1218 TODO: Still needs to be implemented via dev side
kelvin-onlabfb521662015-02-27 09:52:40 -08001219 Description:
1220 Adds an optical intent by specifying an ingress and egress device
1221 Returns:
1222 A string of the intent id or None on error
kelvin-onlab898a6c62015-01-16 14:13:53 -08001223 """
andrewonlab7b31d232014-10-24 13:31:47 -04001224 try:
kelvin-onlabd3b64892015-01-20 13:26:24 -08001225 cmdStr = "add-optical-intent " + str( ingressDevice ) +\
1226 " " + str( egressDevice )
1227 handle = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -08001228 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08001229 assert "Command not found:" not in handle, handle
kelvin-onlab898a6c62015-01-16 14:13:53 -08001230 # If error, return error message
Jon Halle3f39ff2015-01-13 11:50:53 -08001231 if re.search( "Error", handle ):
kelvin-onlabfb521662015-02-27 09:52:40 -08001232 main.log.error( "Error in adding Optical intent" )
1233 return None
andrewonlab7b31d232014-10-24 13:31:47 -04001234 else:
kelvin-onlabfb521662015-02-27 09:52:40 -08001235 main.log.info( "Optical intent installed between " +
1236 str( ingressDevice ) + " and " +
1237 str( egressDevice ) )
Jeremy Ronquillo82705492017-10-18 14:19:55 -07001238 match = re.search( 'id=0x([\da-f]+),', handle )
kelvin-onlabfb521662015-02-27 09:52:40 -08001239 if match:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07001240 return match.group()[ 3:-1 ]
kelvin-onlabfb521662015-02-27 09:52:40 -08001241 else:
1242 main.log.error( "Error, intent ID not found" )
1243 return None
Jon Hallc6793552016-01-19 14:18:37 -08001244 except AssertionError:
1245 main.log.exception( "" )
1246 return None
Jon Halld4d4b372015-01-28 16:02:41 -08001247 except TypeError:
1248 main.log.exception( self.name + ": Object not as expected" )
1249 return None
andrewonlab7b31d232014-10-24 13:31:47 -04001250 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08001251 main.log.error( self.name + ": EOF exception found" )
1252 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07001253 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08001254 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08001255 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07001256 main.cleanAndExit()
andrewonlab7b31d232014-10-24 13:31:47 -04001257
kelvin-onlabd3b64892015-01-20 13:26:24 -08001258 def addPointIntent(
kelvin-onlab898a6c62015-01-16 14:13:53 -08001259 self,
kelvin-onlabd3b64892015-01-20 13:26:24 -08001260 ingressDevice,
1261 egressDevice,
1262 portIngress="",
1263 portEgress="",
kelvin-onlab898a6c62015-01-16 14:13:53 -08001264 ethType="",
1265 ethSrc="",
1266 ethDst="",
1267 bandwidth="",
kelvin-onlabd3b64892015-01-20 13:26:24 -08001268 lambdaAlloc=False,
alisonda157272016-12-22 01:13:21 -08001269 protected=False,
kelvin-onlab898a6c62015-01-16 14:13:53 -08001270 ipProto="",
1271 ipSrc="",
1272 ipDst="",
1273 tcpSrc="",
Jeremy Songster832f9e92016-05-05 14:30:49 -07001274 tcpDst="",
Jeremy Songsterff553672016-05-12 17:06:23 -07001275 vlanId="",
Jeremy Songsterc032f162016-08-04 17:14:49 -07001276 setVlan="",
1277 encap="" ):
kelvin8ec71442015-01-15 16:57:00 -08001278 """
andrewonlab4dbb4d82014-10-17 18:22:31 -04001279 Required:
kelvin-onlabd3b64892015-01-20 13:26:24 -08001280 * ingressDevice: device id of ingress device
1281 * egressDevice: device id of egress device
andrewonlab289e4b72014-10-21 21:24:18 -04001282 Optional:
1283 * ethType: specify ethType
kelvin8ec71442015-01-15 16:57:00 -08001284 * ethSrc: specify ethSrc ( i.e. src mac addr )
1285 * ethDst: specify ethDst ( i.e. dst mac addr )
andrewonlab0dbb6ec2014-11-06 13:46:55 -05001286 * bandwidth: specify bandwidth capacity of link
kelvin-onlabd3b64892015-01-20 13:26:24 -08001287 * lambdaAlloc: if True, intent will allocate lambda
andrewonlab40ccd8b2014-11-06 16:23:34 -05001288 for the specified intent
Jon Halle3f39ff2015-01-13 11:50:53 -08001289 * ipProto: specify ip protocol
andrewonlabf77e0cb2014-11-11 17:17:59 -05001290 * ipSrc: specify ip source address
1291 * ipDst: specify ip destination address
1292 * tcpSrc: specify tcp source port
1293 * tcpDst: specify tcp destination port
Jeremy Songster832f9e92016-05-05 14:30:49 -07001294 * vlanId: specify vlan ID
Jeremy Songsterff553672016-05-12 17:06:23 -07001295 * setVlan: specify a VLAN id treatment
Jeremy Songsterc032f162016-08-04 17:14:49 -07001296 * encap: specify an Encapsulation type to use
andrewonlab4dbb4d82014-10-17 18:22:31 -04001297 Description:
kelvin8ec71442015-01-15 16:57:00 -08001298 Adds a point-to-point intent ( uni-directional ) by
andrewonlab289e4b72014-10-21 21:24:18 -04001299 specifying device id's and optional fields
kelvin-onlabfb521662015-02-27 09:52:40 -08001300 Returns:
1301 A string of the intent id or None on error
andrewonlab289e4b72014-10-21 21:24:18 -04001302
Jon Halle3f39ff2015-01-13 11:50:53 -08001303 NOTE: This function may change depending on the
andrewonlab4dbb4d82014-10-17 18:22:31 -04001304 options developers provide for point-to-point
1305 intent via cli
kelvin8ec71442015-01-15 16:57:00 -08001306 """
andrewonlab4dbb4d82014-10-17 18:22:31 -04001307 try:
Jeremy Songsterff553672016-05-12 17:06:23 -07001308 cmd = "add-point-intent"
andrewonlab36af3822014-11-18 17:48:18 -05001309
Jeremy Songsterff553672016-05-12 17:06:23 -07001310 if ethType:
1311 cmd += " --ethType " + str( ethType )
1312 if ethSrc:
1313 cmd += " --ethSrc " + str( ethSrc )
1314 if ethDst:
1315 cmd += " --ethDst " + str( ethDst )
1316 if bandwidth:
1317 cmd += " --bandwidth " + str( bandwidth )
1318 if lambdaAlloc:
1319 cmd += " --lambda "
1320 if ipProto:
1321 cmd += " --ipProto " + str( ipProto )
1322 if ipSrc:
1323 cmd += " --ipSrc " + str( ipSrc )
1324 if ipDst:
1325 cmd += " --ipDst " + str( ipDst )
1326 if tcpSrc:
1327 cmd += " --tcpSrc " + str( tcpSrc )
1328 if tcpDst:
1329 cmd += " --tcpDst " + str( tcpDst )
1330 if vlanId:
1331 cmd += " -v " + str( vlanId )
1332 if setVlan:
1333 cmd += " --setVlan " + str( setVlan )
Jeremy Songsterc032f162016-08-04 17:14:49 -07001334 if encap:
1335 cmd += " --encapsulation " + str( encap )
alisonda157272016-12-22 01:13:21 -08001336 if protected:
1337 cmd += " --protect "
andrewonlab289e4b72014-10-21 21:24:18 -04001338
kelvin8ec71442015-01-15 16:57:00 -08001339 # Check whether the user appended the port
1340 # or provided it as an input
kelvin-onlabd3b64892015-01-20 13:26:24 -08001341 if "/" in ingressDevice:
1342 cmd += " " + str( ingressDevice )
andrewonlab36af3822014-11-18 17:48:18 -05001343 else:
kelvin-onlabd3b64892015-01-20 13:26:24 -08001344 if not portIngress:
kelvin-onlabfb521662015-02-27 09:52:40 -08001345 main.log.error( "You must specify the ingress port" )
kelvin8ec71442015-01-15 16:57:00 -08001346 # TODO: perhaps more meaningful return
kelvin-onlabfb521662015-02-27 09:52:40 -08001347 # Would it make sense to throw an exception and exit
1348 # the test?
1349 return None
andrewonlab36af3822014-11-18 17:48:18 -05001350
kelvin8ec71442015-01-15 16:57:00 -08001351 cmd += " " + \
kelvin-onlabd3b64892015-01-20 13:26:24 -08001352 str( ingressDevice ) + "/" +\
1353 str( portIngress ) + " "
andrewonlab36af3822014-11-18 17:48:18 -05001354
kelvin-onlabd3b64892015-01-20 13:26:24 -08001355 if "/" in egressDevice:
1356 cmd += " " + str( egressDevice )
andrewonlab36af3822014-11-18 17:48:18 -05001357 else:
kelvin-onlabd3b64892015-01-20 13:26:24 -08001358 if not portEgress:
kelvin-onlabfb521662015-02-27 09:52:40 -08001359 main.log.error( "You must specify the egress port" )
1360 return None
Jon Halle3f39ff2015-01-13 11:50:53 -08001361
kelvin8ec71442015-01-15 16:57:00 -08001362 cmd += " " +\
kelvin-onlabd3b64892015-01-20 13:26:24 -08001363 str( egressDevice ) + "/" +\
1364 str( portEgress )
kelvin8ec71442015-01-15 16:57:00 -08001365
kelvin-onlab898a6c62015-01-16 14:13:53 -08001366 handle = self.sendline( cmd )
You Wangb5a55f72017-03-03 12:51:05 -08001367 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08001368 assert "Command not found:" not in handle, handle
kelvin-onlabfb521662015-02-27 09:52:40 -08001369 # If error, return error message
kelvin-onlab898a6c62015-01-16 14:13:53 -08001370 if re.search( "Error", handle ):
kelvin8ec71442015-01-15 16:57:00 -08001371 main.log.error( "Error in adding point-to-point intent" )
kelvin-onlabfb521662015-02-27 09:52:40 -08001372 return None
andrewonlab4dbb4d82014-10-17 18:22:31 -04001373 else:
kelvin-onlabfb521662015-02-27 09:52:40 -08001374 # TODO: print out all the options in this message?
1375 main.log.info( "Point-to-point intent installed between " +
1376 str( ingressDevice ) + " and " +
1377 str( egressDevice ) )
Jeremy Ronquillo82705492017-10-18 14:19:55 -07001378 match = re.search( 'id=0x([\da-f]+),', handle )
kelvin-onlabfb521662015-02-27 09:52:40 -08001379 if match:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07001380 return match.group()[ 3:-1 ]
kelvin-onlabfb521662015-02-27 09:52:40 -08001381 else:
1382 main.log.error( "Error, intent ID not found" )
1383 return None
Jon Hallc6793552016-01-19 14:18:37 -08001384 except AssertionError:
1385 main.log.exception( "" )
1386 return None
Jon Halld4d4b372015-01-28 16:02:41 -08001387 except TypeError:
1388 main.log.exception( self.name + ": Object not as expected" )
1389 return None
andrewonlab4dbb4d82014-10-17 18:22:31 -04001390 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08001391 main.log.error( self.name + ": EOF exception found" )
1392 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07001393 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08001394 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08001395 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07001396 main.cleanAndExit()
andrewonlab4dbb4d82014-10-17 18:22:31 -04001397
kelvin-onlabd3b64892015-01-20 13:26:24 -08001398 def addMultipointToSinglepointIntent(
kelvin-onlab898a6c62015-01-16 14:13:53 -08001399 self,
shahshreyac2f97072015-03-19 17:04:29 -07001400 ingressDeviceList,
kelvin-onlabd3b64892015-01-20 13:26:24 -08001401 egressDevice,
shahshreyac2f97072015-03-19 17:04:29 -07001402 portIngressList=None,
kelvin-onlabd3b64892015-01-20 13:26:24 -08001403 portEgress="",
kelvin-onlab898a6c62015-01-16 14:13:53 -08001404 ethType="",
1405 ethSrc="",
1406 ethDst="",
1407 bandwidth="",
kelvin-onlabd3b64892015-01-20 13:26:24 -08001408 lambdaAlloc=False,
kelvin-onlab898a6c62015-01-16 14:13:53 -08001409 ipProto="",
1410 ipSrc="",
1411 ipDst="",
1412 tcpSrc="",
1413 tcpDst="",
1414 setEthSrc="",
Jeremy Songster832f9e92016-05-05 14:30:49 -07001415 setEthDst="",
Jeremy Songsterff553672016-05-12 17:06:23 -07001416 vlanId="",
Jeremy Songster9385d412016-06-02 17:57:36 -07001417 setVlan="",
Jeremy Songsterc032f162016-08-04 17:14:49 -07001418 partial=False,
1419 encap="" ):
kelvin8ec71442015-01-15 16:57:00 -08001420 """
shahshreyad0c80432014-12-04 16:56:05 -08001421 Note:
shahshreya70622b12015-03-19 17:19:00 -07001422 This function assumes the format of all ingress devices
Jon Hallbe379602015-03-24 13:39:32 -07001423 is same. That is, all ingress devices include port numbers
1424 with a "/" or all ingress devices could specify device
1425 ids and port numbers seperately.
shahshreyad0c80432014-12-04 16:56:05 -08001426 Required:
Jon Hallbe379602015-03-24 13:39:32 -07001427 * ingressDeviceList: List of device ids of ingress device
shahshreyac2f97072015-03-19 17:04:29 -07001428 ( Atleast 2 ingress devices required in the list )
kelvin-onlabd3b64892015-01-20 13:26:24 -08001429 * egressDevice: device id of egress device
shahshreyad0c80432014-12-04 16:56:05 -08001430 Optional:
1431 * ethType: specify ethType
kelvin8ec71442015-01-15 16:57:00 -08001432 * ethSrc: specify ethSrc ( i.e. src mac addr )
1433 * ethDst: specify ethDst ( i.e. dst mac addr )
shahshreyad0c80432014-12-04 16:56:05 -08001434 * bandwidth: specify bandwidth capacity of link
kelvin-onlabd3b64892015-01-20 13:26:24 -08001435 * lambdaAlloc: if True, intent will allocate lambda
shahshreyad0c80432014-12-04 16:56:05 -08001436 for the specified intent
Jon Halle3f39ff2015-01-13 11:50:53 -08001437 * ipProto: specify ip protocol
shahshreyad0c80432014-12-04 16:56:05 -08001438 * ipSrc: specify ip source address
1439 * ipDst: specify ip destination address
1440 * tcpSrc: specify tcp source port
1441 * tcpDst: specify tcp destination port
1442 * setEthSrc: action to Rewrite Source MAC Address
1443 * setEthDst: action to Rewrite Destination MAC Address
Jeremy Songster832f9e92016-05-05 14:30:49 -07001444 * vlanId: specify vlan Id
Jeremy Songsterff553672016-05-12 17:06:23 -07001445 * setVlan: specify VLAN Id treatment
Jeremy Songsterc032f162016-08-04 17:14:49 -07001446 * encap: specify a type of encapsulation
shahshreyad0c80432014-12-04 16:56:05 -08001447 Description:
kelvin8ec71442015-01-15 16:57:00 -08001448 Adds a multipoint-to-singlepoint intent ( uni-directional ) by
shahshreyad0c80432014-12-04 16:56:05 -08001449 specifying device id's and optional fields
kelvin-onlabfb521662015-02-27 09:52:40 -08001450 Returns:
1451 A string of the intent id or None on error
shahshreyad0c80432014-12-04 16:56:05 -08001452
Jon Halle3f39ff2015-01-13 11:50:53 -08001453 NOTE: This function may change depending on the
Jon Hallefbd9792015-03-05 16:11:36 -08001454 options developers provide for multipoint-to-singlepoint
shahshreyad0c80432014-12-04 16:56:05 -08001455 intent via cli
kelvin8ec71442015-01-15 16:57:00 -08001456 """
shahshreyad0c80432014-12-04 16:56:05 -08001457 try:
Jeremy Songsterff553672016-05-12 17:06:23 -07001458 cmd = "add-multi-to-single-intent"
shahshreyad0c80432014-12-04 16:56:05 -08001459
Jeremy Songsterff553672016-05-12 17:06:23 -07001460 if ethType:
1461 cmd += " --ethType " + str( ethType )
1462 if ethSrc:
1463 cmd += " --ethSrc " + str( ethSrc )
1464 if ethDst:
1465 cmd += " --ethDst " + str( ethDst )
1466 if bandwidth:
1467 cmd += " --bandwidth " + str( bandwidth )
1468 if lambdaAlloc:
1469 cmd += " --lambda "
1470 if ipProto:
1471 cmd += " --ipProto " + str( ipProto )
1472 if ipSrc:
1473 cmd += " --ipSrc " + str( ipSrc )
1474 if ipDst:
1475 cmd += " --ipDst " + str( ipDst )
1476 if tcpSrc:
1477 cmd += " --tcpSrc " + str( tcpSrc )
1478 if tcpDst:
1479 cmd += " --tcpDst " + str( tcpDst )
1480 if setEthSrc:
1481 cmd += " --setEthSrc " + str( setEthSrc )
1482 if setEthDst:
1483 cmd += " --setEthDst " + str( setEthDst )
1484 if vlanId:
1485 cmd += " -v " + str( vlanId )
1486 if setVlan:
1487 cmd += " --setVlan " + str( setVlan )
Jeremy Songster9385d412016-06-02 17:57:36 -07001488 if partial:
1489 cmd += " --partial"
Jeremy Songsterc032f162016-08-04 17:14:49 -07001490 if encap:
1491 cmd += " --encapsulation " + str( encap )
shahshreyad0c80432014-12-04 16:56:05 -08001492
kelvin8ec71442015-01-15 16:57:00 -08001493 # Check whether the user appended the port
1494 # or provided it as an input
shahshreyac2f97072015-03-19 17:04:29 -07001495
1496 if portIngressList is None:
1497 for ingressDevice in ingressDeviceList:
1498 if "/" in ingressDevice:
1499 cmd += " " + str( ingressDevice )
1500 else:
1501 main.log.error( "You must specify " +
Jon Hallbe379602015-03-24 13:39:32 -07001502 "the ingress port" )
shahshreyac2f97072015-03-19 17:04:29 -07001503 # TODO: perhaps more meaningful return
1504 return main.FALSE
shahshreyad0c80432014-12-04 16:56:05 -08001505 else:
Jon Hall71ce4e72015-03-23 14:05:58 -07001506 if len( ingressDeviceList ) == len( portIngressList ):
Jon Hall08f61bc2015-04-13 16:00:30 -07001507 for ingressDevice, portIngress in zip( ingressDeviceList,
1508 portIngressList ):
shahshreya70622b12015-03-19 17:19:00 -07001509 cmd += " " + \
1510 str( ingressDevice ) + "/" +\
1511 str( portIngress ) + " "
kelvin-onlab38143812015-04-01 15:03:01 -07001512 else:
Jon Hall08f61bc2015-04-13 16:00:30 -07001513 main.log.error( "Device list and port list does not " +
1514 "have the same length" )
kelvin-onlab38143812015-04-01 15:03:01 -07001515 return main.FALSE
kelvin-onlabd3b64892015-01-20 13:26:24 -08001516 if "/" in egressDevice:
1517 cmd += " " + str( egressDevice )
shahshreyad0c80432014-12-04 16:56:05 -08001518 else:
kelvin-onlabd3b64892015-01-20 13:26:24 -08001519 if not portEgress:
kelvin8ec71442015-01-15 16:57:00 -08001520 main.log.error( "You must specify " +
1521 "the egress port" )
shahshreyad0c80432014-12-04 16:56:05 -08001522 return main.FALSE
Jon Halle3f39ff2015-01-13 11:50:53 -08001523
kelvin8ec71442015-01-15 16:57:00 -08001524 cmd += " " +\
kelvin-onlabd3b64892015-01-20 13:26:24 -08001525 str( egressDevice ) + "/" +\
1526 str( portEgress )
kelvin-onlab898a6c62015-01-16 14:13:53 -08001527 handle = self.sendline( cmd )
You Wangb5a55f72017-03-03 12:51:05 -08001528 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08001529 assert "Command not found:" not in handle, handle
kelvin-onlabfb521662015-02-27 09:52:40 -08001530 # If error, return error message
kelvin-onlab898a6c62015-01-16 14:13:53 -08001531 if re.search( "Error", handle ):
kelvin-onlabfb521662015-02-27 09:52:40 -08001532 main.log.error( "Error in adding multipoint-to-singlepoint " +
1533 "intent" )
1534 return None
shahshreyad0c80432014-12-04 16:56:05 -08001535 else:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07001536 match = re.search( 'id=0x([\da-f]+),', handle )
kelvin-onlabb9408212015-04-01 13:34:04 -07001537 if match:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07001538 return match.group()[ 3:-1 ]
kelvin-onlabb9408212015-04-01 13:34:04 -07001539 else:
1540 main.log.error( "Error, intent ID not found" )
1541 return None
Jon Hallc6793552016-01-19 14:18:37 -08001542 except AssertionError:
1543 main.log.exception( "" )
1544 return None
kelvin-onlabb9408212015-04-01 13:34:04 -07001545 except TypeError:
1546 main.log.exception( self.name + ": Object not as expected" )
1547 return None
1548 except pexpect.EOF:
1549 main.log.error( self.name + ": EOF exception found" )
1550 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07001551 main.cleanAndExit()
kelvin-onlabb9408212015-04-01 13:34:04 -07001552 except Exception:
1553 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07001554 main.cleanAndExit()
kelvin-onlabb9408212015-04-01 13:34:04 -07001555
1556 def addSinglepointToMultipointIntent(
1557 self,
1558 ingressDevice,
1559 egressDeviceList,
1560 portIngress="",
1561 portEgressList=None,
1562 ethType="",
1563 ethSrc="",
1564 ethDst="",
1565 bandwidth="",
1566 lambdaAlloc=False,
1567 ipProto="",
1568 ipSrc="",
1569 ipDst="",
1570 tcpSrc="",
1571 tcpDst="",
1572 setEthSrc="",
Jeremy Songster832f9e92016-05-05 14:30:49 -07001573 setEthDst="",
Jeremy Songsterff553672016-05-12 17:06:23 -07001574 vlanId="",
Jeremy Songster9385d412016-06-02 17:57:36 -07001575 setVlan="",
Jeremy Songsterc032f162016-08-04 17:14:49 -07001576 partial=False,
1577 encap="" ):
kelvin-onlabb9408212015-04-01 13:34:04 -07001578 """
1579 Note:
1580 This function assumes the format of all egress devices
1581 is same. That is, all egress devices include port numbers
1582 with a "/" or all egress devices could specify device
1583 ids and port numbers seperately.
1584 Required:
1585 * EgressDeviceList: List of device ids of egress device
1586 ( Atleast 2 eress devices required in the list )
1587 * ingressDevice: device id of ingress device
1588 Optional:
1589 * ethType: specify ethType
1590 * ethSrc: specify ethSrc ( i.e. src mac addr )
1591 * ethDst: specify ethDst ( i.e. dst mac addr )
1592 * bandwidth: specify bandwidth capacity of link
1593 * lambdaAlloc: if True, intent will allocate lambda
1594 for the specified intent
1595 * ipProto: specify ip protocol
1596 * ipSrc: specify ip source address
1597 * ipDst: specify ip destination address
1598 * tcpSrc: specify tcp source port
1599 * tcpDst: specify tcp destination port
1600 * setEthSrc: action to Rewrite Source MAC Address
1601 * setEthDst: action to Rewrite Destination MAC Address
Jeremy Songster832f9e92016-05-05 14:30:49 -07001602 * vlanId: specify vlan Id
Jeremy Songsterff553672016-05-12 17:06:23 -07001603 * setVlan: specify VLAN ID treatment
Jeremy Songsterc032f162016-08-04 17:14:49 -07001604 * encap: specify an encapsulation type
kelvin-onlabb9408212015-04-01 13:34:04 -07001605 Description:
1606 Adds a singlepoint-to-multipoint intent ( uni-directional ) by
1607 specifying device id's and optional fields
1608 Returns:
1609 A string of the intent id or None on error
1610
1611 NOTE: This function may change depending on the
1612 options developers provide for singlepoint-to-multipoint
1613 intent via cli
1614 """
1615 try:
Jeremy Songsterff553672016-05-12 17:06:23 -07001616 cmd = "add-single-to-multi-intent"
kelvin-onlabb9408212015-04-01 13:34:04 -07001617
Jeremy Songsterff553672016-05-12 17:06:23 -07001618 if ethType:
1619 cmd += " --ethType " + str( ethType )
1620 if ethSrc:
1621 cmd += " --ethSrc " + str( ethSrc )
1622 if ethDst:
1623 cmd += " --ethDst " + str( ethDst )
1624 if bandwidth:
1625 cmd += " --bandwidth " + str( bandwidth )
1626 if lambdaAlloc:
1627 cmd += " --lambda "
1628 if ipProto:
1629 cmd += " --ipProto " + str( ipProto )
1630 if ipSrc:
1631 cmd += " --ipSrc " + str( ipSrc )
1632 if ipDst:
1633 cmd += " --ipDst " + str( ipDst )
1634 if tcpSrc:
1635 cmd += " --tcpSrc " + str( tcpSrc )
1636 if tcpDst:
1637 cmd += " --tcpDst " + str( tcpDst )
1638 if setEthSrc:
1639 cmd += " --setEthSrc " + str( setEthSrc )
1640 if setEthDst:
1641 cmd += " --setEthDst " + str( setEthDst )
1642 if vlanId:
1643 cmd += " -v " + str( vlanId )
1644 if setVlan:
1645 cmd += " --setVlan " + str( setVlan )
Jeremy Songster9385d412016-06-02 17:57:36 -07001646 if partial:
1647 cmd += " --partial"
Jeremy Songsterc032f162016-08-04 17:14:49 -07001648 if encap:
1649 cmd += " --encapsulation " + str( encap )
kelvin-onlabb9408212015-04-01 13:34:04 -07001650
1651 # Check whether the user appended the port
1652 # or provided it as an input
Jon Hall08f61bc2015-04-13 16:00:30 -07001653
kelvin-onlabb9408212015-04-01 13:34:04 -07001654 if "/" in ingressDevice:
1655 cmd += " " + str( ingressDevice )
1656 else:
1657 if not portIngress:
1658 main.log.error( "You must specify " +
1659 "the Ingress port" )
1660 return main.FALSE
1661
1662 cmd += " " +\
1663 str( ingressDevice ) + "/" +\
1664 str( portIngress )
1665
1666 if portEgressList is None:
1667 for egressDevice in egressDeviceList:
1668 if "/" in egressDevice:
1669 cmd += " " + str( egressDevice )
1670 else:
1671 main.log.error( "You must specify " +
1672 "the egress port" )
1673 # TODO: perhaps more meaningful return
1674 return main.FALSE
1675 else:
1676 if len( egressDeviceList ) == len( portEgressList ):
Jon Hall08f61bc2015-04-13 16:00:30 -07001677 for egressDevice, portEgress in zip( egressDeviceList,
1678 portEgressList ):
kelvin-onlabb9408212015-04-01 13:34:04 -07001679 cmd += " " + \
1680 str( egressDevice ) + "/" +\
1681 str( portEgress )
kelvin-onlab38143812015-04-01 15:03:01 -07001682 else:
Jon Hall08f61bc2015-04-13 16:00:30 -07001683 main.log.error( "Device list and port list does not " +
1684 "have the same length" )
kelvin-onlab38143812015-04-01 15:03:01 -07001685 return main.FALSE
kelvin-onlabb9408212015-04-01 13:34:04 -07001686 handle = self.sendline( cmd )
You Wangb5a55f72017-03-03 12:51:05 -08001687 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08001688 assert "Command not found:" not in handle, handle
kelvin-onlabb9408212015-04-01 13:34:04 -07001689 # If error, return error message
1690 if re.search( "Error", handle ):
1691 main.log.error( "Error in adding singlepoint-to-multipoint " +
1692 "intent" )
shahshreyac2f97072015-03-19 17:04:29 -07001693 return None
kelvin-onlabb9408212015-04-01 13:34:04 -07001694 else:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07001695 match = re.search( 'id=0x([\da-f]+),', handle )
kelvin-onlabb9408212015-04-01 13:34:04 -07001696 if match:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07001697 return match.group()[ 3:-1 ]
kelvin-onlabb9408212015-04-01 13:34:04 -07001698 else:
1699 main.log.error( "Error, intent ID not found" )
1700 return None
Jon Hallc6793552016-01-19 14:18:37 -08001701 except AssertionError:
1702 main.log.exception( "" )
1703 return None
Jon Halld4d4b372015-01-28 16:02:41 -08001704 except TypeError:
1705 main.log.exception( self.name + ": Object not as expected" )
1706 return None
shahshreyad0c80432014-12-04 16:56:05 -08001707 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08001708 main.log.error( self.name + ": EOF exception found" )
1709 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07001710 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08001711 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08001712 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07001713 main.cleanAndExit()
shahshreyad0c80432014-12-04 16:56:05 -08001714
Hari Krishna9e232602015-04-13 17:29:08 -07001715 def addMplsIntent(
1716 self,
1717 ingressDevice,
1718 egressDevice,
Hari Krishna87a17f12015-04-13 17:42:23 -07001719 ingressPort="",
1720 egressPort="",
Hari Krishna9e232602015-04-13 17:29:08 -07001721 ethType="",
1722 ethSrc="",
1723 ethDst="",
1724 bandwidth="",
1725 lambdaAlloc=False,
1726 ipProto="",
1727 ipSrc="",
1728 ipDst="",
1729 tcpSrc="",
1730 tcpDst="",
Hari Krishna87a17f12015-04-13 17:42:23 -07001731 ingressLabel="",
Hari Krishnadfff6672015-04-13 17:53:27 -07001732 egressLabel="",
Jeremy Ronquillo82705492017-10-18 14:19:55 -07001733 priority="" ):
Hari Krishna9e232602015-04-13 17:29:08 -07001734 """
1735 Required:
1736 * ingressDevice: device id of ingress device
1737 * egressDevice: device id of egress device
1738 Optional:
1739 * ethType: specify ethType
1740 * ethSrc: specify ethSrc ( i.e. src mac addr )
1741 * ethDst: specify ethDst ( i.e. dst mac addr )
1742 * bandwidth: specify bandwidth capacity of link
1743 * lambdaAlloc: if True, intent will allocate lambda
1744 for the specified intent
1745 * ipProto: specify ip protocol
1746 * ipSrc: specify ip source address
1747 * ipDst: specify ip destination address
1748 * tcpSrc: specify tcp source port
1749 * tcpDst: specify tcp destination port
1750 * ingressLabel: Ingress MPLS label
1751 * egressLabel: Egress MPLS label
1752 Description:
1753 Adds MPLS intent by
1754 specifying device id's and optional fields
1755 Returns:
1756 A string of the intent id or None on error
1757
1758 NOTE: This function may change depending on the
1759 options developers provide for MPLS
1760 intent via cli
1761 """
1762 try:
Jeremy Songsterff553672016-05-12 17:06:23 -07001763 cmd = "add-mpls-intent"
Hari Krishna9e232602015-04-13 17:29:08 -07001764
Jeremy Songsterff553672016-05-12 17:06:23 -07001765 if ethType:
1766 cmd += " --ethType " + str( ethType )
1767 if ethSrc:
1768 cmd += " --ethSrc " + str( ethSrc )
1769 if ethDst:
1770 cmd += " --ethDst " + str( ethDst )
1771 if bandwidth:
1772 cmd += " --bandwidth " + str( bandwidth )
1773 if lambdaAlloc:
1774 cmd += " --lambda "
1775 if ipProto:
1776 cmd += " --ipProto " + str( ipProto )
1777 if ipSrc:
1778 cmd += " --ipSrc " + str( ipSrc )
1779 if ipDst:
1780 cmd += " --ipDst " + str( ipDst )
1781 if tcpSrc:
1782 cmd += " --tcpSrc " + str( tcpSrc )
1783 if tcpDst:
1784 cmd += " --tcpDst " + str( tcpDst )
1785 if ingressLabel:
1786 cmd += " --ingressLabel " + str( ingressLabel )
1787 if egressLabel:
1788 cmd += " --egressLabel " + str( egressLabel )
1789 if priority:
1790 cmd += " --priority " + str( priority )
Hari Krishna9e232602015-04-13 17:29:08 -07001791
1792 # Check whether the user appended the port
1793 # or provided it as an input
1794 if "/" in ingressDevice:
1795 cmd += " " + str( ingressDevice )
1796 else:
Hari Krishna87a17f12015-04-13 17:42:23 -07001797 if not ingressPort:
Hari Krishna9e232602015-04-13 17:29:08 -07001798 main.log.error( "You must specify the ingress port" )
1799 return None
1800
1801 cmd += " " + \
1802 str( ingressDevice ) + "/" +\
Hari Krishna87a17f12015-04-13 17:42:23 -07001803 str( ingressPort ) + " "
Hari Krishna9e232602015-04-13 17:29:08 -07001804
1805 if "/" in egressDevice:
1806 cmd += " " + str( egressDevice )
1807 else:
Hari Krishna87a17f12015-04-13 17:42:23 -07001808 if not egressPort:
Hari Krishna9e232602015-04-13 17:29:08 -07001809 main.log.error( "You must specify the egress port" )
1810 return None
1811
1812 cmd += " " +\
1813 str( egressDevice ) + "/" +\
Hari Krishna87a17f12015-04-13 17:42:23 -07001814 str( egressPort )
Hari Krishna9e232602015-04-13 17:29:08 -07001815
1816 handle = self.sendline( cmd )
You Wangb5a55f72017-03-03 12:51:05 -08001817 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08001818 assert "Command not found:" not in handle, handle
Hari Krishna9e232602015-04-13 17:29:08 -07001819 # If error, return error message
1820 if re.search( "Error", handle ):
1821 main.log.error( "Error in adding mpls intent" )
1822 return None
1823 else:
1824 # TODO: print out all the options in this message?
1825 main.log.info( "MPLS intent installed between " +
1826 str( ingressDevice ) + " and " +
1827 str( egressDevice ) )
Jeremy Ronquillo82705492017-10-18 14:19:55 -07001828 match = re.search( 'id=0x([\da-f]+),', handle )
Hari Krishna9e232602015-04-13 17:29:08 -07001829 if match:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07001830 return match.group()[ 3:-1 ]
Hari Krishna9e232602015-04-13 17:29:08 -07001831 else:
1832 main.log.error( "Error, intent ID not found" )
1833 return None
Jon Hallc6793552016-01-19 14:18:37 -08001834 except AssertionError:
1835 main.log.exception( "" )
1836 return None
Hari Krishna9e232602015-04-13 17:29:08 -07001837 except TypeError:
1838 main.log.exception( self.name + ": Object not as expected" )
1839 return None
1840 except pexpect.EOF:
1841 main.log.error( self.name + ": EOF exception found" )
1842 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07001843 main.cleanAndExit()
Hari Krishna9e232602015-04-13 17:29:08 -07001844 except Exception:
1845 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07001846 main.cleanAndExit()
Hari Krishna9e232602015-04-13 17:29:08 -07001847
Jon Hallefbd9792015-03-05 16:11:36 -08001848 def removeIntent( self, intentId, app='org.onosproject.cli',
1849 purge=False, sync=False ):
kelvin-onlab898a6c62015-01-16 14:13:53 -08001850 """
shahshreya1c818fc2015-02-26 13:44:08 -08001851 Remove intent for specified application id and intent id
Jon Hall61282e32015-03-19 11:34:11 -07001852 Optional args:-
shahshreya1c818fc2015-02-26 13:44:08 -08001853 -s or --sync: Waits for the removal before returning
Jon Hall61282e32015-03-19 11:34:11 -07001854 -p or --purge: Purge the intent from the store after removal
1855
Jon Halle3f39ff2015-01-13 11:50:53 -08001856 Returns:
Jon Hall6509dbf2016-06-21 17:01:17 -07001857 main.FALSE on error and
Jon Halle3f39ff2015-01-13 11:50:53 -08001858 cli output otherwise
kelvin-onlab898a6c62015-01-16 14:13:53 -08001859 """
andrewonlab9a50dfe2014-10-17 17:22:31 -04001860 try:
Jon Hallc6358dd2015-04-10 12:44:28 -07001861 cmdStr = "remove-intent"
shahshreya1c818fc2015-02-26 13:44:08 -08001862 if purge:
1863 cmdStr += " -p"
1864 if sync:
1865 cmdStr += " -s"
1866
1867 cmdStr += " " + app + " " + str( intentId )
kelvin-onlabd3b64892015-01-20 13:26:24 -08001868 handle = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -08001869 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08001870 assert "Command not found:" not in handle, handle
Jon Halle3f39ff2015-01-13 11:50:53 -08001871 if re.search( "Error", handle ):
kelvin-onlab898a6c62015-01-16 14:13:53 -08001872 main.log.error( "Error in removing intent" )
Jon Halle3f39ff2015-01-13 11:50:53 -08001873 return main.FALSE
andrewonlab9a50dfe2014-10-17 17:22:31 -04001874 else:
Jon Halle3f39ff2015-01-13 11:50:53 -08001875 # TODO: Should this be main.TRUE
1876 return handle
Jon Hallc6793552016-01-19 14:18:37 -08001877 except AssertionError:
1878 main.log.exception( "" )
1879 return None
Jon Halld4d4b372015-01-28 16:02:41 -08001880 except TypeError:
1881 main.log.exception( self.name + ": Object not as expected" )
1882 return None
andrewonlab9a50dfe2014-10-17 17:22:31 -04001883 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08001884 main.log.error( self.name + ": EOF exception found" )
1885 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07001886 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08001887 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08001888 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07001889 main.cleanAndExit()
andrewonlab9a50dfe2014-10-17 17:22:31 -04001890
YPZhangfebf7302016-05-24 16:45:56 -07001891 def removeAllIntents( self, purge=False, sync=False, app='org.onosproject.cli', timeout=30 ):
Jeremy42df2e72016-02-23 16:37:46 -08001892 """
1893 Description:
1894 Remove all the intents
1895 Optional args:-
1896 -s or --sync: Waits for the removal before returning
1897 -p or --purge: Purge the intent from the store after removal
1898 Returns:
1899 Returns main.TRUE if all intents are removed, otherwise returns
1900 main.FALSE; Returns None for exception
1901 """
1902 try:
1903 cmdStr = "remove-intent"
1904 if purge:
1905 cmdStr += " -p"
1906 if sync:
1907 cmdStr += " -s"
1908
1909 cmdStr += " " + app
YPZhangfebf7302016-05-24 16:45:56 -07001910 handle = self.sendline( cmdStr, timeout=timeout )
You Wangb5a55f72017-03-03 12:51:05 -08001911 assert handle is not None, "Error in sendline"
Jeremy42df2e72016-02-23 16:37:46 -08001912 assert "Command not found:" not in handle, handle
1913 if re.search( "Error", handle ):
1914 main.log.error( "Error in removing intent" )
1915 return main.FALSE
1916 else:
1917 return main.TRUE
1918 except AssertionError:
1919 main.log.exception( "" )
1920 return None
1921 except TypeError:
1922 main.log.exception( self.name + ": Object not as expected" )
1923 return None
1924 except pexpect.EOF:
1925 main.log.error( self.name + ": EOF exception found" )
1926 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07001927 main.cleanAndExit()
Jeremy42df2e72016-02-23 16:37:46 -08001928 except Exception:
1929 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07001930 main.cleanAndExit()
Jeremy42df2e72016-02-23 16:37:46 -08001931
Hari Krishnaacabd5a2015-07-01 17:10:19 -07001932 def purgeWithdrawnIntents( self ):
Hari Krishna0ce0e152015-06-23 09:55:29 -07001933 """
1934 Purges all WITHDRAWN Intents
1935 """
1936 try:
1937 cmdStr = "purge-intents"
1938 handle = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -08001939 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08001940 assert "Command not found:" not in handle, handle
Hari Krishna0ce0e152015-06-23 09:55:29 -07001941 if re.search( "Error", handle ):
1942 main.log.error( "Error in purging intents" )
1943 return main.FALSE
1944 else:
1945 return main.TRUE
Jon Hallc6793552016-01-19 14:18:37 -08001946 except AssertionError:
1947 main.log.exception( "" )
1948 return None
Hari Krishna0ce0e152015-06-23 09:55:29 -07001949 except TypeError:
1950 main.log.exception( self.name + ": Object not as expected" )
1951 return None
1952 except pexpect.EOF:
1953 main.log.error( self.name + ": EOF exception found" )
1954 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07001955 main.cleanAndExit()
Hari Krishna0ce0e152015-06-23 09:55:29 -07001956 except Exception:
1957 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07001958 main.cleanAndExit()
Hari Krishna0ce0e152015-06-23 09:55:29 -07001959
Devin Lime6fe3c42017-10-18 16:28:40 -07001960 def wipeout( self ):
1961 """
1962 Wipe out the flows,intents,links,devices,hosts, and groups from the ONOS.
1963 """
1964 try:
1965 cmdStr = "wipe-out please"
1966 handle = self.sendline( cmdStr, timeout=60 )
1967 assert handle is not None, "Error in sendline"
1968 assert "Command not found:" not in handle, handle
1969 return main.TRUE
1970 except AssertionError:
1971 main.log.exception( "" )
1972 return None
1973 except TypeError:
1974 main.log.exception( self.name + ": Object not as expected" )
1975 return None
1976 except pexpect.EOF:
1977 main.log.error( self.name + ": EOF exception found" )
1978 main.log.error( self.name + ": " + self.handle.before )
1979 main.cleanAndExit()
1980 except Exception:
1981 main.log.exception( self.name + ": Uncaught exception!" )
1982 main.cleanAndExit()
1983
kelvin-onlabd3b64892015-01-20 13:26:24 -08001984 def routes( self, jsonFormat=False ):
kelvin8ec71442015-01-15 16:57:00 -08001985 """
kelvin-onlab898a6c62015-01-16 14:13:53 -08001986 NOTE: This method should be used after installing application:
1987 onos-app-sdnip
pingping-lin8b306ac2014-11-17 18:13:51 -08001988 Optional:
kelvin-onlabd3b64892015-01-20 13:26:24 -08001989 * jsonFormat: enable output formatting in json
pingping-lin8b306ac2014-11-17 18:13:51 -08001990 Description:
1991 Obtain all routes in the system
kelvin8ec71442015-01-15 16:57:00 -08001992 """
pingping-lin8b306ac2014-11-17 18:13:51 -08001993 try:
Jon Hallc6358dd2015-04-10 12:44:28 -07001994 cmdStr = "routes"
kelvin-onlabd3b64892015-01-20 13:26:24 -08001995 if jsonFormat:
Jon Hallc6358dd2015-04-10 12:44:28 -07001996 cmdStr += " -j"
1997 handle = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -08001998 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08001999 assert "Command not found:" not in handle, handle
pingping-lin8b306ac2014-11-17 18:13:51 -08002000 return handle
Jon Hallc6793552016-01-19 14:18:37 -08002001 except AssertionError:
2002 main.log.exception( "" )
2003 return None
Jon Halld4d4b372015-01-28 16:02:41 -08002004 except TypeError:
2005 main.log.exception( self.name + ": Object not as expected" )
2006 return None
pingping-lin8b306ac2014-11-17 18:13:51 -08002007 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08002008 main.log.error( self.name + ": EOF exception found" )
2009 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002010 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08002011 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08002012 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002013 main.cleanAndExit()
pingping-lin8b306ac2014-11-17 18:13:51 -08002014
pingping-lin54b03372015-08-13 14:43:10 -07002015 def ipv4RouteNumber( self ):
2016 """
2017 NOTE: This method should be used after installing application:
2018 onos-app-sdnip
2019 Description:
2020 Obtain the total IPv4 routes number in the system
2021 """
2022 try:
Pratik Parab57963572017-05-09 11:37:54 -07002023 cmdStr = "routes -j"
pingping-lin54b03372015-08-13 14:43:10 -07002024 handle = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -08002025 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08002026 assert "Command not found:" not in handle, handle
pingping-lin54b03372015-08-13 14:43:10 -07002027 jsonResult = json.loads( handle )
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002028 return len( jsonResult[ 'routes4' ] )
Jon Hallc6793552016-01-19 14:18:37 -08002029 except AssertionError:
2030 main.log.exception( "" )
2031 return None
2032 except ( TypeError, ValueError ):
2033 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, handle ) )
pingping-lin54b03372015-08-13 14:43:10 -07002034 return None
2035 except pexpect.EOF:
2036 main.log.error( self.name + ": EOF exception found" )
2037 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002038 main.cleanAndExit()
pingping-lin54b03372015-08-13 14:43:10 -07002039 except Exception:
2040 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002041 main.cleanAndExit()
pingping-lin54b03372015-08-13 14:43:10 -07002042
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002043 # =============Function to check Bandwidth allocation========
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00002044 def allocations( self, jsonFormat = True, dollarSign = True ):
Shreya Chowdhary6fbb96c2017-05-02 16:20:19 -07002045 """
2046 Description:
2047 Obtain Bandwidth Allocation Information from ONOS cli.
2048 """
2049 try:
2050 cmdStr = "allocations"
2051 if jsonFormat:
2052 cmdStr += " -j"
2053 handle = self.sendline( cmdStr, timeout=300, dollarSign=True )
2054 assert handle is not None, "Error in sendline"
2055 assert "Command not found:" not in handle, handle
2056 return handle
2057 except AssertionError:
2058 main.log.exception( "" )
2059 return None
2060 except ( TypeError, ValueError ):
2061 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, handle ) )
2062 return None
2063 except pexpect.EOF:
2064 main.log.error( self.name + ": EOF exception found" )
2065 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002066 main.cleanAndExit()
Shreya Chowdhary6fbb96c2017-05-02 16:20:19 -07002067 except Exception:
2068 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002069 main.cleanAndExit()
Shreya Chowdhary6fbb96c2017-05-02 16:20:19 -07002070
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002071 def intents( self, jsonFormat = True, summary = False, **intentargs ):
kelvin8ec71442015-01-15 16:57:00 -08002072 """
andrewonlabe6745342014-10-17 14:29:13 -04002073 Description:
Jon Hallff566d52016-01-15 14:45:36 -08002074 Obtain intents from the ONOS cli.
2075 Optional:
2076 * jsonFormat: Enable output formatting in json, default to True
2077 * summary: Whether only output the intent summary, defaults to False
2078 * type: Only output a certain type of intent. This options is valid
2079 only when jsonFormat is True and summary is True.
kelvin-onlab898a6c62015-01-16 14:13:53 -08002080 """
andrewonlabe6745342014-10-17 14:29:13 -04002081 try:
Jon Hallc6358dd2015-04-10 12:44:28 -07002082 cmdStr = "intents"
pingping-lin8244a3b2015-09-16 13:36:56 -07002083 if summary:
2084 cmdStr += " -s"
kelvin-onlabd3b64892015-01-20 13:26:24 -08002085 if jsonFormat:
Jon Hallc6358dd2015-04-10 12:44:28 -07002086 cmdStr += " -j"
Shreya Chowdhary6fbb96c2017-05-02 16:20:19 -07002087 handle = self.sendline( cmdStr, timeout=300 )
You Wangb5a55f72017-03-03 12:51:05 -08002088 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08002089 assert "Command not found:" not in handle, handle
pingping-lin8244a3b2015-09-16 13:36:56 -07002090 args = utilities.parse_args( [ "TYPE" ], **intentargs )
acsmars5b5fbaf2015-09-18 10:38:20 -07002091 if "TYPE" in args.keys():
Jon Hallff566d52016-01-15 14:45:36 -08002092 intentType = args[ "TYPE" ]
acsmars5b5fbaf2015-09-18 10:38:20 -07002093 else:
Jon Hallff566d52016-01-15 14:45:36 -08002094 intentType = ""
2095 # IF we want the summary of a specific intent type
2096 if jsonFormat and summary and ( intentType != "" ):
pingping-lin8244a3b2015-09-16 13:36:56 -07002097 jsonResult = json.loads( handle )
Jon Hallff566d52016-01-15 14:45:36 -08002098 if intentType in jsonResult.keys():
2099 return jsonResult[ intentType ]
pingping-lin8244a3b2015-09-16 13:36:56 -07002100 else:
Jon Hallff566d52016-01-15 14:45:36 -08002101 main.log.error( "unknown TYPE, returning all types of intents" )
pingping-lin8244a3b2015-09-16 13:36:56 -07002102 return handle
2103 else:
2104 return handle
Jon Hallc6793552016-01-19 14:18:37 -08002105 except AssertionError:
2106 main.log.exception( "" )
2107 return None
2108 except ( TypeError, ValueError ):
2109 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, handle ) )
pingping-lin54b03372015-08-13 14:43:10 -07002110 return None
2111 except pexpect.EOF:
2112 main.log.error( self.name + ": EOF exception found" )
2113 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002114 main.cleanAndExit()
pingping-lin54b03372015-08-13 14:43:10 -07002115 except Exception:
2116 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002117 main.cleanAndExit()
pingping-lin54b03372015-08-13 14:43:10 -07002118
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002119 def getIntentState( self, intentsId, intentsJson=None ):
kelvin-onlab54400a92015-02-26 18:05:51 -08002120 """
You Wangfdcbfc42016-05-16 12:16:53 -07002121 Description:
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00002122 Gets intent state. Accepts a single intent ID (string type) or a
You Wangfdcbfc42016-05-16 12:16:53 -07002123 list of intent IDs.
2124 Parameters:
2125 intentsId: intent ID, both string type and list type are acceptable
kelvin-onlab54400a92015-02-26 18:05:51 -08002126 intentsJson: parsed json object from the onos:intents api
You Wangfdcbfc42016-05-16 12:16:53 -07002127 Returns:
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00002128 Returns the state (string type) of the ID if a single intent ID is
You Wangfdcbfc42016-05-16 12:16:53 -07002129 accepted.
2130 Returns a list of dictionaries if a list of intent IDs is accepted,
2131 and each dictionary maps 'id' to the Intent ID and 'state' to
2132 corresponding intent state.
kelvin-onlab54400a92015-02-26 18:05:51 -08002133 """
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00002134
kelvin-onlab54400a92015-02-26 18:05:51 -08002135 try:
2136 state = "State is Undefined"
2137 if not intentsJson:
Jon Hallc6793552016-01-19 14:18:37 -08002138 rawJson = self.intents()
kelvin-onlab54400a92015-02-26 18:05:51 -08002139 else:
Jon Hallc6793552016-01-19 14:18:37 -08002140 rawJson = intentsJson
2141 parsedIntentsJson = json.loads( rawJson )
Jon Hallefbd9792015-03-05 16:11:36 -08002142 if isinstance( intentsId, types.StringType ):
Jon Hallc6793552016-01-19 14:18:37 -08002143 for intent in parsedIntentsJson:
kelvin-onlabc2dcd3f2015-04-09 16:40:02 -07002144 if intentsId == intent[ 'id' ]:
2145 state = intent[ 'state' ]
kelvin-onlab54400a92015-02-26 18:05:51 -08002146 return state
Jon Hallefbd9792015-03-05 16:11:36 -08002147 main.log.info( "Cannot find intent ID" + str( intentsId ) +
Jon Hall53158082017-05-18 11:17:00 -07002148 " in the list" )
kelvin-onlab54400a92015-02-26 18:05:51 -08002149 return state
Jon Hallefbd9792015-03-05 16:11:36 -08002150 elif isinstance( intentsId, types.ListType ):
kelvin-onlab07dbd012015-03-04 16:29:39 -08002151 dictList = []
kelvin-onlabc2dcd3f2015-04-09 16:40:02 -07002152 for i in xrange( len( intentsId ) ):
kelvin-onlab07dbd012015-03-04 16:29:39 -08002153 stateDict = {}
Jon Hall53158082017-05-18 11:17:00 -07002154 for intent in parsedIntentsJson:
2155 if intentsId[ i ] == intent[ 'id' ]:
2156 stateDict[ 'state' ] = intent[ 'state' ]
kelvin-onlabc2dcd3f2015-04-09 16:40:02 -07002157 stateDict[ 'id' ] = intentsId[ i ]
Jon Hallefbd9792015-03-05 16:11:36 -08002158 dictList.append( stateDict )
kelvin-onlab54400a92015-02-26 18:05:51 -08002159 break
Jon Hallefbd9792015-03-05 16:11:36 -08002160 if len( intentsId ) != len( dictList ):
Jon Hall53158082017-05-18 11:17:00 -07002161 main.log.warn( "Could not find all intents in ONOS output" )
2162 main.log.debug( "expected ids: {} \n ONOS intents: {}".format( intentsId, parsedIntentsJson ) )
kelvin-onlab07dbd012015-03-04 16:29:39 -08002163 return dictList
kelvin-onlab54400a92015-02-26 18:05:51 -08002164 else:
Jon Hall53158082017-05-18 11:17:00 -07002165 main.log.info( "Invalid type for intentsId argument" )
kelvin-onlab54400a92015-02-26 18:05:51 -08002166 return None
Jon Hallc6793552016-01-19 14:18:37 -08002167 except ( TypeError, ValueError ):
2168 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawJson ) )
kelvin-onlab54400a92015-02-26 18:05:51 -08002169 return None
2170 except pexpect.EOF:
2171 main.log.error( self.name + ": EOF exception found" )
2172 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002173 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08002174 except Exception:
kelvin-onlab54400a92015-02-26 18:05:51 -08002175 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002176 main.cleanAndExit()
Jon Hall390696c2015-05-05 17:13:41 -07002177
Jon Hallf539eb92017-05-22 17:18:42 -07002178 def checkIntentState( self, intentsId, expectedState='INSTALLED' ):
kelvin-onlabc2dcd3f2015-04-09 16:40:02 -07002179 """
2180 Description:
2181 Check intents state
2182 Required:
2183 intentsId - List of intents ID to be checked
2184 Optional:
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00002185 expectedState - Check the expected state(s) of each intents
kelvin-onlabf512e942015-06-08 19:42:59 -07002186 state in the list.
2187 *NOTE: You can pass in a list of expected state,
2188 Eg: expectedState = [ 'INSTALLED' , 'INSTALLING' ]
kelvin-onlabc2dcd3f2015-04-09 16:40:02 -07002189 Return:
Jon Hall53158082017-05-18 11:17:00 -07002190 Returns main.TRUE only if all intent are the same as expected states,
2191 otherwise returns main.FALSE.
kelvin-onlabc2dcd3f2015-04-09 16:40:02 -07002192 """
2193 try:
kelvin-onlabf512e942015-06-08 19:42:59 -07002194 returnValue = main.TRUE
Jon Hallf539eb92017-05-22 17:18:42 -07002195 # Generating a dictionary: intent id as a key and state as value
Devin Lim752dd7b2017-06-27 14:40:03 -07002196
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002197 # intentsDict = self.getIntentState( intentsId )
Devin Lim752dd7b2017-06-27 14:40:03 -07002198 intentsDict = []
2199 for intent in json.loads( self.intents() ):
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002200 if isinstance( intentsId, types.StringType ) \
2201 and intent.get( 'id' ) == intentsId:
2202 intentsDict.append( intent )
2203 elif isinstance( intentsId, types.ListType ) \
Devin Lim752dd7b2017-06-27 14:40:03 -07002204 and any( intent.get( 'id' ) == ids for ids in intentsId ):
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002205 intentsDict.append( intent )
Devin Lim752dd7b2017-06-27 14:40:03 -07002206
2207 if not intentsDict:
Jon Hallae04e622016-01-27 10:38:05 -08002208 main.log.info( self.name + ": There is something wrong " +
kelvin-onlabc2dcd3f2015-04-09 16:40:02 -07002209 "getting intents state" )
2210 return main.FALSE
kelvin-onlabf512e942015-06-08 19:42:59 -07002211
2212 if isinstance( expectedState, types.StringType ):
2213 for intents in intentsDict:
2214 if intents.get( 'state' ) != expectedState:
kelvin-onlaba297c4d2015-06-01 13:53:55 -07002215 main.log.debug( self.name + " : Intent ID - " +
2216 intents.get( 'id' ) +
kelvin-onlabf512e942015-06-08 19:42:59 -07002217 " actual state = " +
2218 intents.get( 'state' )
2219 + " does not equal expected state = "
2220 + expectedState )
kelvin-onlaba297c4d2015-06-01 13:53:55 -07002221 returnValue = main.FALSE
kelvin-onlabf512e942015-06-08 19:42:59 -07002222 elif isinstance( expectedState, types.ListType ):
2223 for intents in intentsDict:
2224 if not any( state == intents.get( 'state' ) for state in
2225 expectedState ):
2226 main.log.debug( self.name + " : Intent ID - " +
2227 intents.get( 'id' ) +
2228 " actual state = " +
2229 intents.get( 'state' ) +
2230 " does not equal expected states = "
2231 + str( expectedState ) )
2232 returnValue = main.FALSE
2233
kelvin-onlabc2dcd3f2015-04-09 16:40:02 -07002234 if returnValue == main.TRUE:
2235 main.log.info( self.name + ": All " +
2236 str( len( intentsDict ) ) +
kelvin-onlabf512e942015-06-08 19:42:59 -07002237 " intents are in " + str( expectedState ) +
2238 " state" )
kelvin-onlabc2dcd3f2015-04-09 16:40:02 -07002239 return returnValue
2240 except TypeError:
2241 main.log.exception( self.name + ": Object not as expected" )
2242 return None
2243 except pexpect.EOF:
2244 main.log.error( self.name + ": EOF exception found" )
2245 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002246 main.cleanAndExit()
kelvin-onlabc2dcd3f2015-04-09 16:40:02 -07002247 except Exception:
2248 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002249 main.cleanAndExit()
andrewonlabe6745342014-10-17 14:29:13 -04002250
Jon Hallf539eb92017-05-22 17:18:42 -07002251 def compareBandwidthAllocations( self, expectedAllocations ):
2252 """
2253 Description:
2254 Compare the allocated bandwidth with the given allocations
2255 Required:
2256 expectedAllocations - The expected ONOS output of the allocations command
2257 Return:
2258 Returns main.TRUE only if all intent are the same as expected states,
2259 otherwise returns main.FALSE.
2260 """
2261 # FIXME: Convert these string comparisons to object comparisons
2262 try:
2263 returnValue = main.TRUE
2264 bandwidthFailed = False
2265 rawAlloc = self.allocations()
2266 expectedFormat = StringIO( expectedAllocations )
2267 ONOSOutput = StringIO( rawAlloc )
2268 main.log.debug( "ONOSOutput: {}\nexpected output: {}".format( str( ONOSOutput ),
2269 str( expectedFormat ) ) )
2270
2271 for actual, expected in izip( ONOSOutput, expectedFormat ):
2272 actual = actual.rstrip()
2273 expected = expected.rstrip()
2274 main.log.debug( "Expect: {}\nactual: {}".format( expected, actual ) )
2275 if actual != expected and 'allocated' in actual and 'allocated' in expected:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002276 marker1 = actual.find( 'allocated' )
2277 m1 = actual[ :marker1 ]
2278 marker2 = expected.find( 'allocated' )
2279 m2 = expected[ :marker2 ]
Jon Hallf539eb92017-05-22 17:18:42 -07002280 if m1 != m2:
2281 bandwidthFailed = True
2282 elif actual != expected and 'allocated' not in actual and 'allocated' not in expected:
2283 bandwidthFailed = True
2284 expectedFormat.close()
2285 ONOSOutput.close()
2286
2287 if bandwidthFailed:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002288 main.log.error( "Bandwidth not allocated correctly using Intents!!" )
Jon Hallf539eb92017-05-22 17:18:42 -07002289 returnValue = main.FALSE
2290 return returnValue
2291 except TypeError:
2292 main.log.exception( self.name + ": Object not as expected" )
2293 return None
2294 except pexpect.EOF:
2295 main.log.error( self.name + ": EOF exception found" )
2296 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002297 main.cleanAndExit()
Jon Hallf539eb92017-05-22 17:18:42 -07002298 except Exception:
2299 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002300 main.cleanAndExit()
Jon Hallf539eb92017-05-22 17:18:42 -07002301
You Wang66518af2016-05-16 15:32:59 -07002302 def compareIntent( self, intentDict ):
2303 """
2304 Description:
2305 Compare the intent ids and states provided in the argument with all intents in ONOS
2306 Return:
2307 Returns main.TRUE if the two sets of intents match exactly, otherwise main.FALSE
2308 Arguments:
2309 intentDict: a dictionary which maps intent ids to intent states
2310 """
2311 try:
2312 intentsRaw = self.intents()
2313 intentsJson = json.loads( intentsRaw )
2314 intentDictONOS = {}
2315 for intent in intentsJson:
2316 intentDictONOS[ intent[ 'id' ] ] = intent[ 'state' ]
You Wang58d04452016-09-21 15:13:05 -07002317 returnValue = main.TRUE
You Wang66518af2016-05-16 15:32:59 -07002318 if len( intentDict ) != len( intentDictONOS ):
You Wang58d04452016-09-21 15:13:05 -07002319 main.log.warn( self.name + ": expected intent count does not match that in ONOS, " +
You Wang66518af2016-05-16 15:32:59 -07002320 str( len( intentDict ) ) + " expected and " +
2321 str( len( intentDictONOS ) ) + " actual" )
You Wang58d04452016-09-21 15:13:05 -07002322 returnValue = main.FALSE
You Wang66518af2016-05-16 15:32:59 -07002323 for intentID in intentDict.keys():
Jon Halle0f0b342017-04-18 11:43:47 -07002324 if intentID not in intentDictONOS.keys():
You Wang66518af2016-05-16 15:32:59 -07002325 main.log.debug( self.name + ": intent ID - " + intentID + " is not in ONOS" )
2326 returnValue = main.FALSE
You Wang58d04452016-09-21 15:13:05 -07002327 else:
2328 if intentDict[ intentID ] != intentDictONOS[ intentID ]:
2329 main.log.debug( self.name + ": intent ID - " + intentID +
2330 " expected state is " + intentDict[ intentID ] +
2331 " but actual state is " + intentDictONOS[ intentID ] )
2332 returnValue = main.FALSE
2333 intentDictONOS.pop( intentID )
2334 if len( intentDictONOS ) > 0:
2335 returnValue = main.FALSE
2336 for intentID in intentDictONOS.keys():
2337 main.log.debug( self.name + ": find extra intent in ONOS: intent ID " + intentID )
You Wang66518af2016-05-16 15:32:59 -07002338 if returnValue == main.TRUE:
2339 main.log.info( self.name + ": all intent IDs and states match that in ONOS" )
2340 return returnValue
You Wang1be9a512016-05-26 16:54:17 -07002341 except KeyError:
2342 main.log.exception( self.name + ": KeyError exception found" )
2343 return main.ERROR
You Wang66518af2016-05-16 15:32:59 -07002344 except ( TypeError, ValueError ):
2345 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, intentsRaw ) )
You Wang85560372016-05-18 10:44:33 -07002346 return main.ERROR
You Wang66518af2016-05-16 15:32:59 -07002347 except pexpect.EOF:
2348 main.log.error( self.name + ": EOF exception found" )
2349 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002350 main.cleanAndExit()
You Wang66518af2016-05-16 15:32:59 -07002351 except Exception:
2352 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002353 main.cleanAndExit()
You Wang66518af2016-05-16 15:32:59 -07002354
YPZhang14a4aa92016-07-15 13:37:15 -07002355 def checkIntentSummary( self, timeout=60, noExit=True ):
GlennRCed771242016-01-13 17:02:47 -08002356 """
2357 Description:
2358 Check the number of installed intents.
2359 Optional:
2360 timeout - the timeout for pexcept
YPZhang14a4aa92016-07-15 13:37:15 -07002361 noExit - If noExit, TestON will not exit if any except.
GlennRCed771242016-01-13 17:02:47 -08002362 Return:
2363 Returns main.TRUE only if the number of all installed intents are the same as total intents number
2364 , otherwise, returns main.FALSE.
2365 """
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00002366
GlennRCed771242016-01-13 17:02:47 -08002367 try:
2368 cmd = "intents -s -j"
2369
2370 # Check response if something wrong
YPZhang14a4aa92016-07-15 13:37:15 -07002371 response = self.sendline( cmd, timeout=timeout, noExit=noExit )
Jon Halle0f0b342017-04-18 11:43:47 -07002372 if response is None:
YPZhang0584d432016-06-21 15:20:13 -07002373 return main.FALSE
GlennRCed771242016-01-13 17:02:47 -08002374 response = json.loads( response )
2375
2376 # get total and installed number, see if they are match
2377 allState = response.get( 'all' )
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002378 if allState.get( 'total' ) == allState.get( 'installed' ):
Jon Halla478b852017-12-04 15:00:15 -08002379 main.log.info( 'Total Intents: {} Installed Intents: {}'.format(
2380 allState.get( 'total' ), allState.get( 'installed' ) ) )
GlennRCed771242016-01-13 17:02:47 -08002381 return main.TRUE
Jon Halla478b852017-12-04 15:00:15 -08002382 main.log.info( 'Verified Intents failed Expected intents: {} installed intents: {}'.format(
2383 allState.get( 'total' ), allState.get( 'installed' ) ) )
GlennRCed771242016-01-13 17:02:47 -08002384 return main.FALSE
2385
Jon Hallc6793552016-01-19 14:18:37 -08002386 except ( TypeError, ValueError ):
2387 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, response ) )
GlennRCed771242016-01-13 17:02:47 -08002388 return None
2389 except pexpect.EOF:
2390 main.log.error( self.name + ": EOF exception found" )
2391 main.log.error( self.name + ": " + self.handle.before )
YPZhang14a4aa92016-07-15 13:37:15 -07002392 if noExit:
2393 return main.FALSE
2394 else:
Devin Lim44075962017-08-11 10:56:37 -07002395 main.cleanAndExit()
Jon Halle0f0b342017-04-18 11:43:47 -07002396 except pexpect.TIMEOUT:
2397 main.log.error( self.name + ": ONOS timeout" )
2398 return None
GlennRCed771242016-01-13 17:02:47 -08002399 except Exception:
2400 main.log.exception( self.name + ": Uncaught exception!" )
YPZhang14a4aa92016-07-15 13:37:15 -07002401 if noExit:
2402 return main.FALSE
2403 else:
Devin Lim44075962017-08-11 10:56:37 -07002404 main.cleanAndExit()
GlennRCed771242016-01-13 17:02:47 -08002405
Jeremy Songster306ed7a2016-07-19 10:59:07 -07002406 def flows( self, state="", jsonFormat=True, timeout=60, noExit=False, noCore=False ):
kelvin8ec71442015-01-15 16:57:00 -08002407 """
Shreya Shah0f01c812014-10-26 20:15:28 -04002408 Optional:
kelvin-onlabd3b64892015-01-20 13:26:24 -08002409 * jsonFormat: enable output formatting in json
Jeremy Songster306ed7a2016-07-19 10:59:07 -07002410 * noCore: suppress core flows
Shreya Shah0f01c812014-10-26 20:15:28 -04002411 Description:
Jon Halle3f39ff2015-01-13 11:50:53 -08002412 Obtain flows currently installed
kelvin-onlab898a6c62015-01-16 14:13:53 -08002413 """
Shreya Shah0f01c812014-10-26 20:15:28 -04002414 try:
Jon Hallc6358dd2015-04-10 12:44:28 -07002415 cmdStr = "flows"
kelvin-onlabd3b64892015-01-20 13:26:24 -08002416 if jsonFormat:
GlennRCed771242016-01-13 17:02:47 -08002417 cmdStr += " -j "
Jeremy Songster306ed7a2016-07-19 10:59:07 -07002418 if noCore:
2419 cmdStr += " -n "
GlennRCed771242016-01-13 17:02:47 -08002420 cmdStr += state
YPZhangebf9eb52016-05-12 15:20:24 -07002421 handle = self.sendline( cmdStr, timeout=timeout, noExit=noExit )
You Wangb5a55f72017-03-03 12:51:05 -08002422 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08002423 assert "Command not found:" not in handle, handle
2424 if re.search( "Error:", handle ):
2425 main.log.error( self.name + ": flows() response: " +
2426 str( handle ) )
2427 return handle
2428 except AssertionError:
2429 main.log.exception( "" )
GlennRCed771242016-01-13 17:02:47 -08002430 return None
Jon Halld4d4b372015-01-28 16:02:41 -08002431 except TypeError:
2432 main.log.exception( self.name + ": Object not as expected" )
2433 return None
Jon Hallc6793552016-01-19 14:18:37 -08002434 except pexpect.TIMEOUT:
2435 main.log.error( self.name + ": ONOS timeout" )
2436 return None
Shreya Shah0f01c812014-10-26 20:15:28 -04002437 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08002438 main.log.error( self.name + ": EOF exception found" )
2439 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002440 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08002441 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08002442 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002443 main.cleanAndExit()
Shreya Shah0f01c812014-10-26 20:15:28 -04002444
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002445 def checkFlowCount( self, min=0, timeout=60 ):
Flavio Castroa1286fe2016-07-25 14:48:51 -07002446 count = self.getTotalFlowsNum( timeout=timeout )
Jon Halle0f0b342017-04-18 11:43:47 -07002447 count = int( count ) if count else 0
2448 return count if ( count > min ) else False
GlennRCed771242016-01-13 17:02:47 -08002449
Jon Halle0f0b342017-04-18 11:43:47 -07002450 def checkFlowsState( self, isPENDING=True, timeout=60, noExit=False ):
kelvin-onlab4df89f22015-04-13 18:10:23 -07002451 """
2452 Description:
GlennRCed771242016-01-13 17:02:47 -08002453 Check the if all the current flows are in ADDED state
Jon Hallc6793552016-01-19 14:18:37 -08002454 We check PENDING_ADD, PENDING_REMOVE, REMOVED, and FAILED flows,
2455 if the count of those states is 0, which means all current flows
2456 are in ADDED state, and return main.TRUE otherwise return main.FALSE
pingping-linbab7f8a2015-09-21 17:33:36 -07002457 Optional:
GlennRCed771242016-01-13 17:02:47 -08002458 * isPENDING: whether the PENDING_ADD is also a correct status
kelvin-onlab4df89f22015-04-13 18:10:23 -07002459 Return:
2460 returnValue - Returns main.TRUE only if all flows are in
Jon Hallc6793552016-01-19 14:18:37 -08002461 ADDED state or PENDING_ADD if the isPENDING
pingping-linbab7f8a2015-09-21 17:33:36 -07002462 parameter is set true, return main.FALSE otherwise.
kelvin-onlab4df89f22015-04-13 18:10:23 -07002463 """
2464 try:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002465 states = [ "PENDING_ADD", "PENDING_REMOVE", "REMOVED", "FAILED" ]
GlennRCed771242016-01-13 17:02:47 -08002466 checkedStates = []
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002467 statesCount = [ 0, 0, 0, 0 ]
GlennRCed771242016-01-13 17:02:47 -08002468 for s in states:
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00002469 rawFlows = self.flows( state=s, timeout = timeout )
YPZhang240842b2016-05-17 12:00:50 -07002470 if rawFlows:
2471 # if we didn't get flows or flows function return None, we should return
2472 # main.Flase
2473 checkedStates.append( json.loads( rawFlows ) )
2474 else:
2475 return main.FALSE
Jon Hallc6793552016-01-19 14:18:37 -08002476 for i in range( len( states ) ):
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002477 for c in checkedStates[ i ]:
Jon Hallc6793552016-01-19 14:18:37 -08002478 try:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002479 statesCount[ i ] += int( c.get( "flowCount" ) )
Jon Hallc6793552016-01-19 14:18:37 -08002480 except TypeError:
2481 main.log.exception( "Json object not as expected" )
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002482 main.log.info( states[ i ] + " flows: " + str( statesCount[ i ] ) )
kelvin-onlabf2ec6e02015-05-27 14:15:28 -07002483
GlennRCed771242016-01-13 17:02:47 -08002484 # We want to count PENDING_ADD if isPENDING is true
2485 if isPENDING:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002486 if statesCount[ 1 ] + statesCount[ 2 ] + statesCount[ 3 ] > 0:
GlennRCed771242016-01-13 17:02:47 -08002487 return main.FALSE
pingping-linbab7f8a2015-09-21 17:33:36 -07002488 else:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002489 if statesCount[ 0 ] + statesCount[ 1 ] + statesCount[ 2 ] + statesCount[ 3 ] > 0:
GlennRCed771242016-01-13 17:02:47 -08002490 return main.FALSE
GlennRCed771242016-01-13 17:02:47 -08002491 return main.TRUE
Jon Hallc6793552016-01-19 14:18:37 -08002492 except ( TypeError, ValueError ):
2493 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawFlows ) )
kelvin-onlab4df89f22015-04-13 18:10:23 -07002494 return None
Jeremy Songster9385d412016-06-02 17:57:36 -07002495
YPZhang240842b2016-05-17 12:00:50 -07002496 except AssertionError:
2497 main.log.exception( "" )
2498 return None
Jon Halle0f0b342017-04-18 11:43:47 -07002499 except pexpect.TIMEOUT:
2500 main.log.error( self.name + ": ONOS timeout" )
2501 return None
kelvin-onlab4df89f22015-04-13 18:10:23 -07002502 except pexpect.EOF:
2503 main.log.error( self.name + ": EOF exception found" )
2504 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002505 main.cleanAndExit()
kelvin-onlab4df89f22015-04-13 18:10:23 -07002506 except Exception:
2507 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002508 main.cleanAndExit()
kelvin-onlab4df89f22015-04-13 18:10:23 -07002509
GlennRCed771242016-01-13 17:02:47 -08002510 def pushTestIntents( self, ingress, egress, batchSize, offset="",
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00002511 options="", timeout=10, background = False, noExit=False, getResponse=False ):
kelvin8ec71442015-01-15 16:57:00 -08002512 """
andrewonlab87852b02014-11-19 18:44:19 -05002513 Description:
Jon Halle3f39ff2015-01-13 11:50:53 -08002514 Push a number of intents in a batch format to
andrewonlab87852b02014-11-19 18:44:19 -05002515 a specific point-to-point intent definition
2516 Required:
GlennRCed771242016-01-13 17:02:47 -08002517 * ingress: specify source dpid
2518 * egress: specify destination dpid
2519 * batchSize: specify number of intents to push
andrewonlab87852b02014-11-19 18:44:19 -05002520 Optional:
GlennRCed771242016-01-13 17:02:47 -08002521 * offset: the keyOffset is where the next batch of intents
2522 will be installed
YPZhangb34b7e12016-06-14 14:28:19 -07002523 * noExit: If set to True, TestON will not exit if any error when issus command
2524 * getResponse: If set to True, function will return ONOS response.
2525
GlennRCed771242016-01-13 17:02:47 -08002526 Returns: If failed to push test intents, it will returen None,
2527 if successful, return true.
2528 Timeout expection will return None,
2529 TypeError will return false
2530 other expections will exit()
kelvin8ec71442015-01-15 16:57:00 -08002531 """
andrewonlab87852b02014-11-19 18:44:19 -05002532 try:
GlennRCed771242016-01-13 17:02:47 -08002533 if background:
2534 back = "&"
andrewonlab87852b02014-11-19 18:44:19 -05002535 else:
GlennRCed771242016-01-13 17:02:47 -08002536 back = ""
2537 cmd = "push-test-intents {} {} {} {} {} {}".format( options,
Jon Hallc6793552016-01-19 14:18:37 -08002538 ingress,
2539 egress,
2540 batchSize,
2541 offset,
2542 back )
YPZhangebf9eb52016-05-12 15:20:24 -07002543 response = self.sendline( cmd, timeout=timeout, noExit=noExit )
You Wangb5a55f72017-03-03 12:51:05 -08002544 assert response is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08002545 assert "Command not found:" not in response, response
GlennRCed771242016-01-13 17:02:47 -08002546 main.log.info( response )
YPZhangb34b7e12016-06-14 14:28:19 -07002547 if getResponse:
2548 return response
2549
GlennRCed771242016-01-13 17:02:47 -08002550 # TODO: We should handle if there is failure in installation
2551 return main.TRUE
2552
Jon Hallc6793552016-01-19 14:18:37 -08002553 except AssertionError:
2554 main.log.exception( "" )
2555 return None
GlennRCed771242016-01-13 17:02:47 -08002556 except pexpect.TIMEOUT:
2557 main.log.error( self.name + ": ONOS timeout" )
Jon Halld4d4b372015-01-28 16:02:41 -08002558 return None
andrewonlab87852b02014-11-19 18:44:19 -05002559 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08002560 main.log.error( self.name + ": EOF exception found" )
2561 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002562 main.cleanAndExit()
GlennRCed771242016-01-13 17:02:47 -08002563 except TypeError:
2564 main.log.exception( self.name + ": Object not as expected" )
Jon Hallc6793552016-01-19 14:18:37 -08002565 return None
Jon Hallfebb1c72015-03-05 13:30:09 -08002566 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08002567 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002568 main.cleanAndExit()
andrewonlab87852b02014-11-19 18:44:19 -05002569
YPZhangebf9eb52016-05-12 15:20:24 -07002570 def getTotalFlowsNum( self, timeout=60, noExit=False ):
YPZhangb5d3f832016-01-23 22:54:26 -08002571 """
2572 Description:
YPZhangf6f14a02016-01-28 15:17:31 -08002573 Get the number of ADDED flows.
YPZhangb5d3f832016-01-23 22:54:26 -08002574 Return:
YPZhangf6f14a02016-01-28 15:17:31 -08002575 The number of ADDED flows
YPZhang14a4aa92016-07-15 13:37:15 -07002576 Or return None if any exceptions
YPZhangb5d3f832016-01-23 22:54:26 -08002577 """
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00002578
YPZhangb5d3f832016-01-23 22:54:26 -08002579 try:
YPZhange3109a72016-02-02 11:25:37 -08002580 # get total added flows number
YPZhang14a4aa92016-07-15 13:37:15 -07002581 cmd = "flows -c added"
2582 rawFlows = self.sendline( cmd, timeout=timeout, noExit=noExit )
2583 if rawFlows:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002584 rawFlows = rawFlows.split( "\n" )
YPZhange3109a72016-02-02 11:25:37 -08002585 totalFlows = 0
YPZhang14a4aa92016-07-15 13:37:15 -07002586 for l in rawFlows:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002587 totalFlows += int( l.split( "Count=" )[ 1 ] )
YPZhang14a4aa92016-07-15 13:37:15 -07002588 else:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002589 main.log.error( "Response not as expected!" )
YPZhang14a4aa92016-07-15 13:37:15 -07002590 return None
2591 return totalFlows
YPZhange3109a72016-02-02 11:25:37 -08002592
You Wangd3cb2ce2016-05-16 14:01:24 -07002593 except ( TypeError, ValueError ):
YPZhang14a4aa92016-07-15 13:37:15 -07002594 main.log.exception( "{}: Object not as expected!".format( self.name ) )
YPZhangb5d3f832016-01-23 22:54:26 -08002595 return None
2596 except pexpect.EOF:
2597 main.log.error( self.name + ": EOF exception found" )
2598 main.log.error( self.name + ": " + self.handle.before )
YPZhang14a4aa92016-07-15 13:37:15 -07002599 if not noExit:
Devin Lim44075962017-08-11 10:56:37 -07002600 main.cleanAndExit()
YPZhang14a4aa92016-07-15 13:37:15 -07002601 return None
Jon Halle0f0b342017-04-18 11:43:47 -07002602 except pexpect.TIMEOUT:
2603 main.log.error( self.name + ": ONOS timeout" )
2604 return None
YPZhangb5d3f832016-01-23 22:54:26 -08002605 except Exception:
2606 main.log.exception( self.name + ": Uncaught exception!" )
YPZhang14a4aa92016-07-15 13:37:15 -07002607 if not noExit:
Devin Lim44075962017-08-11 10:56:37 -07002608 main.cleanAndExit()
YPZhang14a4aa92016-07-15 13:37:15 -07002609 return None
YPZhangb5d3f832016-01-23 22:54:26 -08002610
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00002611 def getTotalIntentsNum( self, timeout=60, noExit = False ):
YPZhangb5d3f832016-01-23 22:54:26 -08002612 """
2613 Description:
2614 Get the total number of intents, include every states.
YPZhang14a4aa92016-07-15 13:37:15 -07002615 Optional:
2616 noExit - If noExit, TestON will not exit if any except.
YPZhangb5d3f832016-01-23 22:54:26 -08002617 Return:
2618 The number of intents
2619 """
2620 try:
2621 cmd = "summary -j"
YPZhang14a4aa92016-07-15 13:37:15 -07002622 response = self.sendline( cmd, timeout=timeout, noExit=noExit )
Jon Halle0f0b342017-04-18 11:43:47 -07002623 if response is None:
2624 return -1
YPZhangb5d3f832016-01-23 22:54:26 -08002625 response = json.loads( response )
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002626 return int( response.get( "intents" ) )
You Wangd3cb2ce2016-05-16 14:01:24 -07002627 except ( TypeError, ValueError ):
2628 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, response ) )
YPZhangb5d3f832016-01-23 22:54:26 -08002629 return None
2630 except pexpect.EOF:
2631 main.log.error( self.name + ": EOF exception found" )
2632 main.log.error( self.name + ": " + self.handle.before )
YPZhang14a4aa92016-07-15 13:37:15 -07002633 if noExit:
2634 return -1
2635 else:
Devin Lim44075962017-08-11 10:56:37 -07002636 main.cleanAndExit()
YPZhangb5d3f832016-01-23 22:54:26 -08002637 except Exception:
2638 main.log.exception( self.name + ": Uncaught exception!" )
YPZhang14a4aa92016-07-15 13:37:15 -07002639 if noExit:
2640 return -1
2641 else:
Devin Lim44075962017-08-11 10:56:37 -07002642 main.cleanAndExit()
YPZhangb5d3f832016-01-23 22:54:26 -08002643
kelvin-onlabd3b64892015-01-20 13:26:24 -08002644 def intentsEventsMetrics( self, jsonFormat=True ):
kelvin8ec71442015-01-15 16:57:00 -08002645 """
Jon Halle3f39ff2015-01-13 11:50:53 -08002646 Description:Returns topology metrics
andrewonlab0dbb6ec2014-11-06 13:46:55 -05002647 Optional:
kelvin-onlabd3b64892015-01-20 13:26:24 -08002648 * jsonFormat: enable json formatting of output
kelvin8ec71442015-01-15 16:57:00 -08002649 """
andrewonlab0dbb6ec2014-11-06 13:46:55 -05002650 try:
Jon Hallc6358dd2015-04-10 12:44:28 -07002651 cmdStr = "intents-events-metrics"
kelvin-onlabd3b64892015-01-20 13:26:24 -08002652 if jsonFormat:
Jon Hallc6358dd2015-04-10 12:44:28 -07002653 cmdStr += " -j"
2654 handle = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -08002655 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08002656 assert "Command not found:" not in handle, handle
andrewonlab0dbb6ec2014-11-06 13:46:55 -05002657 return handle
Jon Hallc6793552016-01-19 14:18:37 -08002658 except AssertionError:
2659 main.log.exception( "" )
2660 return None
Jon Halld4d4b372015-01-28 16:02:41 -08002661 except TypeError:
2662 main.log.exception( self.name + ": Object not as expected" )
2663 return None
andrewonlab0dbb6ec2014-11-06 13:46:55 -05002664 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08002665 main.log.error( self.name + ": EOF exception found" )
2666 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002667 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08002668 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08002669 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002670 main.cleanAndExit()
Shreya Shah0f01c812014-10-26 20:15:28 -04002671
kelvin-onlabd3b64892015-01-20 13:26:24 -08002672 def topologyEventsMetrics( self, jsonFormat=True ):
kelvin8ec71442015-01-15 16:57:00 -08002673 """
2674 Description:Returns topology metrics
andrewonlab867212a2014-10-22 20:13:38 -04002675 Optional:
kelvin-onlabd3b64892015-01-20 13:26:24 -08002676 * jsonFormat: enable json formatting of output
kelvin8ec71442015-01-15 16:57:00 -08002677 """
andrewonlab867212a2014-10-22 20:13:38 -04002678 try:
Jon Hallc6358dd2015-04-10 12:44:28 -07002679 cmdStr = "topology-events-metrics"
kelvin-onlabd3b64892015-01-20 13:26:24 -08002680 if jsonFormat:
Jon Hallc6358dd2015-04-10 12:44:28 -07002681 cmdStr += " -j"
2682 handle = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -08002683 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08002684 assert "Command not found:" not in handle, handle
jenkins7ead5a82015-03-13 10:28:21 -07002685 if handle:
2686 return handle
Jon Hallc6358dd2015-04-10 12:44:28 -07002687 elif jsonFormat:
Jon Hallbe379602015-03-24 13:39:32 -07002688 # Return empty json
jenkins7ead5a82015-03-13 10:28:21 -07002689 return '{}'
Jon Hallc6358dd2015-04-10 12:44:28 -07002690 else:
2691 return handle
Jon Hallc6793552016-01-19 14:18:37 -08002692 except AssertionError:
2693 main.log.exception( "" )
2694 return None
Jon Halld4d4b372015-01-28 16:02:41 -08002695 except TypeError:
2696 main.log.exception( self.name + ": Object not as expected" )
2697 return None
andrewonlab867212a2014-10-22 20:13:38 -04002698 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08002699 main.log.error( self.name + ": EOF exception found" )
2700 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002701 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08002702 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08002703 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002704 main.cleanAndExit()
andrewonlab867212a2014-10-22 20:13:38 -04002705
kelvin8ec71442015-01-15 16:57:00 -08002706 # Wrapper functions ****************
2707 # Wrapper functions use existing driver
2708 # functions and extends their use case.
2709 # For example, we may use the output of
2710 # a normal driver function, and parse it
2711 # using a wrapper function
andrewonlabc2d05aa2014-10-13 16:51:10 -04002712
kelvin-onlabd3b64892015-01-20 13:26:24 -08002713 def getAllIntentsId( self ):
kelvin8ec71442015-01-15 16:57:00 -08002714 """
andrewonlab9a50dfe2014-10-17 17:22:31 -04002715 Description:
2716 Obtain all intent id's in a list
kelvin8ec71442015-01-15 16:57:00 -08002717 """
andrewonlab9a50dfe2014-10-17 17:22:31 -04002718 try:
kelvin8ec71442015-01-15 16:57:00 -08002719 # Obtain output of intents function
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002720 intentsStr = self.intents( jsonFormat=True )
Jon Hall7a6ebfd2017-03-13 10:58:58 -07002721 if intentsStr is None:
2722 raise TypeError
Jon Hall6021e062017-01-30 11:10:06 -08002723 # Convert to a dictionary
2724 intents = json.loads( intentsStr )
kelvin-onlabd3b64892015-01-20 13:26:24 -08002725 intentIdList = []
Jon Hall6021e062017-01-30 11:10:06 -08002726 for intent in intents:
2727 intentIdList.append( intent[ 'id' ] )
kelvin-onlabd3b64892015-01-20 13:26:24 -08002728 return intentIdList
Jon Halld4d4b372015-01-28 16:02:41 -08002729 except TypeError:
2730 main.log.exception( self.name + ": Object not as expected" )
2731 return None
andrewonlab9a50dfe2014-10-17 17:22:31 -04002732 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08002733 main.log.error( self.name + ": EOF exception found" )
2734 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002735 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08002736 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08002737 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002738 main.cleanAndExit()
andrewonlab9a50dfe2014-10-17 17:22:31 -04002739
You Wang3c276252016-09-21 15:21:36 -07002740 def flowAddedCount( self, deviceId, core=False ):
Jon Hall30b82fa2015-03-04 17:15:43 -08002741 """
2742 Determine the number of flow rules for the given device id that are
2743 in the added state
You Wang3c276252016-09-21 15:21:36 -07002744 Params:
2745 core: if True, only return the number of core flows added
Jon Hall30b82fa2015-03-04 17:15:43 -08002746 """
2747 try:
You Wang3c276252016-09-21 15:21:36 -07002748 if core:
2749 cmdStr = "flows any " + str( deviceId ) + " | " +\
2750 "grep 'state=ADDED' | grep org.onosproject.core | wc -l"
2751 else:
2752 cmdStr = "flows any " + str( deviceId ) + " | " +\
2753 "grep 'state=ADDED' | wc -l"
Jon Hall30b82fa2015-03-04 17:15:43 -08002754 handle = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -08002755 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08002756 assert "Command not found:" not in handle, handle
Jon Hall30b82fa2015-03-04 17:15:43 -08002757 return handle
Jon Hallc6793552016-01-19 14:18:37 -08002758 except AssertionError:
2759 main.log.exception( "" )
2760 return None
Jon Hall30b82fa2015-03-04 17:15:43 -08002761 except pexpect.EOF:
2762 main.log.error( self.name + ": EOF exception found" )
2763 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002764 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08002765 except Exception:
Jon Hall30b82fa2015-03-04 17:15:43 -08002766 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002767 main.cleanAndExit()
andrewonlab95ce8322014-10-13 14:12:04 -04002768
kelvin-onlabd3b64892015-01-20 13:26:24 -08002769 def getAllDevicesId( self ):
kelvin8ec71442015-01-15 16:57:00 -08002770 """
andrewonlab7e4d2d32014-10-15 13:23:21 -04002771 Use 'devices' function to obtain list of all devices
2772 and parse the result to obtain a list of all device
2773 id's. Returns this list. Returns empty list if no
2774 devices exist
kelvin8ec71442015-01-15 16:57:00 -08002775 List is ordered sequentially
2776
andrewonlab3e15ead2014-10-15 14:21:34 -04002777 This function may be useful if you are not sure of the
kelvin8ec71442015-01-15 16:57:00 -08002778 device id, and wish to execute other commands using
andrewonlab3e15ead2014-10-15 14:21:34 -04002779 the ids. By obtaining the list of device ids on the fly,
2780 you can iterate through the list to get mastership, etc.
kelvin8ec71442015-01-15 16:57:00 -08002781 """
andrewonlab7e4d2d32014-10-15 13:23:21 -04002782 try:
kelvin8ec71442015-01-15 16:57:00 -08002783 # Call devices and store result string
kelvin-onlabd3b64892015-01-20 13:26:24 -08002784 devicesStr = self.devices( jsonFormat=False )
2785 idList = []
kelvin8ec71442015-01-15 16:57:00 -08002786
kelvin-onlabd3b64892015-01-20 13:26:24 -08002787 if not devicesStr:
kelvin8ec71442015-01-15 16:57:00 -08002788 main.log.info( "There are no devices to get id from" )
kelvin-onlabd3b64892015-01-20 13:26:24 -08002789 return idList
kelvin8ec71442015-01-15 16:57:00 -08002790
2791 # Split the string into list by comma
kelvin-onlabd3b64892015-01-20 13:26:24 -08002792 deviceList = devicesStr.split( "," )
kelvin8ec71442015-01-15 16:57:00 -08002793 # Get temporary list of all arguments with string 'id='
kelvin-onlabd3b64892015-01-20 13:26:24 -08002794 tempList = [ dev for dev in deviceList if "id=" in dev ]
kelvin8ec71442015-01-15 16:57:00 -08002795 # Split list further into arguments before and after string
2796 # 'id='. Get the latter portion ( the actual device id ) and
kelvin-onlabd3b64892015-01-20 13:26:24 -08002797 # append to idList
2798 for arg in tempList:
2799 idList.append( arg.split( "id=" )[ 1 ] )
2800 return idList
andrewonlab7e4d2d32014-10-15 13:23:21 -04002801
Jon Halld4d4b372015-01-28 16:02:41 -08002802 except TypeError:
2803 main.log.exception( self.name + ": Object not as expected" )
2804 return None
andrewonlab7e4d2d32014-10-15 13:23:21 -04002805 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08002806 main.log.error( self.name + ": EOF exception found" )
2807 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002808 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08002809 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08002810 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002811 main.cleanAndExit()
andrewonlab7e4d2d32014-10-15 13:23:21 -04002812
kelvin-onlabd3b64892015-01-20 13:26:24 -08002813 def getAllNodesId( self ):
kelvin8ec71442015-01-15 16:57:00 -08002814 """
andrewonlab7c211572014-10-15 16:45:20 -04002815 Uses 'nodes' function to obtain list of all nodes
2816 and parse the result of nodes to obtain just the
kelvin8ec71442015-01-15 16:57:00 -08002817 node id's.
andrewonlab7c211572014-10-15 16:45:20 -04002818 Returns:
2819 list of node id's
kelvin8ec71442015-01-15 16:57:00 -08002820 """
andrewonlab7c211572014-10-15 16:45:20 -04002821 try:
Jon Hall5aa168b2015-03-23 14:23:09 -07002822 nodesStr = self.nodes( jsonFormat=True )
kelvin-onlabd3b64892015-01-20 13:26:24 -08002823 idList = []
Jon Hall5aa168b2015-03-23 14:23:09 -07002824 # Sample nodesStr output
Jon Hallbd182782016-03-28 16:42:22 -07002825 # id=local, address=127.0.0.1:9876, state=READY *
kelvin-onlabd3b64892015-01-20 13:26:24 -08002826 if not nodesStr:
kelvin8ec71442015-01-15 16:57:00 -08002827 main.log.info( "There are no nodes to get id from" )
kelvin-onlabd3b64892015-01-20 13:26:24 -08002828 return idList
Jon Hall5aa168b2015-03-23 14:23:09 -07002829 nodesJson = json.loads( nodesStr )
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002830 idList = [ node.get( 'id' ) for node in nodesJson ]
kelvin-onlabd3b64892015-01-20 13:26:24 -08002831 return idList
Jon Hallc6793552016-01-19 14:18:37 -08002832 except ( TypeError, ValueError ):
2833 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, nodesStr ) )
Jon Halld4d4b372015-01-28 16:02:41 -08002834 return None
andrewonlab7c211572014-10-15 16:45:20 -04002835 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08002836 main.log.error( self.name + ": EOF exception found" )
2837 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002838 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08002839 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08002840 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002841 main.cleanAndExit()
andrewonlab7e4d2d32014-10-15 13:23:21 -04002842
kelvin-onlabd3b64892015-01-20 13:26:24 -08002843 def getDevice( self, dpid=None ):
kelvin8ec71442015-01-15 16:57:00 -08002844 """
Jon Halla91c4dc2014-10-22 12:57:04 -04002845 Return the first device from the devices api whose 'id' contains 'dpid'
2846 Return None if there is no match
kelvin8ec71442015-01-15 16:57:00 -08002847 """
Jon Halla91c4dc2014-10-22 12:57:04 -04002848 try:
kelvin8ec71442015-01-15 16:57:00 -08002849 if dpid is None:
Jon Halla91c4dc2014-10-22 12:57:04 -04002850 return None
2851 else:
kelvin8ec71442015-01-15 16:57:00 -08002852 dpid = dpid.replace( ':', '' )
kelvin-onlabd3b64892015-01-20 13:26:24 -08002853 rawDevices = self.devices()
2854 devicesJson = json.loads( rawDevices )
kelvin8ec71442015-01-15 16:57:00 -08002855 # search json for the device with dpid then return the device
kelvin-onlabd3b64892015-01-20 13:26:24 -08002856 for device in devicesJson:
kelvin8ec71442015-01-15 16:57:00 -08002857 # print "%s in %s?" % ( dpid, device[ 'id' ] )
2858 if dpid in device[ 'id' ]:
Jon Halla91c4dc2014-10-22 12:57:04 -04002859 return device
2860 return None
Jon Hallc6793552016-01-19 14:18:37 -08002861 except ( TypeError, ValueError ):
2862 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawDevices ) )
Jon Halld4d4b372015-01-28 16:02:41 -08002863 return None
Jon Halla91c4dc2014-10-22 12:57:04 -04002864 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08002865 main.log.error( self.name + ": EOF exception found" )
2866 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002867 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08002868 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08002869 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002870 main.cleanAndExit()
Jon Halla91c4dc2014-10-22 12:57:04 -04002871
You Wang24139872016-05-03 11:48:47 -07002872 def getTopology( self, topologyOutput ):
2873 """
2874 Definition:
2875 Loads a json topology output
2876 Return:
2877 topology = current ONOS topology
2878 """
2879 import json
2880 try:
2881 # either onos:topology or 'topology' will work in CLI
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002882 topology = json.loads( topologyOutput )
Jeremy Songsterbc2d8ac2016-05-04 11:25:42 -07002883 main.log.debug( topology )
You Wang24139872016-05-03 11:48:47 -07002884 return topology
You Wangd3cb2ce2016-05-16 14:01:24 -07002885 except ( TypeError, ValueError ):
2886 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, topologyOutput ) )
2887 return None
You Wang24139872016-05-03 11:48:47 -07002888 except pexpect.EOF:
2889 main.log.error( self.name + ": EOF exception found" )
2890 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002891 main.cleanAndExit()
You Wang24139872016-05-03 11:48:47 -07002892 except Exception:
2893 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002894 main.cleanAndExit()
You Wang24139872016-05-03 11:48:47 -07002895
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002896 def checkStatus( self, numoswitch, numolink, numoctrl = -1, logLevel="info" ):
kelvin8ec71442015-01-15 16:57:00 -08002897 """
Jon Hallefbd9792015-03-05 16:11:36 -08002898 Checks the number of switches & links that ONOS sees against the
kelvin8ec71442015-01-15 16:57:00 -08002899 supplied values. By default this will report to main.log, but the
You Wang24139872016-05-03 11:48:47 -07002900 log level can be specific.
kelvin8ec71442015-01-15 16:57:00 -08002901
Flavio Castro82ee2f62016-06-07 15:04:12 -07002902 Params: numoswitch = expected number of switches
Jon Hallefbd9792015-03-05 16:11:36 -08002903 numolink = expected number of links
Flavio Castro82ee2f62016-06-07 15:04:12 -07002904 numoctrl = expected number of controllers
You Wang24139872016-05-03 11:48:47 -07002905 logLevel = level to log to.
2906 Currently accepts 'info', 'warn' and 'report'
Jon Hall42db6dc2014-10-24 19:03:48 -04002907
Jon Hallefbd9792015-03-05 16:11:36 -08002908 Returns: main.TRUE if the number of switches and links are correct,
2909 main.FALSE if the number of switches and links is incorrect,
Jon Hall42db6dc2014-10-24 19:03:48 -04002910 and main.ERROR otherwise
kelvin8ec71442015-01-15 16:57:00 -08002911 """
Flavio Castro82ee2f62016-06-07 15:04:12 -07002912 import json
Jon Hall42db6dc2014-10-24 19:03:48 -04002913 try:
You Wang13310252016-07-31 10:56:14 -07002914 summary = self.summary()
2915 summary = json.loads( summary )
Flavio Castrof5b3f872016-06-23 17:52:31 -07002916 except ( TypeError, ValueError ):
2917 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, summary ) )
2918 return main.ERROR
2919 try:
2920 topology = self.getTopology( self.topology() )
Jon Halle0f0b342017-04-18 11:43:47 -07002921 if topology == {} or topology is None or summary == {} or summary is None:
Jon Hall42db6dc2014-10-24 19:03:48 -04002922 return main.ERROR
2923 output = ""
kelvin8ec71442015-01-15 16:57:00 -08002924 # Is the number of switches is what we expected
2925 devices = topology.get( 'devices', False )
2926 links = topology.get( 'links', False )
Flavio Castro82ee2f62016-06-07 15:04:12 -07002927 nodes = summary.get( 'nodes', False )
2928 if devices is False or links is False or nodes is False:
Jon Hall42db6dc2014-10-24 19:03:48 -04002929 return main.ERROR
kelvin-onlabd3b64892015-01-20 13:26:24 -08002930 switchCheck = ( int( devices ) == int( numoswitch ) )
kelvin8ec71442015-01-15 16:57:00 -08002931 # Is the number of links is what we expected
kelvin-onlabd3b64892015-01-20 13:26:24 -08002932 linkCheck = ( int( links ) == int( numolink ) )
Flavio Castro82ee2f62016-06-07 15:04:12 -07002933 nodeCheck = ( int( nodes ) == int( numoctrl ) ) or int( numoctrl ) == -1
2934 if switchCheck and linkCheck and nodeCheck:
kelvin8ec71442015-01-15 16:57:00 -08002935 # We expected the correct numbers
You Wang24139872016-05-03 11:48:47 -07002936 output = output + "The number of links and switches match "\
2937 + "what was expected"
Jon Hall42db6dc2014-10-24 19:03:48 -04002938 result = main.TRUE
2939 else:
You Wang24139872016-05-03 11:48:47 -07002940 output = output + \
2941 "The number of links and switches does not match " + \
2942 "what was expected"
Jon Hall42db6dc2014-10-24 19:03:48 -04002943 result = main.FALSE
You Wang24139872016-05-03 11:48:47 -07002944 output = output + "\n ONOS sees %i devices" % int( devices )
2945 output = output + " (%i expected) " % int( numoswitch )
2946 output = output + "and %i links " % int( links )
2947 output = output + "(%i expected)" % int( numolink )
YPZhangd7e4b6e2016-06-17 16:07:55 -07002948 if int( numoctrl ) > 0:
Flavio Castro82ee2f62016-06-07 15:04:12 -07002949 output = output + "and %i controllers " % int( nodes )
2950 output = output + "(%i expected)" % int( numoctrl )
kelvin-onlabd3b64892015-01-20 13:26:24 -08002951 if logLevel == "report":
kelvin8ec71442015-01-15 16:57:00 -08002952 main.log.report( output )
kelvin-onlabd3b64892015-01-20 13:26:24 -08002953 elif logLevel == "warn":
kelvin8ec71442015-01-15 16:57:00 -08002954 main.log.warn( output )
Jon Hall42db6dc2014-10-24 19:03:48 -04002955 else:
You Wang24139872016-05-03 11:48:47 -07002956 main.log.info( output )
kelvin8ec71442015-01-15 16:57:00 -08002957 return result
Jon Hall42db6dc2014-10-24 19:03:48 -04002958 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08002959 main.log.error( self.name + ": EOF exception found" )
2960 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07002961 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08002962 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08002963 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07002964 main.cleanAndExit()
Jon Hall1c9e8732014-10-27 19:29:27 -04002965
kelvin-onlabd3b64892015-01-20 13:26:24 -08002966 def deviceRole( self, deviceId, onosNode, role="master" ):
kelvin8ec71442015-01-15 16:57:00 -08002967 """
Jon Hall1c9e8732014-10-27 19:29:27 -04002968 Calls the device-role cli command.
kelvin-onlabd3b64892015-01-20 13:26:24 -08002969 deviceId must be the id of a device as seen in the onos devices command
2970 onosNode is the ip of one of the onos nodes in the cluster
Jon Hall1c9e8732014-10-27 19:29:27 -04002971 role must be either master, standby, or none
2972
Jon Halle3f39ff2015-01-13 11:50:53 -08002973 Returns:
2974 main.TRUE or main.FALSE based on argument verification and
2975 main.ERROR if command returns and error
kelvin-onlab898a6c62015-01-16 14:13:53 -08002976 """
Jon Hall1c9e8732014-10-27 19:29:27 -04002977 try:
Jon Halle3f39ff2015-01-13 11:50:53 -08002978 if role.lower() == "master" or role.lower() == "standby" or\
Jon Hall1c9e8732014-10-27 19:29:27 -04002979 role.lower() == "none":
kelvin-onlabd3b64892015-01-20 13:26:24 -08002980 cmdStr = "device-role " +\
2981 str( deviceId ) + " " +\
2982 str( onosNode ) + " " +\
kelvin-onlab898a6c62015-01-16 14:13:53 -08002983 str( role )
kelvin-onlabd3b64892015-01-20 13:26:24 -08002984 handle = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -08002985 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08002986 assert "Command not found:" not in handle, handle
kelvin-onlab898a6c62015-01-16 14:13:53 -08002987 if re.search( "Error", handle ):
2988 # end color output to escape any colours
2989 # from the cli
kelvin8ec71442015-01-15 16:57:00 -08002990 main.log.error( self.name + ": " +
kelvin-onlab898a6c62015-01-16 14:13:53 -08002991 handle + '\033[0m' )
kelvin8ec71442015-01-15 16:57:00 -08002992 return main.ERROR
kelvin8ec71442015-01-15 16:57:00 -08002993 return main.TRUE
Jon Hall1c9e8732014-10-27 19:29:27 -04002994 else:
kelvin-onlab898a6c62015-01-16 14:13:53 -08002995 main.log.error( "Invalid 'role' given to device_role(). " +
Jeremy Ronquillo82705492017-10-18 14:19:55 -07002996 "Value was '" + str( role ) + "'." )
Jon Hall1c9e8732014-10-27 19:29:27 -04002997 return main.FALSE
Jon Hallc6793552016-01-19 14:18:37 -08002998 except AssertionError:
2999 main.log.exception( "" )
3000 return None
Jon Halld4d4b372015-01-28 16:02:41 -08003001 except TypeError:
3002 main.log.exception( self.name + ": Object not as expected" )
3003 return None
Jon Hall1c9e8732014-10-27 19:29:27 -04003004 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08003005 main.log.error( self.name + ": EOF exception found" )
3006 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003007 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08003008 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08003009 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003010 main.cleanAndExit()
Jon Hall1c9e8732014-10-27 19:29:27 -04003011
kelvin-onlabd3b64892015-01-20 13:26:24 -08003012 def clusters( self, jsonFormat=True ):
kelvin8ec71442015-01-15 16:57:00 -08003013 """
Jon Hall73cf9cc2014-11-20 22:28:38 -08003014 Lists all clusters
Jon Hallffb386d2014-11-21 13:43:38 -08003015 Optional argument:
kelvin-onlabd3b64892015-01-20 13:26:24 -08003016 * jsonFormat - boolean indicating if you want output in json
kelvin8ec71442015-01-15 16:57:00 -08003017 """
Jon Hall73cf9cc2014-11-20 22:28:38 -08003018 try:
Jon Hallc6358dd2015-04-10 12:44:28 -07003019 cmdStr = "clusters"
kelvin-onlabd3b64892015-01-20 13:26:24 -08003020 if jsonFormat:
Jon Hallc6358dd2015-04-10 12:44:28 -07003021 cmdStr += " -j"
3022 handle = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -08003023 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08003024 assert "Command not found:" not in handle, handle
Jon Hallc6358dd2015-04-10 12:44:28 -07003025 return handle
Jon Hallc6793552016-01-19 14:18:37 -08003026 except AssertionError:
3027 main.log.exception( "" )
3028 return None
Jon Halld4d4b372015-01-28 16:02:41 -08003029 except TypeError:
3030 main.log.exception( self.name + ": Object not as expected" )
3031 return None
Jon Hall73cf9cc2014-11-20 22:28:38 -08003032 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08003033 main.log.error( self.name + ": EOF exception found" )
3034 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003035 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08003036 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08003037 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003038 main.cleanAndExit()
Jon Hall73cf9cc2014-11-20 22:28:38 -08003039
kelvin-onlabd3b64892015-01-20 13:26:24 -08003040 def electionTestLeader( self ):
kelvin-onlab898a6c62015-01-16 14:13:53 -08003041 """
Jon Halle3f39ff2015-01-13 11:50:53 -08003042 CLI command to get the current leader for the Election test application
3043 NOTE: Requires installation of the onos-app-election feature
3044 Returns: Node IP of the leader if one exists
3045 None if none exists
3046 Main.FALSE on error
kelvin-onlab898a6c62015-01-16 14:13:53 -08003047 """
Jon Hall94fd0472014-12-08 11:52:42 -08003048 try:
kelvin-onlabd3b64892015-01-20 13:26:24 -08003049 cmdStr = "election-test-leader"
3050 response = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -08003051 assert response is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08003052 assert "Command not found:" not in response, response
Jon Halle3f39ff2015-01-13 11:50:53 -08003053 # Leader
3054 leaderPattern = "The\scurrent\sleader\sfor\sthe\sElection\s" +\
kelvin-onlab898a6c62015-01-16 14:13:53 -08003055 "app\sis\s(?P<node>.+)\."
kelvin-onlabd3b64892015-01-20 13:26:24 -08003056 nodeSearch = re.search( leaderPattern, response )
3057 if nodeSearch:
3058 node = nodeSearch.group( 'node' )
Jon Halle3f39ff2015-01-13 11:50:53 -08003059 main.log.info( "Election-test-leader on " + str( self.name ) +
kelvin-onlab898a6c62015-01-16 14:13:53 -08003060 " found " + node + " as the leader" )
Jon Hall94fd0472014-12-08 11:52:42 -08003061 return node
Jon Halle3f39ff2015-01-13 11:50:53 -08003062 # no leader
3063 nullPattern = "There\sis\scurrently\sno\sleader\selected\sfor\s" +\
kelvin-onlab898a6c62015-01-16 14:13:53 -08003064 "the\sElection\sapp"
kelvin-onlabd3b64892015-01-20 13:26:24 -08003065 nullSearch = re.search( nullPattern, response )
3066 if nullSearch:
Jon Halle3f39ff2015-01-13 11:50:53 -08003067 main.log.info( "Election-test-leader found no leader on " +
kelvin-onlab898a6c62015-01-16 14:13:53 -08003068 self.name )
Jon Hall94fd0472014-12-08 11:52:42 -08003069 return None
kelvin-onlab898a6c62015-01-16 14:13:53 -08003070 # error
Jon Hall97cf84a2016-06-20 13:35:58 -07003071 main.log.error( "Error in electionTestLeader on " + self.name +
3072 ": " + "unexpected response" )
3073 main.log.error( repr( response ) )
3074 return main.FALSE
Jon Hallc6793552016-01-19 14:18:37 -08003075 except AssertionError:
3076 main.log.exception( "" )
3077 return None
Jon Halld4d4b372015-01-28 16:02:41 -08003078 except TypeError:
3079 main.log.exception( self.name + ": Object not as expected" )
3080 return main.FALSE
Jon Hall94fd0472014-12-08 11:52:42 -08003081 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08003082 main.log.error( self.name + ": EOF exception found" )
3083 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003084 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08003085 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08003086 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003087 main.cleanAndExit()
Jon Hall94fd0472014-12-08 11:52:42 -08003088
kelvin-onlabd3b64892015-01-20 13:26:24 -08003089 def electionTestRun( self ):
kelvin-onlab898a6c62015-01-16 14:13:53 -08003090 """
Jon Halle3f39ff2015-01-13 11:50:53 -08003091 CLI command to run for leadership of the Election test application.
3092 NOTE: Requires installation of the onos-app-election feature
3093 Returns: Main.TRUE on success
3094 Main.FALSE on error
kelvin-onlab898a6c62015-01-16 14:13:53 -08003095 """
Jon Hall94fd0472014-12-08 11:52:42 -08003096 try:
kelvin-onlabd3b64892015-01-20 13:26:24 -08003097 cmdStr = "election-test-run"
3098 response = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -08003099 assert response is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08003100 assert "Command not found:" not in response, response
kelvin-onlab898a6c62015-01-16 14:13:53 -08003101 # success
Jon Halle3f39ff2015-01-13 11:50:53 -08003102 successPattern = "Entering\sleadership\selections\sfor\sthe\s" +\
kelvin-onlab898a6c62015-01-16 14:13:53 -08003103 "Election\sapp."
Jon Halle3f39ff2015-01-13 11:50:53 -08003104 search = re.search( successPattern, response )
Jon Hall94fd0472014-12-08 11:52:42 -08003105 if search:
Jon Halle3f39ff2015-01-13 11:50:53 -08003106 main.log.info( self.name + " entering leadership elections " +
kelvin-onlab898a6c62015-01-16 14:13:53 -08003107 "for the Election app." )
Jon Hall94fd0472014-12-08 11:52:42 -08003108 return main.TRUE
kelvin-onlab898a6c62015-01-16 14:13:53 -08003109 # error
Jon Hall97cf84a2016-06-20 13:35:58 -07003110 main.log.error( "Error in electionTestRun on " + self.name +
3111 ": " + "unexpected response" )
3112 main.log.error( repr( response ) )
3113 return main.FALSE
Jon Hallc6793552016-01-19 14:18:37 -08003114 except AssertionError:
3115 main.log.exception( "" )
3116 return None
Jon Halld4d4b372015-01-28 16:02:41 -08003117 except TypeError:
3118 main.log.exception( self.name + ": Object not as expected" )
3119 return main.FALSE
Jon Hall94fd0472014-12-08 11:52:42 -08003120 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08003121 main.log.error( self.name + ": EOF exception found" )
3122 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003123 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08003124 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08003125 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003126 main.cleanAndExit()
Jon Hall94fd0472014-12-08 11:52:42 -08003127
kelvin-onlabd3b64892015-01-20 13:26:24 -08003128 def electionTestWithdraw( self ):
kelvin8ec71442015-01-15 16:57:00 -08003129 """
Jon Hall94fd0472014-12-08 11:52:42 -08003130 * CLI command to withdraw the local node from leadership election for
3131 * the Election test application.
3132 #NOTE: Requires installation of the onos-app-election feature
3133 Returns: Main.TRUE on success
3134 Main.FALSE on error
kelvin8ec71442015-01-15 16:57:00 -08003135 """
Jon Hall94fd0472014-12-08 11:52:42 -08003136 try:
kelvin-onlabd3b64892015-01-20 13:26:24 -08003137 cmdStr = "election-test-withdraw"
3138 response = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -08003139 assert response is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08003140 assert "Command not found:" not in response, response
kelvin-onlab898a6c62015-01-16 14:13:53 -08003141 # success
Jon Halle3f39ff2015-01-13 11:50:53 -08003142 successPattern = "Withdrawing\sfrom\sleadership\selections\sfor" +\
kelvin-onlab898a6c62015-01-16 14:13:53 -08003143 "\sthe\sElection\sapp."
Jon Halle3f39ff2015-01-13 11:50:53 -08003144 if re.search( successPattern, response ):
3145 main.log.info( self.name + " withdrawing from leadership " +
kelvin-onlab898a6c62015-01-16 14:13:53 -08003146 "elections for the Election app." )
Jon Hall94fd0472014-12-08 11:52:42 -08003147 return main.TRUE
kelvin-onlab898a6c62015-01-16 14:13:53 -08003148 # error
Jon Hall97cf84a2016-06-20 13:35:58 -07003149 main.log.error( "Error in electionTestWithdraw on " +
3150 self.name + ": " + "unexpected response" )
3151 main.log.error( repr( response ) )
3152 return main.FALSE
Jon Hallc6793552016-01-19 14:18:37 -08003153 except AssertionError:
3154 main.log.exception( "" )
3155 return None
Jon Halld4d4b372015-01-28 16:02:41 -08003156 except TypeError:
3157 main.log.exception( self.name + ": Object not as expected" )
3158 return main.FALSE
Jon Hall94fd0472014-12-08 11:52:42 -08003159 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08003160 main.log.error( self.name + ": EOF exception found" )
3161 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003162 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08003163 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08003164 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003165 main.cleanAndExit()
Jon Hall1c9e8732014-10-27 19:29:27 -04003166
kelvin8ec71442015-01-15 16:57:00 -08003167 def getDevicePortsEnabledCount( self, dpid ):
3168 """
Hari Krishnaa43d4e92014-12-19 13:22:40 -08003169 Get the count of all enabled ports on a particular device/switch
kelvin8ec71442015-01-15 16:57:00 -08003170 """
Hari Krishnaa43d4e92014-12-19 13:22:40 -08003171 try:
Jon Halle3f39ff2015-01-13 11:50:53 -08003172 dpid = str( dpid )
kelvin-onlabd3b64892015-01-20 13:26:24 -08003173 cmdStr = "onos:ports -e " + dpid + " | wc -l"
3174 output = self.sendline( cmdStr )
Jon Halla495f562016-05-16 18:03:26 -07003175 assert output is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08003176 assert "Command not found:" not in output, output
Jon Halle3f39ff2015-01-13 11:50:53 -08003177 if re.search( "No such device", output ):
3178 main.log.error( "Error in getting ports" )
3179 return ( output, "Error" )
Jon Halla495f562016-05-16 18:03:26 -07003180 return output
Jon Hallc6793552016-01-19 14:18:37 -08003181 except AssertionError:
3182 main.log.exception( "" )
3183 return None
Jon Halld4d4b372015-01-28 16:02:41 -08003184 except TypeError:
3185 main.log.exception( self.name + ": Object not as expected" )
3186 return ( output, "Error" )
Hari Krishnaa43d4e92014-12-19 13:22:40 -08003187 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08003188 main.log.error( self.name + ": EOF exception found" )
3189 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003190 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08003191 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08003192 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003193 main.cleanAndExit()
Hari Krishnaa43d4e92014-12-19 13:22:40 -08003194
kelvin8ec71442015-01-15 16:57:00 -08003195 def getDeviceLinksActiveCount( self, dpid ):
3196 """
Hari Krishnaa43d4e92014-12-19 13:22:40 -08003197 Get the count of all enabled ports on a particular device/switch
kelvin8ec71442015-01-15 16:57:00 -08003198 """
Hari Krishnaa43d4e92014-12-19 13:22:40 -08003199 try:
kelvin-onlab898a6c62015-01-16 14:13:53 -08003200 dpid = str( dpid )
kelvin-onlabd3b64892015-01-20 13:26:24 -08003201 cmdStr = "onos:links " + dpid + " | grep ACTIVE | wc -l"
3202 output = self.sendline( cmdStr )
Jon Halla495f562016-05-16 18:03:26 -07003203 assert output is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08003204 assert "Command not found:" not in output, output
Jon Halle3f39ff2015-01-13 11:50:53 -08003205 if re.search( "No such device", output ):
kelvin-onlab898a6c62015-01-16 14:13:53 -08003206 main.log.error( "Error in getting ports " )
3207 return ( output, "Error " )
Jon Halla495f562016-05-16 18:03:26 -07003208 return output
Jon Hallc6793552016-01-19 14:18:37 -08003209 except AssertionError:
3210 main.log.exception( "" )
3211 return None
Jon Halld4d4b372015-01-28 16:02:41 -08003212 except TypeError:
3213 main.log.exception( self.name + ": Object not as expected" )
3214 return ( output, "Error " )
Hari Krishnaa43d4e92014-12-19 13:22:40 -08003215 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08003216 main.log.error( self.name + ": EOF exception found" )
3217 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003218 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08003219 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08003220 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003221 main.cleanAndExit()
Hari Krishnaa43d4e92014-12-19 13:22:40 -08003222
kelvin8ec71442015-01-15 16:57:00 -08003223 def getAllIntentIds( self ):
3224 """
Hari Krishnaa43d4e92014-12-19 13:22:40 -08003225 Return a list of all Intent IDs
kelvin8ec71442015-01-15 16:57:00 -08003226 """
Hari Krishnaa43d4e92014-12-19 13:22:40 -08003227 try:
kelvin-onlabd3b64892015-01-20 13:26:24 -08003228 cmdStr = "onos:intents | grep id="
3229 output = self.sendline( cmdStr )
Jon Halla495f562016-05-16 18:03:26 -07003230 assert output is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08003231 assert "Command not found:" not in output, output
Jon Halle3f39ff2015-01-13 11:50:53 -08003232 if re.search( "Error", output ):
3233 main.log.error( "Error in getting ports" )
3234 return ( output, "Error" )
Jon Halla495f562016-05-16 18:03:26 -07003235 return output
Jon Hallc6793552016-01-19 14:18:37 -08003236 except AssertionError:
3237 main.log.exception( "" )
3238 return None
Jon Halld4d4b372015-01-28 16:02:41 -08003239 except TypeError:
3240 main.log.exception( self.name + ": Object not as expected" )
3241 return ( output, "Error" )
Hari Krishnaa43d4e92014-12-19 13:22:40 -08003242 except pexpect.EOF:
kelvin8ec71442015-01-15 16:57:00 -08003243 main.log.error( self.name + ": EOF exception found" )
3244 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003245 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08003246 except Exception:
Jon Halld4d4b372015-01-28 16:02:41 -08003247 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003248 main.cleanAndExit()
Jon Halld4d4b372015-01-28 16:02:41 -08003249
Jon Hall73509952015-02-24 16:42:56 -08003250 def intentSummary( self ):
3251 """
Jon Hallefbd9792015-03-05 16:11:36 -08003252 Returns a dictionary containing the current intent states and the count
Jon Hall73509952015-02-24 16:42:56 -08003253 """
3254 try:
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00003255 intents = self.intents( )
Jon Hall08f61bc2015-04-13 16:00:30 -07003256 states = []
Jon Hall5aa168b2015-03-23 14:23:09 -07003257 for intent in json.loads( intents ):
Jon Hall08f61bc2015-04-13 16:00:30 -07003258 states.append( intent.get( 'state', None ) )
3259 out = [ ( i, states.count( i ) ) for i in set( states ) ]
Jon Hall63604932015-02-26 17:09:50 -08003260 main.log.info( dict( out ) )
Jon Hall73509952015-02-24 16:42:56 -08003261 return dict( out )
Jon Hallc6793552016-01-19 14:18:37 -08003262 except ( TypeError, ValueError ):
3263 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, intents ) )
Jon Hall73509952015-02-24 16:42:56 -08003264 return None
3265 except pexpect.EOF:
3266 main.log.error( self.name + ": EOF exception found" )
3267 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003268 main.cleanAndExit()
Jon Hallfebb1c72015-03-05 13:30:09 -08003269 except Exception:
Jon Hall73509952015-02-24 16:42:56 -08003270 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003271 main.cleanAndExit()
Jon Hall63604932015-02-26 17:09:50 -08003272
Jon Hall61282e32015-03-19 11:34:11 -07003273 def leaders( self, jsonFormat=True ):
Jon Hall63604932015-02-26 17:09:50 -08003274 """
3275 Returns the output of the leaders command.
Jon Hall61282e32015-03-19 11:34:11 -07003276 Optional argument:
3277 * jsonFormat - boolean indicating if you want output in json
Jon Hall63604932015-02-26 17:09:50 -08003278 """
Jon Hall63604932015-02-26 17:09:50 -08003279 try:
Jon Hallc6358dd2015-04-10 12:44:28 -07003280 cmdStr = "onos:leaders"
Jon Hall61282e32015-03-19 11:34:11 -07003281 if jsonFormat:
Jon Hallc6358dd2015-04-10 12:44:28 -07003282 cmdStr += " -j"
3283 output = self.sendline( cmdStr )
Jon Halla495f562016-05-16 18:03:26 -07003284 assert output is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08003285 assert "Command not found:" not in output, output
Jon Hallc6358dd2015-04-10 12:44:28 -07003286 return output
Jon Hallc6793552016-01-19 14:18:37 -08003287 except AssertionError:
3288 main.log.exception( "" )
3289 return None
Jon Hall63604932015-02-26 17:09:50 -08003290 except TypeError:
3291 main.log.exception( self.name + ": Object not as expected" )
3292 return None
Hari Krishnaa43d4e92014-12-19 13:22:40 -08003293 except pexpect.EOF:
3294 main.log.error( self.name + ": EOF exception found" )
3295 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003296 main.cleanAndExit()
Jon Hall77ba41c2015-04-06 10:25:40 -07003297 except Exception:
Jon Hall63604932015-02-26 17:09:50 -08003298 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003299 main.cleanAndExit()
Jon Hall63604932015-02-26 17:09:50 -08003300
acsmarsa4a4d1e2015-07-10 16:01:24 -07003301 def leaderCandidates( self, jsonFormat=True ):
3302 """
3303 Returns the output of the leaders -c command.
3304 Optional argument:
3305 * jsonFormat - boolean indicating if you want output in json
3306 """
3307 try:
3308 cmdStr = "onos:leaders -c"
3309 if jsonFormat:
3310 cmdStr += " -j"
3311 output = self.sendline( cmdStr )
Jon Halla495f562016-05-16 18:03:26 -07003312 assert output is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08003313 assert "Command not found:" not in output, output
acsmarsa4a4d1e2015-07-10 16:01:24 -07003314 return output
Jon Hallc6793552016-01-19 14:18:37 -08003315 except AssertionError:
3316 main.log.exception( "" )
3317 return None
acsmarsa4a4d1e2015-07-10 16:01:24 -07003318 except TypeError:
3319 main.log.exception( self.name + ": Object not as expected" )
3320 return None
3321 except pexpect.EOF:
3322 main.log.error( self.name + ": EOF exception found" )
3323 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003324 main.cleanAndExit()
acsmarsa4a4d1e2015-07-10 16:01:24 -07003325 except Exception:
3326 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003327 main.cleanAndExit()
acsmarsa4a4d1e2015-07-10 16:01:24 -07003328
Jon Hallc6793552016-01-19 14:18:37 -08003329 def specificLeaderCandidate( self, topic ):
acsmarsa4a4d1e2015-07-10 16:01:24 -07003330 """
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00003331 Returns a list in format [leader,candidate1,candidate2,...] for a given
acsmarsa4a4d1e2015-07-10 16:01:24 -07003332 topic parameter and an empty list if the topic doesn't exist
3333 If no leader is elected leader in the returned list will be "none"
3334 Returns None if there is a type error processing the json object
3335 """
3336 try:
Jon Hall6e709752016-02-01 13:38:46 -08003337 cmdStr = "onos:leaders -j"
Jon Hallc6793552016-01-19 14:18:37 -08003338 rawOutput = self.sendline( cmdStr )
Jon Halla495f562016-05-16 18:03:26 -07003339 assert rawOutput is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08003340 assert "Command not found:" not in rawOutput, rawOutput
3341 output = json.loads( rawOutput )
acsmarsa4a4d1e2015-07-10 16:01:24 -07003342 results = []
3343 for dict in output:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07003344 if dict[ "topic" ] == topic:
3345 leader = dict[ "leader" ]
3346 candidates = re.split( ", ", dict[ "candidates" ][ 1:-1 ] )
Jon Hallc6793552016-01-19 14:18:37 -08003347 results.append( leader )
3348 results.extend( candidates )
acsmarsa4a4d1e2015-07-10 16:01:24 -07003349 return results
Jon Hallc6793552016-01-19 14:18:37 -08003350 except AssertionError:
3351 main.log.exception( "" )
3352 return None
3353 except ( TypeError, ValueError ):
3354 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawOutput ) )
acsmarsa4a4d1e2015-07-10 16:01:24 -07003355 return None
3356 except pexpect.EOF:
3357 main.log.error( self.name + ": EOF exception found" )
3358 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003359 main.cleanAndExit()
acsmarsa4a4d1e2015-07-10 16:01:24 -07003360 except Exception:
3361 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003362 main.cleanAndExit()
acsmarsa4a4d1e2015-07-10 16:01:24 -07003363
Jon Hall61282e32015-03-19 11:34:11 -07003364 def pendingMap( self, jsonFormat=True ):
Jon Hall63604932015-02-26 17:09:50 -08003365 """
3366 Returns the output of the intent Pending map.
3367 """
Jon Hall63604932015-02-26 17:09:50 -08003368 try:
Jon Hallc6358dd2015-04-10 12:44:28 -07003369 cmdStr = "onos:intents -p"
Jon Hall61282e32015-03-19 11:34:11 -07003370 if jsonFormat:
Jon Hallc6358dd2015-04-10 12:44:28 -07003371 cmdStr += " -j"
3372 output = self.sendline( cmdStr )
Jon Halla495f562016-05-16 18:03:26 -07003373 assert output is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08003374 assert "Command not found:" not in output, output
Jon Hallc6358dd2015-04-10 12:44:28 -07003375 return output
Jon Hallc6793552016-01-19 14:18:37 -08003376 except AssertionError:
3377 main.log.exception( "" )
3378 return None
Jon Hall63604932015-02-26 17:09:50 -08003379 except TypeError:
3380 main.log.exception( self.name + ": Object not as expected" )
3381 return None
3382 except pexpect.EOF:
3383 main.log.error( self.name + ": EOF exception found" )
3384 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003385 main.cleanAndExit()
Jon Hall77ba41c2015-04-06 10:25:40 -07003386 except Exception:
Jon Hall63604932015-02-26 17:09:50 -08003387 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003388 main.cleanAndExit()
Jon Hall63604932015-02-26 17:09:50 -08003389
Jon Hall2c8959e2016-12-16 12:17:34 -08003390 def partitions( self, candidates=False, jsonFormat=True ):
Jon Hall63604932015-02-26 17:09:50 -08003391 """
3392 Returns the output of the raft partitions command for ONOS.
3393 """
Jon Hall61282e32015-03-19 11:34:11 -07003394 # Sample JSON
3395 # {
3396 # "leader": "tcp://10.128.30.11:7238",
3397 # "members": [
3398 # "tcp://10.128.30.11:7238",
3399 # "tcp://10.128.30.17:7238",
3400 # "tcp://10.128.30.13:7238",
3401 # ],
3402 # "name": "p1",
3403 # "term": 3
3404 # },
Jon Hall63604932015-02-26 17:09:50 -08003405 try:
Jon Hallc6358dd2015-04-10 12:44:28 -07003406 cmdStr = "onos:partitions"
Jon Hall2c8959e2016-12-16 12:17:34 -08003407 if candidates:
3408 cmdStr += " -c"
Jon Hall61282e32015-03-19 11:34:11 -07003409 if jsonFormat:
Jon Hallc6358dd2015-04-10 12:44:28 -07003410 cmdStr += " -j"
3411 output = self.sendline( cmdStr )
Jon Halla495f562016-05-16 18:03:26 -07003412 assert output is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08003413 assert "Command not found:" not in output, output
Jon Hallc6358dd2015-04-10 12:44:28 -07003414 return output
Jon Hallc6793552016-01-19 14:18:37 -08003415 except AssertionError:
3416 main.log.exception( "" )
3417 return None
Jon Hall63604932015-02-26 17:09:50 -08003418 except TypeError:
3419 main.log.exception( self.name + ": Object not as expected" )
3420 return None
3421 except pexpect.EOF:
3422 main.log.error( self.name + ": EOF exception found" )
3423 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003424 main.cleanAndExit()
Jon Hall77ba41c2015-04-06 10:25:40 -07003425 except Exception:
Jon Hall63604932015-02-26 17:09:50 -08003426 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003427 main.cleanAndExit()
Jon Hall63604932015-02-26 17:09:50 -08003428
Jon Halle9f909e2016-09-23 10:43:12 -07003429 def apps( self, summary=False, active=False, jsonFormat=True ):
Jon Hallbe379602015-03-24 13:39:32 -07003430 """
3431 Returns the output of the apps command for ONOS. This command lists
3432 information about installed ONOS applications
3433 """
3434 # Sample JSON object
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00003435 # [{"name":"org.onosproject.openflow","id":0,"version":"1.2.0",
Jon Hallbe379602015-03-24 13:39:32 -07003436 # "description":"ONOS OpenFlow protocol southbound providers",
3437 # "origin":"ON.Lab","permissions":"[]","featuresRepo":"",
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00003438 # "features":"[onos-openflow]","state":"ACTIVE"}]
Jon Hallbe379602015-03-24 13:39:32 -07003439 try:
Jon Hallc6358dd2015-04-10 12:44:28 -07003440 cmdStr = "onos:apps"
Jon Halle9f909e2016-09-23 10:43:12 -07003441 if summary:
3442 cmdStr += " -s"
3443 if active:
3444 cmdStr += " -a"
Jon Hallbe379602015-03-24 13:39:32 -07003445 if jsonFormat:
Jon Hallc6358dd2015-04-10 12:44:28 -07003446 cmdStr += " -j"
3447 output = self.sendline( cmdStr )
Jon Halla495f562016-05-16 18:03:26 -07003448 assert output is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08003449 assert "Command not found:" not in output, output
3450 assert "Error executing command" not in output, output
Jon Hallc6358dd2015-04-10 12:44:28 -07003451 return output
Jon Hallbe379602015-03-24 13:39:32 -07003452 # FIXME: look at specific exceptions/Errors
3453 except AssertionError:
Jon Hallc6793552016-01-19 14:18:37 -08003454 main.log.exception( "Error in processing onos:app command." )
Jon Hallbe379602015-03-24 13:39:32 -07003455 return None
3456 except TypeError:
3457 main.log.exception( self.name + ": Object not as expected" )
3458 return None
3459 except pexpect.EOF:
3460 main.log.error( self.name + ": EOF exception found" )
3461 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003462 main.cleanAndExit()
Jon Hall77ba41c2015-04-06 10:25:40 -07003463 except Exception:
Jon Hallbe379602015-03-24 13:39:32 -07003464 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003465 main.cleanAndExit()
Jon Hallbe379602015-03-24 13:39:32 -07003466
Jon Hall146f1522015-03-24 15:33:24 -07003467 def appStatus( self, appName ):
3468 """
3469 Uses the onos:apps cli command to return the status of an application.
3470 Returns:
3471 "ACTIVE" - If app is installed and activated
3472 "INSTALLED" - If app is installed and deactivated
3473 "UNINSTALLED" - If app is not installed
3474 None - on error
3475 """
Jon Hall146f1522015-03-24 15:33:24 -07003476 try:
3477 if not isinstance( appName, types.StringType ):
3478 main.log.error( self.name + ".appStatus(): appName must be" +
3479 " a string" )
3480 return None
3481 output = self.apps( jsonFormat=True )
3482 appsJson = json.loads( output )
3483 state = None
3484 for app in appsJson:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07003485 if appName == app.get( 'name' ):
3486 state = app.get( 'state' )
Jon Hall146f1522015-03-24 15:33:24 -07003487 break
3488 if state == "ACTIVE" or state == "INSTALLED":
3489 return state
3490 elif state is None:
Jon Hall8bafdc02017-09-05 11:36:26 -07003491 main.log.warn( "{} app not found", appName )
Jon Hall146f1522015-03-24 15:33:24 -07003492 return "UNINSTALLED"
3493 elif state:
3494 main.log.error( "Unexpected state from 'onos:apps': " +
3495 str( state ) )
3496 return state
Jon Hallc6793552016-01-19 14:18:37 -08003497 except ( TypeError, ValueError ):
3498 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, output ) )
Jon Hall146f1522015-03-24 15:33:24 -07003499 return None
3500 except pexpect.EOF:
3501 main.log.error( self.name + ": EOF exception found" )
3502 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003503 main.cleanAndExit()
Jon Hall77ba41c2015-04-06 10:25:40 -07003504 except Exception:
Jon Hall146f1522015-03-24 15:33:24 -07003505 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003506 main.cleanAndExit()
Jon Hall146f1522015-03-24 15:33:24 -07003507
Jon Hallbe379602015-03-24 13:39:32 -07003508 def app( self, appName, option ):
3509 """
3510 Interacts with the app command for ONOS. This command manages
3511 application inventory.
3512 """
Jon Hallbe379602015-03-24 13:39:32 -07003513 try:
Jon Hallbd16b922015-03-26 17:53:15 -07003514 # Validate argument types
3515 valid = True
3516 if not isinstance( appName, types.StringType ):
3517 main.log.error( self.name + ".app(): appName must be a " +
3518 "string" )
3519 valid = False
3520 if not isinstance( option, types.StringType ):
3521 main.log.error( self.name + ".app(): option must be a string" )
3522 valid = False
3523 if not valid:
3524 return main.FALSE
3525 # Validate Option
3526 option = option.lower()
3527 # NOTE: Install may become a valid option
3528 if option == "activate":
3529 pass
3530 elif option == "deactivate":
3531 pass
3532 elif option == "uninstall":
3533 pass
3534 else:
3535 # Invalid option
3536 main.log.error( "The ONOS app command argument only takes " +
3537 "the values: (activate|deactivate|uninstall)" +
Jeremy Ronquillo82705492017-10-18 14:19:55 -07003538 "; was given '" + option + "'" )
Jon Hallbd16b922015-03-26 17:53:15 -07003539 return main.FALSE
Jon Hall146f1522015-03-24 15:33:24 -07003540 cmdStr = "onos:app " + option + " " + appName
Jon Hallbe379602015-03-24 13:39:32 -07003541 output = self.sendline( cmdStr )
You Wangb5a55f72017-03-03 12:51:05 -08003542 assert output is not None, "Error in sendline"
3543 assert "Command not found:" not in output, output
Jon Hallbe379602015-03-24 13:39:32 -07003544 if "Error executing command" in output:
3545 main.log.error( "Error in processing onos:app command: " +
3546 str( output ) )
Jon Hall146f1522015-03-24 15:33:24 -07003547 return main.FALSE
Jon Hallbe379602015-03-24 13:39:32 -07003548 elif "No such application" in output:
3549 main.log.error( "The application '" + appName +
3550 "' is not installed in ONOS" )
Jon Hall146f1522015-03-24 15:33:24 -07003551 return main.FALSE
3552 elif "Command not found:" in output:
3553 main.log.error( "Error in processing onos:app command: " +
3554 str( output ) )
3555 return main.FALSE
Jon Hallbd16b922015-03-26 17:53:15 -07003556 elif "Unsupported command:" in output:
3557 main.log.error( "Incorrect command given to 'app': " +
3558 str( output ) )
Jon Hallbe379602015-03-24 13:39:32 -07003559 # NOTE: we may need to add more checks here
Jon Hallbd16b922015-03-26 17:53:15 -07003560 # else: Command was successful
Jon Hall08f61bc2015-04-13 16:00:30 -07003561 # main.log.debug( "app response: " + repr( output ) )
Jon Hallbe379602015-03-24 13:39:32 -07003562 return main.TRUE
You Wangb5a55f72017-03-03 12:51:05 -08003563 except AssertionError:
3564 main.log.exception( self.name + ": AssertionError exception found" )
3565 return main.ERROR
Jon Hallbe379602015-03-24 13:39:32 -07003566 except TypeError:
3567 main.log.exception( self.name + ": Object not as expected" )
3568 return main.ERROR
3569 except pexpect.EOF:
3570 main.log.error( self.name + ": EOF exception found" )
3571 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003572 main.cleanAndExit()
Jon Hall77ba41c2015-04-06 10:25:40 -07003573 except Exception:
Jon Hallbe379602015-03-24 13:39:32 -07003574 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003575 main.cleanAndExit()
Jon Hall146f1522015-03-24 15:33:24 -07003576
Jon Hallbd16b922015-03-26 17:53:15 -07003577 def activateApp( self, appName, check=True ):
Jon Hall146f1522015-03-24 15:33:24 -07003578 """
3579 Activate an app that is already installed in ONOS
Jon Hallbd16b922015-03-26 17:53:15 -07003580 appName is the hierarchical app name, not the feature name
3581 If check is True, method will check the status of the app after the
3582 command is issued
Jon Hall146f1522015-03-24 15:33:24 -07003583 Returns main.TRUE if the command was successfully sent
3584 main.FALSE if the cli responded with an error or given
3585 incorrect input
3586 """
3587 try:
3588 if not isinstance( appName, types.StringType ):
3589 main.log.error( self.name + ".activateApp(): appName must be" +
3590 " a string" )
3591 return main.FALSE
3592 status = self.appStatus( appName )
3593 if status == "INSTALLED":
3594 response = self.app( appName, "activate" )
Jon Hallbd16b922015-03-26 17:53:15 -07003595 if check and response == main.TRUE:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07003596 for i in range( 10 ): # try 10 times then give up
Jon Hallbd16b922015-03-26 17:53:15 -07003597 status = self.appStatus( appName )
3598 if status == "ACTIVE":
3599 return main.TRUE
3600 else:
Jon Hall050e1bd2015-03-30 13:33:02 -07003601 main.log.debug( "The state of application " +
3602 appName + " is " + status )
Jon Hallbd16b922015-03-26 17:53:15 -07003603 time.sleep( 1 )
3604 return main.FALSE
3605 else: # not 'check' or command didn't succeed
3606 return response
Jon Hall146f1522015-03-24 15:33:24 -07003607 elif status == "ACTIVE":
3608 return main.TRUE
3609 elif status == "UNINSTALLED":
3610 main.log.error( self.name + ": Tried to activate the " +
3611 "application '" + appName + "' which is not " +
3612 "installed." )
3613 else:
3614 main.log.error( "Unexpected return value from appStatus: " +
3615 str( status ) )
3616 return main.ERROR
3617 except TypeError:
3618 main.log.exception( self.name + ": Object not as expected" )
3619 return main.ERROR
3620 except pexpect.EOF:
3621 main.log.error( self.name + ": EOF exception found" )
3622 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003623 main.cleanAndExit()
Jon Hall77ba41c2015-04-06 10:25:40 -07003624 except Exception:
Jon Hall146f1522015-03-24 15:33:24 -07003625 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003626 main.cleanAndExit()
Jon Hall146f1522015-03-24 15:33:24 -07003627
Jon Hallbd16b922015-03-26 17:53:15 -07003628 def deactivateApp( self, appName, check=True ):
Jon Hall146f1522015-03-24 15:33:24 -07003629 """
3630 Deactivate an app that is already activated in ONOS
Jon Hallbd16b922015-03-26 17:53:15 -07003631 appName is the hierarchical app name, not the feature name
3632 If check is True, method will check the status of the app after the
3633 command is issued
Jon Hall146f1522015-03-24 15:33:24 -07003634 Returns main.TRUE if the command was successfully sent
3635 main.FALSE if the cli responded with an error or given
3636 incorrect input
3637 """
3638 try:
3639 if not isinstance( appName, types.StringType ):
3640 main.log.error( self.name + ".deactivateApp(): appName must " +
3641 "be a string" )
3642 return main.FALSE
3643 status = self.appStatus( appName )
3644 if status == "INSTALLED":
3645 return main.TRUE
3646 elif status == "ACTIVE":
3647 response = self.app( appName, "deactivate" )
Jon Hallbd16b922015-03-26 17:53:15 -07003648 if check and response == main.TRUE:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07003649 for i in range( 10 ): # try 10 times then give up
Jon Hallbd16b922015-03-26 17:53:15 -07003650 status = self.appStatus( appName )
3651 if status == "INSTALLED":
3652 return main.TRUE
3653 else:
3654 time.sleep( 1 )
3655 return main.FALSE
3656 else: # not check or command didn't succeed
3657 return response
Jon Hall146f1522015-03-24 15:33:24 -07003658 elif status == "UNINSTALLED":
3659 main.log.warn( self.name + ": Tried to deactivate the " +
3660 "application '" + appName + "' which is not " +
3661 "installed." )
3662 return main.TRUE
3663 else:
3664 main.log.error( "Unexpected return value from appStatus: " +
3665 str( status ) )
3666 return main.ERROR
3667 except TypeError:
3668 main.log.exception( self.name + ": Object not as expected" )
3669 return main.ERROR
3670 except pexpect.EOF:
3671 main.log.error( self.name + ": EOF exception found" )
3672 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003673 main.cleanAndExit()
Jon Hall77ba41c2015-04-06 10:25:40 -07003674 except Exception:
Jon Hall146f1522015-03-24 15:33:24 -07003675 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003676 main.cleanAndExit()
Jon Hall146f1522015-03-24 15:33:24 -07003677
Jon Hallbd16b922015-03-26 17:53:15 -07003678 def uninstallApp( self, appName, check=True ):
Jon Hall146f1522015-03-24 15:33:24 -07003679 """
3680 Uninstall an app that is already installed in ONOS
Jon Hallbd16b922015-03-26 17:53:15 -07003681 appName is the hierarchical app name, not the feature name
3682 If check is True, method will check the status of the app after the
3683 command is issued
Jon Hall146f1522015-03-24 15:33:24 -07003684 Returns main.TRUE if the command was successfully sent
3685 main.FALSE if the cli responded with an error or given
3686 incorrect input
3687 """
3688 # TODO: check with Thomas about the state machine for apps
3689 try:
3690 if not isinstance( appName, types.StringType ):
3691 main.log.error( self.name + ".uninstallApp(): appName must " +
3692 "be a string" )
3693 return main.FALSE
3694 status = self.appStatus( appName )
3695 if status == "INSTALLED":
3696 response = self.app( appName, "uninstall" )
Jon Hallbd16b922015-03-26 17:53:15 -07003697 if check and response == main.TRUE:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07003698 for i in range( 10 ): # try 10 times then give up
Jon Hallbd16b922015-03-26 17:53:15 -07003699 status = self.appStatus( appName )
3700 if status == "UNINSTALLED":
3701 return main.TRUE
3702 else:
3703 time.sleep( 1 )
3704 return main.FALSE
3705 else: # not check or command didn't succeed
3706 return response
Jon Hall146f1522015-03-24 15:33:24 -07003707 elif status == "ACTIVE":
3708 main.log.warn( self.name + ": Tried to uninstall the " +
3709 "application '" + appName + "' which is " +
3710 "currently active." )
3711 response = self.app( appName, "uninstall" )
Jon Hallbd16b922015-03-26 17:53:15 -07003712 if check and response == main.TRUE:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07003713 for i in range( 10 ): # try 10 times then give up
Jon Hallbd16b922015-03-26 17:53:15 -07003714 status = self.appStatus( appName )
3715 if status == "UNINSTALLED":
3716 return main.TRUE
3717 else:
3718 time.sleep( 1 )
3719 return main.FALSE
3720 else: # not check or command didn't succeed
3721 return response
Jon Hall146f1522015-03-24 15:33:24 -07003722 elif status == "UNINSTALLED":
3723 return main.TRUE
3724 else:
3725 main.log.error( "Unexpected return value from appStatus: " +
3726 str( status ) )
3727 return main.ERROR
3728 except TypeError:
3729 main.log.exception( self.name + ": Object not as expected" )
3730 return main.ERROR
3731 except pexpect.EOF:
3732 main.log.error( self.name + ": EOF exception found" )
3733 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003734 main.cleanAndExit()
Jon Hall77ba41c2015-04-06 10:25:40 -07003735 except Exception:
Jon Hall146f1522015-03-24 15:33:24 -07003736 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003737 main.cleanAndExit()
Jon Hallbd16b922015-03-26 17:53:15 -07003738
3739 def appIDs( self, jsonFormat=True ):
3740 """
3741 Show the mappings between app id and app names given by the 'app-ids'
3742 cli command
3743 """
3744 try:
3745 cmdStr = "app-ids"
3746 if jsonFormat:
3747 cmdStr += " -j"
Jon Hallc6358dd2015-04-10 12:44:28 -07003748 output = self.sendline( cmdStr )
Jon Halla495f562016-05-16 18:03:26 -07003749 assert output is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08003750 assert "Command not found:" not in output, output
3751 assert "Error executing command" not in output, output
Jon Hallc6358dd2015-04-10 12:44:28 -07003752 return output
Jon Hallbd16b922015-03-26 17:53:15 -07003753 except AssertionError:
Jon Hallc6793552016-01-19 14:18:37 -08003754 main.log.exception( "Error in processing onos:app-ids command." )
Jon Hallbd16b922015-03-26 17:53:15 -07003755 return None
3756 except TypeError:
3757 main.log.exception( self.name + ": Object not as expected" )
3758 return None
3759 except pexpect.EOF:
3760 main.log.error( self.name + ": EOF exception found" )
3761 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003762 main.cleanAndExit()
Jon Hall77ba41c2015-04-06 10:25:40 -07003763 except Exception:
Jon Hallbd16b922015-03-26 17:53:15 -07003764 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003765 main.cleanAndExit()
Jon Hallbd16b922015-03-26 17:53:15 -07003766
3767 def appToIDCheck( self ):
3768 """
3769 This method will check that each application's ID listed in 'apps' is
3770 the same as the ID listed in 'app-ids'. The check will also check that
3771 there are no duplicate IDs issued. Note that an app ID should be
3772 a globaly unique numerical identifier for app/app-like features. Once
3773 an ID is registered, the ID is never freed up so that if an app is
3774 reinstalled it will have the same ID.
3775
3776 Returns: main.TRUE if the check passes and
3777 main.FALSE if the check fails or
3778 main.ERROR if there is some error in processing the test
3779 """
3780 try:
Jon Hall390696c2015-05-05 17:13:41 -07003781 bail = False
Jon Hallc6793552016-01-19 14:18:37 -08003782 rawJson = self.appIDs( jsonFormat=True )
3783 if rawJson:
3784 ids = json.loads( rawJson )
Jon Hall390696c2015-05-05 17:13:41 -07003785 else:
Jon Hallc6793552016-01-19 14:18:37 -08003786 main.log.error( "app-ids returned nothing:" + repr( rawJson ) )
Jon Hall390696c2015-05-05 17:13:41 -07003787 bail = True
Jon Hallc6793552016-01-19 14:18:37 -08003788 rawJson = self.apps( jsonFormat=True )
3789 if rawJson:
3790 apps = json.loads( rawJson )
Jon Hall390696c2015-05-05 17:13:41 -07003791 else:
Jon Hallc6793552016-01-19 14:18:37 -08003792 main.log.error( "apps returned nothing:" + repr( rawJson ) )
Jon Hall390696c2015-05-05 17:13:41 -07003793 bail = True
3794 if bail:
3795 return main.FALSE
Jon Hallbd16b922015-03-26 17:53:15 -07003796 result = main.TRUE
3797 for app in apps:
3798 appID = app.get( 'id' )
3799 if appID is None:
3800 main.log.error( "Error parsing app: " + str( app ) )
3801 result = main.FALSE
3802 appName = app.get( 'name' )
3803 if appName is None:
3804 main.log.error( "Error parsing app: " + str( app ) )
3805 result = main.FALSE
3806 # get the entry in ids that has the same appID
Jon Hall390696c2015-05-05 17:13:41 -07003807 current = filter( lambda item: item[ 'id' ] == appID, ids )
Jon Hallbd16b922015-03-26 17:53:15 -07003808 if not current: # if ids doesn't have this id
3809 result = main.FALSE
3810 main.log.error( "'app-ids' does not have the ID for " +
3811 str( appName ) + " that apps does." )
Jon Hallb9d381e2018-02-05 12:02:10 -08003812 main.log.debug( "apps command returned: " + str( app ) +
3813 "; app-ids has: " + str( ids ) )
Jon Hallbd16b922015-03-26 17:53:15 -07003814 elif len( current ) > 1:
3815 # there is more than one app with this ID
3816 result = main.FALSE
3817 # We will log this later in the method
Jeremy Ronquillo82705492017-10-18 14:19:55 -07003818 elif not current[ 0 ][ 'name' ] == appName:
3819 currentName = current[ 0 ][ 'name' ]
Jon Hallbd16b922015-03-26 17:53:15 -07003820 result = main.FALSE
3821 main.log.error( "'app-ids' has " + str( currentName ) +
3822 " registered under id:" + str( appID ) +
3823 " but 'apps' has " + str( appName ) )
3824 else:
3825 pass # id and name match!
3826 # now make sure that app-ids has no duplicates
3827 idsList = []
3828 namesList = []
3829 for item in ids:
3830 idsList.append( item[ 'id' ] )
3831 namesList.append( item[ 'name' ] )
3832 if len( idsList ) != len( set( idsList ) ) or\
3833 len( namesList ) != len( set( namesList ) ):
Jeremy Ronquillo82705492017-10-18 14:19:55 -07003834 main.log.error( "'app-ids' has some duplicate entries: \n"
3835 + json.dumps( ids,
3836 sort_keys=True,
3837 indent=4,
3838 separators=( ',', ': ' ) ) )
3839 result = main.FALSE
Jon Hallbd16b922015-03-26 17:53:15 -07003840 return result
Jon Hallc6793552016-01-19 14:18:37 -08003841 except ( TypeError, ValueError ):
3842 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, rawJson ) )
Jon Hallbd16b922015-03-26 17:53:15 -07003843 return main.ERROR
3844 except pexpect.EOF:
3845 main.log.error( self.name + ": EOF exception found" )
3846 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003847 main.cleanAndExit()
Jon Hall77ba41c2015-04-06 10:25:40 -07003848 except Exception:
Jon Hallbd16b922015-03-26 17:53:15 -07003849 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003850 main.cleanAndExit()
Jon Hallbd16b922015-03-26 17:53:15 -07003851
Jon Hallfb760a02015-04-13 15:35:03 -07003852 def getCfg( self, component=None, propName=None, short=False,
3853 jsonFormat=True ):
3854 """
3855 Get configuration settings from onos cli
3856 Optional arguments:
3857 component - Optionally only list configurations for a specific
3858 component. If None, all components with configurations
3859 are displayed. Case Sensitive string.
3860 propName - If component is specified, propName option will show
3861 only this specific configuration from that component.
3862 Case Sensitive string.
3863 jsonFormat - Returns output as json. Note that this will override
3864 the short option
3865 short - Short, less verbose, version of configurations.
3866 This is overridden by the json option
3867 returns:
3868 Output from cli as a string or None on error
3869 """
3870 try:
3871 baseStr = "cfg"
3872 cmdStr = " get"
3873 componentStr = ""
3874 if component:
3875 componentStr += " " + component
3876 if propName:
3877 componentStr += " " + propName
3878 if jsonFormat:
3879 baseStr += " -j"
3880 elif short:
3881 baseStr += " -s"
3882 output = self.sendline( baseStr + cmdStr + componentStr )
Jon Halla495f562016-05-16 18:03:26 -07003883 assert output is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08003884 assert "Command not found:" not in output, output
3885 assert "Error executing command" not in output, output
Jon Hallfb760a02015-04-13 15:35:03 -07003886 return output
3887 except AssertionError:
Jon Hallc6793552016-01-19 14:18:37 -08003888 main.log.exception( "Error in processing 'cfg get' command." )
Jon Hallfb760a02015-04-13 15:35:03 -07003889 return None
3890 except TypeError:
3891 main.log.exception( self.name + ": Object not as expected" )
3892 return None
3893 except pexpect.EOF:
3894 main.log.error( self.name + ": EOF exception found" )
3895 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003896 main.cleanAndExit()
Jon Hallfb760a02015-04-13 15:35:03 -07003897 except Exception:
3898 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003899 main.cleanAndExit()
Jon Hallfb760a02015-04-13 15:35:03 -07003900
3901 def setCfg( self, component, propName, value=None, check=True ):
3902 """
3903 Set/Unset configuration settings from ONOS cli
Jon Hall390696c2015-05-05 17:13:41 -07003904 Required arguments:
Jon Hallfb760a02015-04-13 15:35:03 -07003905 component - The case sensitive name of the component whose
3906 property is to be set
3907 propName - The case sensitive name of the property to be set/unset
Jon Hall390696c2015-05-05 17:13:41 -07003908 Optional arguments:
Jon Hallfb760a02015-04-13 15:35:03 -07003909 value - The value to set the property to. If None, will unset the
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00003910 property and revert it to it's default value(if applicable)
Jon Hallfb760a02015-04-13 15:35:03 -07003911 check - Boolean, Check whether the option was successfully set this
3912 only applies when a value is given.
3913 returns:
3914 main.TRUE on success or main.FALSE on failure. If check is False,
3915 will return main.TRUE unless there is an error
3916 """
3917 try:
3918 baseStr = "cfg"
3919 cmdStr = " set " + str( component ) + " " + str( propName )
3920 if value is not None:
3921 cmdStr += " " + str( value )
3922 output = self.sendline( baseStr + cmdStr )
Jon Halla495f562016-05-16 18:03:26 -07003923 assert output is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08003924 assert "Command not found:" not in output, output
3925 assert "Error executing command" not in output, output
Jon Hallfb760a02015-04-13 15:35:03 -07003926 if value and check:
3927 results = self.getCfg( component=str( component ),
3928 propName=str( propName ),
3929 jsonFormat=True )
3930 # Check if current value is what we just set
3931 try:
3932 jsonOutput = json.loads( results )
3933 current = jsonOutput[ 'value' ]
Jon Hallc6793552016-01-19 14:18:37 -08003934 except ( TypeError, ValueError ):
Jon Hallfb760a02015-04-13 15:35:03 -07003935 main.log.exception( "Error parsing cfg output" )
3936 main.log.error( "output:" + repr( results ) )
3937 return main.FALSE
3938 if current == str( value ):
3939 return main.TRUE
3940 return main.FALSE
3941 return main.TRUE
3942 except AssertionError:
Jon Hallc6793552016-01-19 14:18:37 -08003943 main.log.exception( "Error in processing 'cfg set' command." )
Jon Hallfb760a02015-04-13 15:35:03 -07003944 return main.FALSE
Jon Hallc6793552016-01-19 14:18:37 -08003945 except ( TypeError, ValueError ):
3946 main.log.exception( "{}: Object not as expected: {!r}".format( self.name, results ) )
Jon Hallfb760a02015-04-13 15:35:03 -07003947 return main.FALSE
3948 except pexpect.EOF:
3949 main.log.error( self.name + ": EOF exception found" )
3950 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07003951 main.cleanAndExit()
Jon Hallfb760a02015-04-13 15:35:03 -07003952 except Exception:
3953 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07003954 main.cleanAndExit()
Jon Hallfb760a02015-04-13 15:35:03 -07003955
Jon Hall7a6ebfd2017-03-13 10:58:58 -07003956 def distPrimitivesSend( self, cmd ):
3957 """
3958 Function to handle sending cli commands for the distributed primitives test app
3959
3960 This command will catch some exceptions and retry the command on some
3961 specific store exceptions.
3962
3963 Required arguments:
3964 cmd - The command to send to the cli
3965 returns:
3966 string containing the cli output
3967 None on Error
3968 """
3969 try:
3970 output = self.sendline( cmd )
3971 try:
3972 assert output is not None, "Error in sendline"
3973 # TODO: Maybe make this less hardcoded
3974 # ConsistentMap Exceptions
3975 assert "org.onosproject.store.service" not in output
3976 # Node not leader
3977 assert "java.lang.IllegalStateException" not in output
3978 except AssertionError:
3979 main.log.error( "Error in processing '" + cmd + "' " +
3980 "command: " + str( output ) )
3981 retryTime = 30 # Conservative time, given by Madan
3982 main.log.info( "Waiting " + str( retryTime ) +
3983 "seconds before retrying." )
3984 time.sleep( retryTime ) # Due to change in mastership
3985 output = self.sendline( cmd )
3986 assert output is not None, "Error in sendline"
3987 assert "Command not found:" not in output, output
3988 assert "Error executing command" not in output, output
3989 main.log.info( self.name + ": " + output )
3990 return output
3991 except AssertionError:
3992 main.log.exception( "Error in processing '" + cmd + "' command." )
3993 return None
3994 except TypeError:
3995 main.log.exception( self.name + ": Object not as expected" )
3996 return None
3997 except pexpect.EOF:
3998 main.log.error( self.name + ": EOF exception found" )
3999 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07004000 main.cleanAndExit()
Jon Hall7a6ebfd2017-03-13 10:58:58 -07004001 except Exception:
4002 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004003 main.cleanAndExit()
Jon Hall7a6ebfd2017-03-13 10:58:58 -07004004
Jon Hall390696c2015-05-05 17:13:41 -07004005 def setTestAdd( self, setName, values ):
4006 """
4007 CLI command to add elements to a distributed set.
4008 Arguments:
4009 setName - The name of the set to add to.
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004010 values - The value(s) to add to the set, space seperated.
Jon Hall390696c2015-05-05 17:13:41 -07004011 Example usages:
4012 setTestAdd( "set1", "a b c" )
4013 setTestAdd( "set2", "1" )
4014 returns:
4015 main.TRUE on success OR
4016 main.FALSE if elements were already in the set OR
4017 main.ERROR on error
4018 """
4019 try:
4020 cmdStr = "set-test-add " + str( setName ) + " " + str( values )
Jon Hall7a6ebfd2017-03-13 10:58:58 -07004021 output = self.distPrimitivesSend( cmdStr )
Jon Hall390696c2015-05-05 17:13:41 -07004022 positiveMatch = "\[(.*)\] was added to the set " + str( setName )
4023 negativeMatch = "\[(.*)\] was already in set " + str( setName )
Jeremy Ronquillo82705492017-10-18 14:19:55 -07004024 if re.search( positiveMatch, output ):
Jon Hall390696c2015-05-05 17:13:41 -07004025 return main.TRUE
Jeremy Ronquillo82705492017-10-18 14:19:55 -07004026 elif re.search( negativeMatch, output ):
Jon Hall390696c2015-05-05 17:13:41 -07004027 return main.FALSE
4028 else:
4029 main.log.error( self.name + ": setTestAdd did not" +
4030 " match expected output" )
Jon Hall390696c2015-05-05 17:13:41 -07004031 main.log.debug( self.name + " actual: " + repr( output ) )
4032 return main.ERROR
Jon Hall390696c2015-05-05 17:13:41 -07004033 except TypeError:
4034 main.log.exception( self.name + ": Object not as expected" )
4035 return main.ERROR
Jon Hall390696c2015-05-05 17:13:41 -07004036 except Exception:
4037 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004038 main.cleanAndExit()
Jon Hall390696c2015-05-05 17:13:41 -07004039
4040 def setTestRemove( self, setName, values, clear=False, retain=False ):
4041 """
4042 CLI command to remove elements from a distributed set.
4043 Required arguments:
4044 setName - The name of the set to remove from.
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004045 values - The value(s) to remove from the set, space seperated.
Jon Hall390696c2015-05-05 17:13:41 -07004046 Optional arguments:
4047 clear - Clear all elements from the set
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004048 retain - Retain only the given values. (intersection of the
4049 original set and the given set)
Jon Hall390696c2015-05-05 17:13:41 -07004050 returns:
4051 main.TRUE on success OR
4052 main.FALSE if the set was not changed OR
4053 main.ERROR on error
4054 """
4055 try:
4056 cmdStr = "set-test-remove "
4057 if clear:
4058 cmdStr += "-c " + str( setName )
4059 elif retain:
4060 cmdStr += "-r " + str( setName ) + " " + str( values )
4061 else:
4062 cmdStr += str( setName ) + " " + str( values )
Jon Hall7a6ebfd2017-03-13 10:58:58 -07004063 output = self.distPrimitivesSend( cmdStr )
Jon Hall390696c2015-05-05 17:13:41 -07004064 if clear:
4065 pattern = "Set " + str( setName ) + " cleared"
4066 if re.search( pattern, output ):
4067 return main.TRUE
4068 elif retain:
4069 positivePattern = str( setName ) + " was pruned to contain " +\
4070 "only elements of set \[(.*)\]"
4071 negativePattern = str( setName ) + " was not changed by " +\
4072 "retaining only elements of the set " +\
4073 "\[(.*)\]"
4074 if re.search( positivePattern, output ):
4075 return main.TRUE
4076 elif re.search( negativePattern, output ):
4077 return main.FALSE
4078 else:
4079 positivePattern = "\[(.*)\] was removed from the set " +\
4080 str( setName )
4081 if ( len( values.split() ) == 1 ):
4082 negativePattern = "\[(.*)\] was not in set " +\
4083 str( setName )
4084 else:
4085 negativePattern = "No element of \[(.*)\] was in set " +\
4086 str( setName )
4087 if re.search( positivePattern, output ):
4088 return main.TRUE
4089 elif re.search( negativePattern, output ):
4090 return main.FALSE
4091 main.log.error( self.name + ": setTestRemove did not" +
4092 " match expected output" )
4093 main.log.debug( self.name + " expected: " + pattern )
4094 main.log.debug( self.name + " actual: " + repr( output ) )
4095 return main.ERROR
Jon Hall390696c2015-05-05 17:13:41 -07004096 except TypeError:
4097 main.log.exception( self.name + ": Object not as expected" )
4098 return main.ERROR
Jon Hall390696c2015-05-05 17:13:41 -07004099 except Exception:
4100 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004101 main.cleanAndExit()
Jon Hall390696c2015-05-05 17:13:41 -07004102
4103 def setTestGet( self, setName, values="" ):
4104 """
4105 CLI command to get the elements in a distributed set.
4106 Required arguments:
4107 setName - The name of the set to remove from.
4108 Optional arguments:
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004109 values - The value(s) to check if in the set, space seperated.
Jon Hall390696c2015-05-05 17:13:41 -07004110 returns:
4111 main.ERROR on error OR
4112 A list of elements in the set if no optional arguments are
4113 supplied OR
4114 A tuple containing the list then:
4115 main.FALSE if the given values are not in the set OR
4116 main.TRUE if the given values are in the set OR
4117 """
4118 try:
4119 values = str( values ).strip()
4120 setName = str( setName ).strip()
4121 length = len( values.split() )
4122 containsCheck = None
4123 # Patterns to match
4124 setPattern = "\[(.*)\]"
Jon Hall67253832016-12-05 09:47:13 -08004125 pattern = "Items in set " + setName + ":\r\n" + setPattern
Jon Hall390696c2015-05-05 17:13:41 -07004126 containsTrue = "Set " + setName + " contains the value " + values
4127 containsFalse = "Set " + setName + " did not contain the value " +\
4128 values
4129 containsAllTrue = "Set " + setName + " contains the the subset " +\
4130 setPattern
4131 containsAllFalse = "Set " + setName + " did not contain the the" +\
4132 " subset " + setPattern
4133
4134 cmdStr = "set-test-get "
4135 cmdStr += setName + " " + values
Jon Hall7a6ebfd2017-03-13 10:58:58 -07004136 output = self.distPrimitivesSend( cmdStr )
Jon Hall390696c2015-05-05 17:13:41 -07004137 if length == 0:
4138 match = re.search( pattern, output )
4139 else: # if given values
4140 if length == 1: # Contains output
Jon Hall54b994f2016-12-05 10:48:59 -08004141 patternTrue = pattern + "\r\n" + containsTrue
4142 patternFalse = pattern + "\r\n" + containsFalse
Jon Hall390696c2015-05-05 17:13:41 -07004143 else: # ContainsAll output
Jon Hall54b994f2016-12-05 10:48:59 -08004144 patternTrue = pattern + "\r\n" + containsAllTrue
4145 patternFalse = pattern + "\r\n" + containsAllFalse
Jon Hall390696c2015-05-05 17:13:41 -07004146 matchTrue = re.search( patternTrue, output )
4147 matchFalse = re.search( patternFalse, output )
4148 if matchTrue:
4149 containsCheck = main.TRUE
4150 match = matchTrue
4151 elif matchFalse:
4152 containsCheck = main.FALSE
4153 match = matchFalse
4154 else:
Jon Halle0f0b342017-04-18 11:43:47 -07004155 main.log.error( self.name + " setTestGet did not match " +
Jon Hall390696c2015-05-05 17:13:41 -07004156 "expected output" )
4157 main.log.debug( self.name + " expected: " + pattern )
4158 main.log.debug( self.name + " actual: " + repr( output ) )
4159 match = None
4160 if match:
4161 setMatch = match.group( 1 )
4162 if setMatch == '':
4163 setList = []
4164 else:
4165 setList = setMatch.split( ", " )
4166 if length > 0:
4167 return ( setList, containsCheck )
4168 else:
4169 return setList
4170 else: # no match
4171 main.log.error( self.name + ": setTestGet did not" +
4172 " match expected output" )
4173 main.log.debug( self.name + " expected: " + pattern )
4174 main.log.debug( self.name + " actual: " + repr( output ) )
4175 return main.ERROR
Jon Hall390696c2015-05-05 17:13:41 -07004176 except TypeError:
4177 main.log.exception( self.name + ": Object not as expected" )
4178 return main.ERROR
Jon Hall390696c2015-05-05 17:13:41 -07004179 except Exception:
4180 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004181 main.cleanAndExit()
Jon Hall390696c2015-05-05 17:13:41 -07004182
4183 def setTestSize( self, setName ):
4184 """
4185 CLI command to get the elements in a distributed set.
4186 Required arguments:
4187 setName - The name of the set to remove from.
4188 returns:
Jon Hallfeff3082015-05-19 10:23:26 -07004189 The integer value of the size returned or
Jon Hall390696c2015-05-05 17:13:41 -07004190 None on error
4191 """
4192 try:
4193 # TODO: Should this check against the number of elements returned
4194 # and then return true/false based on that?
4195 setName = str( setName ).strip()
4196 # Patterns to match
4197 setPattern = "\[(.*)\]"
Jon Hall67253832016-12-05 09:47:13 -08004198 pattern = "There are (\d+) items in set " + setName + ":\r\n" +\
Jon Hall390696c2015-05-05 17:13:41 -07004199 setPattern
4200 cmdStr = "set-test-get -s "
4201 cmdStr += setName
Jon Hall7a6ebfd2017-03-13 10:58:58 -07004202 output = self.distPrimitivesSend( cmdStr )
Jon Hall390696c2015-05-05 17:13:41 -07004203 match = re.search( pattern, output )
4204 if match:
4205 setSize = int( match.group( 1 ) )
4206 setMatch = match.group( 2 )
4207 if len( setMatch.split() ) == setSize:
4208 main.log.info( "The size returned by " + self.name +
4209 " matches the number of elements in " +
4210 "the returned set" )
4211 else:
4212 main.log.error( "The size returned by " + self.name +
4213 " does not match the number of " +
4214 "elements in the returned set." )
4215 return setSize
4216 else: # no match
4217 main.log.error( self.name + ": setTestGet did not" +
4218 " match expected output" )
4219 main.log.debug( self.name + " expected: " + pattern )
4220 main.log.debug( self.name + " actual: " + repr( output ) )
4221 return None
Jon Hall390696c2015-05-05 17:13:41 -07004222 except TypeError:
4223 main.log.exception( self.name + ": Object not as expected" )
4224 return None
Jon Hall390696c2015-05-05 17:13:41 -07004225 except Exception:
4226 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004227 main.cleanAndExit()
Jon Hall390696c2015-05-05 17:13:41 -07004228
Jon Hall80daded2015-05-27 16:07:00 -07004229 def counters( self, jsonFormat=True ):
Jon Hall390696c2015-05-05 17:13:41 -07004230 """
4231 Command to list the various counters in the system.
4232 returns:
Jon Hall80daded2015-05-27 16:07:00 -07004233 if jsonFormat, a string of the json object returned by the cli
4234 command
4235 if not jsonFormat, the normal string output of the cli command
Jon Hall390696c2015-05-05 17:13:41 -07004236 None on error
4237 """
Jon Hall390696c2015-05-05 17:13:41 -07004238 try:
Jon Hall390696c2015-05-05 17:13:41 -07004239 cmdStr = "counters"
Jon Hall80daded2015-05-27 16:07:00 -07004240 if jsonFormat:
4241 cmdStr += " -j"
Jon Hall390696c2015-05-05 17:13:41 -07004242 output = self.sendline( cmdStr )
Jon Halla495f562016-05-16 18:03:26 -07004243 assert output is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08004244 assert "Command not found:" not in output, output
4245 assert "Error executing command" not in output, output
Jon Hall390696c2015-05-05 17:13:41 -07004246 main.log.info( self.name + ": " + output )
Jon Hall80daded2015-05-27 16:07:00 -07004247 return output
Jon Hall390696c2015-05-05 17:13:41 -07004248 except AssertionError:
Jon Hallc6793552016-01-19 14:18:37 -08004249 main.log.exception( "Error in processing 'counters' command." )
Jon Hall80daded2015-05-27 16:07:00 -07004250 return None
Jon Hall390696c2015-05-05 17:13:41 -07004251 except TypeError:
4252 main.log.exception( self.name + ": Object not as expected" )
Jon Hall80daded2015-05-27 16:07:00 -07004253 return None
Jon Hall390696c2015-05-05 17:13:41 -07004254 except pexpect.EOF:
4255 main.log.error( self.name + ": EOF exception found" )
4256 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07004257 main.cleanAndExit()
Jon Hall390696c2015-05-05 17:13:41 -07004258 except Exception:
4259 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004260 main.cleanAndExit()
Jon Hall390696c2015-05-05 17:13:41 -07004261
Jon Hall935db192016-04-19 00:22:04 -07004262 def counterTestAddAndGet( self, counter, delta=1 ):
Jon Hall390696c2015-05-05 17:13:41 -07004263 """
Jon Halle1a3b752015-07-22 13:02:46 -07004264 CLI command to add a delta to then get a distributed counter.
Jon Hall390696c2015-05-05 17:13:41 -07004265 Required arguments:
4266 counter - The name of the counter to increment.
4267 Optional arguments:
Jon Halle1a3b752015-07-22 13:02:46 -07004268 delta - The long to add to the counter
Jon Hall390696c2015-05-05 17:13:41 -07004269 returns:
4270 integer value of the counter or
4271 None on Error
4272 """
4273 try:
4274 counter = str( counter )
Jon Halle1a3b752015-07-22 13:02:46 -07004275 delta = int( delta )
Jon Hall390696c2015-05-05 17:13:41 -07004276 cmdStr = "counter-test-increment "
Jon Hall390696c2015-05-05 17:13:41 -07004277 cmdStr += counter
Jon Halle1a3b752015-07-22 13:02:46 -07004278 if delta != 1:
4279 cmdStr += " " + str( delta )
Jon Hall7a6ebfd2017-03-13 10:58:58 -07004280 output = self.distPrimitivesSend( cmdStr )
Jon Halle1a3b752015-07-22 13:02:46 -07004281 pattern = counter + " was updated to (-?\d+)"
Jon Hall390696c2015-05-05 17:13:41 -07004282 match = re.search( pattern, output )
4283 if match:
4284 return int( match.group( 1 ) )
4285 else:
Jon Halle1a3b752015-07-22 13:02:46 -07004286 main.log.error( self.name + ": counterTestAddAndGet did not" +
Jon Hall390696c2015-05-05 17:13:41 -07004287 " match expected output." )
4288 main.log.debug( self.name + " expected: " + pattern )
4289 main.log.debug( self.name + " actual: " + repr( output ) )
4290 return None
Jon Hall390696c2015-05-05 17:13:41 -07004291 except TypeError:
4292 main.log.exception( self.name + ": Object not as expected" )
4293 return None
Jon Hall390696c2015-05-05 17:13:41 -07004294 except Exception:
4295 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004296 main.cleanAndExit()
Jon Hall390696c2015-05-05 17:13:41 -07004297
Jon Hall935db192016-04-19 00:22:04 -07004298 def counterTestGetAndAdd( self, counter, delta=1 ):
Jon Halle1a3b752015-07-22 13:02:46 -07004299 """
4300 CLI command to get a distributed counter then add a delta to it.
4301 Required arguments:
4302 counter - The name of the counter to increment.
4303 Optional arguments:
4304 delta - The long to add to the counter
Jon Halle1a3b752015-07-22 13:02:46 -07004305 returns:
4306 integer value of the counter or
4307 None on Error
4308 """
4309 try:
4310 counter = str( counter )
4311 delta = int( delta )
4312 cmdStr = "counter-test-increment -g "
Jon Halle1a3b752015-07-22 13:02:46 -07004313 cmdStr += counter
4314 if delta != 1:
4315 cmdStr += " " + str( delta )
Jon Hall7a6ebfd2017-03-13 10:58:58 -07004316 output = self.distPrimitivesSend( cmdStr )
Jon Halle1a3b752015-07-22 13:02:46 -07004317 pattern = counter + " was updated to (-?\d+)"
4318 match = re.search( pattern, output )
4319 if match:
4320 return int( match.group( 1 ) )
4321 else:
4322 main.log.error( self.name + ": counterTestGetAndAdd did not" +
4323 " match expected output." )
4324 main.log.debug( self.name + " expected: " + pattern )
4325 main.log.debug( self.name + " actual: " + repr( output ) )
4326 return None
Jon Halle1a3b752015-07-22 13:02:46 -07004327 except TypeError:
4328 main.log.exception( self.name + ": Object not as expected" )
4329 return None
Jon Hall7a6ebfd2017-03-13 10:58:58 -07004330 except Exception:
4331 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004332 main.cleanAndExit()
Jon Hall7a6ebfd2017-03-13 10:58:58 -07004333
4334 def valueTestGet( self, valueName ):
4335 """
4336 CLI command to get the value of an atomic value.
4337 Required arguments:
4338 valueName - The name of the value to get.
4339 returns:
4340 string value of the value or
4341 None on Error
4342 """
4343 try:
4344 valueName = str( valueName )
4345 cmdStr = "value-test "
4346 operation = "get"
4347 cmdStr = "value-test {} {}".format( valueName,
4348 operation )
4349 output = self.distPrimitivesSend( cmdStr )
4350 pattern = "(\w+)"
4351 match = re.search( pattern, output )
4352 if match:
4353 return match.group( 1 )
4354 else:
4355 main.log.error( self.name + ": valueTestGet did not" +
4356 " match expected output." )
4357 main.log.debug( self.name + " expected: " + pattern )
4358 main.log.debug( self.name + " actual: " + repr( output ) )
4359 return None
4360 except TypeError:
4361 main.log.exception( self.name + ": Object not as expected" )
4362 return None
4363 except Exception:
4364 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004365 main.cleanAndExit()
Jon Hall7a6ebfd2017-03-13 10:58:58 -07004366
4367 def valueTestSet( self, valueName, newValue ):
4368 """
4369 CLI command to set the value of an atomic value.
4370 Required arguments:
4371 valueName - The name of the value to set.
4372 newValue - The value to assign to the given value.
4373 returns:
4374 main.TRUE on success or
4375 main.ERROR on Error
4376 """
4377 try:
4378 valueName = str( valueName )
4379 newValue = str( newValue )
4380 operation = "set"
4381 cmdStr = "value-test {} {} {}".format( valueName,
4382 operation,
4383 newValue )
4384 output = self.distPrimitivesSend( cmdStr )
4385 if output is not None:
4386 return main.TRUE
4387 else:
4388 return main.ERROR
4389 except TypeError:
4390 main.log.exception( self.name + ": Object not as expected" )
4391 return main.ERROR
4392 except Exception:
4393 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004394 main.cleanAndExit()
Jon Hall7a6ebfd2017-03-13 10:58:58 -07004395
4396 def valueTestCompareAndSet( self, valueName, oldValue, newValue ):
4397 """
4398 CLI command to compareAndSet the value of an atomic value.
4399 Required arguments:
4400 valueName - The name of the value.
4401 oldValue - Compare the current value of the atomic value to this
4402 newValue - If the value equals oldValue, set the value to newValue
4403 returns:
4404 main.TRUE on success or
4405 main.FALSE on failure or
4406 main.ERROR on Error
4407 """
4408 try:
4409 valueName = str( valueName )
4410 oldValue = str( oldValue )
4411 newValue = str( newValue )
4412 operation = "compareAndSet"
4413 cmdStr = "value-test {} {} {} {}".format( valueName,
4414 operation,
4415 oldValue,
4416 newValue )
4417 output = self.distPrimitivesSend( cmdStr )
4418 pattern = "(\w+)"
4419 match = re.search( pattern, output )
4420 if match:
4421 result = match.group( 1 )
4422 if result == "true":
4423 return main.TRUE
4424 elif result == "false":
4425 return main.FALSE
4426 else:
4427 main.log.error( self.name + ": valueTestCompareAndSet did not" +
4428 " match expected output." )
4429 main.log.debug( self.name + " expected: " + pattern )
4430 main.log.debug( self.name + " actual: " + repr( output ) )
4431 return main.ERROR
4432 except TypeError:
4433 main.log.exception( self.name + ": Object not as expected" )
4434 return main.ERROR
4435 except Exception:
4436 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004437 main.cleanAndExit()
Jon Hall7a6ebfd2017-03-13 10:58:58 -07004438
4439 def valueTestGetAndSet( self, valueName, newValue ):
4440 """
4441 CLI command to getAndSet the value of an atomic value.
4442 Required arguments:
4443 valueName - The name of the value to get.
4444 newValue - The value to assign to the given value
4445 returns:
4446 string value of the value or
4447 None on Error
4448 """
4449 try:
4450 valueName = str( valueName )
4451 cmdStr = "value-test "
4452 operation = "getAndSet"
4453 cmdStr += valueName + " " + operation
4454 cmdStr = "value-test {} {} {}".format( valueName,
4455 operation,
4456 newValue )
4457 output = self.distPrimitivesSend( cmdStr )
4458 pattern = "(\w+)"
4459 match = re.search( pattern, output )
4460 if match:
4461 return match.group( 1 )
4462 else:
4463 main.log.error( self.name + ": valueTestGetAndSet did not" +
4464 " match expected output." )
4465 main.log.debug( self.name + " expected: " + pattern )
4466 main.log.debug( self.name + " actual: " + repr( output ) )
4467 return None
4468 except TypeError:
4469 main.log.exception( self.name + ": Object not as expected" )
4470 return None
4471 except Exception:
4472 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004473 main.cleanAndExit()
Jon Hall7a6ebfd2017-03-13 10:58:58 -07004474
4475 def valueTestDestroy( self, valueName ):
4476 """
4477 CLI command to destroy an atomic value.
4478 Required arguments:
4479 valueName - The name of the value to destroy.
4480 returns:
4481 main.TRUE on success or
4482 main.ERROR on Error
4483 """
4484 try:
4485 valueName = str( valueName )
4486 cmdStr = "value-test "
4487 operation = "destroy"
4488 cmdStr += valueName + " " + operation
4489 output = self.distPrimitivesSend( cmdStr )
4490 if output is not None:
4491 return main.TRUE
4492 else:
4493 return main.ERROR
4494 except TypeError:
4495 main.log.exception( self.name + ": Object not as expected" )
4496 return main.ERROR
Jon Halle1a3b752015-07-22 13:02:46 -07004497 except Exception:
4498 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004499 main.cleanAndExit()
Jon Halle1a3b752015-07-22 13:02:46 -07004500
YPZhangfebf7302016-05-24 16:45:56 -07004501 def summary( self, jsonFormat=True, timeout=30 ):
kelvin-onlaba297c4d2015-06-01 13:53:55 -07004502 """
4503 Description: Execute summary command in onos
4504 Returns: json object ( summary -j ), returns main.FALSE if there is
4505 no output
4506
4507 """
4508 try:
4509 cmdStr = "summary"
4510 if jsonFormat:
4511 cmdStr += " -j"
YPZhangfebf7302016-05-24 16:45:56 -07004512 handle = self.sendline( cmdStr, timeout=timeout )
Jon Halla495f562016-05-16 18:03:26 -07004513 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08004514 assert "Command not found:" not in handle, handle
Jon Hall6e709752016-02-01 13:38:46 -08004515 assert "Error:" not in handle, handle
Devin Lima7cfdbd2017-09-29 15:02:22 -07004516 assert "Error executing" not in handle, handle
kelvin-onlaba297c4d2015-06-01 13:53:55 -07004517 if not handle:
4518 main.log.error( self.name + ": There is no output in " +
4519 "summary command" )
4520 return main.FALSE
4521 return handle
Jon Hallc6793552016-01-19 14:18:37 -08004522 except AssertionError:
Jon Hall6e709752016-02-01 13:38:46 -08004523 main.log.exception( "{} Error in summary output:".format( self.name ) )
Jon Hallc6793552016-01-19 14:18:37 -08004524 return None
kelvin-onlaba297c4d2015-06-01 13:53:55 -07004525 except TypeError:
4526 main.log.exception( self.name + ": Object not as expected" )
4527 return None
4528 except pexpect.EOF:
4529 main.log.error( self.name + ": EOF exception found" )
4530 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07004531 main.cleanAndExit()
kelvin-onlaba297c4d2015-06-01 13:53:55 -07004532 except Exception:
4533 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004534 main.cleanAndExit()
Jon Hall2a5002c2015-08-21 16:49:11 -07004535
Jon Hall935db192016-04-19 00:22:04 -07004536 def transactionalMapGet( self, keyName ):
Jon Hall2a5002c2015-08-21 16:49:11 -07004537 """
4538 CLI command to get the value of a key in a consistent map using
4539 transactions. This a test function and can only get keys from the
4540 test map hard coded into the cli command
4541 Required arguments:
4542 keyName - The name of the key to get
Jon Hall2a5002c2015-08-21 16:49:11 -07004543 returns:
4544 The string value of the key or
4545 None on Error
4546 """
4547 try:
4548 keyName = str( keyName )
4549 cmdStr = "transactional-map-test-get "
Jon Hall2a5002c2015-08-21 16:49:11 -07004550 cmdStr += keyName
Jon Hall7a6ebfd2017-03-13 10:58:58 -07004551 output = self.distPrimitivesSend( cmdStr )
Jon Hall2a5002c2015-08-21 16:49:11 -07004552 pattern = "Key-value pair \(" + keyName + ", (?P<value>.+)\) found."
4553 if "Key " + keyName + " not found." in output:
Jon Hall9bfadd22016-05-11 14:48:07 -07004554 main.log.warn( output )
Jon Hall2a5002c2015-08-21 16:49:11 -07004555 return None
4556 else:
4557 match = re.search( pattern, output )
4558 if match:
4559 return match.groupdict()[ 'value' ]
4560 else:
4561 main.log.error( self.name + ": transactionlMapGet did not" +
4562 " match expected output." )
4563 main.log.debug( self.name + " expected: " + pattern )
4564 main.log.debug( self.name + " actual: " + repr( output ) )
4565 return None
4566 except TypeError:
4567 main.log.exception( self.name + ": Object not as expected" )
4568 return None
Jon Hall2a5002c2015-08-21 16:49:11 -07004569 except Exception:
4570 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004571 main.cleanAndExit()
Jon Hall2a5002c2015-08-21 16:49:11 -07004572
Jon Hall935db192016-04-19 00:22:04 -07004573 def transactionalMapPut( self, numKeys, value ):
Jon Hall2a5002c2015-08-21 16:49:11 -07004574 """
4575 CLI command to put a value into 'numKeys' number of keys in a
4576 consistent map using transactions. This a test function and can only
4577 put into keys named 'Key#' of the test map hard coded into the cli command
4578 Required arguments:
4579 numKeys - Number of keys to add the value to
4580 value - The string value to put into the keys
Jon Hall2a5002c2015-08-21 16:49:11 -07004581 returns:
4582 A dictionary whose keys are the name of the keys put into the map
4583 and the values of the keys are dictionaries whose key-values are
4584 'value': value put into map and optionaly
4585 'oldValue': Previous value in the key or
4586 None on Error
4587
4588 Example output
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004589 { 'Key1': {'oldValue': 'oldTestValue', 'value': 'Testing'},
4590 'Key2': {'value': 'Testing'} }
Jon Hall2a5002c2015-08-21 16:49:11 -07004591 """
4592 try:
4593 numKeys = str( numKeys )
4594 value = str( value )
4595 cmdStr = "transactional-map-test-put "
Jon Hall2a5002c2015-08-21 16:49:11 -07004596 cmdStr += numKeys + " " + value
Jon Hall7a6ebfd2017-03-13 10:58:58 -07004597 output = self.distPrimitivesSend( cmdStr )
Jon Hall2a5002c2015-08-21 16:49:11 -07004598 newPattern = 'Created Key (?P<key>(\w)+) with value (?P<value>(.)+)\.'
4599 updatedPattern = "Put (?P<value>(.)+) into key (?P<key>(\w)+)\. The old value was (?P<oldValue>(.)+)\."
4600 results = {}
4601 for line in output.splitlines():
4602 new = re.search( newPattern, line )
4603 updated = re.search( updatedPattern, line )
4604 if new:
4605 results[ new.groupdict()[ 'key' ] ] = { 'value': new.groupdict()[ 'value' ] }
4606 elif updated:
4607 results[ updated.groupdict()[ 'key' ] ] = { 'value': updated.groupdict()[ 'value' ],
Jon Hallc6793552016-01-19 14:18:37 -08004608 'oldValue': updated.groupdict()[ 'oldValue' ] }
Jon Hall2a5002c2015-08-21 16:49:11 -07004609 else:
4610 main.log.error( self.name + ": transactionlMapGet did not" +
4611 " match expected output." )
Jon Hallc6793552016-01-19 14:18:37 -08004612 main.log.debug( "{} expected: {!r} or {!r}".format( self.name,
4613 newPattern,
4614 updatedPattern ) )
Jon Hall2a5002c2015-08-21 16:49:11 -07004615 main.log.debug( self.name + " actual: " + repr( output ) )
4616 return results
4617 except TypeError:
4618 main.log.exception( self.name + ": Object not as expected" )
4619 return None
Jon Hall2a5002c2015-08-21 16:49:11 -07004620 except Exception:
4621 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004622 main.cleanAndExit()
Jon Hallc6793552016-01-19 14:18:37 -08004623
acsmarsdaea66c2015-09-03 11:44:06 -07004624 def maps( self, jsonFormat=True ):
4625 """
4626 Description: Returns result of onos:maps
4627 Optional:
4628 * jsonFormat: enable json formatting of output
4629 """
4630 try:
4631 cmdStr = "maps"
4632 if jsonFormat:
4633 cmdStr += " -j"
4634 handle = self.sendline( cmdStr )
Jon Halla495f562016-05-16 18:03:26 -07004635 assert handle is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08004636 assert "Command not found:" not in handle, handle
acsmarsdaea66c2015-09-03 11:44:06 -07004637 return handle
Jon Hallc6793552016-01-19 14:18:37 -08004638 except AssertionError:
4639 main.log.exception( "" )
4640 return None
acsmarsdaea66c2015-09-03 11:44:06 -07004641 except TypeError:
4642 main.log.exception( self.name + ": Object not as expected" )
4643 return None
4644 except pexpect.EOF:
4645 main.log.error( self.name + ": EOF exception found" )
4646 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07004647 main.cleanAndExit()
acsmarsdaea66c2015-09-03 11:44:06 -07004648 except Exception:
4649 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004650 main.cleanAndExit()
GlennRC050596c2015-11-18 17:06:41 -08004651
4652 def getSwController( self, uri, jsonFormat=True ):
4653 """
4654 Descrition: Gets the controller information from the device
4655 """
4656 try:
4657 cmd = "device-controllers "
4658 if jsonFormat:
4659 cmd += "-j "
4660 response = self.sendline( cmd + uri )
Jon Halla495f562016-05-16 18:03:26 -07004661 assert response is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08004662 assert "Command not found:" not in response, response
GlennRC050596c2015-11-18 17:06:41 -08004663 return response
Jon Hallc6793552016-01-19 14:18:37 -08004664 except AssertionError:
4665 main.log.exception( "" )
4666 return None
GlennRC050596c2015-11-18 17:06:41 -08004667 except TypeError:
4668 main.log.exception( self.name + ": Object not as expected" )
4669 return None
4670 except pexpect.EOF:
4671 main.log.error( self.name + ": EOF exception found" )
4672 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07004673 main.cleanAndExit()
GlennRC050596c2015-11-18 17:06:41 -08004674 except Exception:
4675 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004676 main.cleanAndExit()
GlennRC050596c2015-11-18 17:06:41 -08004677
4678 def setSwController( self, uri, ip, proto="tcp", port="6653", jsonFormat=True ):
4679 """
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004680 Descrition: sets the controller(s) for the specified device
GlennRC050596c2015-11-18 17:06:41 -08004681
4682 Parameters:
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004683 Required: uri - String: The uri of the device(switch).
GlennRC050596c2015-11-18 17:06:41 -08004684 ip - String or List: The ip address of the controller.
4685 This parameter can be formed in a couple of different ways.
4686 VALID:
4687 10.0.0.1 - just the ip address
4688 tcp:10.0.0.1 - the protocol and the ip address
4689 tcp:10.0.0.1:6653 - the protocol and port can be specified,
4690 so that you can add controllers with different
4691 protocols and ports
4692 INVALID:
4693 10.0.0.1:6653 - this is not supported by ONOS
4694
4695 Optional: proto - The type of connection e.g. tcp, ssl. If a list of ips are given
4696 port - The port number.
4697 jsonFormat - If set ONOS will output in json NOTE: This is currently not supported
4698
4699 Returns: main.TRUE if ONOS returns without any errors, otherwise returns main.FALSE
4700 """
4701 try:
4702 cmd = "device-setcontrollers"
4703
4704 if jsonFormat:
4705 cmd += " -j"
4706 cmd += " " + uri
4707 if isinstance( ip, str ):
Jeremy Ronquillo82705492017-10-18 14:19:55 -07004708 ip = [ ip ]
GlennRC050596c2015-11-18 17:06:41 -08004709 for item in ip:
4710 if ":" in item:
4711 sitem = item.split( ":" )
Jeremy Ronquillo82705492017-10-18 14:19:55 -07004712 if len( sitem ) == 3:
GlennRC050596c2015-11-18 17:06:41 -08004713 cmd += " " + item
Jeremy Ronquillo82705492017-10-18 14:19:55 -07004714 elif "." in sitem[ 1 ]:
4715 cmd += " {}:{}".format( item, port )
GlennRC050596c2015-11-18 17:06:41 -08004716 else:
4717 main.log.error( "Malformed entry: " + item )
4718 raise TypeError
4719 else:
4720 cmd += " {}:{}:{}".format( proto, item, port )
GlennRC050596c2015-11-18 17:06:41 -08004721 response = self.sendline( cmd )
Jon Halla495f562016-05-16 18:03:26 -07004722 assert response is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08004723 assert "Command not found:" not in response, response
GlennRC050596c2015-11-18 17:06:41 -08004724 if "Error" in response:
4725 main.log.error( response )
4726 return main.FALSE
GlennRC050596c2015-11-18 17:06:41 -08004727 return main.TRUE
Jon Hallc6793552016-01-19 14:18:37 -08004728 except AssertionError:
4729 main.log.exception( "" )
Jon Hall2c8959e2016-12-16 12:17:34 -08004730 return main.FALSE
GlennRC050596c2015-11-18 17:06:41 -08004731 except TypeError:
4732 main.log.exception( self.name + ": Object not as expected" )
4733 return main.FALSE
4734 except pexpect.EOF:
4735 main.log.error( self.name + ": EOF exception found" )
4736 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07004737 main.cleanAndExit()
GlennRC050596c2015-11-18 17:06:41 -08004738 except Exception:
4739 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004740 main.cleanAndExit()
GlennRC20fc6522015-12-23 23:26:57 -08004741
4742 def removeDevice( self, device ):
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004743 '''
GlennRC20fc6522015-12-23 23:26:57 -08004744 Description:
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004745 Remove a device from ONOS by passing the uri of the device(s).
GlennRC20fc6522015-12-23 23:26:57 -08004746 Parameters:
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004747 device - (str or list) the id or uri of the device ex. "of:0000000000000001"
GlennRC20fc6522015-12-23 23:26:57 -08004748 Returns:
4749 Returns main.FALSE if an exception is thrown or an error is present
4750 in the response. Otherwise, returns main.TRUE.
4751 NOTE:
4752 If a host cannot be removed, then this function will return main.FALSE
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004753 '''
GlennRC20fc6522015-12-23 23:26:57 -08004754 try:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07004755 if isinstance( device, str ):
You Wang823f5022016-08-18 15:24:41 -07004756 deviceStr = device
4757 device = []
4758 device.append( deviceStr )
GlennRC20fc6522015-12-23 23:26:57 -08004759
4760 for d in device:
4761 time.sleep( 1 )
4762 response = self.sendline( "device-remove {}".format( d ) )
Jon Halla495f562016-05-16 18:03:26 -07004763 assert response is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08004764 assert "Command not found:" not in response, response
GlennRC20fc6522015-12-23 23:26:57 -08004765 if "Error" in response:
4766 main.log.warn( "Error for device: {}\nResponse: {}".format( d, response ) )
4767 return main.FALSE
GlennRC20fc6522015-12-23 23:26:57 -08004768 return main.TRUE
Jon Hallc6793552016-01-19 14:18:37 -08004769 except AssertionError:
4770 main.log.exception( "" )
4771 return main.FALSE
GlennRC20fc6522015-12-23 23:26:57 -08004772 except TypeError:
4773 main.log.exception( self.name + ": Object not as expected" )
4774 return main.FALSE
4775 except pexpect.EOF:
4776 main.log.error( self.name + ": EOF exception found" )
4777 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07004778 main.cleanAndExit()
GlennRC20fc6522015-12-23 23:26:57 -08004779 except Exception:
4780 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004781 main.cleanAndExit()
GlennRC20fc6522015-12-23 23:26:57 -08004782
4783 def removeHost( self, host ):
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004784 '''
GlennRC20fc6522015-12-23 23:26:57 -08004785 Description:
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004786 Remove a host from ONOS by passing the id of the host(s)
GlennRC20fc6522015-12-23 23:26:57 -08004787 Parameters:
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004788 hostId - (str or list) the id or mac of the host ex. "00:00:00:00:00:01"
GlennRC20fc6522015-12-23 23:26:57 -08004789 Returns:
4790 Returns main.FALSE if an exception is thrown or an error is present
4791 in the response. Otherwise, returns main.TRUE.
4792 NOTE:
4793 If a host cannot be removed, then this function will return main.FALSE
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004794 '''
GlennRC20fc6522015-12-23 23:26:57 -08004795 try:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07004796 if isinstance( host, str ):
GlennRC20fc6522015-12-23 23:26:57 -08004797 host = list( host )
4798
4799 for h in host:
4800 time.sleep( 1 )
4801 response = self.sendline( "host-remove {}".format( h ) )
Jon Halla495f562016-05-16 18:03:26 -07004802 assert response is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08004803 assert "Command not found:" not in response, response
GlennRC20fc6522015-12-23 23:26:57 -08004804 if "Error" in response:
4805 main.log.warn( "Error for host: {}\nResponse: {}".format( h, response ) )
4806 return main.FALSE
GlennRC20fc6522015-12-23 23:26:57 -08004807 return main.TRUE
Jon Hallc6793552016-01-19 14:18:37 -08004808 except AssertionError:
4809 main.log.exception( "" )
Jon Hall2c8959e2016-12-16 12:17:34 -08004810 return main.FALSE
GlennRC20fc6522015-12-23 23:26:57 -08004811 except TypeError:
4812 main.log.exception( self.name + ": Object not as expected" )
4813 return main.FALSE
4814 except pexpect.EOF:
4815 main.log.error( self.name + ": EOF exception found" )
4816 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07004817 main.cleanAndExit()
GlennRC20fc6522015-12-23 23:26:57 -08004818 except Exception:
4819 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004820 main.cleanAndExit()
GlennRCed771242016-01-13 17:02:47 -08004821
YPZhangfebf7302016-05-24 16:45:56 -07004822 def link( self, begin, end, state, timeout=30, showResponse=True ):
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004823 '''
GlennRCed771242016-01-13 17:02:47 -08004824 Description:
4825 Bring link down or up in the null-provider.
4826 params:
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004827 begin - (string) One end of a device or switch.
4828 end - (string) the other end of the device or switch
GlennRCed771242016-01-13 17:02:47 -08004829 returns:
4830 main.TRUE if no exceptions were thrown and no Errors are
4831 present in the resoponse. Otherwise, returns main.FALSE
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004832 '''
GlennRCed771242016-01-13 17:02:47 -08004833 try:
Jon Halle0f0b342017-04-18 11:43:47 -07004834 cmd = "null-link null:{} null:{} {}".format( begin, end, state )
YPZhangfebf7302016-05-24 16:45:56 -07004835 response = self.sendline( cmd, showResponse=showResponse, timeout=timeout )
Jon Halla495f562016-05-16 18:03:26 -07004836 assert response is not None, "Error in sendline"
Jon Hallc6793552016-01-19 14:18:37 -08004837 assert "Command not found:" not in response, response
GlennRCed771242016-01-13 17:02:47 -08004838 if "Error" in response or "Failure" in response:
4839 main.log.error( response )
4840 return main.FALSE
GlennRCed771242016-01-13 17:02:47 -08004841 return main.TRUE
Jon Hallc6793552016-01-19 14:18:37 -08004842 except AssertionError:
4843 main.log.exception( "" )
Jon Hall2c8959e2016-12-16 12:17:34 -08004844 return main.FALSE
GlennRCed771242016-01-13 17:02:47 -08004845 except TypeError:
4846 main.log.exception( self.name + ": Object not as expected" )
4847 return main.FALSE
4848 except pexpect.EOF:
4849 main.log.error( self.name + ": EOF exception found" )
4850 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07004851 main.cleanAndExit()
GlennRCed771242016-01-13 17:02:47 -08004852 except Exception:
4853 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004854 main.cleanAndExit()
GlennRCed771242016-01-13 17:02:47 -08004855
Jon Hall2c8959e2016-12-16 12:17:34 -08004856 def portstate( self, dpid, port, state ):
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004857 '''
Flavio Castro82ee2f62016-06-07 15:04:12 -07004858 Description:
4859 Changes the state of port in an OF switch by means of the
4860 PORTSTATUS OF messages.
4861 params:
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004862 dpid - (string) Datapath ID of the device. Ex: 'of:0000000000000102'
4863 port - (string) target port in the device. Ex: '2'
4864 state - (string) target state (enable or disable)
Flavio Castro82ee2f62016-06-07 15:04:12 -07004865 returns:
4866 main.TRUE if no exceptions were thrown and no Errors are
4867 present in the resoponse. Otherwise, returns main.FALSE
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004868 '''
Flavio Castro82ee2f62016-06-07 15:04:12 -07004869 try:
Jon Hall2c8959e2016-12-16 12:17:34 -08004870 state = state.lower()
4871 assert state == 'enable' or state == 'disable', "Unknown state"
Jon Halle0f0b342017-04-18 11:43:47 -07004872 cmd = "portstate {} {} {}".format( dpid, port, state )
Flavio Castro82ee2f62016-06-07 15:04:12 -07004873 response = self.sendline( cmd, showResponse=True )
4874 assert response is not None, "Error in sendline"
4875 assert "Command not found:" not in response, response
4876 if "Error" in response or "Failure" in response:
4877 main.log.error( response )
4878 return main.FALSE
4879 return main.TRUE
4880 except AssertionError:
4881 main.log.exception( "" )
Jon Hall2c8959e2016-12-16 12:17:34 -08004882 return main.FALSE
Flavio Castro82ee2f62016-06-07 15:04:12 -07004883 except TypeError:
4884 main.log.exception( self.name + ": Object not as expected" )
4885 return main.FALSE
4886 except pexpect.EOF:
4887 main.log.error( self.name + ": EOF exception found" )
4888 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07004889 main.cleanAndExit()
Flavio Castro82ee2f62016-06-07 15:04:12 -07004890 except Exception:
4891 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004892 main.cleanAndExit()
Flavio Castro82ee2f62016-06-07 15:04:12 -07004893
4894 def logSet( self, level="INFO", app="org.onosproject" ):
4895 """
4896 Set the logging level to lvl for a specific app
4897 returns main.TRUE on success
4898 returns main.FALSE if Error occurred
4899 if noExit is True, TestON will not exit, but clean up
4900 Available level: DEBUG, TRACE, INFO, WARN, ERROR
4901 Level defaults to INFO
4902 """
4903 try:
Jon Halle0f0b342017-04-18 11:43:47 -07004904 self.handle.sendline( "log:set %s %s" % ( level, app ) )
Flavio Castro82ee2f62016-06-07 15:04:12 -07004905 self.handle.expect( "onos>" )
4906
4907 response = self.handle.before
4908 if re.search( "Error", response ):
4909 return main.FALSE
4910 return main.TRUE
4911 except pexpect.TIMEOUT:
4912 main.log.exception( self.name + ": TIMEOUT exception found" )
Devin Lim44075962017-08-11 10:56:37 -07004913 main.cleanAndExit()
Flavio Castro82ee2f62016-06-07 15:04:12 -07004914 except pexpect.EOF:
4915 main.log.error( self.name + ": EOF exception found" )
4916 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07004917 main.cleanAndExit()
Flavio Castro82ee2f62016-06-07 15:04:12 -07004918 except Exception:
4919 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07004920 main.cleanAndExit()
You Wangdb8cd0a2016-05-26 15:19:45 -07004921
4922 def getGraphDict( self, timeout=60, includeHost=False ):
4923 """
4924 Return a dictionary which describes the latest network topology data as a
4925 graph.
4926 An example of the dictionary:
4927 { vertex1: { 'edges': ..., 'name': ..., 'protocol': ... },
4928 vertex2: { 'edges': ..., 'name': ..., 'protocol': ... } }
4929 Each vertex should at least have an 'edges' attribute which describes the
4930 adjacency information. The value of 'edges' attribute is also represented by
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004931 a dictionary, which maps each edge (identified by the neighbor vertex) to a
You Wangdb8cd0a2016-05-26 15:19:45 -07004932 list of attributes.
4933 An example of the edges dictionary:
4934 'edges': { vertex2: { 'port': ..., 'weight': ... },
4935 vertex3: { 'port': ..., 'weight': ... } }
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004936 If includeHost == True, all hosts (and host-switch links) will be included
You Wangdb8cd0a2016-05-26 15:19:45 -07004937 in topology data.
4938 """
4939 graphDict = {}
4940 try:
4941 links = self.links()
4942 links = json.loads( links )
4943 devices = self.devices()
4944 devices = json.loads( devices )
4945 idToDevice = {}
4946 for device in devices:
4947 idToDevice[ device[ 'id' ] ] = device
4948 if includeHost:
4949 hosts = self.hosts()
4950 # FIXME: support 'includeHost' argument
4951 for link in links:
4952 nodeA = link[ 'src' ][ 'device' ]
4953 nodeB = link[ 'dst' ][ 'device' ]
4954 assert idToDevice[ nodeA ][ 'available' ] and idToDevice[ nodeB ][ 'available' ]
Jon Halle0f0b342017-04-18 11:43:47 -07004955 if nodeA not in graphDict.keys():
4956 graphDict[ nodeA ] = { 'edges': {},
Jeremy Ronquillo82705492017-10-18 14:19:55 -07004957 'dpid': idToDevice[ nodeA ][ 'id' ][ 3: ],
Jon Halle0f0b342017-04-18 11:43:47 -07004958 'type': idToDevice[ nodeA ][ 'type' ],
4959 'available': idToDevice[ nodeA ][ 'available' ],
4960 'role': idToDevice[ nodeA ][ 'role' ],
4961 'mfr': idToDevice[ nodeA ][ 'mfr' ],
4962 'hw': idToDevice[ nodeA ][ 'hw' ],
4963 'sw': idToDevice[ nodeA ][ 'sw' ],
4964 'serial': idToDevice[ nodeA ][ 'serial' ],
4965 'chassisId': idToDevice[ nodeA ][ 'chassisId' ],
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004966 'annotations': idToDevice[ nodeA ][ 'annotations' ]}
You Wangdb8cd0a2016-05-26 15:19:45 -07004967 else:
4968 # Assert nodeB is not connected to any current links of nodeA
4969 assert nodeB not in graphDict[ nodeA ][ 'edges' ].keys()
Jon Halle0f0b342017-04-18 11:43:47 -07004970 graphDict[ nodeA ][ 'edges' ][ nodeB ] = { 'port': link[ 'src' ][ 'port' ],
4971 'type': link[ 'type' ],
4972 'state': link[ 'state' ] }
You Wangdb8cd0a2016-05-26 15:19:45 -07004973 return graphDict
4974 except ( TypeError, ValueError ):
4975 main.log.exception( self.name + ": Object not as expected" )
4976 return None
4977 except KeyError:
4978 main.log.exception( self.name + ": KeyError exception found" )
4979 return None
4980 except AssertionError:
4981 main.log.exception( self.name + ": AssertionError exception found" )
4982 return None
4983 except pexpect.EOF:
4984 main.log.error( self.name + ": EOF exception found" )
4985 main.log.error( self.name + ": " + self.handle.before )
4986 return None
4987 except Exception:
4988 main.log.exception( self.name + ": Uncaught exception!" )
4989 return None
YPZhangcbc2a062016-07-11 10:55:44 -07004990
4991 def getIntentPerfSummary( self ):
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004992 '''
YPZhangcbc2a062016-07-11 10:55:44 -07004993 Send command to check intent-perf summary
4994 Returns: dictionary for intent-perf summary
4995 if something wrong, function will return None
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00004996 '''
YPZhangcbc2a062016-07-11 10:55:44 -07004997 cmd = "intent-perf -s"
4998 respDic = {}
4999 resp = self.sendline( cmd )
You Wangb5a55f72017-03-03 12:51:05 -08005000 assert resp is not None, "Error in sendline"
5001 assert "Command not found:" not in resp, resp
YPZhangcbc2a062016-07-11 10:55:44 -07005002 try:
5003 # Generate the dictionary to return
5004 for l in resp.split( "\n" ):
5005 # Delete any white space in line
5006 temp = re.sub( r'\s+', '', l )
5007 temp = temp.split( ":" )
Jeremy Ronquillo82705492017-10-18 14:19:55 -07005008 respDic[ temp[ 0 ] ] = temp[ 1 ]
YPZhangcbc2a062016-07-11 10:55:44 -07005009
Jeremy Ronquillo82705492017-10-18 14:19:55 -07005010 except ( TypeError, ValueError ):
YPZhangcbc2a062016-07-11 10:55:44 -07005011 main.log.exception( self.name + ": Object not as expected" )
5012 return None
5013 except KeyError:
5014 main.log.exception( self.name + ": KeyError exception found" )
5015 return None
5016 except AssertionError:
5017 main.log.exception( self.name + ": AssertionError exception found" )
5018 return None
5019 except pexpect.EOF:
5020 main.log.error( self.name + ": EOF exception found" )
5021 main.log.error( self.name + ": " + self.handle.before )
5022 return None
5023 except Exception:
5024 main.log.exception( self.name + ": Uncaught exception!" )
5025 return None
5026 return respDic
5027
Chiyu Chengec63bde2016-11-17 18:11:36 -08005028 def logSearch( self, mode='all', searchTerm='', startLine='', logNum=1 ):
chengchiyu08303a02016-09-08 17:40:26 -07005029 """
5030 Searches the latest ONOS log file for the given search term and
5031 return a list that contains all the lines that have the search term.
YPZhangcbc2a062016-07-11 10:55:44 -07005032
chengchiyu08303a02016-09-08 17:40:26 -07005033 Arguments:
Chiyu Chengec63bde2016-11-17 18:11:36 -08005034 searchTerm:
5035 The string to grep from the ONOS log.
5036 startLine:
5037 The term that decides which line is the start to search the searchTerm in
5038 the karaf log. For now, startTerm only works in 'first' mode.
5039 logNum:
5040 In some extreme cases, one karaf log is not big enough to contain all the
5041 information.Because of this, search mutiply logs is necessary to capture
5042 the right result. logNum is the number of karaf logs that we need to search
5043 the searchTerm.
chengchiyu08303a02016-09-08 17:40:26 -07005044 mode:
5045 all: return all the strings that contain the search term
5046 last: return the last string that contains the search term
5047 first: return the first string that contains the search term
Chiyu Chengec63bde2016-11-17 18:11:36 -08005048 num: return the number of times that the searchTerm appears in the log
5049 total: return how many lines in karaf log
chengchiyu08303a02016-09-08 17:40:26 -07005050 """
5051 try:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07005052 assert isinstance( searchTerm, str )
Jon Halle0f0b342017-04-18 11:43:47 -07005053 # Build the log paths string
Chiyu Chengec63bde2016-11-17 18:11:36 -08005054 logPath = '/opt/onos/log/karaf.log.'
5055 logPaths = '/opt/onos/log/karaf.log'
5056 for i in range( 1, logNum ):
5057 logPaths = logPath + str( i ) + " " + logPaths
5058 cmd = "cat " + logPaths
You Wang6d301d42017-04-21 10:49:33 -07005059 if startLine:
Jon Halla478b852017-12-04 15:00:15 -08005060 # 100000000 is just a extreme large number to make sure this function can
5061 # grep all the lines after startLine
You Wang6d301d42017-04-21 10:49:33 -07005062 cmd = cmd + " | grep -A 100000000 \'" + startLine + "\'"
Chiyu Chengec63bde2016-11-17 18:11:36 -08005063 if mode == 'all':
5064 cmd = cmd + " | grep \'" + searchTerm + "\'"
You Wang6d301d42017-04-21 10:49:33 -07005065 elif mode == 'last':
Chiyu Chengec63bde2016-11-17 18:11:36 -08005066 cmd = cmd + " | grep \'" + searchTerm + "\'" + " | tail -n 1"
You Wang6d301d42017-04-21 10:49:33 -07005067 elif mode == 'first':
5068 cmd = cmd + " | grep \'" + searchTerm + "\'" + " | head -n 1"
5069 elif mode == 'num':
Chiyu Chengec63bde2016-11-17 18:11:36 -08005070 cmd = cmd + " | grep -c \'" + searchTerm + "\'"
You Wang118ba582017-01-02 17:14:43 -08005071 num = self.sendline( cmd )
Chiyu Chengb8c2c842016-10-05 12:40:49 -07005072 return num
You Wang6d301d42017-04-21 10:49:33 -07005073 elif mode == 'total':
Chiyu Chengec63bde2016-11-17 18:11:36 -08005074 totalLines = self.sendline( "cat /opt/onos/log/karaf.log | wc -l" )
Jeremy Ronquillo82705492017-10-18 14:19:55 -07005075 return int( totalLines )
You Wang6d301d42017-04-21 10:49:33 -07005076 else:
5077 main.log.error( self.name + " unsupported mode" )
5078 return main.ERROR
chengchiyu08303a02016-09-08 17:40:26 -07005079 before = self.sendline( cmd )
5080 before = before.splitlines()
5081 # make sure the returned list only contains the search term
Jeremy Ronquillo82705492017-10-18 14:19:55 -07005082 returnLines = [ line for line in before if searchTerm in line ]
chengchiyu08303a02016-09-08 17:40:26 -07005083 return returnLines
5084 except AssertionError:
5085 main.log.error( self.name + " searchTerm is not string type" )
5086 return None
5087 except pexpect.EOF:
5088 main.log.error( self.name + ": EOF exception found" )
5089 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07005090 main.cleanAndExit()
chengchiyu08303a02016-09-08 17:40:26 -07005091 except pexpect.TIMEOUT:
5092 main.log.error( self.name + ": TIMEOUT exception found" )
5093 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07005094 main.cleanAndExit()
chengchiyu08303a02016-09-08 17:40:26 -07005095 except Exception:
5096 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07005097 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005098
5099 def vplsShow( self, jsonFormat=True ):
5100 """
5101 Description: Returns result of onos:vpls show, which should list the
5102 configured VPLS networks and the assigned interfaces.
5103 Optional:
5104 * jsonFormat: enable json formatting of output
5105 Returns:
5106 The output of the command or None on error.
5107 """
5108 try:
5109 cmdStr = "vpls show"
5110 if jsonFormat:
5111 raise NotImplementedError
5112 cmdStr += " -j"
5113 handle = self.sendline( cmdStr )
5114 assert handle is not None, "Error in sendline"
5115 assert "Command not found:" not in handle, handle
5116 return handle
5117 except AssertionError:
5118 main.log.exception( "" )
5119 return None
5120 except TypeError:
5121 main.log.exception( self.name + ": Object not as expected" )
5122 return None
5123 except pexpect.EOF:
5124 main.log.error( self.name + ": EOF exception found" )
5125 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07005126 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005127 except NotImplementedError:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07005128 main.log.exception( self.name + ": Json output not supported" )
Jon Hall2c8959e2016-12-16 12:17:34 -08005129 return None
5130 except Exception:
5131 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07005132 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005133
5134 def parseVplsShow( self ):
5135 """
5136 Parse the cli output of 'vpls show' into json output. This is required
5137 as there is currently no json output available.
5138 """
5139 try:
5140 output = []
5141 raw = self.vplsShow( jsonFormat=False )
5142 namePat = "VPLS name: (?P<name>\w+)"
5143 interfacesPat = "Associated interfaces: \[(?P<interfaces>.*)\]"
5144 encapPat = "Encapsulation: (?P<encap>\w+)"
5145 pattern = "\s+".join( [ namePat, interfacesPat, encapPat ] )
5146 mIter = re.finditer( pattern, raw )
5147 for match in mIter:
5148 item = {}
5149 item[ 'name' ] = match.group( 'name' )
Jeremy Ronquillo82705492017-10-18 14:19:55 -07005150 ifaces = match.group( 'interfaces' ).split( ', ' )
Jon Hall2c8959e2016-12-16 12:17:34 -08005151 if ifaces == [ "" ]:
5152 ifaces = []
5153 item[ 'interfaces' ] = ifaces
5154 encap = match.group( 'encap' )
5155 if encap != 'NONE':
5156 item[ 'encapsulation' ] = encap.lower()
5157 output.append( item )
5158 return output
5159 except Exception:
5160 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07005161 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005162
5163 def vplsList( self, jsonFormat=True ):
5164 """
5165 Description: Returns result of onos:vpls list, which should list the
5166 configured VPLS networks.
5167 Optional:
5168 * jsonFormat: enable json formatting of output
5169 """
5170 try:
5171 cmdStr = "vpls list"
5172 if jsonFormat:
5173 raise NotImplementedError
5174 cmdStr += " -j"
5175 handle = self.sendline( cmdStr )
5176 assert handle is not None, "Error in sendline"
5177 assert "Command not found:" not in handle, handle
5178 return handle
5179 except AssertionError:
5180 main.log.exception( "" )
5181 return None
5182 except TypeError:
5183 main.log.exception( self.name + ": Object not as expected" )
5184 return None
5185 except pexpect.EOF:
5186 main.log.error( self.name + ": EOF exception found" )
5187 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07005188 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005189 except NotImplementedError:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07005190 main.log.exception( self.name + ": Json output not supported" )
Jon Hall2c8959e2016-12-16 12:17:34 -08005191 return None
5192 except Exception:
5193 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07005194 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005195
5196 def vplsCreate( self, network ):
5197 """
5198 CLI command to create a new VPLS network.
5199 Required arguments:
5200 network - String name of the network to create.
5201 returns:
5202 main.TRUE on success and main.FALSE on failure
5203 """
5204 try:
5205 network = str( network )
5206 cmdStr = "vpls create "
5207 cmdStr += network
5208 output = self.sendline( cmdStr )
5209 assert output is not None, "Error in sendline"
5210 assert "Command not found:" not in output, output
5211 assert "Error executing command" not in output, output
5212 assert "VPLS already exists:" not in output, output
5213 return main.TRUE
5214 except AssertionError:
5215 main.log.exception( "" )
5216 return main.FALSE
5217 except TypeError:
5218 main.log.exception( self.name + ": Object not as expected" )
5219 return main.FALSE
5220 except pexpect.EOF:
5221 main.log.error( self.name + ": EOF exception found" )
5222 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07005223 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005224 except Exception:
5225 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07005226 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005227
5228 def vplsDelete( self, network ):
5229 """
5230 CLI command to delete a VPLS network.
5231 Required arguments:
5232 network - Name of the network to delete.
5233 returns:
5234 main.TRUE on success and main.FALSE on failure
5235 """
5236 try:
5237 network = str( network )
5238 cmdStr = "vpls delete "
5239 cmdStr += network
5240 output = self.sendline( cmdStr )
5241 assert output is not None, "Error in sendline"
5242 assert "Command not found:" not in output, output
5243 assert "Error executing command" not in output, output
5244 assert " not found" not in output, output
Jon Hallcf97cf12017-06-06 09:37:51 -07005245 assert "still updating" not in output, output
Jon Hall2c8959e2016-12-16 12:17:34 -08005246 return main.TRUE
5247 except AssertionError:
5248 main.log.exception( "" )
5249 return main.FALSE
5250 except TypeError:
5251 main.log.exception( self.name + ": Object not as expected" )
5252 return main.FALSE
5253 except pexpect.EOF:
5254 main.log.error( self.name + ": EOF exception found" )
5255 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07005256 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005257 except Exception:
5258 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07005259 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005260
5261 def vplsAddIface( self, network, iface ):
5262 """
5263 CLI command to add an interface to a VPLS network.
5264 Required arguments:
5265 network - Name of the network to add the interface to.
5266 iface - The ONOS name for an interface.
5267 returns:
5268 main.TRUE on success and main.FALSE on failure
5269 """
5270 try:
5271 network = str( network )
5272 iface = str( iface )
5273 cmdStr = "vpls add-if "
5274 cmdStr += network + " " + iface
5275 output = self.sendline( cmdStr )
5276 assert output is not None, "Error in sendline"
5277 assert "Command not found:" not in output, output
5278 assert "Error executing command" not in output, output
5279 assert "already associated to network" not in output, output
5280 assert "Interface cannot be added." not in output, output
Jon Hallcf97cf12017-06-06 09:37:51 -07005281 assert "still updating" not in output, output
Jon Hall2c8959e2016-12-16 12:17:34 -08005282 return main.TRUE
5283 except AssertionError:
5284 main.log.exception( "" )
5285 return main.FALSE
5286 except TypeError:
5287 main.log.exception( self.name + ": Object not as expected" )
5288 return main.FALSE
5289 except pexpect.EOF:
5290 main.log.error( self.name + ": EOF exception found" )
5291 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07005292 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005293 except Exception:
5294 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07005295 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005296
5297 def vplsRemIface( self, network, iface ):
5298 """
5299 CLI command to remove an interface from a VPLS network.
5300 Required arguments:
5301 network - Name of the network to remove the interface from.
5302 iface - Name of the interface to remove.
5303 returns:
5304 main.TRUE on success and main.FALSE on failure
5305 """
5306 try:
5307 iface = str( iface )
5308 cmdStr = "vpls rem-if "
5309 cmdStr += network + " " + iface
5310 output = self.sendline( cmdStr )
5311 assert output is not None, "Error in sendline"
5312 assert "Command not found:" not in output, output
5313 assert "Error executing command" not in output, output
5314 assert "is not configured" not in output, output
Jon Hallcf97cf12017-06-06 09:37:51 -07005315 assert "still updating" not in output, output
Jon Hall2c8959e2016-12-16 12:17:34 -08005316 return main.TRUE
5317 except AssertionError:
5318 main.log.exception( "" )
5319 return main.FALSE
5320 except TypeError:
5321 main.log.exception( self.name + ": Object not as expected" )
5322 return main.FALSE
5323 except pexpect.EOF:
5324 main.log.error( self.name + ": EOF exception found" )
5325 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07005326 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005327 except Exception:
5328 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07005329 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005330
5331 def vplsClean( self ):
5332 """
5333 Description: Clears the VPLS app configuration.
5334 Returns: main.TRUE on success and main.FALSE on failure
5335 """
5336 try:
5337 cmdStr = "vpls clean"
5338 handle = self.sendline( cmdStr )
5339 assert handle is not None, "Error in sendline"
5340 assert "Command not found:" not in handle, handle
Jon Hallcf97cf12017-06-06 09:37:51 -07005341 assert "still updating" not in handle, handle
Jon Hall2c8959e2016-12-16 12:17:34 -08005342 return handle
5343 except AssertionError:
5344 main.log.exception( "" )
5345 return main.FALSE
5346 except TypeError:
5347 main.log.exception( self.name + ": Object not as expected" )
5348 return main.FALSE
5349 except pexpect.EOF:
5350 main.log.error( self.name + ": EOF exception found" )
5351 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07005352 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005353 except Exception:
5354 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07005355 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005356
5357 def vplsSetEncap( self, network, encapType ):
5358 """
5359 CLI command to add an interface to a VPLS network.
5360 Required arguments:
5361 network - Name of the network to create.
5362 encapType - Type of encapsulation.
5363 returns:
5364 main.TRUE on success and main.FALSE on failure
5365 """
5366 try:
5367 network = str( network )
5368 encapType = str( encapType ).upper()
5369 assert encapType in [ "MPLS", "VLAN", "NONE" ], "Incorrect type"
5370 cmdStr = "vpls set-encap "
5371 cmdStr += network + " " + encapType
5372 output = self.sendline( cmdStr )
5373 assert output is not None, "Error in sendline"
5374 assert "Command not found:" not in output, output
5375 assert "Error executing command" not in output, output
5376 assert "already associated to network" not in output, output
5377 assert "Encapsulation type " not in output, output
Jon Hallcf97cf12017-06-06 09:37:51 -07005378 assert "still updating" not in output, output
Jon Hall2c8959e2016-12-16 12:17:34 -08005379 return main.TRUE
5380 except AssertionError:
5381 main.log.exception( "" )
5382 return main.FALSE
5383 except TypeError:
5384 main.log.exception( self.name + ": Object not as expected" )
5385 return main.FALSE
5386 except pexpect.EOF:
5387 main.log.error( self.name + ": EOF exception found" )
5388 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07005389 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005390 except Exception:
5391 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07005392 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005393
5394 def interfaces( self, jsonFormat=True ):
5395 """
5396 Description: Returns result of interfaces command.
5397 Optional:
5398 * jsonFormat: enable json formatting of output
5399 Returns:
5400 The output of the command or None on error.
5401 """
5402 try:
5403 cmdStr = "interfaces"
5404 if jsonFormat:
Jon Halle0f0b342017-04-18 11:43:47 -07005405 raise NotImplementedError
Jon Hall2c8959e2016-12-16 12:17:34 -08005406 cmdStr += " -j"
5407 handle = self.sendline( cmdStr )
5408 assert handle is not None, "Error in sendline"
5409 assert "Command not found:" not in handle, handle
5410 return handle
5411 except AssertionError:
5412 main.log.exception( "" )
5413 return None
5414 except TypeError:
5415 main.log.exception( self.name + ": Object not as expected" )
5416 return None
5417 except pexpect.EOF:
5418 main.log.error( self.name + ": EOF exception found" )
5419 main.log.error( self.name + ": " + self.handle.before )
Devin Lim44075962017-08-11 10:56:37 -07005420 main.cleanAndExit()
Jon Hall2c8959e2016-12-16 12:17:34 -08005421 except NotImplementedError:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07005422 main.log.exception( self.name + ": Json output not supported" )
Jon Hall2c8959e2016-12-16 12:17:34 -08005423 return None
5424 except Exception:
5425 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07005426 main.cleanAndExit()
Chiyu Chengec63bde2016-11-17 18:11:36 -08005427
5428 def getTimeStampFromLog( self, mode, searchTerm, splitTerm_before, splitTerm_after, startLine='', logNum=1 ):
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00005429 '''
Chiyu Chengec63bde2016-11-17 18:11:36 -08005430 Get the timestamp of searchTerm from karaf log.
5431
5432 Arguments:
5433 splitTerm_before and splitTerm_after:
5434
5435 The terms that split the string that contains the timeStamp of
5436 searchTerm. For example, if that string is "xxxxxxxcreationTime =
5437 1419510501xxxxxx", then the splitTerm_before is "CreationTime = "
5438 and the splitTerm_after is "x"
5439
5440 others:
Jon Halle0f0b342017-04-18 11:43:47 -07005441 Please look at the "logsearch" Function in onosclidriver.py
Jeremy Ronquillo4d5f1d02017-10-13 20:23:57 +00005442 '''
Chiyu Chengec63bde2016-11-17 18:11:36 -08005443 if logNum < 0:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07005444 main.log.error( "Get wrong log number ")
Chiyu Chengec63bde2016-11-17 18:11:36 -08005445 return main.ERROR
5446 lines = self.logSearch( mode=mode, searchTerm=searchTerm, startLine=startLine, logNum=logNum )
Jeremy Ronquillo82705492017-10-18 14:19:55 -07005447 if len( lines ) == 0:
Chiyu Chengec63bde2016-11-17 18:11:36 -08005448 main.log.warn( "Captured timestamp string is empty" )
5449 return main.ERROR
5450 lines = lines[ 0 ]
5451 try:
Jeremy Ronquillo82705492017-10-18 14:19:55 -07005452 assert isinstance( lines, str )
Chiyu Chengec63bde2016-11-17 18:11:36 -08005453 # get the target value
5454 line = lines.split( splitTerm_before )
5455 key = line[ 1 ].split( splitTerm_after )
5456 return int( key[ 0 ] )
5457 except IndexError:
5458 main.log.warn( "Index Error!" )
5459 return main.ERROR
5460 except AssertionError:
5461 main.log.warn( "Search Term Not Found " )
5462 return main.ERROR
Jon Halle0f0b342017-04-18 11:43:47 -07005463
5464 def workQueueAdd( self, queueName, value ):
5465 """
5466 CLI command to add a string to the specified Work Queue.
5467 This function uses the distributed primitives test app, which
5468 gives some cli access to distributed primitives for testing
5469 purposes only.
5470
5471 Required arguments:
5472 queueName - The name of the queue to add to
5473 value - The value to add to the queue
5474 returns:
5475 main.TRUE on success, main.FALSE on failure and
5476 main.ERROR on error.
5477 """
5478 try:
5479 queueName = str( queueName )
5480 value = str( value )
5481 prefix = "work-queue-test"
5482 operation = "add"
5483 cmdStr = " ".join( [ prefix, queueName, operation, value ] )
5484 output = self.distPrimitivesSend( cmdStr )
5485 if "Invalid operation name" in output:
5486 main.log.warn( output )
5487 return main.ERROR
5488 elif "Done" in output:
5489 return main.TRUE
5490 except TypeError:
5491 main.log.exception( self.name + ": Object not as expected" )
5492 return main.ERROR
5493 except Exception:
5494 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07005495 main.cleanAndExit()
Jon Halle0f0b342017-04-18 11:43:47 -07005496
5497 def workQueueAddMultiple( self, queueName, value1, value2 ):
5498 """
5499 CLI command to add two strings to the specified Work Queue.
5500 This function uses the distributed primitives test app, which
5501 gives some cli access to distributed primitives for testing
5502 purposes only.
5503
5504 Required arguments:
5505 queueName - The name of the queue to add to
5506 value1 - The first value to add to the queue
5507 value2 - The second value to add to the queue
5508 returns:
5509 main.TRUE on success, main.FALSE on failure and
5510 main.ERROR on error.
5511 """
5512 try:
5513 queueName = str( queueName )
5514 value1 = str( value1 )
5515 value2 = str( value2 )
5516 prefix = "work-queue-test"
5517 operation = "addMultiple"
5518 cmdStr = " ".join( [ prefix, queueName, operation, value1, value2 ] )
5519 output = self.distPrimitivesSend( cmdStr )
5520 if "Invalid operation name" in output:
5521 main.log.warn( output )
5522 return main.ERROR
5523 elif "Done" in output:
5524 return main.TRUE
5525 except TypeError:
5526 main.log.exception( self.name + ": Object not as expected" )
5527 return main.ERROR
5528 except Exception:
5529 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07005530 main.cleanAndExit()
Jon Halle0f0b342017-04-18 11:43:47 -07005531
5532 def workQueueTakeAndComplete( self, queueName, number=1 ):
5533 """
5534 CLI command to take a value from the specified Work Queue and compelte it.
5535 This function uses the distributed primitives test app, which
5536 gives some cli access to distributed primitives for testing
5537 purposes only.
5538
5539 Required arguments:
5540 queueName - The name of the queue to add to
5541 number - The number of items to take and complete
5542 returns:
5543 main.TRUE on success, main.FALSE on failure and
5544 main.ERROR on error.
5545 """
5546 try:
5547 queueName = str( queueName )
5548 number = str( int( number ) )
5549 prefix = "work-queue-test"
5550 operation = "takeAndComplete"
5551 cmdStr = " ".join( [ prefix, queueName, operation, number ] )
5552 output = self.distPrimitivesSend( cmdStr )
5553 if "Invalid operation name" in output:
5554 main.log.warn( output )
5555 return main.ERROR
5556 elif "Done" in output:
5557 return main.TRUE
5558 except TypeError:
5559 main.log.exception( self.name + ": Object not as expected" )
5560 return main.ERROR
5561 except Exception:
5562 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07005563 main.cleanAndExit()
Jon Halle0f0b342017-04-18 11:43:47 -07005564
5565 def workQueueDestroy( self, queueName ):
5566 """
5567 CLI command to destroy the specified Work Queue.
5568 This function uses the distributed primitives test app, which
5569 gives some cli access to distributed primitives for testing
5570 purposes only.
5571
5572 Required arguments:
5573 queueName - The name of the queue to add to
5574 returns:
5575 main.TRUE on success, main.FALSE on failure and
5576 main.ERROR on error.
5577 """
5578 try:
5579 queueName = str( queueName )
5580 prefix = "work-queue-test"
5581 operation = "destroy"
5582 cmdStr = " ".join( [ prefix, queueName, operation ] )
5583 output = self.distPrimitivesSend( cmdStr )
5584 if "Invalid operation name" in output:
5585 main.log.warn( output )
5586 return main.ERROR
5587 return main.TRUE
5588 except TypeError:
5589 main.log.exception( self.name + ": Object not as expected" )
5590 return main.ERROR
5591 except Exception:
5592 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07005593 main.cleanAndExit()
Jon Halle0f0b342017-04-18 11:43:47 -07005594
5595 def workQueueTotalPending( self, queueName ):
5596 """
5597 CLI command to get the Total Pending items of the specified Work Queue.
5598 This function uses the distributed primitives test app, which
5599 gives some cli access to distributed primitives for testing
5600 purposes only.
5601
5602 Required arguments:
5603 queueName - The name of the queue to add to
5604 returns:
5605 The number of Pending items in the specified work queue or
5606 None on error
5607 """
5608 try:
5609 queueName = str( queueName )
5610 prefix = "work-queue-test"
5611 operation = "totalPending"
5612 cmdStr = " ".join( [ prefix, queueName, operation ] )
5613 output = self.distPrimitivesSend( cmdStr )
5614 pattern = r'\d+'
5615 if "Invalid operation name" in output:
5616 main.log.warn( output )
5617 return None
5618 else:
5619 match = re.search( pattern, output )
Jeremy Ronquillo82705492017-10-18 14:19:55 -07005620 return match.group( 0 )
Jon Halle0f0b342017-04-18 11:43:47 -07005621 except ( AttributeError, TypeError ):
5622 main.log.exception( self.name + ": Object not as expected; " + str( output ) )
5623 return None
5624 except Exception:
5625 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07005626 main.cleanAndExit()
Jon Halle0f0b342017-04-18 11:43:47 -07005627
5628 def workQueueTotalCompleted( self, queueName ):
5629 """
5630 CLI command to get the Total Completed items of the specified Work Queue.
5631 This function uses the distributed primitives test app, which
5632 gives some cli access to distributed primitives for testing
5633 purposes only.
5634
5635 Required arguments:
5636 queueName - The name of the queue to add to
5637 returns:
5638 The number of complete items in the specified work queue or
5639 None on error
5640 """
5641 try:
5642 queueName = str( queueName )
5643 prefix = "work-queue-test"
5644 operation = "totalCompleted"
5645 cmdStr = " ".join( [ prefix, queueName, operation ] )
5646 output = self.distPrimitivesSend( cmdStr )
5647 pattern = r'\d+'
5648 if "Invalid operation name" in output:
5649 main.log.warn( output )
5650 return None
5651 else:
5652 match = re.search( pattern, output )
Jeremy Ronquillo82705492017-10-18 14:19:55 -07005653 return match.group( 0 )
Jon Halle0f0b342017-04-18 11:43:47 -07005654 except ( AttributeError, TypeError ):
5655 main.log.exception( self.name + ": Object not as expected; " + str( output ) )
5656 return None
5657 except Exception:
5658 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07005659 main.cleanAndExit()
Jon Halle0f0b342017-04-18 11:43:47 -07005660
5661 def workQueueTotalInProgress( self, queueName ):
5662 """
5663 CLI command to get the Total In Progress items of the specified Work Queue.
5664 This function uses the distributed primitives test app, which
5665 gives some cli access to distributed primitives for testing
5666 purposes only.
5667
5668 Required arguments:
5669 queueName - The name of the queue to add to
5670 returns:
5671 The number of In Progress items in the specified work queue or
5672 None on error
5673 """
5674 try:
5675 queueName = str( queueName )
5676 prefix = "work-queue-test"
5677 operation = "totalInProgress"
5678 cmdStr = " ".join( [ prefix, queueName, operation ] )
5679 output = self.distPrimitivesSend( cmdStr )
5680 pattern = r'\d+'
5681 if "Invalid operation name" in output:
5682 main.log.warn( output )
5683 return None
5684 else:
5685 match = re.search( pattern, output )
Jeremy Ronquillo82705492017-10-18 14:19:55 -07005686 return match.group( 0 )
Jon Halle0f0b342017-04-18 11:43:47 -07005687 except ( AttributeError, TypeError ):
5688 main.log.exception( self.name + ": Object not as expected; " + str( output ) )
5689 return None
5690 except Exception:
5691 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lim44075962017-08-11 10:56:37 -07005692 main.cleanAndExit()
Jeremy Ronquillo818bc7c2017-08-09 17:14:53 +00005693
5694 def events( self, args='-a' ):
5695 """
5696 Description: Returns events -a command output
5697 Optional:
5698 add other arguments
5699 """
5700 try:
5701 cmdStr = "events"
5702 if args:
5703 cmdStr += " " + args
5704 handle = self.sendline( cmdStr )
5705 assert handle is not None, "Error in sendline"
5706 assert "Command not found:" not in handle, handle
5707 return handle
5708 except AssertionError:
5709 main.log.exception( "" )
5710 return None
5711 except TypeError:
5712 main.log.exception( self.name + ": Object not as expected" )
5713 return None
5714 except pexpect.EOF:
5715 main.log.error( self.name + ": EOF exception found" )
5716 main.log.error( self.name + ": " + self.handle.before )
5717 main.cleanAndExit()
5718 except Exception:
5719 main.log.exception( self.name + ": Uncaught exception!" )
5720 main.cleanAndExit()
5721
5722 def getMaster( self, deviceID ):
5723 """
5724 Description: Obtains current master using "roles" command for a specific deviceID
5725 """
5726 try:
5727 return str( self.getRole( deviceID )[ 'master' ] )
5728 except AssertionError:
5729 main.log.exception( "" )
5730 return None
5731 except TypeError:
5732 main.log.exception( self.name + ": Object not as expected" )
5733 return None
5734 except pexpect.EOF:
5735 main.log.error( self.name + ": EOF exception found" )
5736 main.log.error( self.name + ": " + self.handle.before )
5737 main.cleanAndExit()
5738 except Exception:
5739 main.log.exception( self.name + ": Uncaught exception!" )
Devin Lime6fe3c42017-10-18 16:28:40 -07005740 main.cleanAndExit()
Jon Halla478b852017-12-04 15:00:15 -08005741
5742 def issu( self ):
5743 """
5744 Short summary of In-Service Software Upgrade status
5745
5746 Returns the output of the cli command or None on Error
5747 """
5748 try:
5749 cmdStr = "issu"
5750 handle = self.sendline( cmdStr )
5751 assert handle is not None, "Error in sendline"
5752 assert "Command not found:" not in handle, handle
5753 assert "Unsupported command:" not in handle, handle
5754 return handle
5755 except AssertionError:
5756 main.log.exception( "" )
5757 return None
5758 except TypeError:
5759 main.log.exception( self.name + ": Object not as expected" )
5760 return None
5761 except pexpect.EOF:
5762 main.log.error( self.name + ": EOF exception found" )
5763 main.log.error( self.name + ": " + self.handle.before )
5764 main.cleanAndExit()
5765 except Exception:
5766 main.log.exception( self.name + ": Uncaught exception!" )
5767 main.cleanAndExit()
5768
5769 def issuInit( self ):
5770 """
5771 Initiates an In-Service Software Upgrade
5772
5773 Returns main.TRUE on success, main.ERROR on error, else main.FALSE
5774 """
5775 try:
5776 cmdStr = "issu init"
5777 handle = self.sendline( cmdStr )
5778 assert handle is not None, "Error in sendline"
5779 assert "Command not found:" not in handle, handle
5780 assert "Unsupported command:" not in handle, handle
5781 if "Initialized" in handle:
5782 return main.TRUE
5783 else:
5784 return main.FALSE
5785 except AssertionError:
5786 main.log.exception( "" )
5787 return main.ERROR
5788 except TypeError:
5789 main.log.exception( self.name + ": Object not as expected" )
5790 return main.ERROR
5791 except pexpect.EOF:
5792 main.log.error( self.name + ": EOF exception found" )
5793 main.log.error( self.name + ": " + self.handle.before )
5794 main.cleanAndExit()
5795 except Exception:
5796 main.log.exception( self.name + ": Uncaught exception!" )
5797 main.cleanAndExit()
5798
5799 def issuUpgrade( self ):
5800 """
5801 Transitions stores to upgraded nodes
5802
5803 Returns main.TRUE on success, main.ERROR on error, else main.FALSE
5804 """
5805 try:
5806 cmdStr = "issu upgrade"
5807 handle = self.sendline( cmdStr )
5808 assert handle is not None, "Error in sendline"
5809 assert "Command not found:" not in handle, handle
5810 assert "Unsupported command:" not in handle, handle
5811 if "Upgraded" in handle:
5812 return main.TRUE
5813 else:
5814 return main.FALSE
5815 except AssertionError:
5816 main.log.exception( "" )
5817 return main.ERROR
5818 except TypeError:
5819 main.log.exception( self.name + ": Object not as expected" )
5820 return main.ERROR
5821 except pexpect.EOF:
5822 main.log.error( self.name + ": EOF exception found" )
5823 main.log.error( self.name + ": " + self.handle.before )
5824 main.cleanAndExit()
5825 except Exception:
5826 main.log.exception( self.name + ": Uncaught exception!" )
5827 main.cleanAndExit()
5828
5829 def issuCommit( self ):
5830 """
5831 Finalizes an In-Service Software Upgrade
5832
5833 Returns main.TRUE on success, main.ERROR on error, else main.FALSE
5834 """
5835 try:
5836 cmdStr = "issu commit"
5837 handle = self.sendline( cmdStr )
5838 assert handle is not None, "Error in sendline"
5839 assert "Command not found:" not in handle, handle
5840 assert "Unsupported command:" not in handle, handle
5841 # TODO: Check the version returned by this command
5842 if "Committed version" in handle:
5843 return main.TRUE
5844 else:
5845 return main.FALSE
5846 except AssertionError:
5847 main.log.exception( "" )
5848 return main.ERROR
5849 except TypeError:
5850 main.log.exception( self.name + ": Object not as expected" )
5851 return main.ERROR
5852 except pexpect.EOF:
5853 main.log.error( self.name + ": EOF exception found" )
5854 main.log.error( self.name + ": " + self.handle.before )
5855 main.cleanAndExit()
5856 except Exception:
5857 main.log.exception( self.name + ": Uncaught exception!" )
5858 main.cleanAndExit()
5859
5860 def issuRollback( self ):
5861 """
5862 Rolls back an In-Service Software Upgrade
5863
5864 Returns main.TRUE on success, main.ERROR on error, else main.FALSE
5865 """
5866 try:
5867 cmdStr = "issu rollback"
5868 handle = self.sendline( cmdStr )
5869 assert handle is not None, "Error in sendline"
5870 assert "Command not found:" not in handle, handle
5871 assert "Unsupported command:" not in handle, handle
5872 # TODO: Check the version returned by this command
5873 if "Rolled back to version" in handle:
5874 return main.TRUE
5875 else:
5876 return main.FALSE
5877 except AssertionError:
5878 main.log.exception( "" )
5879 return main.ERROR
5880 except TypeError:
5881 main.log.exception( self.name + ": Object not as expected" )
5882 return main.ERROR
5883 except pexpect.EOF:
5884 main.log.error( self.name + ": EOF exception found" )
5885 main.log.error( self.name + ": " + self.handle.before )
5886 main.cleanAndExit()
5887 except Exception:
5888 main.log.exception( self.name + ": Uncaught exception!" )
5889 main.cleanAndExit()
5890
5891 def issuReset( self ):
5892 """
5893 Resets the In-Service Software Upgrade status after a rollback
5894
5895 Returns main.TRUE on success, main.ERROR on error, else main.FALSE
5896 """
5897 try:
5898 cmdStr = "issu reset"
5899 handle = self.sendline( cmdStr )
5900 assert handle is not None, "Error in sendline"
5901 assert "Command not found:" not in handle, handle
5902 assert "Unsupported command:" not in handle, handle
5903 # TODO: Check the version returned by this command
5904 if "Reset version" in handle:
5905 return main.TRUE
5906 else:
5907 return main.FALSE
5908 except AssertionError:
5909 main.log.exception( "" )
5910 return main.ERROR
5911 except TypeError:
5912 main.log.exception( self.name + ": Object not as expected" )
5913 return main.ERROR
5914 except pexpect.EOF:
5915 main.log.error( self.name + ": EOF exception found" )
5916 main.log.error( self.name + ": " + self.handle.before )
5917 main.cleanAndExit()
5918 except Exception:
5919 main.log.exception( self.name + ": Uncaught exception!" )
5920 main.cleanAndExit()
5921
5922 def issuStatus( self ):
5923 """
5924 Status of an In-Service Software Upgrade
5925
5926 Returns the output of the cli command or None on Error
5927 """
5928 try:
5929 cmdStr = "issu status"
5930 handle = self.sendline( cmdStr )
5931 assert handle is not None, "Error in sendline"
5932 assert "Command not found:" not in handle, handle
5933 assert "Unsupported command:" not in handle, handle
5934 return handle
5935 except AssertionError:
5936 main.log.exception( "" )
5937 return None
5938 except TypeError:
5939 main.log.exception( self.name + ": Object not as expected" )
5940 return None
5941 except pexpect.EOF:
5942 main.log.error( self.name + ": EOF exception found" )
5943 main.log.error( self.name + ": " + self.handle.before )
5944 main.cleanAndExit()
5945 except Exception:
5946 main.log.exception( self.name + ": Uncaught exception!" )
5947 main.cleanAndExit()
5948
5949 def issuVersion( self ):
5950 """
5951 Get the version of an In-Service Software Upgrade
5952
5953 Returns the output of the cli command or None on Error
5954 """
5955 try:
5956 cmdStr = "issu version"
5957 handle = self.sendline( cmdStr )
5958 assert handle is not None, "Error in sendline"
5959 assert "Command not found:" not in handle, handle
5960 assert "Unsupported command:" not in handle, handle
5961 return handle
5962 except AssertionError:
5963 main.log.exception( "" )
5964 return None
5965 except TypeError:
5966 main.log.exception( self.name + ": Object not as expected" )
5967 return None
5968 except pexpect.EOF:
5969 main.log.error( self.name + ": EOF exception found" )
5970 main.log.error( self.name + ": " + self.handle.before )
5971 main.cleanAndExit()
5972 except Exception:
5973 main.log.exception( self.name + ": Uncaught exception!" )
5974 main.cleanAndExit()