kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 1 | |
| 2 | # Testing network scalability, this test suite scales up a network topology |
| 3 | # using mininet and verifies ONOS stability |
| 4 | |
GlennRC | 1c5df3c | 2015-08-27 16:12:09 -0700 | [diff] [blame] | 5 | class SCPFscaleTopo: |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 6 | |
| 7 | def __init__( self ): |
| 8 | self.default = '' |
| 9 | |
| 10 | def CASE1( self, main ): |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 11 | import os |
| 12 | import imp |
| 13 | |
| 14 | """ |
| 15 | - Construct tests variables |
| 16 | - GIT ( optional ) |
| 17 | - Checkout ONOS master branch |
| 18 | - Pull latest ONOS code |
| 19 | - Building ONOS ( optional ) |
| 20 | - Install ONOS package |
| 21 | - Build ONOS package |
| 22 | """ |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 23 | main.case( "Constructing test variables" ) |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 24 | main.step( "Constructing test variables" ) |
| 25 | stepResult = main.FALSE |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 26 | # The variable to decide if the data should be written into data base. |
| 27 | # 1 means Yes and -1 means No. |
| 28 | main.writeData = 1 |
| 29 | main.searchTerm = main.params[ 'SearchTerm' ] |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 30 | main.testOnDirectory = os.path.dirname( os.getcwd ( ) ) |
| 31 | main.apps = main.params[ 'ENV' ][ 'cellApps' ] |
| 32 | gitBranch = main.params[ 'GIT' ][ 'branch' ] |
| 33 | main.dependencyPath = main.testOnDirectory + \ |
| 34 | main.params[ 'DEPENDENCY' ][ 'path' ] |
| 35 | main.multiovs = main.params[ 'DEPENDENCY' ][ 'multiovs' ] |
| 36 | main.topoName = main.params[ 'TOPOLOGY' ][ 'topology' ] |
| 37 | main.numCtrls = int( main.params[ 'CTRL' ][ 'numCtrls' ] ) |
| 38 | main.topoScale = ( main.params[ 'TOPOLOGY' ][ 'scale' ] ).split( "," ) |
| 39 | main.topoScaleSize = len( main.topoScale ) |
| 40 | wrapperFile1 = main.params[ 'DEPENDENCY' ][ 'wrapper1' ] |
| 41 | wrapperFile2 = main.params[ 'DEPENDENCY' ][ 'wrapper2' ] |
| 42 | wrapperFile3 = main.params[ 'DEPENDENCY' ][ 'wrapper3' ] |
| 43 | main.topoCmpAttempts = int( main.params[ 'ATTEMPTS' ][ 'topoCmp' ] ) |
| 44 | main.pingallAttempts = int( main.params[ 'ATTEMPTS' ][ 'pingall' ] ) |
| 45 | main.startUpSleep = int( main.params[ 'SLEEP' ][ 'startup' ] ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 46 | main.balanceSleep = int( main.params[ 'SLEEP' ][ 'balance' ] ) |
GlennRC | e283c4b | 2016-01-07 13:04:10 -0800 | [diff] [blame] | 47 | main.nodeSleep = int( main.params[ 'SLEEP' ][ 'nodeSleep' ] ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 48 | main.pingallSleep = int( main.params[ 'SLEEP' ][ 'pingall' ] ) |
GlennRC | e283c4b | 2016-01-07 13:04:10 -0800 | [diff] [blame] | 49 | main.MNSleep = int( main.params[ 'SLEEP' ][ 'MNsleep' ] ) |
YPZhang | 85024fc | 2016-02-09 16:59:27 -0800 | [diff] [blame] | 50 | main.pingTimeout = float( main.params[ 'TIMEOUT' ][ 'pingall' ] ) |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 51 | main.hostDiscover = main.params[ 'TOPOLOGY' ][ 'host' ] |
| 52 | main.hostDiscoverSleep = float( main.params['SLEEP']['host'] ) |
| 53 | if main.hostDiscover == 'True': |
| 54 | main.hostDiscover = True |
| 55 | else: |
| 56 | main.hostDiscover = False |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 57 | gitPull = main.params[ 'GIT' ][ 'pull' ] |
| 58 | main.homeDir = os.path.expanduser('~') |
| 59 | main.cellData = {} # for creating cell file |
| 60 | main.hostsData = {} |
| 61 | main.CLIs = [] |
| 62 | main.ONOSip = [] |
| 63 | main.activeNodes = [] |
| 64 | main.ONOSip = main.ONOSbench.getOnosIps() |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 65 | |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 66 | for i in range(main.numCtrls): |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 67 | main.CLIs.append( getattr( main, 'ONOScli%s' % (i+1) ) ) |
| 68 | |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 69 | main.allinfo = {} # The dictionary to record all the data from karaf.log |
| 70 | for i in range( 2 ): |
| 71 | main.allinfo[ i ]={} |
| 72 | for w in range ( 3 ): |
| 73 | # Totaltime: the time from the new switchConnection to its end |
| 74 | # swConnection: the time from the first new switchConnection to the last new switchConnection |
| 75 | # disconnectRate: the rate that shows how many switch disconnect after connection |
Chiyu Cheng | 8800c7c | 2016-10-18 11:26:35 -0700 | [diff] [blame] | 76 | main.allinfo[ i ][ 'info' + str( w ) ]= { 'totalTime': 0, 'swConnection': 0,'lastSwToTopology': 0, 'disconnectRate': 0 } |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 77 | |
| 78 | main.dbFilePath = main.params[ 'DATABASE' ][ 'dbPath' ] |
| 79 | main.log.info( "Create Database file " + main.dbFilePath ) |
| 80 | resultDB = open(main.dbFilePath, 'w+' ) |
| 81 | resultDB.close() |
| 82 | |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 83 | main.startUp = imp.load_source( wrapperFile1, |
| 84 | main.dependencyPath + |
| 85 | wrapperFile1 + |
| 86 | ".py" ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 87 | main.scaleTopoFunction = imp.load_source( wrapperFile2, |
| 88 | main.dependencyPath + |
| 89 | wrapperFile2 + |
| 90 | ".py" ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 91 | main.topo = imp.load_source( wrapperFile3, |
| 92 | main.dependencyPath + |
| 93 | wrapperFile3 + |
| 94 | ".py" ) |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 95 | main.ONOSbench.scp( main.Mininet1, |
| 96 | main.dependencyPath + |
| 97 | main.multiovs, |
| 98 | main.Mininet1.home, |
| 99 | direction="to" ) |
| 100 | |
| 101 | if main.CLIs: |
| 102 | stepResult = main.TRUE |
| 103 | else: |
| 104 | main.log.error( "Did not properly created list of " + |
| 105 | "ONOS CLI handle" ) |
| 106 | stepResult = main.FALSE |
| 107 | |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 108 | utilities.assert_equals( expect=main.TRUE, |
| 109 | actual=stepResult, |
| 110 | onpass="Successfully construct " + |
| 111 | "test variables ", |
| 112 | onfail="Failed to construct test variables" ) |
| 113 | |
| 114 | if gitPull == 'True': |
| 115 | main.step( "Building ONOS in " + gitBranch + " branch" ) |
| 116 | onosBuildResult = main.startUp.onosBuild( main, gitBranch ) |
| 117 | stepResult = onosBuildResult |
| 118 | utilities.assert_equals( expect=main.TRUE, |
| 119 | actual=stepResult, |
| 120 | onpass="Successfully compiled " + |
| 121 | "latest ONOS", |
| 122 | onfail="Failed to compile " + |
| 123 | "latest ONOS" ) |
| 124 | else: |
| 125 | main.log.warn( "Did not pull new code so skipping mvn " + |
| 126 | "clean install" ) |
| 127 | |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 128 | |
| 129 | def CASE2( self, main): |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 130 | """ |
| 131 | - Set up cell |
| 132 | - Create cell file |
| 133 | - Set cell file |
| 134 | - Verify cell file |
| 135 | - Kill ONOS process |
| 136 | - Uninstall ONOS cluster |
| 137 | - Verify ONOS start up |
| 138 | - Install ONOS cluster |
| 139 | - Connect to cli |
| 140 | """ |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 141 | import time |
YPZhang | 29c2d64 | 2016-06-22 16:15:19 -0700 | [diff] [blame] | 142 | main.log.info( "Checking if mininet is already running" ) |
| 143 | if len( main.topoScale ) < main.topoScaleSize: |
| 144 | main.log.info( "Mininet is already running. Stopping mininet." ) |
| 145 | main.Mininet1.stopNet() |
| 146 | time.sleep(main.MNSleep) |
| 147 | else: |
| 148 | main.log.info( "Mininet was not running" ) |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 149 | |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 150 | main.case( "Starting up " + str( main.numCtrls ) + |
| 151 | " node(s) ONOS cluster" ) |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 152 | main.caseExplanation = "Set up ONOS with " + str( main.numCtrls ) +\ |
| 153 | " node(s) ONOS cluster" |
| 154 | |
| 155 | |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 156 | |
| 157 | #kill off all onos processes |
| 158 | main.log.info( "Safety check, killing all ONOS processes" + |
Jon Hall | 70b2ff4 | 2015-11-17 15:49:44 -0800 | [diff] [blame] | 159 | " before initiating environment setup" ) |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 160 | |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 161 | for i in range( main.numCtrls ): |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 162 | main.ONOSbench.onosDie( main.ONOSip[ i ] ) |
| 163 | |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 164 | tempOnosIp = [] |
| 165 | for i in range( main.numCtrls ): |
| 166 | tempOnosIp.append( main.ONOSip[i] ) |
| 167 | |
| 168 | main.ONOSbench.createCellFile( main.ONOSbench.ip_address, |
| 169 | "temp", main.Mininet1.ip_address, |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 170 | main.apps, tempOnosIp ) |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 171 | |
| 172 | main.step( "Apply cell to environment" ) |
| 173 | cellResult = main.ONOSbench.setCell( "temp" ) |
| 174 | verifyResult = main.ONOSbench.verifyCell() |
| 175 | stepResult = cellResult and verifyResult |
| 176 | utilities.assert_equals( expect=main.TRUE, |
| 177 | actual=stepResult, |
| 178 | onpass="Successfully applied cell to " + \ |
| 179 | "environment", |
| 180 | onfail="Failed to apply cell to environment " ) |
| 181 | |
| 182 | main.step( "Creating ONOS package" ) |
Jon Hall | bd60ea0 | 2016-08-23 10:03:59 -0700 | [diff] [blame] | 183 | packageResult = main.ONOSbench.buckBuild() |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 184 | stepResult = packageResult |
| 185 | utilities.assert_equals( expect=main.TRUE, |
| 186 | actual=stepResult, |
| 187 | onpass="Successfully created ONOS package", |
| 188 | onfail="Failed to create ONOS package" ) |
| 189 | |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 190 | time.sleep( main.startUpSleep ) |
| 191 | main.step( "Uninstalling ONOS package" ) |
| 192 | onosUninstallResult = main.TRUE |
| 193 | for ip in main.ONOSip: |
| 194 | onosUninstallResult = onosUninstallResult and \ |
| 195 | main.ONOSbench.onosUninstall( nodeIp=ip ) |
| 196 | stepResult = onosUninstallResult |
| 197 | utilities.assert_equals( expect=main.TRUE, |
| 198 | actual=stepResult, |
| 199 | onpass="Successfully uninstalled ONOS package", |
| 200 | onfail="Failed to uninstall ONOS package" ) |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 201 | |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 202 | time.sleep( main.startUpSleep ) |
| 203 | main.step( "Installing ONOS package" ) |
| 204 | onosInstallResult = main.TRUE |
| 205 | for i in range( main.numCtrls ): |
| 206 | onosInstallResult = onosInstallResult and \ |
| 207 | main.ONOSbench.onosInstall( node=main.ONOSip[ i ] ) |
| 208 | stepResult = onosInstallResult |
| 209 | utilities.assert_equals( expect=main.TRUE, |
| 210 | actual=stepResult, |
| 211 | onpass="Successfully installed ONOS package", |
| 212 | onfail="Failed to install ONOS package" ) |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 213 | |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 214 | time.sleep( main.startUpSleep ) |
| 215 | main.step( "Starting ONOS service" ) |
| 216 | stopResult = main.TRUE |
| 217 | startResult = main.TRUE |
| 218 | onosIsUp = main.TRUE |
| 219 | |
| 220 | for i in range( main.numCtrls ): |
| 221 | onosIsUp = onosIsUp and main.ONOSbench.isup( main.ONOSip[ i ] ) |
| 222 | if onosIsUp == main.TRUE: |
| 223 | main.log.report( "ONOS instance is up and ready" ) |
| 224 | else: |
| 225 | main.log.report( "ONOS instance may not be up, stop and " + |
| 226 | "start ONOS again " ) |
| 227 | |
| 228 | for i in range( main.numCtrls ): |
| 229 | stopResult = stopResult and \ |
| 230 | main.ONOSbench.onosStop( main.ONOSip[ i ] ) |
| 231 | for i in range( main.numCtrls ): |
| 232 | startResult = startResult and \ |
| 233 | main.ONOSbench.onosStart( main.ONOSip[ i ] ) |
| 234 | stepResult = onosIsUp and stopResult and startResult |
| 235 | utilities.assert_equals( expect=main.TRUE, |
| 236 | actual=stepResult, |
| 237 | onpass="ONOS service is ready", |
| 238 | onfail="ONOS service did not start properly" ) |
| 239 | |
| 240 | main.step( "Start ONOS cli" ) |
| 241 | cliResult = main.TRUE |
YPZhang | 29c2d64 | 2016-06-22 16:15:19 -0700 | [diff] [blame] | 242 | main.activeNodes = [] |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 243 | for i in range( main.numCtrls ): |
| 244 | cliResult = cliResult and \ |
| 245 | main.CLIs[ i ].startOnosCli( main.ONOSip[ i ] ) |
| 246 | main.activeNodes.append( i ) |
| 247 | stepResult = cliResult |
| 248 | utilities.assert_equals( expect=main.TRUE, |
| 249 | actual=stepResult, |
| 250 | onpass="Successfully start ONOS cli", |
| 251 | onfail="Failed to start ONOS cli" ) |
YPZhang | 29c2d64 | 2016-06-22 16:15:19 -0700 | [diff] [blame] | 252 | time.sleep( main.startUpSleep ) |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 253 | |
| 254 | def CASE10( self, main ): |
| 255 | """ |
YPZhang | 85024fc | 2016-02-09 16:59:27 -0800 | [diff] [blame] | 256 | Starting up torus topology |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 257 | """ |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 258 | |
| 259 | main.case( "Starting up Mininet and verifying topology" ) |
| 260 | main.caseExplanation = "Starting Mininet with a scalling topology and " +\ |
| 261 | "comparing topology elements between Mininet and ONOS" |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 262 | if main.topoScale: |
GlennRC | 90d4395 | 2015-10-27 11:36:15 -0700 | [diff] [blame] | 263 | main.currScale = main.topoScale.pop(0) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 264 | else: main.log.error( "topology scale is empty" ) |
GlennRC | 90d4395 | 2015-10-27 11:36:15 -0700 | [diff] [blame] | 265 | main.step( "Starting up TORUS %sx%s topology" % (main.currScale, main.currScale) ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 266 | |
| 267 | main.log.info( "Constructing Mininet command" ) |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 268 | mnCmd = " mn --custom " + main.Mininet1.home + main.multiovs + \ |
| 269 | " --switch ovsm --topo " + main.topoName + "," + main.currScale + "," + main.currScale |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 270 | for i in range( main.numCtrls ): |
| 271 | mnCmd += " --controller remote,ip=" + main.ONOSip[ i ] |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 272 | stepResult = main.Mininet1.startNet( mnCmd=mnCmd ) |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 273 | utilities.assert_equals( expect=main.TRUE, |
| 274 | actual=stepResult, |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 275 | onpass=main.topoName + |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 276 | " topology started successfully", |
| 277 | onfail=main.topoName + |
| 278 | " topology failed to start" ) |
| 279 | |
GlennRC | e283c4b | 2016-01-07 13:04:10 -0800 | [diff] [blame] | 280 | time.sleep( main.MNSleep ) |
Chiyu Cheng | 8149942 | 2016-11-09 11:04:23 -0800 | [diff] [blame] | 281 | main.CLIs[ 0 ].activateApp( "org.onosproject.openflow" ) |
| 282 | time.sleep( main.MNSleep ) |
kelvin-onlab | d9e23de | 2015-08-06 10:34:44 -0700 | [diff] [blame] | 283 | |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 284 | def CASE11( self, main ): |
| 285 | """ |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 286 | Compare topo, and sending Arping package |
YPZhang | 85024fc | 2016-02-09 16:59:27 -0800 | [diff] [blame] | 287 | if the topology is same, then Pass. |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 288 | """ |
| 289 | import json |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 290 | import time |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 291 | # First capture |
| 292 | for i in range( 3 ): |
| 293 | # Calculate total time |
| 294 | main.allinfo[ 0 ][ 'info' + str( i )][ 'totalTime' ] = main.scaleTopoFunction.getInfoFromLog( main, main.searchTerm[ 'start' ], 'first', main.searchTerm[ 'end' ], 'last', index=i, funcMode='TD' ) |
| 295 | # Calculate switch connection time |
| 296 | main.allinfo[ 0 ][ 'info' + str( i )][ 'swConnection' ] = main.scaleTopoFunction.getInfoFromLog( main, main.searchTerm[ 'start' ], 'first', main.searchTerm[ 'start' ], 'last', index=i, funcMode='TD' ) |
Chiyu Cheng | 8800c7c | 2016-10-18 11:26:35 -0700 | [diff] [blame] | 297 | # Calculate the time from last switch connection to the end |
| 298 | main.allinfo[ 0 ][ 'info' + str( i )][ 'lastSwToTopology' ] = main.allinfo[ 0 ][ 'info' + str( i )][ 'totalTime' ] - main.allinfo[ 0 ][ 'info' + str( i )][ 'swConnection' ] |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 299 | # Calculate the disconnecti rate |
| 300 | main.allinfo[ 0 ][ 'info' + str( i )][ 'disconnectRate' ] = main.scaleTopoFunction.getInfoFromLog( main, main.searchTerm[ 'Disconnect' ], 'num', main.searchTerm[ 'start' ], 'num', index=i, funcMode='DR' ) |
| 301 | main.log.debug( "The data is " + str( main.allinfo[ 0 ] ) ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 302 | |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 303 | main.case( "Verifying topology: TORUS %sx%s" % ( main.currScale, main.currScale ) ) |
YPZhang | 85024fc | 2016-02-09 16:59:27 -0800 | [diff] [blame] | 304 | main.caseExplanation = "Pinging all hosts and comparing topology " +\ |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 305 | "elements between Mininet and ONOS" |
GlennRC | e283c4b | 2016-01-07 13:04:10 -0800 | [diff] [blame] | 306 | |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 307 | main.log.info( "Gathering topology information") |
YPZhang | 85024fc | 2016-02-09 16:59:27 -0800 | [diff] [blame] | 308 | time.sleep( main.MNSleep ) |
YPZhang | 85024fc | 2016-02-09 16:59:27 -0800 | [diff] [blame] | 309 | stepResult = main.TRUE |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 310 | main.step( "Comparing MN topology to ONOS topology" ) |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 311 | compareRetry = 0 |
| 312 | while compareRetry < 3: |
YPZhang | 81a7d4e | 2016-04-18 13:10:17 -0700 | [diff] [blame] | 313 | #While loop for retry |
| 314 | devices = main.topo.getAllDevices( main ) |
YPZhang | 81a7d4e | 2016-04-18 13:10:17 -0700 | [diff] [blame] | 315 | ports = main.topo.getAllPorts( main ) |
| 316 | links = main.topo.getAllLinks( main) |
YPZhang | 81a7d4e | 2016-04-18 13:10:17 -0700 | [diff] [blame] | 317 | mnSwitches = main.Mininet1.getSwitches() |
| 318 | mnLinks = main.Mininet1.getLinks(timeout=180) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 319 | |
YPZhang | 81a7d4e | 2016-04-18 13:10:17 -0700 | [diff] [blame] | 320 | for controller in range(len(main.activeNodes)): |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 321 | # controllerStr = str( main.activeNodes[controller] + 1 ) |
| 322 | if devices[ controller ] and ports[ controller ] and \ |
| 323 | "Error" not in devices[ controller ] and \ |
| 324 | "Error" not in ports[ controller ]: |
YPZhang | 81a7d4e | 2016-04-18 13:10:17 -0700 | [diff] [blame] | 325 | currentDevicesResult = main.Mininet1.compareSwitches( |
| 326 | mnSwitches, |
| 327 | json.loads( devices[ controller ] ), |
| 328 | json.loads( ports[ controller ] ) ) |
| 329 | else: |
| 330 | currentDevicesResult = main.FALSE |
| 331 | |
| 332 | if links[ controller ] and "Error" not in links[ controller ]: |
| 333 | currentLinksResult = main.Mininet1.compareLinks( |
| 334 | mnSwitches, mnLinks, |
| 335 | json.loads( links[ controller ] ) ) |
| 336 | else: |
| 337 | currentLinksResult = main.FALSE |
| 338 | |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 339 | stepResult = stepResult and currentDevicesResult and currentLinksResult |
YPZhang | 81a7d4e | 2016-04-18 13:10:17 -0700 | [diff] [blame] | 340 | if stepResult: |
| 341 | break |
| 342 | compareRetry += 1 |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 343 | utilities.assert_equals(expect=main.TRUE, |
| 344 | actual=stepResult, |
| 345 | onpass=" Topology match Mininet", |
| 346 | onfail="ONOS Topology doesn't match Mininet") |
YPZhang | 81a7d4e | 2016-04-18 13:10:17 -0700 | [diff] [blame] | 347 | |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 348 | if stepResult: |
| 349 | if main.hostDiscover: |
| 350 | hostList = [] |
| 351 | for i in range( 1, int( main.currScale ) + 1 ): |
| 352 | for j in range( 1, int( main.currScale ) + 1) : |
| 353 | # Generate host list |
| 354 | hoststr = "h" + str(i) + "x" + str(j) |
| 355 | hostList.append(hoststr) |
| 356 | for i in range( len(hostList) ): |
| 357 | totalHost = main.topo.sendArpPackage( main, hostList[i] ) |
| 358 | time.sleep( main.hostDiscoverSleep ) |
| 359 | if totalHost < 0: |
| 360 | # if totalHost less than 0 which means dependence function has exception. |
| 361 | main.log.info( "Error when discover host!" ) |
| 362 | break |
| 363 | if totalHost == int( main.currScale ) * int( main.currScale ): |
| 364 | main.log.info( "Discovered all hosts" ) |
You Wang | 7bb9c46 | 2016-08-10 14:18:16 -0700 | [diff] [blame] | 365 | stepResult = stepResult and main.TRUE |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 366 | else: |
| 367 | main.log.warn( "Some hosts ware not discovered by ONOS... Topology doesn't match!" ) |
You Wang | 7bb9c46 | 2016-08-10 14:18:16 -0700 | [diff] [blame] | 368 | stepResult = main.FALSE |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 369 | utilities.assert_equals(expect=main.TRUE, |
| 370 | actual=stepResult, |
| 371 | onpass=" Topology match Mininet", |
| 372 | onfail="ONOS Topology doesn't match Mininet") |
| 373 | main.log.info( "Finished this iteration, continue to scale next topology." ) |
YPZhang | 81a7d4e | 2016-04-18 13:10:17 -0700 | [diff] [blame] | 374 | else: |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 375 | main.log.info( "Clean up and exit TestON. Finished this test." ) |
| 376 | main.cleanup() |
| 377 | main.exit() |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 378 | |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 379 | def CASE100( self, main ): |
| 380 | ''' |
YPZhang | 81a7d4e | 2016-04-18 13:10:17 -0700 | [diff] [blame] | 381 | Bring Down node 3 |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 382 | ''' |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 383 | |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 384 | main.case("Bring ONOS node 3 down: TORUS %sx%s" % (main.currScale, main.currScale)) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 385 | main.caseExplanation = "Balance masters to make sure " +\ |
| 386 | "each controller has some devices and " +\ |
| 387 | "stop ONOS node 3 service. " |
| 388 | |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 389 | stepResult = main.FALSE |
GlennRC | ed2122e | 2015-10-21 14:38:46 -0700 | [diff] [blame] | 390 | main.step( "Bringing down node 3" ) |
GlennRC | ed2122e | 2015-10-21 14:38:46 -0700 | [diff] [blame] | 391 | # Always bring down the third node |
| 392 | main.deadNode = 2 |
GlennRC | ed2122e | 2015-10-21 14:38:46 -0700 | [diff] [blame] | 393 | # Printing purposes |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 394 | node = main.deadNode + 1 |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 395 | main.log.info( "Stopping node %s" % node ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 396 | stepResult = main.ONOSbench.onosStop( main.ONOSip[ main.deadNode ] ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 397 | main.log.info( "Removing dead node from list of active nodes" ) |
| 398 | main.activeNodes.pop( main.deadNode ) |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 399 | |
YPZhang | 77badfc | 2016-03-09 10:28:59 -0800 | [diff] [blame] | 400 | utilities.assert_equals( expect=main.TRUE, |
| 401 | actual=stepResult, |
| 402 | onpass="Successfully bring down node 3", |
| 403 | onfail="Failed to bring down node 3" ) |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 404 | |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 405 | def CASE200( self, main ): |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 406 | ''' |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 407 | Bring up onos node |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 408 | ''' |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 409 | |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 410 | main.case("Bring ONOS node 3 up: TORUS %sx%s" % (main.currScale, main.currScale)) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 411 | main.caseExplanation = "Bring node 3 back up and balance the masters" |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 412 | |
| 413 | node = main.deadNode + 1 |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 414 | main.log.info( "Starting node %s" % node ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 415 | stepResult = main.ONOSbench.onosStart( main.ONOSip[ main.deadNode ] ) |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 416 | main.log.info( "Starting onos cli" ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 417 | stepResult = stepResult and main.CLIs[ main.deadNode ].startOnosCli( main.ONOSip[ main.deadNode ] ) |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 418 | |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 419 | main.log.info( "Adding previously dead node to list of active nodes" ) |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 420 | main.activeNodes.append( main.deadNode ) |
| 421 | |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 422 | utilities.assert_equals( expect=main.TRUE, |
| 423 | actual=stepResult, |
| 424 | onpass="Successfully brought up onos node %s" % node, |
| 425 | onfail="Failed to bring up onos node %s" % node ) |
| 426 | |
| 427 | |
GlennRC | e283c4b | 2016-01-07 13:04:10 -0800 | [diff] [blame] | 428 | time.sleep(main.nodeSleep) |
| 429 | |
| 430 | def CASE300( self, main ): |
| 431 | ''' |
| 432 | |
| 433 | Balancing Masters |
| 434 | ''' |
YPZhang | 85024fc | 2016-02-09 16:59:27 -0800 | [diff] [blame] | 435 | time.sleep(main.balanceSleep) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 436 | main.step( "Balancing Masters" ) |
GlennRC | e283c4b | 2016-01-07 13:04:10 -0800 | [diff] [blame] | 437 | |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 438 | stepResult = main.FALSE |
| 439 | if main.activeNodes: |
| 440 | controller = main.activeNodes[0] |
YPZhang | 924ccfe | 2016-01-26 14:17:30 -0800 | [diff] [blame] | 441 | stepResult = utilities.retry( main.CLIs[controller].balanceMasters, |
| 442 | main.FALSE, |
| 443 | [], |
| 444 | sleep=3, |
| 445 | attempts=3 ) |
| 446 | |
GlennRC | e283c4b | 2016-01-07 13:04:10 -0800 | [diff] [blame] | 447 | else: |
| 448 | main.log.error( "List of active nodes is empty" ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 449 | utilities.assert_equals( expect=main.TRUE, |
| 450 | actual=stepResult, |
| 451 | onpass="Balance masters was successfull", |
| 452 | onfail="Failed to balance masters") |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 453 | time.sleep(main.balanceSleep) |
| 454 | |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 455 | def CASE1000( self, main ): |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 456 | ''' |
| 457 | Report errors/warnings/exceptions |
| 458 | ''' |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 459 | # Compare the slowest Node through total time of each node |
| 460 | slowestNode = 0 |
| 461 | slowestTotalTime = 0 |
| 462 | # Second capture |
| 463 | for i in range( 3 ): |
| 464 | # Calculate total time |
| 465 | main.allinfo[ 1 ][ 'info' + str( i )][ 'totalTime' ] = main.scaleTopoFunction.getInfoFromLog( main, main.searchTerm[ 'start' ], 'first', main.searchTerm[ 'end' ], 'last', index=i, funcMode='TD' ) |
| 466 | # Compare the total time |
| 467 | if main.allinfo[ 1 ][ 'info' + str( i ) ][ 'totalTime' ] > slowestTotalTime: |
| 468 | slowestTotalTime = main.allinfo[ 1 ][ 'info' + str( i ) ][ 'totalTime' ] |
| 469 | slowestNode = i |
| 470 | # Calculate switch connection time |
| 471 | main.allinfo[ 1 ][ 'info' + str( i )][ 'swConnection' ] = main.scaleTopoFunction.getInfoFromLog( main, main.searchTerm[ 'start' ], 'first', main.searchTerm[ 'start' ], 'last', index=i, funcMode='TD' ) |
Chiyu Cheng | 8800c7c | 2016-10-18 11:26:35 -0700 | [diff] [blame] | 472 | # Calculate the time from last switch connection to the end |
| 473 | main.allinfo[ 1 ][ 'info' + str( i )][ 'lastSwToTopology' ] = main.allinfo[ 1 ][ |
| 474 | 'info' + str( i )][ 'totalTime' ] - main.allinfo[ 1 ][ 'info' + str( i )][ |
| 475 | 'swConnection' ] |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 476 | # Calculate the disconnecti rate |
| 477 | main.allinfo[ 1 ][ 'info' + str( i )][ 'disconnectRate' ] = main.scaleTopoFunction.getInfoFromLog( main, main.searchTerm[ 'Disconnect' ], 'num', main.searchTerm[ 'start' ],'num', index=i, funcMode='DR' ) |
| 478 | |
| 479 | if ( main.allinfo[ 0 ] != main.allinfo[ 1 ] ): |
| 480 | main.log.error( "The results of two capture are different!" ) |
| 481 | main.log.debug( "The data is " + str( main.allinfo ) ) |
| 482 | if main.writeData != -1: |
| 483 | main.log.info( "Write the date into database" ) |
| 484 | # write the date into data base |
| 485 | with open( main.dbFilePath, "a" ) as dbFile: |
| 486 | temp = str( main.currScale ) |
| 487 | temp += ",'baremetal1'" |
| 488 | # put result from second capture into data base |
| 489 | temp += "," + str( "%.2f" % main.allinfo[ 1 ][ 'info' + str( slowestNode )][ 'totalTime' ] ) |
| 490 | temp += "," + str( "%.2f" % main.allinfo[ 1 ][ 'info' + str( slowestNode )][ 'swConnection' ] ) |
Chiyu Cheng | 8800c7c | 2016-10-18 11:26:35 -0700 | [diff] [blame] | 491 | temp += "," + str( "%.2f" % main.allinfo[ 1 ][ 'info' + str( slowestNode )][ 'lastSwToTopology' ] ) |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 492 | temp += "," + str( "%.2f" % main.allinfo[ 1 ][ 'info' + str( slowestNode )][ 'disconnectRate' ] ) |
| 493 | temp += "\n" |
| 494 | dbFile.write( temp ) |
| 495 | else: |
| 496 | main.log.error( "The data from log is wrong!" ) |
| 497 | main.writeData = 1 |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 498 | main.case( "Checking logs for errors, warnings, and exceptions" ) |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 499 | main.log.info( "Error report: \n" ) |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 500 | main.ONOSbench.logReport( main.ONOSip[ 0 ], |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 501 | [ "INFO", |
| 502 | "FOLLOWER", |
| 503 | "WARN", |
| 504 | "flow", |
| 505 | "ERROR", |
| 506 | "Except" ], |
| 507 | "s" ) |