blob: b15709c8cc7d873a84145eea1fd60a708d3de1b7 [file] [log] [blame]
YPZhangcbc2a062016-07-11 10:55:44 -07001'''
2SCPFintentEventTp
3 - Use intentperf app to generate a lot of intent install and withdraw events
4 - Test will run with 1,3,5,7 nodes, and with all neighbors
5 - Test will run 400 seconds and grep the overall rate from intent-perf summary
andrew@onlab.us2ae3a112015-02-02 11:24:32 -08006
YPZhangcbc2a062016-07-11 10:55:44 -07007 yunpeng@onlab.us
8'''
9
cameron@onlab.usaaecfd72015-07-08 12:27:26 -070010import time
andrew@onlab.us10332202015-03-11 15:04:43 -070011
andrew@onlab.us2ae3a112015-02-02 11:24:32 -080012
suibin7f2c9cd2015-07-08 17:34:59 -070013class SCPFintentEventTp:
andrew@onlab.us2ae3a112015-02-02 11:24:32 -080014 def __init__( self ):
15 self.default = ''
16
YPZhangcbc2a062016-07-11 10:55:44 -070017 def CASE0( self, main ):
18 '''
19 - GIT
20 - BUILDING ONOS
21 Pull specific ONOS branch, then Build ONOS ono ONOS Bench.
22 This step is usually skipped. Because in a Jenkins driven automated
23 test env. We want Jenkins jobs to pull&build for flexibility to handle
24 different versions of ONOS.
25 - Construct tests variables
26 '''
27 gitPull = main.params['GIT']['gitPull']
28 gitBranch = main.params['GIT']['gitBranch']
cameron@onlab.usc10e22c2015-05-13 13:07:28 -070029
YPZhangcbc2a062016-07-11 10:55:44 -070030 main.case( "Pull onos branch and build onos on Teststation." )
cameron@onlab.usaaecfd72015-07-08 12:27:26 -070031
YPZhangcbc2a062016-07-11 10:55:44 -070032 if gitPull == 'True':
33 main.step( "Git Checkout ONOS branch: " + gitBranch )
34 stepResult = main.ONOSbench.gitCheckout( branch=gitBranch )
35 utilities.assert_equals(expect=main.TRUE,
36 actual=stepResult,
37 onpass="Successfully checkout onos branch.",
38 onfail="Failed to checkout onos branch. Exiting test...")
39 if not stepResult: main.exit()
YPZhange6ef82a2016-07-05 16:48:15 -070040
YPZhangcbc2a062016-07-11 10:55:44 -070041 main.step( "Git Pull on ONOS branch:" + gitBranch )
42 stepResult = main.ONOSbench.gitPull()
43 utilities.assert_equals(expect=main.TRUE,
44 actual=stepResult,
45 onpass="Successfully pull onos. ",
46 onfail="Failed to pull onos. Exiting test ...")
47 if not stepResult: main.exit()
andrew@onlab.us2ae3a112015-02-02 11:24:32 -080048
YPZhangcbc2a062016-07-11 10:55:44 -070049 main.step( "Building ONOS branch: " + gitBranch )
50 stepResult = main.ONOSbench.cleanInstall( skipTest=True )
51 utilities.assert_equals(expect=main.TRUE,
52 actual=stepResult,
53 onpass="Successfully build onos.",
54 onfail="Failed to build onos. Exiting test...")
55 if not stepResult: main.exit()
56
57 else:
58 main.log.warn( "Skipped pulling onos and Skipped building ONOS" )
59
60 main.cellName = main.params['ENV']['cellName']
61 main.Apps = main.params['ENV']['cellApps']
62 main.BENCHIp = main.params['BENCH']['ip1']
63 main.BENCHUser = main.params['BENCH']['user']
64 main.MN1Ip = main.params['MN']['ip1']
65 main.maxNodes = int(main.params['max'])
66 main.numSwitches = (main.params['TEST']['numSwitches']).split(",")
67 main.flowRuleBU = main.params['TEST']['flowRuleBUEnabled']
68 main.skipRelRsrc = main.params['TEST']['skipReleaseResourcesOnWithdrawal']
YPZhange6ef82a2016-07-05 16:48:15 -070069 main.flowObj = main.params['TEST']['flowObj']
YPZhangcbc2a062016-07-11 10:55:44 -070070 main.startUpSleep = int(main.params['SLEEP']['startup'])
71 main.installSleep = int(main.params['SLEEP']['install'])
72 main.verifySleep = int(main.params['SLEEP']['verify'])
73 main.scale = (main.params['SCALE']).split(",")
74 main.testDuration = main.params[ 'TEST' ][ 'duration' ]
75 main.logInterval = main.params[ 'TEST' ][ 'log_interval' ]
76 main.debug = main.params[ 'debugMode' ]
YPZhangcbc2a062016-07-11 10:55:44 -070077 main.timeout = int(main.params['SLEEP']['timeout'])
78 main.cyclePeriod = main.params[ 'TEST' ][ 'cyclePeriod' ]
YPZhange6ef82a2016-07-05 16:48:15 -070079 if main.flowObj == "True":
80 main.flowObj = True
81 main.dbFileName = main.params['DATABASE']['dbFlowObj']
You Wange1427332017-02-06 17:16:20 -080082 main.numKeys = main.params[ 'TEST' ][ 'numKeysFlowObj' ]
YPZhange6ef82a2016-07-05 16:48:15 -070083 else:
84 main.flowObj = False
85 main.dbFileName = main.params['DATABASE']['dbName']
You Wange1427332017-02-06 17:16:20 -080086 main.numKeys = main.params[ 'TEST' ][ 'numKeys' ]
YPZhangcbc2a062016-07-11 10:55:44 -070087 # Create DataBase file
88 main.log.info( "Create Database file " + main.dbFileName )
89 resultsDB = open( main.dbFileName, "w+" )
90 resultsDB.close()
YPZhange6ef82a2016-07-05 16:48:15 -070091
YPZhangcbc2a062016-07-11 10:55:44 -070092 # set neighbors
93 main.neighbors = "1"
cameron@onlab.us412e9562015-05-13 16:04:34 -070094
YPZhangcbc2a062016-07-11 10:55:44 -070095 def CASE1( self, main ):
96 # Clean up test environment and set up
97 import time
98 main.log.info( "Get ONOS cluster IP" )
99 print( main.scale )
100 main.numCtrls = int( main.scale.pop(0) )
101 main.ONOSip = []
102 main.maxNumBatch = 0
103 main.AllONOSip = main.ONOSbench.getOnosIps()
104 for i in range( main.numCtrls ):
105 main.ONOSip.append( main.AllONOSip[i] )
106 main.log.info( main.ONOSip )
107 main.CLIs = []
108 main.log.info( "Creating list of ONOS cli handles" )
109 for i in range( main.numCtrls ):
110 main.CLIs.append( getattr( main, 'ONOS%scli' % (i + 1) ) )
cameron@onlab.usc10e22c2015-05-13 13:07:28 -0700111
YPZhangcbc2a062016-07-11 10:55:44 -0700112 if not main.CLIs:
113 main.log.error( "Failed to create the list of ONOS cli handles" )
114 main.cleanup()
115 main.exit()
cameron@onlab.usc5bf8192015-07-13 13:36:05 -0700116
YPZhangcbc2a062016-07-11 10:55:44 -0700117 main.commit = main.ONOSbench.getVersion( report=True )
118 main.commit = main.commit.split(" ")[1]
119 main.log.info( "Starting up %s node(s) ONOS cluster" % main.numCtrls )
120 main.log.info("Safety check, killing all ONOS processes" +
121 " before initiating environment setup")
cameron@onlab.us059c2562015-04-02 14:12:51 -0700122
YPZhangcbc2a062016-07-11 10:55:44 -0700123 for i in range( main.numCtrls ):
You Wangb98a9fa2017-02-15 17:27:42 -0800124 main.ONOSbench.onosStop( main.ONOSip[i] )
125 main.ONOSbench.onosKill( main.ONOSip[i] )
jenkins15b2b132015-06-23 14:04:09 -0700126
YPZhangcbc2a062016-07-11 10:55:44 -0700127 main.log.info( "NODE COUNT = %s" % main.numCtrls )
128 main.ONOSbench.createCellFile(main.ONOSbench.ip_address,
129 main.cellName,
130 main.MN1Ip,
131 main.Apps,
132 main.ONOSip)
133 main.step( "Apply cell to environment" )
134 cellResult = main.ONOSbench.setCell( main.cellName )
135 verifyResult = main.ONOSbench.verifyCell()
136 stepResult = cellResult and verifyResult
137 utilities.assert_equals(expect=main.TRUE,
138 actual=stepResult,
139 onpass="Successfully applied cell to " + \
140 "environment",
141 onfail="Failed to apply cell to environment ")
andrew@onlab.us2ae3a112015-02-02 11:24:32 -0800142
andrew@onlab.us2ae3a112015-02-02 11:24:32 -0800143 main.step( "Creating ONOS package" )
Jon Hallbd60ea02016-08-23 10:03:59 -0700144 packageResult = main.ONOSbench.buckBuild()
YPZhangcbc2a062016-07-11 10:55:44 -0700145 stepResult = packageResult
146 utilities.assert_equals(expect=main.TRUE,
147 actual=stepResult,
148 onpass="Successfully created ONOS package",
149 onfail="Failed to create ONOS package")
andrew@onlab.us2ae3a112015-02-02 11:24:32 -0800150
YPZhangcbc2a062016-07-11 10:55:44 -0700151 main.step( "Uninstall ONOS package on all Nodes" )
152 uninstallResult = main.TRUE
153 for i in range( int( main.numCtrls ) ):
154 main.log.info( "Uninstalling package on ONOS Node IP: " + main.ONOSip[i] )
155 u_result = main.ONOSbench.onosUninstall( main.ONOSip[i] )
156 utilities.assert_equals(expect=main.TRUE, actual=u_result,
157 onpass="Test step PASS",
158 onfail="Test step FAIL")
159 uninstallResult = ( uninstallResult and u_result )
Jon Hall4ba53f02015-07-29 13:07:41 -0700160
YPZhangcbc2a062016-07-11 10:55:44 -0700161 main.step( "Install ONOS package on all Nodes" )
162 installResult = main.TRUE
163 for i in range( int( main.numCtrls ) ):
164 main.log.info( "Installing package on ONOS Node IP: " + main.ONOSip[i] )
165 i_result = main.ONOSbench.onosInstall(node=main.ONOSip[i])
166 utilities.assert_equals(expect=main.TRUE, actual=i_result,
167 onpass="Test step PASS",
168 onfail="Test step FAIL")
169 installResult = installResult and i_result
cameron@onlab.us059c2562015-04-02 14:12:51 -0700170
Chiyu Chengef109502016-11-21 15:51:38 -0800171 main.step( "Set up ONOS secure SSH" )
172 secureSshResult = main.TRUE
173 for i in range( int( main.numCtrls ) ):
174 secureSshResult = secureSshResult and main.ONOSbench.onosSecureSSH( node=main.ONOSip[i] )
175 utilities.assert_equals( expect=main.TRUE, actual=secureSshResult,
176 onpass="Test step PASS",
177 onfail="Test step FAIL" )
178
You Wang0357c432017-01-09 16:13:33 -0800179 time.sleep( main.startUpSleep )
180 main.step( "Starting ONOS service" )
181 stopResult = main.TRUE
182 startResult = main.TRUE
183 onosIsUp = main.TRUE
184 for i in range( main.numCtrls ):
185 onosIsUp = onosIsUp and main.ONOSbench.isup( main.ONOSip[ i ] )
186 if onosIsUp == main.TRUE:
187 main.log.report( "ONOS instance is up and ready" )
188 else:
189 main.log.report( "ONOS instance may not be up, stop and " +
190 "start ONOS again " )
191 for i in range( main.numCtrls ):
192 stopResult = stopResult and \
193 main.ONOSbench.onosStop( main.ONOSip[ i ] )
194 for i in range( main.numCtrls ):
195 startResult = startResult and \
196 main.ONOSbench.onosStart( main.ONOSip[ i ] )
197 stepResult = onosIsUp and stopResult and startResult
198 utilities.assert_equals( expect=main.TRUE,
199 actual=stepResult,
200 onpass="ONOS service is ready",
201 onfail="ONOS service did not start properly" )
202
YPZhangcbc2a062016-07-11 10:55:44 -0700203 main.step( "Start ONOS cli using thread" )
204 startCliResult = main.TRUE
205 pool = []
206 main.threadID = 0
207 for i in range(int(main.numCtrls)):
208 t = main.Thread(target=main.CLIs[i].startOnosCli,
209 threadID=main.threadID,
210 name="startOnosCli",
211 args=[main.ONOSip[i]],
212 kwargs={"onosStartTimeout": main.timeout})
213 pool.append(t)
214 t.start()
215 main.threadID = main.threadID + 1
216 for t in pool:
217 t.join()
218 startCliResult = startCliResult and t.result
219 time.sleep( main.startUpSleep )
cameron@onlab.us059c2562015-04-02 14:12:51 -0700220
YPZhangcbc2a062016-07-11 10:55:44 -0700221 # config apps
222 main.CLIs[0].setCfg( "org.onosproject.store.flow.impl.DistributedFlowRuleStore",
223 "backupEnabled " + main.flowRuleBU )
224 main.CLIs[0].setCfg( "org.onosproject.net.intent.impl.IntentManager",
225 "skipReleaseResourcesOnWithdrawal " + main.skipRelRsrc )
226 main.CLIs[0].setCfg( "org.onosproject.provider.nil.NullProviders", "deviceCount " + str(int(main.numCtrls*10)) )
227 main.CLIs[0].setCfg( "org.onosproject.provider.nil.NullProviders", "topoShape linear" )
228 main.CLIs[0].setCfg( "org.onosproject.provider.nil.NullProviders", "enabled true" )
YPZhange6ef82a2016-07-05 16:48:15 -0700229 if main.flowObj:
YPZhangcbc2a062016-07-11 10:55:44 -0700230 main.CLIs[0].setCfg("org.onosproject.net.intent.impl.compiler.IntentConfigurableRegistrator",
231 "useFlowObjectives", value="true")
You Wang106d0fa2017-05-15 17:22:15 -0700232 main.CLIs[0].setCfg("org.onosproject.net.intent.impl.compiler.IntentConfigurableRegistrator",
233 "defaultFlowObjectiveCompiler",
234 value='org.onosproject.net.intent.impl.compiler.LinkCollectionIntentObjectiveCompiler')
YPZhangcbc2a062016-07-11 10:55:44 -0700235 time.sleep( main.startUpSleep )
cameron@onlab.useae03dc2015-07-29 11:51:28 -0700236
YPZhangcbc2a062016-07-11 10:55:44 -0700237 # balanceMasters
238 main.CLIs[0].balanceMasters()
239 time.sleep( main.startUpSleep )
cameron@onlab.usaaecfd72015-07-08 12:27:26 -0700240
YPZhangcbc2a062016-07-11 10:55:44 -0700241 def CASE2(self, main):
jenkins3af0cd82015-03-24 10:27:16 -0700242 import numpy
cameron@onlab.usc10e22c2015-05-13 13:07:28 -0700243
YPZhangcbc2a062016-07-11 10:55:44 -0700244 main.log.info( "Cluster Count = " + str( main.numCtrls ) )
245 # adjust neighbors
246 if main.numCtrls == 1:
247 main.neighbors = "0"
248 main.log.info( "Neighbors: 0" )
249 elif main.neighbors != "0":
250 main.neighbors = "0"
251 main.log.info( "Neighbors: 0" )
252 elif main.neighbors == "0":
253 main.neighbors = str( main.numCtrls - 1 )
254 main.log.info( "Neighbors: " + main.neighbors )
cameron@onlab.usc10e22c2015-05-13 13:07:28 -0700255
YPZhangcbc2a062016-07-11 10:55:44 -0700256 main.log.info( "Config intent-perf app" )
257 main.CLIs[0].setCfg( "org.onosproject.intentperf.IntentPerfInstaller", "numKeys " + main.numKeys )
258 main.CLIs[0].setCfg( "org.onosproject.intentperf.IntentPerfInstaller", "numNeighbors " + str( main.neighbors ) )
259 main.CLIs[0].setCfg( "org.onosproject.intentperf.IntentPerfInstaller", "cyclePeriod " + main.cyclePeriod )
cameron@onlab.usc10e22c2015-05-13 13:07:28 -0700260
YPZhangcbc2a062016-07-11 10:55:44 -0700261 main.log.info( "Starting intent-perf test for " + str(main.testDuration) + " seconds..." )
262 main.CLIs[0].sendline( "intent-perf-start" )
263 stop = time.time() + float( main.testDuration )
andrew@onlab.us10332202015-03-11 15:04:43 -0700264
YPZhangcbc2a062016-07-11 10:55:44 -0700265 while time.time() < stop:
266 time.sleep(15)
267 result = main.CLIs[0].getIntentPerfSummary()
268 if result:
269 for ip in main.ONOSip:
270 main.log.info( "Node {} Overall Rate: {}".format( ip, result[ip] ) )
271 main.log.info( "Stop intent-perf" )
272 for node in main.CLIs:
273 node.sendline( "intent-perf-stop" )
274 if result:
275 for ip in main.ONOSip:
276 main.log.info( "Node {} final Overall Rate: {}".format( ip, result[ip] ) )
andrew@onlab.us2ae3a112015-02-02 11:24:32 -0800277
YPZhangcbc2a062016-07-11 10:55:44 -0700278 with open( main.dbFileName, "a" ) as resultDB:
279 for nodes in range( 0, len( main.ONOSip ) ):
280 resultString = "'" + main.commit + "',"
281 resultString += "'1gig',"
282 resultString += str(main.numCtrls) + ","
283 resultString += "'baremetal" + str( nodes+1 ) + "',"
284 resultString += main.neighbors + ","
285 resultString += result[ main.ONOSip[ nodes ] ]+","
286 resultString += str(0) + "\n" # no stddev
287 resultDB.write( resultString )
288 resultDB.close()