blob: 3304d27c6a42fbbba6f5ca4b9f43727dd970aa38 [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 ):
You Wangb98a9fa2017-02-15 17:27:42 -0800170 main.ONOSbench.onosStop( main.ONOSip[ i ] )
171 main.ONOSbench.onosKill( main.ONOSip[ i ] )
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700172
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700173 tempOnosIp = []
174 for i in range( main.numCtrls ):
175 tempOnosIp.append( main.ONOSip[i] )
176
177 main.ONOSbench.createCellFile( main.ONOSbench.ip_address,
178 "temp", main.Mininet1.ip_address,
GlennRC632e2892015-10-19 18:58:41 -0700179 main.apps, tempOnosIp )
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700180
181 main.step( "Apply cell to environment" )
182 cellResult = main.ONOSbench.setCell( "temp" )
183 verifyResult = main.ONOSbench.verifyCell()
184 stepResult = cellResult and verifyResult
185 utilities.assert_equals( expect=main.TRUE,
186 actual=stepResult,
187 onpass="Successfully applied cell to " + \
188 "environment",
189 onfail="Failed to apply cell to environment " )
190
191 main.step( "Creating ONOS package" )
Jon Hallbd60ea02016-08-23 10:03:59 -0700192 packageResult = main.ONOSbench.buckBuild()
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700193 stepResult = packageResult
194 utilities.assert_equals( expect=main.TRUE,
195 actual=stepResult,
196 onpass="Successfully created ONOS package",
197 onfail="Failed to create ONOS package" )
198
GlennRC632e2892015-10-19 18:58:41 -0700199 time.sleep( main.startUpSleep )
200 main.step( "Uninstalling ONOS package" )
201 onosUninstallResult = main.TRUE
202 for ip in main.ONOSip:
203 onosUninstallResult = onosUninstallResult and \
204 main.ONOSbench.onosUninstall( nodeIp=ip )
205 stepResult = onosUninstallResult
206 utilities.assert_equals( expect=main.TRUE,
207 actual=stepResult,
208 onpass="Successfully uninstalled ONOS package",
209 onfail="Failed to uninstall ONOS package" )
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700210
GlennRC632e2892015-10-19 18:58:41 -0700211 time.sleep( main.startUpSleep )
212 main.step( "Installing ONOS package" )
213 onosInstallResult = main.TRUE
214 for i in range( main.numCtrls ):
215 onosInstallResult = onosInstallResult and \
216 main.ONOSbench.onosInstall( node=main.ONOSip[ i ] )
217 stepResult = onosInstallResult
218 utilities.assert_equals( expect=main.TRUE,
219 actual=stepResult,
220 onpass="Successfully installed ONOS package",
221 onfail="Failed to install ONOS package" )
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700222
You Wangf5de25b2017-01-06 15:13:01 -0800223 main.step( "Set up ONOS secure SSH" )
224 secureSshResult = main.TRUE
225 for i in range( int( main.numCtrls ) ):
226 secureSshResult = secureSshResult and main.ONOSbench.onosSecureSSH( node=main.ONOSip[i] )
227 utilities.assert_equals( expect=main.TRUE, actual=secureSshResult,
228 onpass="Test step PASS",
229 onfail="Test step FAIL" )
230
GlennRC632e2892015-10-19 18:58:41 -0700231 time.sleep( main.startUpSleep )
232 main.step( "Starting ONOS service" )
233 stopResult = main.TRUE
234 startResult = main.TRUE
235 onosIsUp = main.TRUE
236
237 for i in range( main.numCtrls ):
238 onosIsUp = onosIsUp and main.ONOSbench.isup( main.ONOSip[ i ] )
239 if onosIsUp == main.TRUE:
240 main.log.report( "ONOS instance is up and ready" )
241 else:
242 main.log.report( "ONOS instance may not be up, stop and " +
243 "start ONOS again " )
244
245 for i in range( main.numCtrls ):
246 stopResult = stopResult and \
247 main.ONOSbench.onosStop( main.ONOSip[ i ] )
248 for i in range( main.numCtrls ):
249 startResult = startResult and \
250 main.ONOSbench.onosStart( main.ONOSip[ i ] )
251 stepResult = onosIsUp and stopResult and startResult
252 utilities.assert_equals( expect=main.TRUE,
253 actual=stepResult,
254 onpass="ONOS service is ready",
255 onfail="ONOS service did not start properly" )
256
257 main.step( "Start ONOS cli" )
258 cliResult = main.TRUE
YPZhang29c2d642016-06-22 16:15:19 -0700259 main.activeNodes = []
GlennRC632e2892015-10-19 18:58:41 -0700260 for i in range( main.numCtrls ):
261 cliResult = cliResult and \
262 main.CLIs[ i ].startOnosCli( main.ONOSip[ i ] )
263 main.activeNodes.append( i )
264 stepResult = cliResult
265 utilities.assert_equals( expect=main.TRUE,
266 actual=stepResult,
267 onpass="Successfully start ONOS cli",
268 onfail="Failed to start ONOS cli" )
YPZhang29c2d642016-06-22 16:15:19 -0700269 time.sleep( main.startUpSleep )
GlennRC632e2892015-10-19 18:58:41 -0700270
271 def CASE10( self, main ):
272 """
YPZhang85024fc2016-02-09 16:59:27 -0800273 Starting up torus topology
GlennRC632e2892015-10-19 18:58:41 -0700274 """
GlennRC475f50d2015-10-23 15:01:09 -0700275
276 main.case( "Starting up Mininet and verifying topology" )
277 main.caseExplanation = "Starting Mininet with a scalling topology and " +\
278 "comparing topology elements between Mininet and ONOS"
GlennRC475f50d2015-10-23 15:01:09 -0700279 if main.topoScale:
GlennRC90d43952015-10-27 11:36:15 -0700280 main.currScale = main.topoScale.pop(0)
GlennRC475f50d2015-10-23 15:01:09 -0700281 else: main.log.error( "topology scale is empty" )
GlennRC90d43952015-10-27 11:36:15 -0700282 main.step( "Starting up TORUS %sx%s topology" % (main.currScale, main.currScale) )
GlennRC475f50d2015-10-23 15:01:09 -0700283
284 main.log.info( "Constructing Mininet command" )
YPZhangacaaf422016-07-26 09:34:03 -0700285 mnCmd = " mn --custom " + main.Mininet1.home + main.multiovs + \
286 " --switch ovsm --topo " + main.topoName + "," + main.currScale + "," + main.currScale
GlennRC475f50d2015-10-23 15:01:09 -0700287 for i in range( main.numCtrls ):
288 mnCmd += " --controller remote,ip=" + main.ONOSip[ i ]
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700289 stepResult = main.Mininet1.startNet( mnCmd=mnCmd )
GlennRC632e2892015-10-19 18:58:41 -0700290 utilities.assert_equals( expect=main.TRUE,
291 actual=stepResult,
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700292 onpass=main.topoName +
GlennRC632e2892015-10-19 18:58:41 -0700293 " topology started successfully",
294 onfail=main.topoName +
295 " topology failed to start" )
296
GlennRCe283c4b2016-01-07 13:04:10 -0800297 time.sleep( main.MNSleep )
Chiyu Cheng899621b2016-11-14 11:14:48 -0800298 main.log.info( "Clean up Tshark" )
299 with open(main.tsharkResultPath, "w" ) as tshark:
300 tshark.write( "" )
301 main.log.info( "Starting Tshark capture" )
302 main.ONOSbench.tsharkGrep( main.roleRequest, main.tsharkResultPath, grepOptions='-E' )
Chiyu Cheng81499422016-11-09 11:04:23 -0800303 main.CLIs[ 0 ].activateApp( "org.onosproject.openflow" )
304 time.sleep( main.MNSleep )
Chiyu Cheng899621b2016-11-14 11:14:48 -0800305 main.log.info( "Stop Tshark" )
306 main.ONOSbench.tsharkStop()
307 main.log.info( "Get role request time" )
308 with open( main.tsharkResultPath, "r" ) as resultFile:
309 resultText = resultFile.readlines()
310 resultFile.close()
kelvin-onlabd9e23de2015-08-06 10:34:44 -0700311
GlennRC475f50d2015-10-23 15:01:09 -0700312 def CASE11( self, main ):
313 """
YPZhangacaaf422016-07-26 09:34:03 -0700314 Compare topo, and sending Arping package
YPZhang85024fc2016-02-09 16:59:27 -0800315 if the topology is same, then Pass.
GlennRC475f50d2015-10-23 15:01:09 -0700316 """
317 import json
YPZhangacaaf422016-07-26 09:34:03 -0700318 import time
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700319 # First capture
320 for i in range( 3 ):
321 # Calculate total time
322 main.allinfo[ 0 ][ 'info' + str( i )][ 'totalTime' ] = main.scaleTopoFunction.getInfoFromLog( main, main.searchTerm[ 'start' ], 'first', main.searchTerm[ 'end' ], 'last', index=i, funcMode='TD' )
323 # Calculate switch connection time
324 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 -0800325 # Calculate the time from last switch connection to the last role request
326 main.allinfo[ 0 ][ 'info' + str( i )][ 'lastSwToLastRr' ] = main.scaleTopoFunction.compareTimeDiffWithRoleRequest( main, main.searchTerm[ 'start' ], 'last', index=i )
327 # Calculate the time from the last role request to the last topology
328 main.allinfo[ 0 ][ 'info' + str( i )][ 'lastRrToLastTopology' ] = main.scaleTopoFunction.compareTimeDiffWithRoleRequest( main, main.searchTerm[ 'end' ], 'last', index=i )
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700329 # Calculate the disconnecti rate
330 main.allinfo[ 0 ][ 'info' + str( i )][ 'disconnectRate' ] = main.scaleTopoFunction.getInfoFromLog( main, main.searchTerm[ 'Disconnect' ], 'num', main.searchTerm[ 'start' ], 'num', index=i, funcMode='DR' )
331 main.log.debug( "The data is " + str( main.allinfo[ 0 ] ) )
GlennRC475f50d2015-10-23 15:01:09 -0700332
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700333 main.case( "Verifying topology: TORUS %sx%s" % ( main.currScale, main.currScale ) )
YPZhang85024fc2016-02-09 16:59:27 -0800334 main.caseExplanation = "Pinging all hosts and comparing topology " +\
GlennRC475f50d2015-10-23 15:01:09 -0700335 "elements between Mininet and ONOS"
GlennRCe283c4b2016-01-07 13:04:10 -0800336
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700337 main.log.info( "Gathering topology information")
YPZhang85024fc2016-02-09 16:59:27 -0800338 time.sleep( main.MNSleep )
YPZhang85024fc2016-02-09 16:59:27 -0800339 stepResult = main.TRUE
GlennRC475f50d2015-10-23 15:01:09 -0700340 main.step( "Comparing MN topology to ONOS topology" )
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700341 compareRetry = 0
342 while compareRetry < 3:
YPZhang81a7d4e2016-04-18 13:10:17 -0700343 #While loop for retry
344 devices = main.topo.getAllDevices( main )
YPZhang81a7d4e2016-04-18 13:10:17 -0700345 ports = main.topo.getAllPorts( main )
346 links = main.topo.getAllLinks( main)
YPZhang81a7d4e2016-04-18 13:10:17 -0700347 mnSwitches = main.Mininet1.getSwitches()
348 mnLinks = main.Mininet1.getLinks(timeout=180)
GlennRC475f50d2015-10-23 15:01:09 -0700349
YPZhang81a7d4e2016-04-18 13:10:17 -0700350 for controller in range(len(main.activeNodes)):
YPZhangacaaf422016-07-26 09:34:03 -0700351 # controllerStr = str( main.activeNodes[controller] + 1 )
352 if devices[ controller ] and ports[ controller ] and \
353 "Error" not in devices[ controller ] and \
354 "Error" not in ports[ controller ]:
YPZhang81a7d4e2016-04-18 13:10:17 -0700355 currentDevicesResult = main.Mininet1.compareSwitches(
356 mnSwitches,
357 json.loads( devices[ controller ] ),
358 json.loads( ports[ controller ] ) )
359 else:
360 currentDevicesResult = main.FALSE
361
362 if links[ controller ] and "Error" not in links[ controller ]:
363 currentLinksResult = main.Mininet1.compareLinks(
364 mnSwitches, mnLinks,
365 json.loads( links[ controller ] ) )
366 else:
367 currentLinksResult = main.FALSE
368
YPZhangacaaf422016-07-26 09:34:03 -0700369 stepResult = stepResult and currentDevicesResult and currentLinksResult
YPZhang81a7d4e2016-04-18 13:10:17 -0700370 if stepResult:
371 break
372 compareRetry += 1
YPZhangacaaf422016-07-26 09:34:03 -0700373 utilities.assert_equals(expect=main.TRUE,
374 actual=stepResult,
375 onpass=" Topology match Mininet",
376 onfail="ONOS Topology doesn't match Mininet")
YPZhang81a7d4e2016-04-18 13:10:17 -0700377
YPZhangacaaf422016-07-26 09:34:03 -0700378 if stepResult:
379 if main.hostDiscover:
380 hostList = []
381 for i in range( 1, int( main.currScale ) + 1 ):
382 for j in range( 1, int( main.currScale ) + 1) :
383 # Generate host list
384 hoststr = "h" + str(i) + "x" + str(j)
385 hostList.append(hoststr)
386 for i in range( len(hostList) ):
387 totalHost = main.topo.sendArpPackage( main, hostList[i] )
388 time.sleep( main.hostDiscoverSleep )
389 if totalHost < 0:
390 # if totalHost less than 0 which means dependence function has exception.
391 main.log.info( "Error when discover host!" )
392 break
393 if totalHost == int( main.currScale ) * int( main.currScale ):
394 main.log.info( "Discovered all hosts" )
You Wang7bb9c462016-08-10 14:18:16 -0700395 stepResult = stepResult and main.TRUE
YPZhangacaaf422016-07-26 09:34:03 -0700396 else:
397 main.log.warn( "Some hosts ware not discovered by ONOS... Topology doesn't match!" )
You Wang7bb9c462016-08-10 14:18:16 -0700398 stepResult = main.FALSE
YPZhangacaaf422016-07-26 09:34:03 -0700399 utilities.assert_equals(expect=main.TRUE,
400 actual=stepResult,
401 onpass=" Topology match Mininet",
402 onfail="ONOS Topology doesn't match Mininet")
403 main.log.info( "Finished this iteration, continue to scale next topology." )
YPZhang81a7d4e2016-04-18 13:10:17 -0700404 else:
YPZhangacaaf422016-07-26 09:34:03 -0700405 main.log.info( "Clean up and exit TestON. Finished this test." )
406 main.cleanup()
407 main.exit()
GlennRC475f50d2015-10-23 15:01:09 -0700408
GlennRC632e2892015-10-19 18:58:41 -0700409 def CASE100( self, main ):
410 '''
YPZhang81a7d4e2016-04-18 13:10:17 -0700411 Bring Down node 3
GlennRC632e2892015-10-19 18:58:41 -0700412 '''
GlennRC475f50d2015-10-23 15:01:09 -0700413
YPZhangacaaf422016-07-26 09:34:03 -0700414 main.case("Bring ONOS node 3 down: TORUS %sx%s" % (main.currScale, main.currScale))
GlennRC475f50d2015-10-23 15:01:09 -0700415 main.caseExplanation = "Balance masters to make sure " +\
416 "each controller has some devices and " +\
417 "stop ONOS node 3 service. "
418
GlennRC475f50d2015-10-23 15:01:09 -0700419 stepResult = main.FALSE
GlennRCed2122e2015-10-21 14:38:46 -0700420 main.step( "Bringing down node 3" )
GlennRCed2122e2015-10-21 14:38:46 -0700421 # Always bring down the third node
422 main.deadNode = 2
GlennRCed2122e2015-10-21 14:38:46 -0700423 # Printing purposes
GlennRC632e2892015-10-19 18:58:41 -0700424 node = main.deadNode + 1
GlennRC632e2892015-10-19 18:58:41 -0700425 main.log.info( "Stopping node %s" % node )
GlennRC475f50d2015-10-23 15:01:09 -0700426 stepResult = main.ONOSbench.onosStop( main.ONOSip[ main.deadNode ] )
GlennRC475f50d2015-10-23 15:01:09 -0700427 main.log.info( "Removing dead node from list of active nodes" )
428 main.activeNodes.pop( main.deadNode )
GlennRC632e2892015-10-19 18:58:41 -0700429
YPZhang77badfc2016-03-09 10:28:59 -0800430 utilities.assert_equals( expect=main.TRUE,
431 actual=stepResult,
432 onpass="Successfully bring down node 3",
433 onfail="Failed to bring down node 3" )
GlennRC632e2892015-10-19 18:58:41 -0700434
GlennRC475f50d2015-10-23 15:01:09 -0700435 def CASE200( self, main ):
GlennRC632e2892015-10-19 18:58:41 -0700436 '''
YPZhangacaaf422016-07-26 09:34:03 -0700437 Bring up onos node
GlennRC632e2892015-10-19 18:58:41 -0700438 '''
GlennRC475f50d2015-10-23 15:01:09 -0700439
YPZhangacaaf422016-07-26 09:34:03 -0700440 main.case("Bring ONOS node 3 up: TORUS %sx%s" % (main.currScale, main.currScale))
GlennRC475f50d2015-10-23 15:01:09 -0700441 main.caseExplanation = "Bring node 3 back up and balance the masters"
GlennRC632e2892015-10-19 18:58:41 -0700442
443 node = main.deadNode + 1
GlennRC632e2892015-10-19 18:58:41 -0700444 main.log.info( "Starting node %s" % node )
GlennRC475f50d2015-10-23 15:01:09 -0700445 stepResult = main.ONOSbench.onosStart( main.ONOSip[ main.deadNode ] )
GlennRC632e2892015-10-19 18:58:41 -0700446 main.log.info( "Starting onos cli" )
GlennRC475f50d2015-10-23 15:01:09 -0700447 stepResult = stepResult and main.CLIs[ main.deadNode ].startOnosCli( main.ONOSip[ main.deadNode ] )
GlennRC632e2892015-10-19 18:58:41 -0700448
GlennRC475f50d2015-10-23 15:01:09 -0700449 main.log.info( "Adding previously dead node to list of active nodes" )
GlennRC632e2892015-10-19 18:58:41 -0700450 main.activeNodes.append( main.deadNode )
451
GlennRC632e2892015-10-19 18:58:41 -0700452 utilities.assert_equals( expect=main.TRUE,
453 actual=stepResult,
454 onpass="Successfully brought up onos node %s" % node,
455 onfail="Failed to bring up onos node %s" % node )
456
457
GlennRCe283c4b2016-01-07 13:04:10 -0800458 time.sleep(main.nodeSleep)
459
460 def CASE300( self, main ):
461 '''
462
463 Balancing Masters
464 '''
YPZhang85024fc2016-02-09 16:59:27 -0800465 time.sleep(main.balanceSleep)
GlennRC475f50d2015-10-23 15:01:09 -0700466 main.step( "Balancing Masters" )
GlennRCe283c4b2016-01-07 13:04:10 -0800467
GlennRC475f50d2015-10-23 15:01:09 -0700468 stepResult = main.FALSE
469 if main.activeNodes:
470 controller = main.activeNodes[0]
YPZhang924ccfe2016-01-26 14:17:30 -0800471 stepResult = utilities.retry( main.CLIs[controller].balanceMasters,
472 main.FALSE,
473 [],
474 sleep=3,
475 attempts=3 )
476
GlennRCe283c4b2016-01-07 13:04:10 -0800477 else:
478 main.log.error( "List of active nodes is empty" )
GlennRC475f50d2015-10-23 15:01:09 -0700479 utilities.assert_equals( expect=main.TRUE,
480 actual=stepResult,
481 onpass="Balance masters was successfull",
482 onfail="Failed to balance masters")
GlennRC475f50d2015-10-23 15:01:09 -0700483 time.sleep(main.balanceSleep)
484
GlennRC632e2892015-10-19 18:58:41 -0700485 def CASE1000( self, main ):
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700486 '''
487 Report errors/warnings/exceptions
488 '''
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700489 # Compare the slowest Node through total time of each node
490 slowestNode = 0
491 slowestTotalTime = 0
492 # Second capture
493 for i in range( 3 ):
494 # Calculate total time
495 main.allinfo[ 1 ][ 'info' + str( i )][ 'totalTime' ] = main.scaleTopoFunction.getInfoFromLog( main, main.searchTerm[ 'start' ], 'first', main.searchTerm[ 'end' ], 'last', index=i, funcMode='TD' )
496 # Compare the total time
497 if main.allinfo[ 1 ][ 'info' + str( i ) ][ 'totalTime' ] > slowestTotalTime:
498 slowestTotalTime = main.allinfo[ 1 ][ 'info' + str( i ) ][ 'totalTime' ]
499 slowestNode = i
500 # Calculate switch connection time
501 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 -0800502 # Calculate the time from last switch connection to the last role request
503 main.allinfo[ 1 ][ 'info' + str( i )][ 'lastSwToLastRr' ] = main.scaleTopoFunction.compareTimeDiffWithRoleRequest( main, main.searchTerm[ 'start' ], 'last', index=i )
504 # Calculate the time from the last role request to the last topology
505 main.allinfo[ 1 ][ 'info' + str( i )][ 'lastRrToLastTopology' ] = main.scaleTopoFunction.compareTimeDiffWithRoleRequest( main, main.searchTerm[ 'end' ], 'last', index=i )
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700506 # Calculate the disconnecti rate
507 main.allinfo[ 1 ][ 'info' + str( i )][ 'disconnectRate' ] = main.scaleTopoFunction.getInfoFromLog( main, main.searchTerm[ 'Disconnect' ], 'num', main.searchTerm[ 'start' ],'num', index=i, funcMode='DR' )
508
509 if ( main.allinfo[ 0 ] != main.allinfo[ 1 ] ):
510 main.log.error( "The results of two capture are different!" )
511 main.log.debug( "The data is " + str( main.allinfo ) )
512 if main.writeData != -1:
513 main.log.info( "Write the date into database" )
514 # write the date into data base
515 with open( main.dbFilePath, "a" ) as dbFile:
516 temp = str( main.currScale )
517 temp += ",'baremetal1'"
518 # put result from second capture into data base
519 temp += "," + str( "%.2f" % main.allinfo[ 1 ][ 'info' + str( slowestNode )][ 'totalTime' ] )
520 temp += "," + str( "%.2f" % main.allinfo[ 1 ][ 'info' + str( slowestNode )][ 'swConnection' ] )
Chiyu Cheng899621b2016-11-14 11:14:48 -0800521 temp += "," + str( "%.2f" % main.allinfo[ 1 ][ 'info' + str( slowestNode )][ 'lastSwToLastRr' ] )
522 temp += "," + str( "%.2f" % main.allinfo[ 1 ][ 'info' + str( slowestNode )][ 'lastRrToLastTopology' ] )
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700523 temp += "," + str( "%.2f" % main.allinfo[ 1 ][ 'info' + str( slowestNode )][ 'disconnectRate' ] )
524 temp += "\n"
525 dbFile.write( temp )
526 else:
527 main.log.error( "The data from log is wrong!" )
528 main.writeData = 1
GlennRC475f50d2015-10-23 15:01:09 -0700529 main.case( "Checking logs for errors, warnings, and exceptions" )
Chiyu Chengb8c2c842016-10-05 12:40:49 -0700530 main.log.info( "Error report: \n" )
kelvin-onlab1d381fe2015-07-14 16:24:56 -0700531 main.ONOSbench.logReport( main.ONOSip[ 0 ],
GlennRC475f50d2015-10-23 15:01:09 -0700532 [ "INFO",
533 "FOLLOWER",
534 "WARN",
535 "flow",
536 "ERROR",
537 "Except" ],
Chiyu Cheng899621b2016-11-14 11:14:48 -0800538 "s" )