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 |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 13 | """ |
| 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 | """ |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 22 | main.case( "Constructing test variables" ) |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 23 | main.step( "Constructing test variables" ) |
| 24 | stepResult = main.FALSE |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 25 | # 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' ] |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 29 | 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 Cheng | 899621b | 2016-11-14 11:14:48 -0800 | [diff] [blame] | 34 | main.tsharkResultPath = main.params[ 'TsharkPath' ] |
| 35 | main.roleRequest = main.params[ 'SearchTerm' ]['roleRequest'] |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 36 | 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' ] ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 47 | main.balanceSleep = int( main.params[ 'SLEEP' ][ 'balance' ] ) |
GlennRC | e283c4b | 2016-01-07 13:04:10 -0800 | [diff] [blame] | 48 | main.nodeSleep = int( main.params[ 'SLEEP' ][ 'nodeSleep' ] ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 49 | main.pingallSleep = int( main.params[ 'SLEEP' ][ 'pingall' ] ) |
GlennRC | e283c4b | 2016-01-07 13:04:10 -0800 | [diff] [blame] | 50 | main.MNSleep = int( main.params[ 'SLEEP' ][ 'MNsleep' ] ) |
YPZhang | 85024fc | 2016-02-09 16:59:27 -0800 | [diff] [blame] | 51 | main.pingTimeout = float( main.params[ 'TIMEOUT' ][ 'pingall' ] ) |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 52 | 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 |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 58 | 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-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 66 | |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 67 | for i in range(main.numCtrls): |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 68 | main.CLIs.append( getattr( main, 'ONOScli%s' % (i+1) ) ) |
| 69 | |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 70 | main.allinfo = {} # The dictionary to record all the data from karaf.log |
Chiyu Cheng | 899621b | 2016-11-14 11:14:48 -0800 | [diff] [blame] | 71 | |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 72 | 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 Cheng | 899621b | 2016-11-14 11:14:48 -0800 | [diff] [blame] | 77 | # 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 Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 79 | # disconnectRate: the rate that shows how many switch disconnect after connection |
Chiyu Cheng | 899621b | 2016-11-14 11:14:48 -0800 | [diff] [blame] | 80 | main.allinfo[ i ][ 'info' + str( w ) ]= { 'totalTime': 0, 'swConnection': 0, 'lastSwToLastRr': 0, 'lastRrToLastTopology': 0, 'disconnectRate': 0 } |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 81 | |
| 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 Cheng | 899621b | 2016-11-14 11:14:48 -0800 | [diff] [blame] | 87 | |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 88 | main.startUp = imp.load_source( wrapperFile1, |
| 89 | main.dependencyPath + |
| 90 | wrapperFile1 + |
| 91 | ".py" ) |
Chiyu Cheng | 899621b | 2016-11-14 11:14:48 -0800 | [diff] [blame] | 92 | |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 93 | main.scaleTopoFunction = imp.load_source( wrapperFile2, |
| 94 | main.dependencyPath + |
| 95 | wrapperFile2 + |
| 96 | ".py" ) |
Chiyu Cheng | 899621b | 2016-11-14 11:14:48 -0800 | [diff] [blame] | 97 | |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 98 | main.topo = imp.load_source( wrapperFile3, |
| 99 | main.dependencyPath + |
| 100 | wrapperFile3 + |
| 101 | ".py" ) |
Chiyu Cheng | 899621b | 2016-11-14 11:14:48 -0800 | [diff] [blame] | 102 | |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 103 | 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-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 116 | 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 | |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 136 | |
| 137 | def CASE2( self, main): |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 138 | """ |
| 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 | """ |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 149 | import time |
YPZhang | 29c2d64 | 2016-06-22 16:15:19 -0700 | [diff] [blame] | 150 | 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-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 157 | |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 158 | main.case( "Starting up " + str( main.numCtrls ) + |
| 159 | " node(s) ONOS cluster" ) |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 160 | main.caseExplanation = "Set up ONOS with " + str( main.numCtrls ) +\ |
| 161 | " node(s) ONOS cluster" |
| 162 | |
| 163 | |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 164 | |
| 165 | #kill off all onos processes |
| 166 | main.log.info( "Safety check, killing all ONOS processes" + |
Jon Hall | 70b2ff4 | 2015-11-17 15:49:44 -0800 | [diff] [blame] | 167 | " before initiating environment setup" ) |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 168 | |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 169 | for i in range( main.numCtrls ): |
You Wang | b98a9fa | 2017-02-15 17:27:42 -0800 | [diff] [blame] | 170 | main.ONOSbench.onosStop( main.ONOSip[ i ] ) |
| 171 | main.ONOSbench.onosKill( main.ONOSip[ i ] ) |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 172 | |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 173 | 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, |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 179 | main.apps, tempOnosIp ) |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 180 | |
| 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 Hall | bd60ea0 | 2016-08-23 10:03:59 -0700 | [diff] [blame] | 192 | packageResult = main.ONOSbench.buckBuild() |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 193 | 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 | |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 199 | 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-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 210 | |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 211 | 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-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 222 | |
You Wang | f5de25b | 2017-01-06 15:13:01 -0800 | [diff] [blame] | 223 | 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 | |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 231 | 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 |
YPZhang | 29c2d64 | 2016-06-22 16:15:19 -0700 | [diff] [blame] | 259 | main.activeNodes = [] |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 260 | 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" ) |
YPZhang | 29c2d64 | 2016-06-22 16:15:19 -0700 | [diff] [blame] | 269 | time.sleep( main.startUpSleep ) |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 270 | |
| 271 | def CASE10( self, main ): |
| 272 | """ |
YPZhang | 85024fc | 2016-02-09 16:59:27 -0800 | [diff] [blame] | 273 | Starting up torus topology |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 274 | """ |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 275 | |
| 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" |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 279 | if main.topoScale: |
GlennRC | 90d4395 | 2015-10-27 11:36:15 -0700 | [diff] [blame] | 280 | main.currScale = main.topoScale.pop(0) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 281 | else: main.log.error( "topology scale is empty" ) |
GlennRC | 90d4395 | 2015-10-27 11:36:15 -0700 | [diff] [blame] | 282 | main.step( "Starting up TORUS %sx%s topology" % (main.currScale, main.currScale) ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 283 | |
| 284 | main.log.info( "Constructing Mininet command" ) |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 285 | mnCmd = " mn --custom " + main.Mininet1.home + main.multiovs + \ |
| 286 | " --switch ovsm --topo " + main.topoName + "," + main.currScale + "," + main.currScale |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 287 | for i in range( main.numCtrls ): |
| 288 | mnCmd += " --controller remote,ip=" + main.ONOSip[ i ] |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 289 | stepResult = main.Mininet1.startNet( mnCmd=mnCmd ) |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 290 | utilities.assert_equals( expect=main.TRUE, |
| 291 | actual=stepResult, |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 292 | onpass=main.topoName + |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 293 | " topology started successfully", |
| 294 | onfail=main.topoName + |
| 295 | " topology failed to start" ) |
| 296 | |
GlennRC | e283c4b | 2016-01-07 13:04:10 -0800 | [diff] [blame] | 297 | time.sleep( main.MNSleep ) |
Chiyu Cheng | 899621b | 2016-11-14 11:14:48 -0800 | [diff] [blame] | 298 | 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 Cheng | 8149942 | 2016-11-09 11:04:23 -0800 | [diff] [blame] | 303 | main.CLIs[ 0 ].activateApp( "org.onosproject.openflow" ) |
| 304 | time.sleep( main.MNSleep ) |
Chiyu Cheng | 899621b | 2016-11-14 11:14:48 -0800 | [diff] [blame] | 305 | 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-onlab | d9e23de | 2015-08-06 10:34:44 -0700 | [diff] [blame] | 311 | |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 312 | def CASE11( self, main ): |
| 313 | """ |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 314 | Compare topo, and sending Arping package |
YPZhang | 85024fc | 2016-02-09 16:59:27 -0800 | [diff] [blame] | 315 | if the topology is same, then Pass. |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 316 | """ |
| 317 | import json |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 318 | import time |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 319 | # 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 Cheng | 899621b | 2016-11-14 11:14:48 -0800 | [diff] [blame] | 325 | # 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 Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 329 | # 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 ] ) ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 332 | |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 333 | main.case( "Verifying topology: TORUS %sx%s" % ( main.currScale, main.currScale ) ) |
YPZhang | 85024fc | 2016-02-09 16:59:27 -0800 | [diff] [blame] | 334 | main.caseExplanation = "Pinging all hosts and comparing topology " +\ |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 335 | "elements between Mininet and ONOS" |
GlennRC | e283c4b | 2016-01-07 13:04:10 -0800 | [diff] [blame] | 336 | |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 337 | main.log.info( "Gathering topology information") |
YPZhang | 85024fc | 2016-02-09 16:59:27 -0800 | [diff] [blame] | 338 | time.sleep( main.MNSleep ) |
YPZhang | 85024fc | 2016-02-09 16:59:27 -0800 | [diff] [blame] | 339 | stepResult = main.TRUE |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 340 | main.step( "Comparing MN topology to ONOS topology" ) |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 341 | compareRetry = 0 |
| 342 | while compareRetry < 3: |
YPZhang | 81a7d4e | 2016-04-18 13:10:17 -0700 | [diff] [blame] | 343 | #While loop for retry |
| 344 | devices = main.topo.getAllDevices( main ) |
YPZhang | 81a7d4e | 2016-04-18 13:10:17 -0700 | [diff] [blame] | 345 | ports = main.topo.getAllPorts( main ) |
| 346 | links = main.topo.getAllLinks( main) |
YPZhang | 81a7d4e | 2016-04-18 13:10:17 -0700 | [diff] [blame] | 347 | mnSwitches = main.Mininet1.getSwitches() |
| 348 | mnLinks = main.Mininet1.getLinks(timeout=180) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 349 | |
YPZhang | 81a7d4e | 2016-04-18 13:10:17 -0700 | [diff] [blame] | 350 | for controller in range(len(main.activeNodes)): |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 351 | # 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 ]: |
YPZhang | 81a7d4e | 2016-04-18 13:10:17 -0700 | [diff] [blame] | 355 | 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 | |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 369 | stepResult = stepResult and currentDevicesResult and currentLinksResult |
YPZhang | 81a7d4e | 2016-04-18 13:10:17 -0700 | [diff] [blame] | 370 | if stepResult: |
| 371 | break |
| 372 | compareRetry += 1 |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 373 | utilities.assert_equals(expect=main.TRUE, |
| 374 | actual=stepResult, |
| 375 | onpass=" Topology match Mininet", |
| 376 | onfail="ONOS Topology doesn't match Mininet") |
YPZhang | 81a7d4e | 2016-04-18 13:10:17 -0700 | [diff] [blame] | 377 | |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 378 | 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 Wang | 7bb9c46 | 2016-08-10 14:18:16 -0700 | [diff] [blame] | 395 | stepResult = stepResult and main.TRUE |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 396 | else: |
| 397 | 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] | 398 | stepResult = main.FALSE |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 399 | 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." ) |
YPZhang | 81a7d4e | 2016-04-18 13:10:17 -0700 | [diff] [blame] | 404 | else: |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 405 | main.log.info( "Clean up and exit TestON. Finished this test." ) |
| 406 | main.cleanup() |
| 407 | main.exit() |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 408 | |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 409 | def CASE100( self, main ): |
| 410 | ''' |
YPZhang | 81a7d4e | 2016-04-18 13:10:17 -0700 | [diff] [blame] | 411 | Bring Down node 3 |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 412 | ''' |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 413 | |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 414 | 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] | 415 | main.caseExplanation = "Balance masters to make sure " +\ |
| 416 | "each controller has some devices and " +\ |
| 417 | "stop ONOS node 3 service. " |
| 418 | |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 419 | stepResult = main.FALSE |
GlennRC | ed2122e | 2015-10-21 14:38:46 -0700 | [diff] [blame] | 420 | main.step( "Bringing down node 3" ) |
GlennRC | ed2122e | 2015-10-21 14:38:46 -0700 | [diff] [blame] | 421 | # Always bring down the third node |
| 422 | main.deadNode = 2 |
GlennRC | ed2122e | 2015-10-21 14:38:46 -0700 | [diff] [blame] | 423 | # Printing purposes |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 424 | node = main.deadNode + 1 |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 425 | main.log.info( "Stopping node %s" % node ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 426 | stepResult = main.ONOSbench.onosStop( main.ONOSip[ main.deadNode ] ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 427 | main.log.info( "Removing dead node from list of active nodes" ) |
| 428 | main.activeNodes.pop( main.deadNode ) |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 429 | |
YPZhang | 77badfc | 2016-03-09 10:28:59 -0800 | [diff] [blame] | 430 | utilities.assert_equals( expect=main.TRUE, |
| 431 | actual=stepResult, |
| 432 | onpass="Successfully bring down node 3", |
| 433 | onfail="Failed to bring down node 3" ) |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 434 | |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 435 | def CASE200( self, main ): |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 436 | ''' |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 437 | Bring up onos node |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 438 | ''' |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 439 | |
YPZhang | acaaf42 | 2016-07-26 09:34:03 -0700 | [diff] [blame] | 440 | 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] | 441 | main.caseExplanation = "Bring node 3 back up and balance the masters" |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 442 | |
| 443 | node = main.deadNode + 1 |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 444 | main.log.info( "Starting node %s" % node ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 445 | stepResult = main.ONOSbench.onosStart( main.ONOSip[ main.deadNode ] ) |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 446 | main.log.info( "Starting onos cli" ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 447 | stepResult = stepResult and main.CLIs[ main.deadNode ].startOnosCli( main.ONOSip[ main.deadNode ] ) |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 448 | |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 449 | main.log.info( "Adding previously dead node to list of active nodes" ) |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 450 | main.activeNodes.append( main.deadNode ) |
| 451 | |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 452 | 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 | |
GlennRC | e283c4b | 2016-01-07 13:04:10 -0800 | [diff] [blame] | 458 | time.sleep(main.nodeSleep) |
| 459 | |
| 460 | def CASE300( self, main ): |
| 461 | ''' |
| 462 | |
| 463 | Balancing Masters |
| 464 | ''' |
YPZhang | 85024fc | 2016-02-09 16:59:27 -0800 | [diff] [blame] | 465 | time.sleep(main.balanceSleep) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 466 | main.step( "Balancing Masters" ) |
GlennRC | e283c4b | 2016-01-07 13:04:10 -0800 | [diff] [blame] | 467 | |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 468 | stepResult = main.FALSE |
| 469 | if main.activeNodes: |
| 470 | controller = main.activeNodes[0] |
YPZhang | 924ccfe | 2016-01-26 14:17:30 -0800 | [diff] [blame] | 471 | stepResult = utilities.retry( main.CLIs[controller].balanceMasters, |
| 472 | main.FALSE, |
| 473 | [], |
| 474 | sleep=3, |
| 475 | attempts=3 ) |
| 476 | |
GlennRC | e283c4b | 2016-01-07 13:04:10 -0800 | [diff] [blame] | 477 | else: |
| 478 | main.log.error( "List of active nodes is empty" ) |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 479 | utilities.assert_equals( expect=main.TRUE, |
| 480 | actual=stepResult, |
| 481 | onpass="Balance masters was successfull", |
| 482 | onfail="Failed to balance masters") |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 483 | time.sleep(main.balanceSleep) |
| 484 | |
GlennRC | 632e289 | 2015-10-19 18:58:41 -0700 | [diff] [blame] | 485 | def CASE1000( self, main ): |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 486 | ''' |
| 487 | Report errors/warnings/exceptions |
| 488 | ''' |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 489 | # 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 Cheng | 899621b | 2016-11-14 11:14:48 -0800 | [diff] [blame] | 502 | # 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 Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 506 | # 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 Cheng | 899621b | 2016-11-14 11:14:48 -0800 | [diff] [blame] | 521 | temp += "," + str( "%.2f" % main.allinfo[ 1 ][ 'info' + str( slowestNode )][ 'lastSwToLastRr' ] ) |
| 522 | temp += "," + str( "%.2f" % main.allinfo[ 1 ][ 'info' + str( slowestNode )][ 'lastRrToLastTopology' ] ) |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 523 | 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 |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 529 | main.case( "Checking logs for errors, warnings, and exceptions" ) |
Chiyu Cheng | b8c2c84 | 2016-10-05 12:40:49 -0700 | [diff] [blame] | 530 | main.log.info( "Error report: \n" ) |
kelvin-onlab | 1d381fe | 2015-07-14 16:24:56 -0700 | [diff] [blame] | 531 | main.ONOSbench.logReport( main.ONOSip[ 0 ], |
GlennRC | 475f50d | 2015-10-23 15:01:09 -0700 | [diff] [blame] | 532 | [ "INFO", |
| 533 | "FOLLOWER", |
| 534 | "WARN", |
| 535 | "flow", |
| 536 | "ERROR", |
| 537 | "Except" ], |
Chiyu Cheng | 899621b | 2016-11-14 11:14:48 -0800 | [diff] [blame] | 538 | "s" ) |