YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 1 | """ |
| 2 | SCPFintentInstallWithdrawLat: |
| 3 | - Test the latency of intent installed and withdrawn |
| 4 | - Use Push-test-intents command to push intents |
| 5 | - Use Null provider with 7 devices and linear topology |
| 6 | - Always push intents between 1/6 and 7/5 |
| 7 | - The batch size is defined in parm file. (default 1,100,1000) |
cameron@onlab.us | 41c16f5 | 2015-07-08 15:40:28 -0700 | [diff] [blame] | 8 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 9 | yunpeng@onlab.us |
| 10 | """ |
cameron@onlab.us | 41c16f5 | 2015-07-08 15:40:28 -0700 | [diff] [blame] | 11 | class SCPFintentInstallWithdrawLat: |
cameron@onlab.us | 41c16f5 | 2015-07-08 15:40:28 -0700 | [diff] [blame] | 12 | def __init__( self ): |
| 13 | self.default = '' |
| 14 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 15 | def CASE0( self, main ): |
| 16 | ''' |
| 17 | - GIT |
| 18 | - BUILDING ONOS |
| 19 | Pull specific ONOS branch, then Build ONOS ono ONOS Bench. |
| 20 | This step is usually skipped. Because in a Jenkins driven automated |
| 21 | test env. We want Jenkins jobs to pull&build for flexibility to handle |
| 22 | different versions of ONOS. |
| 23 | - Construct tests variables |
| 24 | ''' |
| 25 | gitPull = main.params['GIT']['gitPull'] |
| 26 | gitBranch = main.params['GIT']['gitBranch'] |
| 27 | |
| 28 | main.case("Pull onos branch and build onos on Teststation.") |
| 29 | |
| 30 | if gitPull == 'True': |
| 31 | main.step("Git Checkout ONOS branch: " + gitBranch) |
| 32 | stepResult = main.ONOSbench.gitCheckout(branch=gitBranch) |
| 33 | utilities.assert_equals(expect=main.TRUE, |
| 34 | actual=stepResult, |
| 35 | onpass="Successfully checkout onos branch.", |
| 36 | onfail="Failed to checkout onos branch. Exiting test...") |
| 37 | if not stepResult: main.exit() |
| 38 | |
| 39 | main.step("Git Pull on ONOS branch:" + gitBranch) |
| 40 | stepResult = main.ONOSbench.gitPull() |
| 41 | utilities.assert_equals(expect=main.TRUE, |
| 42 | actual=stepResult, |
| 43 | onpass="Successfully pull onos. ", |
| 44 | onfail="Failed to pull onos. Exiting test ...") |
| 45 | if not stepResult: main.exit() |
| 46 | |
| 47 | main.step("Building ONOS branch: " + gitBranch) |
| 48 | stepResult = main.ONOSbench.cleanInstall(skipTest=True) |
| 49 | utilities.assert_equals(expect=main.TRUE, |
| 50 | actual=stepResult, |
| 51 | onpass="Successfully build onos.", |
| 52 | onfail="Failed to build onos. Exiting test...") |
| 53 | if not stepResult: main.exit() |
| 54 | |
| 55 | else: |
| 56 | main.log.warn("Skipped pulling onos and Skipped building ONOS") |
| 57 | |
| 58 | main.apps = main.params['ENV']['cellApps'] |
| 59 | main.BENCHUser = main.params['BENCH']['user'] |
| 60 | main.BENCHIp = main.params['BENCH']['ip1'] |
| 61 | main.MN1Ip = main.params['MN']['ip1'] |
| 62 | main.maxNodes = int(main.params['max']) |
| 63 | main.cellName = main.params['ENV']['cellName'] |
| 64 | main.scale = (main.params['SCALE']).split(",") |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 65 | main.timeout = int(main.params['SLEEP']['timeout']) |
| 66 | main.startUpSleep = int(main.params['SLEEP']['startup']) |
| 67 | main.installSleep = int(main.params['SLEEP']['install']) |
| 68 | main.verifySleep = int(main.params['SLEEP']['verify']) |
| 69 | main.verifyAttempts = int(main.params['ATTEMPTS']['verify']) |
| 70 | main.sampleSize = int(main.params['TEST']['sampleSize']) |
| 71 | main.warmUp = int(main.params['TEST']['warmUp']) |
| 72 | main.intentsList = (main.params['TEST']['intents']).split(",") |
| 73 | main.ingress = main.params['TEST']['ingress'] |
| 74 | main.egress = main.params['TEST']['egress'] |
| 75 | main.debug = main.params['TEST']['debug'] |
YPZhang | e6ef82a | 2016-07-05 16:48:15 -0700 | [diff] [blame] | 76 | main.flowObj = main.params['TEST']['flowObj'] |
| 77 | |
| 78 | if main.flowObj == "True": |
| 79 | main.flowObj = True |
| 80 | main.dbFileName = main.params['DATABASE']['dbFlowObj'] |
| 81 | else: |
| 82 | main.flowObj = False |
| 83 | main.dbFileName = main.params['DATABASE']['dbName'] |
| 84 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 85 | for i in range(0, len(main.intentsList)): |
| 86 | main.intentsList[i] = int(main.intentsList[i]) |
| 87 | # Create DataBase file |
| 88 | main.log.info("Create Database file " + main.dbFileName) |
| 89 | resultsDB = open(main.dbFileName, "w+") |
| 90 | resultsDB.close() |
| 91 | |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 92 | def CASE1( self, main ): |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 93 | # Clean up test environment and set up |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 94 | import time |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 95 | main.log.info("Get ONOS cluster IP") |
| 96 | print(main.scale) |
| 97 | main.numCtrls = int(main.scale[0]) |
| 98 | main.ONOSip = [] |
| 99 | main.maxNumBatch = 0 |
| 100 | main.AllONOSip = main.ONOSbench.getOnosIps() |
| 101 | for i in range(main.numCtrls): |
| 102 | main.ONOSip.append(main.AllONOSip[i]) |
| 103 | main.log.info(main.ONOSip) |
| 104 | main.CLIs = [] |
| 105 | main.log.info("Creating list of ONOS cli handles") |
| 106 | for i in range(main.numCtrls): |
| 107 | main.CLIs.append(getattr(main, 'ONOS%scli' % (i + 1))) |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 108 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 109 | if not main.CLIs: |
| 110 | main.log.error("Failed to create the list of ONOS cli handles") |
| 111 | main.cleanup() |
| 112 | main.exit() |
cameron@onlab.us | 41c16f5 | 2015-07-08 15:40:28 -0700 | [diff] [blame] | 113 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 114 | main.commit = main.ONOSbench.getVersion(report=True) |
| 115 | main.commit = main.commit.split(" ")[1] |
| 116 | main.log.info("Starting up %s node(s) ONOS cluster" % main.numCtrls) |
| 117 | main.log.info("Safety check, killing all ONOS processes" + |
| 118 | " before initiating environment setup") |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 119 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 120 | for i in range(main.numCtrls): |
| 121 | main.ONOSbench.onosDie(main.ONOSip[i]) |
cameron@onlab.us | 41c16f5 | 2015-07-08 15:40:28 -0700 | [diff] [blame] | 122 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 123 | main.log.info("NODE COUNT = %s" % main.numCtrls) |
| 124 | main.ONOSbench.createCellFile(main.ONOSbench.ip_address, |
| 125 | main.cellName, |
| 126 | main.MN1Ip, |
| 127 | main.apps, |
| 128 | main.ONOSip) |
| 129 | main.step("Apply cell to environment") |
| 130 | cellResult = main.ONOSbench.setCell(main.cellName) |
| 131 | verifyResult = main.ONOSbench.verifyCell() |
| 132 | stepResult = cellResult and verifyResult |
| 133 | utilities.assert_equals(expect=main.TRUE, |
| 134 | actual=stepResult, |
| 135 | onpass="Successfully applied cell to " + \ |
| 136 | "environment", |
| 137 | onfail="Failed to apply cell to environment ") |
cameron@onlab.us | 41c16f5 | 2015-07-08 15:40:28 -0700 | [diff] [blame] | 138 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 139 | main.step("Creating ONOS package") |
Jon Hall | bd60ea0 | 2016-08-23 10:03:59 -0700 | [diff] [blame] | 140 | packageResult = main.ONOSbench.buckBuild() |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 141 | stepResult = packageResult |
| 142 | utilities.assert_equals(expect=main.TRUE, |
| 143 | actual=stepResult, |
| 144 | onpass="Successfully created ONOS package", |
| 145 | onfail="Failed to create ONOS package") |
cameron@onlab.us | 41c16f5 | 2015-07-08 15:40:28 -0700 | [diff] [blame] | 146 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 147 | main.step("Uninstall ONOS package on all Nodes") |
| 148 | uninstallResult = main.TRUE |
| 149 | for i in range(int(main.numCtrls)): |
| 150 | main.log.info("Uninstalling package on ONOS Node IP: " + main.ONOSip[i]) |
| 151 | u_result = main.ONOSbench.onosUninstall(main.ONOSip[i]) |
| 152 | utilities.assert_equals(expect=main.TRUE, actual=u_result, |
| 153 | onpass="Test step PASS", |
| 154 | onfail="Test step FAIL") |
| 155 | uninstallResult = (uninstallResult and u_result) |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 156 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 157 | main.step("Install ONOS package on all Nodes") |
| 158 | installResult = main.TRUE |
| 159 | for i in range(int(main.numCtrls)): |
| 160 | main.log.info("Installing package on ONOS Node IP: " + main.ONOSip[i]) |
| 161 | i_result = main.ONOSbench.onosInstall(node=main.ONOSip[i]) |
| 162 | utilities.assert_equals(expect=main.TRUE, actual=i_result, |
| 163 | onpass="Test step PASS", |
| 164 | onfail="Test step FAIL") |
| 165 | installResult = installResult and i_result |
cameron@onlab.us | 41c16f5 | 2015-07-08 15:40:28 -0700 | [diff] [blame] | 166 | |
Chiyu Cheng | ef10950 | 2016-11-21 15:51:38 -0800 | [diff] [blame] | 167 | main.step( "Set up ONOS secure SSH" ) |
| 168 | secureSshResult = main.TRUE |
| 169 | for i in range( int( main.numCtrls ) ): |
| 170 | secureSshResult = secureSshResult and main.ONOSbench.onosSecureSSH( node=main.ONOSip[i] ) |
| 171 | utilities.assert_equals( expect=main.TRUE, actual=secureSshResult, |
| 172 | onpass="Test step PASS", |
| 173 | onfail="Test step FAIL" ) |
| 174 | |
You Wang | 0357c43 | 2017-01-09 16:13:33 -0800 | [diff] [blame] | 175 | time.sleep( main.startUpSleep ) |
| 176 | main.step( "Starting ONOS service" ) |
| 177 | stopResult = main.TRUE |
| 178 | startResult = main.TRUE |
| 179 | onosIsUp = main.TRUE |
| 180 | for i in range( main.numCtrls ): |
| 181 | onosIsUp = onosIsUp and main.ONOSbench.isup( main.ONOSip[ i ] ) |
| 182 | if onosIsUp == main.TRUE: |
| 183 | main.log.report( "ONOS instance is up and ready" ) |
| 184 | else: |
| 185 | main.log.report( "ONOS instance may not be up, stop and " + |
| 186 | "start ONOS again " ) |
| 187 | for i in range( main.numCtrls ): |
| 188 | stopResult = stopResult and \ |
| 189 | main.ONOSbench.onosStop( main.ONOSip[ i ] ) |
| 190 | for i in range( main.numCtrls ): |
| 191 | startResult = startResult and \ |
| 192 | main.ONOSbench.onosStart( main.ONOSip[ i ] ) |
| 193 | stepResult = onosIsUp and stopResult and startResult |
| 194 | utilities.assert_equals( expect=main.TRUE, |
| 195 | actual=stepResult, |
| 196 | onpass="ONOS service is ready", |
| 197 | onfail="ONOS service did not start properly" ) |
| 198 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 199 | time.sleep(2) |
| 200 | main.step("Start ONOS CLI on all nodes") |
| 201 | cliResult = main.TRUE |
Jon Hall | 6509dbf | 2016-06-21 17:01:17 -0700 | [diff] [blame] | 202 | main.step(" Start ONOS cli using thread ") |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 203 | startCliResult = main.TRUE |
| 204 | pool = [] |
| 205 | main.threadID = 0 |
| 206 | for i in range(int(main.numCtrls)): |
| 207 | t = main.Thread(target=main.CLIs[i].startOnosCli, |
| 208 | threadID=main.threadID, |
| 209 | name="startOnosCli", |
| 210 | args=[main.ONOSip[i]], |
| 211 | kwargs={"onosStartTimeout": main.timeout}) |
| 212 | pool.append(t) |
| 213 | t.start() |
| 214 | main.threadID = main.threadID + 1 |
| 215 | for t in pool: |
| 216 | t.join() |
| 217 | startCliResult = startCliResult and t.result |
| 218 | time.sleep(main.startUpSleep) |
cameron@onlab.us | 41c16f5 | 2015-07-08 15:40:28 -0700 | [diff] [blame] | 219 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 220 | # configure apps |
| 221 | main.CLIs[0].setCfg("org.onosproject.provider.nil.NullProviders", "deviceCount", value=7) |
| 222 | main.CLIs[0].setCfg("org.onosproject.provider.nil.NullProviders", "topoShape", value="linear") |
| 223 | main.CLIs[0].setCfg("org.onosproject.provider.nil.NullProviders", "enabled", value="true") |
YPZhang | 325822f | 2016-06-17 16:01:45 -0700 | [diff] [blame] | 224 | main.CLIs[0].setCfg("org.onosproject.net.intent.impl.IntentManager", "skipReleaseResourcesOnWithdrawal", value="true") |
YPZhang | e6ef82a | 2016-07-05 16:48:15 -0700 | [diff] [blame] | 225 | if main.flowObj: |
| 226 | main.CLIs[0].setCfg("org.onosproject.net.intent.impl.compiler.IntentConfigurableRegistrator", |
| 227 | "useFlowObjectives", value="true") |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 228 | time.sleep(main.startUpSleep) |
Jon Hall | 4ba53f0 | 2015-07-29 13:07:41 -0700 | [diff] [blame] | 229 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 230 | # balanceMasters |
| 231 | main.CLIs[0].balanceMasters() |
You Wang | 3b148ea | 2016-06-20 20:33:42 -0700 | [diff] [blame] | 232 | time.sleep(main.startUpSleep) |
cameron@onlab.us | 41c16f5 | 2015-07-08 15:40:28 -0700 | [diff] [blame] | 233 | |
| 234 | def CASE2( self, main ): |
cameron@onlab.us | 41c16f5 | 2015-07-08 15:40:28 -0700 | [diff] [blame] | 235 | import time |
| 236 | import numpy |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 237 | import json |
| 238 | print(main.intentsList) |
| 239 | for batchSize in main.intentsList: |
| 240 | main.log.report("Intent Batch size: {}".format(batchSize)) |
| 241 | main.installLatList = [] |
| 242 | main.withdrawLatList = [] |
| 243 | validrun = 0 |
| 244 | invalidrun = 0 |
| 245 | # we use two variables to control the iteration |
| 246 | while validrun <= main.warmUp + main.sampleSize and invalidrun < 20: |
| 247 | if validrun >= main.warmUp: |
| 248 | main.log.info("================================================") |
| 249 | main.log.info("Starting test iteration " + str(validrun - main.warmUp)) |
| 250 | main.log.info("Total test iteration: " + str(invalidrun + validrun)) |
| 251 | main.log.info("================================================") |
| 252 | else: |
| 253 | main.log.info("====================Warm Up=====================") |
cameron@onlab.us | 41c16f5 | 2015-07-08 15:40:28 -0700 | [diff] [blame] | 254 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 255 | # push intents |
| 256 | installResult = main.CLIs[0].pushTestIntents(main.ingress, main.egress, batchSize, |
| 257 | offset=1, options="-i", timeout=main.timeout, |
| 258 | getResponse=True) |
| 259 | if type(installResult) is str: |
| 260 | if "Failure" in installResult: |
| 261 | main.log.error("Install Intents failure, ignore this iteration.") |
| 262 | if validrun < main.warmUp: |
| 263 | validrun += 1 |
| 264 | continue |
| 265 | else: |
| 266 | invalidrun += 1 |
| 267 | continue |
cameron@onlab.us | 41c16f5 | 2015-07-08 15:40:28 -0700 | [diff] [blame] | 268 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 269 | try: |
| 270 | latency = int(installResult.split()[5]) |
| 271 | main.log.info(installResult) |
| 272 | except: |
| 273 | main.log.error("Failed to get latency, ignore this iteration.") |
| 274 | main.log.error("Response from ONOS:") |
| 275 | print(installResult) |
| 276 | if validrun < main.warmUp: |
| 277 | validrun += 1 |
| 278 | continue |
| 279 | else: |
| 280 | invalidrun += 1 |
| 281 | continue |
cameron@onlab.us | 41c16f5 | 2015-07-08 15:40:28 -0700 | [diff] [blame] | 282 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 283 | if validrun >= main.warmUp: |
| 284 | main.installLatList.append(latency) |
| 285 | else: |
| 286 | invalidrun += 1 |
| 287 | continue |
| 288 | time.sleep(2) |
| 289 | # Withdraw Intents |
| 290 | withdrawResult = main.CLIs[0].pushTestIntents(main.ingress, main.egress, batchSize, |
| 291 | offset=1, options="-w", timeout=main.timeout, |
| 292 | getResponse=True) |
cameron@onlab.us | 41c16f5 | 2015-07-08 15:40:28 -0700 | [diff] [blame] | 293 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 294 | if type(withdrawResult) is str: |
| 295 | if "Failure" in withdrawResult: |
| 296 | main.log.error("withdraw Intents failure, ignore this iteration.") |
| 297 | if validrun < main.warmUp: |
| 298 | validrun += 1 |
| 299 | continue |
| 300 | else: |
| 301 | invalidrun += 1 |
| 302 | continue |
cameron@onlab.us | 41c16f5 | 2015-07-08 15:40:28 -0700 | [diff] [blame] | 303 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 304 | try: |
| 305 | latency = int(withdrawResult.split()[5]) |
| 306 | main.log.info(withdrawResult) |
| 307 | except: |
| 308 | main.log.error("Failed to get latency, ignore this iteration.") |
| 309 | main.log.error("Response from ONOS:") |
| 310 | print(withdrawResult) |
| 311 | if validrun < main.warmUp: |
| 312 | validrun += 1 |
| 313 | continue |
| 314 | else: |
| 315 | invalidrun += 1 |
| 316 | continue |
cameron@onlab.us | 41c16f5 | 2015-07-08 15:40:28 -0700 | [diff] [blame] | 317 | |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 318 | if validrun >= main.warmUp: |
| 319 | main.withdrawLatList.append(latency) |
| 320 | else: |
| 321 | invalidrun += 1 |
| 322 | continue |
| 323 | time.sleep(2) |
| 324 | main.CLIs[0].purgeWithdrawnIntents() |
| 325 | validrun += 1 |
| 326 | installave = numpy.average(main.installLatList) |
| 327 | installstd = numpy.std(main.installLatList) |
| 328 | withdrawave = numpy.average(main.withdrawLatList) |
| 329 | withdrawstd = numpy.std(main.withdrawLatList) |
| 330 | # log report |
cameron@onlab.us | 41c16f5 | 2015-07-08 15:40:28 -0700 | [diff] [blame] | 331 | main.log.report("----------------------------------------------------") |
YPZhang | b34b7e1 | 2016-06-14 14:28:19 -0700 | [diff] [blame] | 332 | main.log.report("Scale: " + str(main.numCtrls)) |
| 333 | main.log.report("Intent batch: " + str(batchSize)) |
| 334 | main.log.report("Install average: {} std: {}".format(installave, installstd)) |
| 335 | main.log.report("Withdraw average: {} std: {}".format(withdrawave, withdrawstd)) |
| 336 | # write result to database file |
| 337 | if not (numpy.isnan(installave) or numpy.isnan(installstd) or\ |
| 338 | numpy.isnan(withdrawstd) or numpy.isnan(withdrawave)): |
| 339 | databaseString = "'" + main.commit + "'," |
| 340 | databaseString += str(main.numCtrls) + "," |
| 341 | databaseString += str(batchSize) + "," |
| 342 | databaseString += str(installave) + "," |
| 343 | databaseString += str(installstd) + "," |
| 344 | databaseString += str(withdrawave) + "," |
| 345 | databaseString += str(withdrawstd) + "\n" |
| 346 | resultsDB = open(main.dbFileName, "a") |
| 347 | resultsDB.write(databaseString) |
| 348 | resultsDB.close() |
| 349 | del main.scale[0] |