blob: 1a1e38ff8b0c99fa1a0066469332d8ea31b1c248 [file] [log] [blame]
kelvin-onlab1d381fe2015-07-14 16:24:56 -07001
2# Testing network scalability, this test suite scales up a network topology
3# using mininet and verifies ONOS stability
4
GlennRC1c5df3c2015-08-27 16:12:09 -07005class SCPFscaleTopo:
kelvin-onlab1d381fe2015-07-14 16:24:56 -07006
7 def __init__( self ):
8 self.default = ''
9
10 def CASE1( self, main ):
kelvin-onlab1d381fe2015-07-14 16:24:56 -070011 import os
12 import imp
kelvin-onlab1d381fe2015-07-14 16:24:56 -070013 """
14 - Construct tests variables
15 - GIT ( optional )
16 - Checkout ONOS master branch
17 - Pull latest ONOS code
18 - Building ONOS ( optional )
19 - Install ONOS package
20 - Build ONOS package
21 """
GlennRC475f50d2015-10-23 15:01:09 -070022 main.case( "Constructing test variables" )
kelvin-onlab1d381fe2015-07-14 16:24:56 -070023 main.step( "Constructing test variables" )
24 stepResult = main.FALSE
Chiyu Chengb8c2c842016-10-05 12:40:49 -070025 # The variable to decide if the data should be written into data base.
26 # 1 means Yes and -1 means No.
27 main.writeData = 1
28 main.searchTerm = main.params[ 'SearchTerm' ]
GlennRC475f50d2015-10-23 15:01:09 -070029 main.testOnDirectory = os.path.dirname( os.getcwd ( ) )
30 main.apps = main.params[ 'ENV' ][ 'cellApps' ]
31 gitBranch = main.params[ 'GIT' ][ 'branch' ]
32 main.dependencyPath = main.testOnDirectory + \
33 main.params[ 'DEPENDENCY' ][ 'path' ]
Chiyu Cheng899621b2016-11-14 11:14:48 -080034 main.tsharkResultPath = main.params[ 'TsharkPath' ]
35 main.roleRequest = main.params[ 'SearchTerm' ]['roleRequest']
GlennRC475f50d2015-10-23 15:01:09 -070036 main.multiovs = main.params[ 'DEPENDENCY' ][ 'multiovs' ]
37 main.topoName = main.params[ 'TOPOLOGY' ][ 'topology' ]
38 main.numCtrls = int( main.params[ 'CTRL' ][ 'numCtrls' ] )
39 main.topoScale = ( main.params[ 'TOPOLOGY' ][ 'scale' ] ).split( "," )
40 main.topoScaleSize = len( main.topoScale )
41 wrapperFile1 = main.params[ 'DEPENDENCY' ][ 'wrapper1' ]
42 wrapperFile2 = main.params[ 'DEPENDENCY' ][ 'wrapper2' ]
43 wrapperFile3 = main.params[ 'DEPENDENCY' ][ 'wrapper3' ]
44 main.topoCmpAttempts = int( main.params[ 'ATTEMPTS' ][ 'topoCmp' ] )
45 main.pingallAttempts = int( main.params[ 'ATTEMPTS' ][ 'pingall' ] )
46 main.startUpSleep = int( main.params[ 'SLEEP' ][ 'startup' ] )
GlennRC475f50d2015-10-23 15:01:09 -070047 main.balanceSleep = int( main.params[ 'SLEEP' ][ 'balance' ] )
GlennRCe283c4b2016-01-07 13:04:10 -080048 main.nodeSleep = int( main.params[ 'SLEEP' ][ 'nodeSleep' ] )
GlennRC475f50d2015-10-23 15:01:09 -070049 main.pingallSleep = int( main.params[ 'SLEEP' ][ 'pingall' ] )
GlennRCe283c4b2016-01-07 13:04:10 -080050 main.MNSleep = int( main.params[ 'SLEEP' ][ 'MNsleep' ] )
YPZhang85024fc2016-02-09 16:59:27 -080051 main.pingTimeout = float( main.params[ 'TIMEOUT' ][ 'pingall' ] )
YPZhangacaaf422016-07-26 09:34:03 -070052 main.hostDiscover = main.params[ 'TOPOLOGY' ][ 'host' ]
53 main.hostDiscoverSleep = float( main.params['SLEEP']['host'] )
54 if main.hostDiscover == 'True':
55 main.hostDiscover = True
56 else:
57 main.hostDiscover = False
GlennRC475f50d2015-10-23 15:01:09 -070058 gitPull = main.params[ 'GIT' ][ 'pull' ]
59 main.homeDir = os.path.expanduser('~')
60 main.cellData = {} # for creating cell file
61 main.hostsData = {}
62 main.CLIs = []
63 main.ONOSip = []
64 main.activeNodes = []
65 main.ONOSip = main.ONOSbench.getOnosIps()
kelvin-onlab1d381fe2015-07-14 16:24:56 -070066
GlennRC475f50d2015-10-23 15:01:09 -070067 for i in range(main.numCtrls):
GlennRC632e2892015-10-19 18:58:41 -070068 main.CLIs.append( getattr( main, 'ONOScli%s' % (i+1) ) )
69
Chiyu Chengb8c2c842016-10-05 12:40:49 -070070 main.allinfo = {} # The dictionary to record all the data from karaf.log
Chiyu Cheng899621b2016-11-14 11:14:48 -080071
Chiyu Chengb8c2c842016-10-05 12:40:49 -070072 for i in range( 2 ):
73 main.allinfo[ i ]={}
74 for w in range ( 3 ):
75 # Totaltime: the time from the new switchConnection to its end
76 # swConnection: the time from the first new switchConnection to the last new switchConnection
Chiyu Cheng899621b2016-11-14 11:14:48 -080077 # lastSwToLastRr: the time from the last new switchConnection to the last role request
78 # lastRrToLastTopology: the time form the last role request to the last topology
Chiyu Chengb8c2c842016-10-05 12:40:49 -070079 # disconnectRate: the rate that shows how many switch disconnect after connection
Chiyu Cheng899621b2016-11-14 11:14:48 -080080 main.allinfo[ i ][ 'info' + str( w ) ]= { 'totalTime': 0, 'swConnection': 0, 'lastSwToLastRr': 0, 'lastRrToLastTopology': 0, 'disconnectRate': 0 }
Chiyu Chengb8c2c842016-10-05 12:40:49 -070081
82 main.dbFilePath = main.params[ 'DATABASE' ][ 'dbPath' ]
83 main.log.info( "Create Database file " + main.dbFilePath )
84 resultDB = open(main.dbFilePath, 'w+' )
85 resultDB.close()
86
Chiyu Cheng899621b2016-11-14 11:14:48 -080087
GlennRC475f50d2015-10-23 15:01:09 -070088 main.startUp = imp.load_source( wrapperFile1,
89 main.dependencyPath +
90 wrapperFile1 +
91 ".py" )
Chiyu Cheng899621b2016-11-14 11:14:48 -080092
GlennRC475f50d2015-10-23 15:01:09 -070093 main.scaleTopoFunction = imp.load_source( wrapperFile2,
94 main.dependencyPath +
95 wrapperFile2 +
96 ".py" )
Chiyu Cheng899621b2016-11-14 11:14:48 -080097
GlennRC475f50d2015-10-23 15:01:09 -070098 main.topo = imp.load_source( wrapperFile3,
99 main.dependencyPath +
100 wrapperFile3 +
101 ".py" )
Chiyu Cheng899621b2016-11-14 11:14:48 -0800102
GlennRC632e2892015-10-19 18:58:41 -0700103 main.ONOSbench.scp( main.Mininet1,
104 main.dependencyPath +
105 main.multiovs,
106 main.Mininet1.home,
107 direction="to" )
108
109 if main.CLIs:
110 stepResult = main.TRUE
111 else:
112 main.log.error( "Did not properly created list of " +
113 "ONOS CLI handle" )
114 stepResult = main.FALSE
115
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700116 utilities.assert_equals( expect=main.TRUE,
117 actual=stepResult,
118 onpass="Successfully construct " +
119 "test variables ",
120 onfail="Failed to construct test variables" )
121
122 if gitPull == 'True':
123 main.step( "Building ONOS in " + gitBranch + " branch" )
124 onosBuildResult = main.startUp.onosBuild( main, gitBranch )
125 stepResult = onosBuildResult
126 utilities.assert_equals( expect=main.TRUE,
127 actual=stepResult,
128 onpass="Successfully compiled " +
129 "latest ONOS",
130 onfail="Failed to compile " +
131 "latest ONOS" )
132 else:
133 main.log.warn( "Did not pull new code so skipping mvn " +
134 "clean install" )
135
GlennRC632e2892015-10-19 18:58:41 -0700136
137 def CASE2( self, main):
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700138 """
139 - Set up cell
140 - Create cell file
141 - Set cell file
142 - Verify cell file
143 - Kill ONOS process
144 - Uninstall ONOS cluster
145 - Verify ONOS start up
146 - Install ONOS cluster
147 - Connect to cli
148 """
YPZhangacaaf422016-07-26 09:34:03 -0700149 import time
YPZhang29c2d642016-06-22 16:15:19 -0700150 main.log.info( "Checking if mininet is already running" )
151 if len( main.topoScale ) < main.topoScaleSize:
152 main.log.info( "Mininet is already running. Stopping mininet." )
153 main.Mininet1.stopNet()
154 time.sleep(main.MNSleep)
155 else:
156 main.log.info( "Mininet was not running" )
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700157
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700158 main.case( "Starting up " + str( main.numCtrls ) +
159 " node(s) ONOS cluster" )
GlennRC632e2892015-10-19 18:58:41 -0700160 main.caseExplanation = "Set up ONOS with " + str( main.numCtrls ) +\
161 " node(s) ONOS cluster"
162
163
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700164
165 #kill off all onos processes
166 main.log.info( "Safety check, killing all ONOS processes" +
Jon Hall70b2ff42015-11-17 15:49:44 -0800167 " before initiating environment setup" )
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700168
GlennRC632e2892015-10-19 18:58:41 -0700169 for i in range( main.numCtrls ):
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700170 main.ONOSbench.onosDie( main.ONOSip[ i ] )
171
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700172 tempOnosIp = []
173 for i in range( main.numCtrls ):
174 tempOnosIp.append( main.ONOSip[i] )
175
176 main.ONOSbench.createCellFile( main.ONOSbench.ip_address,
177 "temp", main.Mininet1.ip_address,
GlennRC632e2892015-10-19 18:58:41 -0700178 main.apps, tempOnosIp )
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700179
180 main.step( "Apply cell to environment" )
181 cellResult = main.ONOSbench.setCell( "temp" )
182 verifyResult = main.ONOSbench.verifyCell()
183 stepResult = cellResult and verifyResult
184 utilities.assert_equals( expect=main.TRUE,
185 actual=stepResult,
186 onpass="Successfully applied cell to " + \
187 "environment",
188 onfail="Failed to apply cell to environment " )
189
190 main.step( "Creating ONOS package" )
Jon Hallbd60ea02016-08-23 10:03:59 -0700191 packageResult = main.ONOSbench.buckBuild()
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700192 stepResult = packageResult
193 utilities.assert_equals( expect=main.TRUE,
194 actual=stepResult,
195 onpass="Successfully created ONOS package",
196 onfail="Failed to create ONOS package" )
197
GlennRC632e2892015-10-19 18:58:41 -0700198 time.sleep( main.startUpSleep )
199 main.step( "Uninstalling ONOS package" )
200 onosUninstallResult = main.TRUE
201 for ip in main.ONOSip:
202 onosUninstallResult = onosUninstallResult and \
203 main.ONOSbench.onosUninstall( nodeIp=ip )
204 stepResult = onosUninstallResult
205 utilities.assert_equals( expect=main.TRUE,
206 actual=stepResult,
207 onpass="Successfully uninstalled ONOS package",
208 onfail="Failed to uninstall ONOS package" )
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700209
GlennRC632e2892015-10-19 18:58:41 -0700210 time.sleep( main.startUpSleep )
211 main.step( "Installing ONOS package" )
212 onosInstallResult = main.TRUE
213 for i in range( main.numCtrls ):
214 onosInstallResult = onosInstallResult and \
215 main.ONOSbench.onosInstall( node=main.ONOSip[ i ] )
216 stepResult = onosInstallResult
217 utilities.assert_equals( expect=main.TRUE,
218 actual=stepResult,
219 onpass="Successfully installed ONOS package",
220 onfail="Failed to install ONOS package" )
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700221
GlennRC632e2892015-10-19 18:58:41 -0700222 time.sleep( main.startUpSleep )
223 main.step( "Starting ONOS service" )
224 stopResult = main.TRUE
225 startResult = main.TRUE
226 onosIsUp = main.TRUE
227
228 for i in range( main.numCtrls ):
229 onosIsUp = onosIsUp and main.ONOSbench.isup( main.ONOSip[ i ] )
230 if onosIsUp == main.TRUE:
231 main.log.report( "ONOS instance is up and ready" )
232 else:
233 main.log.report( "ONOS instance may not be up, stop and " +
234 "start ONOS again " )
235
236 for i in range( main.numCtrls ):
237 stopResult = stopResult and \
238 main.ONOSbench.onosStop( main.ONOSip[ i ] )
239 for i in range( main.numCtrls ):
240 startResult = startResult and \
241 main.ONOSbench.onosStart( main.ONOSip[ i ] )
242 stepResult = onosIsUp and stopResult and startResult
243 utilities.assert_equals( expect=main.TRUE,
244 actual=stepResult,
245 onpass="ONOS service is ready",
246 onfail="ONOS service did not start properly" )
247
Chiyu Chengef109502016-11-21 15:51:38 -0800248 main.step( "Set up ONOS secure SSH" )
249 secureSshResult = main.TRUE
250 for i in range( int( main.numCtrls ) ):
251 secureSshResult = secureSshResult and main.ONOSbench.onosSecureSSH( node=main.ONOSip[i] )
252 utilities.assert_equals( expect=main.TRUE, actual=secureSshResult,
253 onpass="Test step PASS",
254 onfail="Test step FAIL" )
255
GlennRC632e2892015-10-19 18:58:41 -0700256 main.step( "Start ONOS cli" )
257 cliResult = main.TRUE
YPZhang29c2d642016-06-22 16:15:19 -0700258 main.activeNodes = []
GlennRC632e2892015-10-19 18:58:41 -0700259 for i in range( main.numCtrls ):
260 cliResult = cliResult and \
261 main.CLIs[ i ].startOnosCli( main.ONOSip[ i ] )
262 main.activeNodes.append( i )
263 stepResult = cliResult
264 utilities.assert_equals( expect=main.TRUE,
265 actual=stepResult,
266 onpass="Successfully start ONOS cli",
267 onfail="Failed to start ONOS cli" )
YPZhang29c2d642016-06-22 16:15:19 -0700268 time.sleep( main.startUpSleep )
GlennRC632e2892015-10-19 18:58:41 -0700269
270 def CASE10( self, main ):
271 """
YPZhang85024fc2016-02-09 16:59:27 -0800272 Starting up torus topology
GlennRC632e2892015-10-19 18:58:41 -0700273 """
GlennRC475f50d2015-10-23 15:01:09 -0700274
275 main.case( "Starting up Mininet and verifying topology" )
276 main.caseExplanation = "Starting Mininet with a scalling topology and " +\
277 "comparing topology elements between Mininet and ONOS"
GlennRC475f50d2015-10-23 15:01:09 -0700278 if main.topoScale:
GlennRC90d43952015-10-27 11:36:15 -0700279 main.currScale = main.topoScale.pop(0)
GlennRC475f50d2015-10-23 15:01:09 -0700280 else: main.log.error( "topology scale is empty" )
GlennRC90d43952015-10-27 11:36:15 -0700281 main.step( "Starting up TORUS %sx%s topology" % (main.currScale, main.currScale) )
GlennRC475f50d2015-10-23 15:01:09 -0700282
283 main.log.info( "Constructing Mininet command" )
YPZhangacaaf422016-07-26 09:34:03 -0700284 mnCmd = " mn --custom " + main.Mininet1.home + main.multiovs + \
285 " --switch ovsm --topo " + main.topoName + "," + main.currScale + "," + main.currScale
GlennRC475f50d2015-10-23 15:01:09 -0700286 for i in range( main.numCtrls ):
287 mnCmd += " --controller remote,ip=" + main.ONOSip[ i ]
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700288 stepResult = main.Mininet1.startNet( mnCmd=mnCmd )
GlennRC632e2892015-10-19 18:58:41 -0700289 utilities.assert_equals( expect=main.TRUE,
290 actual=stepResult,
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700291 onpass=main.topoName +
GlennRC632e2892015-10-19 18:58:41 -0700292 " topology started successfully",
293 onfail=main.topoName +
294 " topology failed to start" )
295
GlennRCe283c4b2016-01-07 13:04:10 -0800296 time.sleep( main.MNSleep )
Chiyu Cheng899621b2016-11-14 11:14:48 -0800297 main.log.info( "Clean up Tshark" )
298 with open(main.tsharkResultPath, "w" ) as tshark:
299 tshark.write( "" )
300 main.log.info( "Starting Tshark capture" )
301 main.ONOSbench.tsharkGrep( main.roleRequest, main.tsharkResultPath, grepOptions='-E' )
Chiyu Cheng81499422016-11-09 11:04:23 -0800302 main.CLIs[ 0 ].activateApp( "org.onosproject.openflow" )
303 time.sleep( main.MNSleep )
Chiyu Cheng899621b2016-11-14 11:14:48 -0800304 main.log.info( "Stop Tshark" )
305 main.ONOSbench.tsharkStop()
306 main.log.info( "Get role request time" )
307 with open( main.tsharkResultPath, "r" ) as resultFile:
308 resultText = resultFile.readlines()
309 resultFile.close()
kelvin-onlabd9e23de2015-08-06 10:34:44 -0700310
GlennRC475f50d2015-10-23 15:01:09 -0700311 def CASE11( self, main ):
312 """
YPZhangacaaf422016-07-26 09:34:03 -0700313 Compare topo, and sending Arping package
YPZhang85024fc2016-02-09 16:59:27 -0800314 if the topology is same, then Pass.
GlennRC475f50d2015-10-23 15:01:09 -0700315 """
316 import json
YPZhangacaaf422016-07-26 09:34:03 -0700317 import time
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700318 # First capture
319 for i in range( 3 ):
320 # Calculate total time
321 main.allinfo[ 0 ][ 'info' + str( i )][ 'totalTime' ] = main.scaleTopoFunction.getInfoFromLog( main, main.searchTerm[ 'start' ], 'first', main.searchTerm[ 'end' ], 'last', index=i, funcMode='TD' )
322 # Calculate switch connection time
323 main.allinfo[ 0 ][ 'info' + str( i )][ 'swConnection' ] = main.scaleTopoFunction.getInfoFromLog( main, main.searchTerm[ 'start' ], 'first', main.searchTerm[ 'start' ], 'last', index=i, funcMode='TD' )
Chiyu Cheng899621b2016-11-14 11:14:48 -0800324 # Calculate the time from last switch connection to the last role request
325 main.allinfo[ 0 ][ 'info' + str( i )][ 'lastSwToLastRr' ] = main.scaleTopoFunction.compareTimeDiffWithRoleRequest( main, main.searchTerm[ 'start' ], 'last', index=i )
326 # Calculate the time from the last role request to the last topology
327 main.allinfo[ 0 ][ 'info' + str( i )][ 'lastRrToLastTopology' ] = main.scaleTopoFunction.compareTimeDiffWithRoleRequest( main, main.searchTerm[ 'end' ], 'last', index=i )
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700328 # Calculate the disconnecti rate
329 main.allinfo[ 0 ][ 'info' + str( i )][ 'disconnectRate' ] = main.scaleTopoFunction.getInfoFromLog( main, main.searchTerm[ 'Disconnect' ], 'num', main.searchTerm[ 'start' ], 'num', index=i, funcMode='DR' )
330 main.log.debug( "The data is " + str( main.allinfo[ 0 ] ) )
GlennRC475f50d2015-10-23 15:01:09 -0700331
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700332 main.case( "Verifying topology: TORUS %sx%s" % ( main.currScale, main.currScale ) )
YPZhang85024fc2016-02-09 16:59:27 -0800333 main.caseExplanation = "Pinging all hosts and comparing topology " +\
GlennRC475f50d2015-10-23 15:01:09 -0700334 "elements between Mininet and ONOS"
GlennRCe283c4b2016-01-07 13:04:10 -0800335
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700336 main.log.info( "Gathering topology information")
YPZhang85024fc2016-02-09 16:59:27 -0800337 time.sleep( main.MNSleep )
YPZhang85024fc2016-02-09 16:59:27 -0800338 stepResult = main.TRUE
GlennRC475f50d2015-10-23 15:01:09 -0700339 main.step( "Comparing MN topology to ONOS topology" )
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700340 compareRetry = 0
341 while compareRetry < 3:
YPZhang81a7d4e2016-04-18 13:10:17 -0700342 #While loop for retry
343 devices = main.topo.getAllDevices( main )
YPZhang81a7d4e2016-04-18 13:10:17 -0700344 ports = main.topo.getAllPorts( main )
345 links = main.topo.getAllLinks( main)
YPZhang81a7d4e2016-04-18 13:10:17 -0700346 mnSwitches = main.Mininet1.getSwitches()
347 mnLinks = main.Mininet1.getLinks(timeout=180)
GlennRC475f50d2015-10-23 15:01:09 -0700348
YPZhang81a7d4e2016-04-18 13:10:17 -0700349 for controller in range(len(main.activeNodes)):
YPZhangacaaf422016-07-26 09:34:03 -0700350 # controllerStr = str( main.activeNodes[controller] + 1 )
351 if devices[ controller ] and ports[ controller ] and \
352 "Error" not in devices[ controller ] and \
353 "Error" not in ports[ controller ]:
YPZhang81a7d4e2016-04-18 13:10:17 -0700354 currentDevicesResult = main.Mininet1.compareSwitches(
355 mnSwitches,
356 json.loads( devices[ controller ] ),
357 json.loads( ports[ controller ] ) )
358 else:
359 currentDevicesResult = main.FALSE
360
361 if links[ controller ] and "Error" not in links[ controller ]:
362 currentLinksResult = main.Mininet1.compareLinks(
363 mnSwitches, mnLinks,
364 json.loads( links[ controller ] ) )
365 else:
366 currentLinksResult = main.FALSE
367
YPZhangacaaf422016-07-26 09:34:03 -0700368 stepResult = stepResult and currentDevicesResult and currentLinksResult
YPZhang81a7d4e2016-04-18 13:10:17 -0700369 if stepResult:
370 break
371 compareRetry += 1
YPZhangacaaf422016-07-26 09:34:03 -0700372 utilities.assert_equals(expect=main.TRUE,
373 actual=stepResult,
374 onpass=" Topology match Mininet",
375 onfail="ONOS Topology doesn't match Mininet")
YPZhang81a7d4e2016-04-18 13:10:17 -0700376
YPZhangacaaf422016-07-26 09:34:03 -0700377 if stepResult:
378 if main.hostDiscover:
379 hostList = []
380 for i in range( 1, int( main.currScale ) + 1 ):
381 for j in range( 1, int( main.currScale ) + 1) :
382 # Generate host list
383 hoststr = "h" + str(i) + "x" + str(j)
384 hostList.append(hoststr)
385 for i in range( len(hostList) ):
386 totalHost = main.topo.sendArpPackage( main, hostList[i] )
387 time.sleep( main.hostDiscoverSleep )
388 if totalHost < 0:
389 # if totalHost less than 0 which means dependence function has exception.
390 main.log.info( "Error when discover host!" )
391 break
392 if totalHost == int( main.currScale ) * int( main.currScale ):
393 main.log.info( "Discovered all hosts" )
You Wang7bb9c462016-08-10 14:18:16 -0700394 stepResult = stepResult and main.TRUE
YPZhangacaaf422016-07-26 09:34:03 -0700395 else:
396 main.log.warn( "Some hosts ware not discovered by ONOS... Topology doesn't match!" )
You Wang7bb9c462016-08-10 14:18:16 -0700397 stepResult = main.FALSE
YPZhangacaaf422016-07-26 09:34:03 -0700398 utilities.assert_equals(expect=main.TRUE,
399 actual=stepResult,
400 onpass=" Topology match Mininet",
401 onfail="ONOS Topology doesn't match Mininet")
402 main.log.info( "Finished this iteration, continue to scale next topology." )
YPZhang81a7d4e2016-04-18 13:10:17 -0700403 else:
YPZhangacaaf422016-07-26 09:34:03 -0700404 main.log.info( "Clean up and exit TestON. Finished this test." )
405 main.cleanup()
406 main.exit()
GlennRC475f50d2015-10-23 15:01:09 -0700407
GlennRC632e2892015-10-19 18:58:41 -0700408 def CASE100( self, main ):
409 '''
YPZhang81a7d4e2016-04-18 13:10:17 -0700410 Bring Down node 3
GlennRC632e2892015-10-19 18:58:41 -0700411 '''
GlennRC475f50d2015-10-23 15:01:09 -0700412
YPZhangacaaf422016-07-26 09:34:03 -0700413 main.case("Bring ONOS node 3 down: TORUS %sx%s" % (main.currScale, main.currScale))
GlennRC475f50d2015-10-23 15:01:09 -0700414 main.caseExplanation = "Balance masters to make sure " +\
415 "each controller has some devices and " +\
416 "stop ONOS node 3 service. "
417
GlennRC475f50d2015-10-23 15:01:09 -0700418 stepResult = main.FALSE
GlennRCed2122e2015-10-21 14:38:46 -0700419 main.step( "Bringing down node 3" )
GlennRCed2122e2015-10-21 14:38:46 -0700420 # Always bring down the third node
421 main.deadNode = 2
GlennRCed2122e2015-10-21 14:38:46 -0700422 # Printing purposes
GlennRC632e2892015-10-19 18:58:41 -0700423 node = main.deadNode + 1
GlennRC632e2892015-10-19 18:58:41 -0700424 main.log.info( "Stopping node %s" % node )
GlennRC475f50d2015-10-23 15:01:09 -0700425 stepResult = main.ONOSbench.onosStop( main.ONOSip[ main.deadNode ] )
GlennRC475f50d2015-10-23 15:01:09 -0700426 main.log.info( "Removing dead node from list of active nodes" )
427 main.activeNodes.pop( main.deadNode )
GlennRC632e2892015-10-19 18:58:41 -0700428
YPZhang77badfc2016-03-09 10:28:59 -0800429 utilities.assert_equals( expect=main.TRUE,
430 actual=stepResult,
431 onpass="Successfully bring down node 3",
432 onfail="Failed to bring down node 3" )
GlennRC632e2892015-10-19 18:58:41 -0700433
GlennRC475f50d2015-10-23 15:01:09 -0700434 def CASE200( self, main ):
GlennRC632e2892015-10-19 18:58:41 -0700435 '''
YPZhangacaaf422016-07-26 09:34:03 -0700436 Bring up onos node
GlennRC632e2892015-10-19 18:58:41 -0700437 '''
GlennRC475f50d2015-10-23 15:01:09 -0700438
YPZhangacaaf422016-07-26 09:34:03 -0700439 main.case("Bring ONOS node 3 up: TORUS %sx%s" % (main.currScale, main.currScale))
GlennRC475f50d2015-10-23 15:01:09 -0700440 main.caseExplanation = "Bring node 3 back up and balance the masters"
GlennRC632e2892015-10-19 18:58:41 -0700441
442 node = main.deadNode + 1
GlennRC632e2892015-10-19 18:58:41 -0700443 main.log.info( "Starting node %s" % node )
GlennRC475f50d2015-10-23 15:01:09 -0700444 stepResult = main.ONOSbench.onosStart( main.ONOSip[ main.deadNode ] )
GlennRC632e2892015-10-19 18:58:41 -0700445 main.log.info( "Starting onos cli" )
GlennRC475f50d2015-10-23 15:01:09 -0700446 stepResult = stepResult and main.CLIs[ main.deadNode ].startOnosCli( main.ONOSip[ main.deadNode ] )
GlennRC632e2892015-10-19 18:58:41 -0700447
GlennRC475f50d2015-10-23 15:01:09 -0700448 main.log.info( "Adding previously dead node to list of active nodes" )
GlennRC632e2892015-10-19 18:58:41 -0700449 main.activeNodes.append( main.deadNode )
450
GlennRC632e2892015-10-19 18:58:41 -0700451 utilities.assert_equals( expect=main.TRUE,
452 actual=stepResult,
453 onpass="Successfully brought up onos node %s" % node,
454 onfail="Failed to bring up onos node %s" % node )
455
456
GlennRCe283c4b2016-01-07 13:04:10 -0800457 time.sleep(main.nodeSleep)
458
459 def CASE300( self, main ):
460 '''
461
462 Balancing Masters
463 '''
YPZhang85024fc2016-02-09 16:59:27 -0800464 time.sleep(main.balanceSleep)
GlennRC475f50d2015-10-23 15:01:09 -0700465 main.step( "Balancing Masters" )
GlennRCe283c4b2016-01-07 13:04:10 -0800466
GlennRC475f50d2015-10-23 15:01:09 -0700467 stepResult = main.FALSE
468 if main.activeNodes:
469 controller = main.activeNodes[0]
YPZhang924ccfe2016-01-26 14:17:30 -0800470 stepResult = utilities.retry( main.CLIs[controller].balanceMasters,
471 main.FALSE,
472 [],
473 sleep=3,
474 attempts=3 )
475
GlennRCe283c4b2016-01-07 13:04:10 -0800476 else:
477 main.log.error( "List of active nodes is empty" )
GlennRC475f50d2015-10-23 15:01:09 -0700478 utilities.assert_equals( expect=main.TRUE,
479 actual=stepResult,
480 onpass="Balance masters was successfull",
481 onfail="Failed to balance masters")
GlennRC475f50d2015-10-23 15:01:09 -0700482 time.sleep(main.balanceSleep)
483
GlennRC632e2892015-10-19 18:58:41 -0700484 def CASE1000( self, main ):
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700485 '''
486 Report errors/warnings/exceptions
487 '''
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700488 # Compare the slowest Node through total time of each node
489 slowestNode = 0
490 slowestTotalTime = 0
491 # Second capture
492 for i in range( 3 ):
493 # Calculate total time
494 main.allinfo[ 1 ][ 'info' + str( i )][ 'totalTime' ] = main.scaleTopoFunction.getInfoFromLog( main, main.searchTerm[ 'start' ], 'first', main.searchTerm[ 'end' ], 'last', index=i, funcMode='TD' )
495 # Compare the total time
496 if main.allinfo[ 1 ][ 'info' + str( i ) ][ 'totalTime' ] > slowestTotalTime:
497 slowestTotalTime = main.allinfo[ 1 ][ 'info' + str( i ) ][ 'totalTime' ]
498 slowestNode = i
499 # Calculate switch connection time
500 main.allinfo[ 1 ][ 'info' + str( i )][ 'swConnection' ] = main.scaleTopoFunction.getInfoFromLog( main, main.searchTerm[ 'start' ], 'first', main.searchTerm[ 'start' ], 'last', index=i, funcMode='TD' )
Chiyu Cheng899621b2016-11-14 11:14:48 -0800501 # Calculate the time from last switch connection to the last role request
502 main.allinfo[ 1 ][ 'info' + str( i )][ 'lastSwToLastRr' ] = main.scaleTopoFunction.compareTimeDiffWithRoleRequest( main, main.searchTerm[ 'start' ], 'last', index=i )
503 # Calculate the time from the last role request to the last topology
504 main.allinfo[ 1 ][ 'info' + str( i )][ 'lastRrToLastTopology' ] = main.scaleTopoFunction.compareTimeDiffWithRoleRequest( main, main.searchTerm[ 'end' ], 'last', index=i )
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700505 # Calculate the disconnecti rate
506 main.allinfo[ 1 ][ 'info' + str( i )][ 'disconnectRate' ] = main.scaleTopoFunction.getInfoFromLog( main, main.searchTerm[ 'Disconnect' ], 'num', main.searchTerm[ 'start' ],'num', index=i, funcMode='DR' )
507
508 if ( main.allinfo[ 0 ] != main.allinfo[ 1 ] ):
509 main.log.error( "The results of two capture are different!" )
510 main.log.debug( "The data is " + str( main.allinfo ) )
511 if main.writeData != -1:
512 main.log.info( "Write the date into database" )
513 # write the date into data base
514 with open( main.dbFilePath, "a" ) as dbFile:
515 temp = str( main.currScale )
516 temp += ",'baremetal1'"
517 # put result from second capture into data base
518 temp += "," + str( "%.2f" % main.allinfo[ 1 ][ 'info' + str( slowestNode )][ 'totalTime' ] )
519 temp += "," + str( "%.2f" % main.allinfo[ 1 ][ 'info' + str( slowestNode )][ 'swConnection' ] )
Chiyu Cheng899621b2016-11-14 11:14:48 -0800520 temp += "," + str( "%.2f" % main.allinfo[ 1 ][ 'info' + str( slowestNode )][ 'lastSwToLastRr' ] )
521 temp += "," + str( "%.2f" % main.allinfo[ 1 ][ 'info' + str( slowestNode )][ 'lastRrToLastTopology' ] )
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700522 temp += "," + str( "%.2f" % main.allinfo[ 1 ][ 'info' + str( slowestNode )][ 'disconnectRate' ] )
523 temp += "\n"
524 dbFile.write( temp )
525 else:
526 main.log.error( "The data from log is wrong!" )
527 main.writeData = 1
GlennRC475f50d2015-10-23 15:01:09 -0700528 main.case( "Checking logs for errors, warnings, and exceptions" )
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700529 main.log.info( "Error report: \n" )
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700530 main.ONOSbench.logReport( main.ONOSip[ 0 ],
GlennRC475f50d2015-10-23 15:01:09 -0700531 [ "INFO",
532 "FOLLOWER",
533 "WARN",
534 "flow",
535 "ERROR",
536 "Except" ],
Chiyu Cheng899621b2016-11-14 11:14:48 -0800537 "s" )