blob: 41b09aaa09659bb1625a2b0765175997f93dbfe7 [file] [log] [blame]
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -07001"""
2Copyright 2015 Open Networking Foundation (ONF)
3
4Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>,
5the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>,
6or the System Testing Guide page at <https://wiki.onosproject.org/x/WYQg>
7
8 TestON is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 2 of the License, or
11 (at your option) any later version.
12
13 TestON is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with TestON. If not, see <http://www.gnu.org/licenses/>.
20"""
21
cameron@onlab.us946d99c2015-07-08 15:34:37 -070022# ScaleOutTemplate -> flowTP
23#
24# CASE1 starts number of nodes specified in param file
25#
26# cameron@onlab.us
27
28import sys
29import os.path
30
31
32class SCPFflowTp1g:
33
34 def __init__( self ):
35 self.default = ''
36
Devin Limd2f199a2017-08-04 12:02:47 -070037 def CASE0( self, main ):
cameron@onlab.us946d99c2015-07-08 15:34:37 -070038 import time
cameron@onlab.us946d99c2015-07-08 15:34:37 -070039 try:
Devin Limd2f199a2017-08-04 12:02:47 -070040 from tests.dependencies.ONOSSetup import ONOSSetup
41 main.testSetUp = ONOSSetup()
42 except ImportError:
43 main.log.error("ONOSSetup not found. exiting the test")
Devin Lim44075962017-08-11 10:56:37 -070044 main.cleanAndExit()
Devin Limd2f199a2017-08-04 12:02:47 -070045 main.testSetUp.envSetupDescription()
46 try:
47 #Load values from params file
48 cellName = main.params[ 'ENV' ][ 'cellName' ]
49 main.apps = main.params[ 'ENV' ][ 'cellApps' ]
50 BENCHUser = main.params[ 'BENCH' ][ 'user' ]
51 BENCHIp = main.params[ 'BENCH' ][ 'ip1' ]
52 main.scale = ( main.params[ 'SCALE' ] ).split( "," )
53 main.flowRuleCfg = main.params[ 'CFG' ][ 'flowRule' ]
Devin Lim9ef93e12017-08-07 17:01:46 -070054 main.neighbor = ( main.params[ 'TEST' ][ 'neighbors' ] ).split( "," )
Devin Limd2f199a2017-08-04 12:02:47 -070055 main.nullProviderCfg = main.params[ 'CFG' ][ 'nullProvider' ]
Devin Limccce5c82017-08-17 17:34:12 -070056 isFlowObj = main.params[ 'TEST' ][ 'flowObj' ] == "True"
57 if isFlowObj:
sivachidambaram subramanian1c18af82017-08-03 14:36:18 +053058 resultFile = main.params[ 'TEST' ][ 'flowObjResultFile' ]
59 else:
60 resultFile = main.params[ 'TEST' ][ 'flowResultFile' ]
Devin Limd2f199a2017-08-04 12:02:47 -070061 stepResult = main.testSetUp.envSetup()
sivachidambaram subramanian1c18af82017-08-03 14:36:18 +053062 resultsDB = open( str( resultFile ), "w+" )
Devin Limd2f199a2017-08-04 12:02:47 -070063 resultsDB.close()
64 except Exception as e:
65 main.testSetUp.envSetupException( e )
66 main.testSetUp.evnSetupConclusion( stepResult )
67 main.commit = ( main.commit.split( " " ) )[ 1 ]
cameron@onlab.us946d99c2015-07-08 15:34:37 -070068
Devin Limd2f199a2017-08-04 12:02:47 -070069 def CASE1( self, main ):
Devin Lim142b5342017-07-20 15:22:39 -070070 main.testSetUp.ONOSSetUp( "localhost", main.Cluster, True, cellName=cellName )
Devin Lim142b5342017-07-20 15:22:39 -070071 main.log.info( "Startup sequence complete" )
72 main.ONOSbench.logReport( main.Cluster.active( 0 ).ipAddress, [ "ERROR", "WARNING", "EXCEPT" ], outputMode="d" )
Chiyu Chengef109502016-11-21 15:51:38 -080073
cameron@onlab.us946d99c2015-07-08 15:34:37 -070074 def CASE2( self, main ):
75 #
sivachidambaram subramanian1c18af82017-08-03 14:36:18 +053076 # This is the flow/flowObjective TP test
cameron@onlab.us946d99c2015-07-08 15:34:37 -070077 #
Jon Hall4ba53f02015-07-29 13:07:41 -070078 import os.path
79 import numpy
cameron@onlab.us946d99c2015-07-08 15:34:37 -070080 import math
Jon Hall4ba53f02015-07-29 13:07:41 -070081 import time
cameron@onlab.us946d99c2015-07-08 15:34:37 -070082 import datetime
83 import traceback
84
Devin Lim142b5342017-07-20 15:22:39 -070085 testCMD = [ 0, 0, 0, 0 ]
86 warmUp = int( main.params[ 'TEST' ][ 'warmUp' ] )
87 sampleSize = int( main.params[ 'TEST' ][ 'sampleSize' ] )
88 switches = int( main.params[ 'TEST' ][ 'switches' ] )
Devin Lim142b5342017-07-20 15:22:39 -070089 testCMD[ 0 ] = main.params[ 'TEST' ][ 'testCMD0' ]
90 testCMD[ 1 ] = main.params[ 'TEST' ][ 'testCMD1' ]
sivachidambaram subramanian1c18af82017-08-03 14:36:18 +053091 testCMD[ 2 ] = main.params[ 'TEST' ][ 'testCMD2' ]
92 testCMD[ 3 ] = main.params[ 'TEST' ][ 'testCMD3' ]
93 flowObjType = main.params[ 'TEST' ][ 'flowObjType' ]
cameron@onlab.us946d99c2015-07-08 15:34:37 -070094 cooldown = main.params[ 'TEST' ][ 'cooldown' ]
95 cellName = main.params[ 'ENV' ][ 'cellName' ]
96 BENCHIp = main.params[ 'BENCH' ][ 'ip1' ]
97 BENCHUser = main.params[ 'BENCH' ][ 'user' ]
98 MN1Ip = main.params[ 'MN' ][ 'ip1' ]
Devin Lim142b5342017-07-20 15:22:39 -070099 homeDir = os.path.expanduser( '~' )
100 flowRuleBackup = str( main.params[ 'TEST' ][ 'enableFlowRuleStoreBackup' ] )
101 main.log.info( "Flow Rule Backup is set to:" + flowRuleBackup )
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700102
Devin Lim142b5342017-07-20 15:22:39 -0700103 servers = str( main.Cluster.numCtrls )
Devin Lim9ef93e12017-08-07 17:01:46 -0700104 neighbors = '0' if main.neighbor.pop( 0 ) == '0' else str( main.Cluster.numCtrls - 1 )
105 main.log.info( "Number of Neighbors: " + neighbors )
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700106 ts = time.time()
Devin Lim142b5342017-07-20 15:22:39 -0700107 st = datetime.datetime.fromtimestamp( ts ).strftime( '%Y-%m-%d %H:%M:%S' )
Devin Lim9ef93e12017-08-07 17:01:46 -0700108 main.step( "\tSTARTING TEST" )
109 main.step( "\tLOADING FROM SERVERS: \t" + str( main.Cluster.numCtrls ) )
110 main.step( "\tNEIGHBORS:\t" + neighbors )
111 main.log.info( "=============================================================" )
112 main.log.info( "=============================================================" )
113 #write file to configure nil link
114 ipCSV = ""
115 for i in range ( main.Cluster.maxCtrls ):
116 tempstr = "ip" + str( i + 1 )
117 ipCSV += main.params[ 'CTRL' ][ tempstr ]
118 if i + 1 < main.Cluster.maxCtrls:
119 ipCSV +=","
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700120
Devin Lim9ef93e12017-08-07 17:01:46 -0700121 main.ONOSbench.onosCfgSet( main.Cluster.active( 0 ).ipAddress,
122 main.flowRuleCfg,
123 "backupCount 1" )
124 for i in range( 3 ):
Devin Lim142b5342017-07-20 15:22:39 -0700125 main.ONOSbench.onosCfgSet( main.Cluster.active( 0 ).ipAddress,
Devin Lim9ef93e12017-08-07 17:01:46 -0700126 main.nullProviderCfg,
127 "deviceCount 35" )
128 main.ONOSbench.onosCfgSet( main.Cluster.active( 0 ).ipAddress,
129 main.nullProviderCfg,
130 "topoShape linear" )
131 main.ONOSbench.onosCfgSet( main.Cluster.active( 0 ).ipAddress,
132 main.nullProviderCfg,
133 "enabled true" )
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700134
Devin Lim9ef93e12017-08-07 17:01:46 -0700135 time.sleep( 5 )
136 main.ONOSbench.handle.sendline( "onos $OC1 summary" )
137 main.ONOSbench.handle.expect( ":~" )
138 check = main.ONOSbench.handle.before
139 main.log.info( "\nStart up check: \n" + check + "\n" )
140 if "SCC(s)=1," in check:
141 main.ONOSbench.handle.sendline( "onos $OC1 balance-masters" )
142 main.ONOSbench.handle.expect( ":~" )
Devin Lim142b5342017-07-20 15:22:39 -0700143 time.sleep( 5 )
Devin Lim9ef93e12017-08-07 17:01:46 -0700144 main.ONOSbench.handle.sendline( "onos $OC1 roles " )
145 main.ONOSbench.handle.expect ( ":~" )
146 main.log.info( "switch masterships:" + str( main.ONOSbench.handle.before ) )
147 break
148 time.sleep( 5 )
149
150 #divide flows/flowObjectives
Devin Limccce5c82017-08-17 17:34:12 -0700151 if isFlowObj:
Devin Lim9ef93e12017-08-07 17:01:46 -0700152 toInstall = "FlowObjectives"
153 installCount = int( main.params[ 'TEST' ][ 'flowObjectives' ] )
154 ifFailed = "FLOW_OBJ_TESTER.PY FAILURE"
155 resultFile = main.params[ 'TEST' ][ 'flowObjResultFile' ]
156 else:
157 toInstall = "Flows"
158 installCount = int( main.params[ 'TEST' ][ 'flows' ] )
159 ifFailed = "FLOW_TESTER.PY FAILURE"
160 resultFile = main.params[ 'TEST' ][ 'flowResultFile' ]
161 main.log.info( toInstall + " Target = " + str( installCount ) )
162
You Wangcfc98622017-08-11 13:01:00 -0700163 installCountPerSwitch = ( installCount *max( int ( neighbors ) + 1, int( servers ) ) )/( ( int( neighbors ) + 1 )*int( servers )*( switches ) )
Devin Lim9ef93e12017-08-07 17:01:46 -0700164
You Wangcfc98622017-08-11 13:01:00 -0700165 main.log.info( toInstall + " per switch = " + str( installCountPerSwitch ) )
Devin Lim9ef93e12017-08-07 17:01:46 -0700166 #build list of servers in "$OC1, $OC2...." format
167 serverEnvVars = ""
168 for i in range( int( servers ) ):
169 serverEnvVars += ( "-s " + main.Cluster.active( i ).ipAddress + " " )
170
171 data = [ [ "" ]*int( servers ) ]*int( sampleSize )
172 maxes = [ "" ]*int( sampleSize )
173
174 flowCMD = "python3 " + homeDir + "/onos/tools/test/bin/"
Devin Limccce5c82017-08-17 17:34:12 -0700175 if isFlowObj:
You Wangcfc98622017-08-11 13:01:00 -0700176 flowCMD += testCMD[ 2 ] + " " + str( installCountPerSwitch ) + " " + testCMD[ 1 ]
Devin Lim9ef93e12017-08-07 17:01:46 -0700177 flowCMD += " " + neighbors + " " + testCMD[ 3 ] + " " + str( flowObjType ) + " " + str( serverEnvVars ) + "-j"
178 else:
You Wangcfc98622017-08-11 13:01:00 -0700179 flowCMD += testCMD[ 0 ] + " " + str( installCountPerSwitch ) + " " + testCMD[ 1 ]
Devin Lim9ef93e12017-08-07 17:01:46 -0700180 flowCMD += " " + neighbors + " " + str( serverEnvVars ) + "-j"
181
182 main.log.info( flowCMD )
183 #time.sleep( 60 )
184
185 for test in range( 0, warmUp + sampleSize ):
186 if test < warmUp:
187 main.log.info( "Warm up " + str( test + 1 ) + " of " + str( warmUp ) )
188 else:
189 main.log.info( "====== Test run: " + str( test-warmUp+1 ) + " ======" )
190
191 main.ONOSbench.handle.sendline( flowCMD )
192 main.ONOSbench.handle.expect( ":~" )
193 rawResult = main.ONOSbench.handle.before
194 main.log.info( "Raw results: \n" + rawResult + "\n" )
195
196 if "failed" in rawResult:
197 main.log.report( ifFailed )
198 main.log.report( " \n" + rawResult + " \n" )
199 for ctrl in main.Cluster.active():
200 main.log.report( "=======================================================" )
201 main.log.report( ctrl.name + "LOG REPORT" )
202 main.ONOSbench.logReport( ctrl.ipAddress, [ "ERROR", "WARNING", "EXCEPT" ], outputMode="d" )
203 main.ONOSbench.handle.sendline( "onos $OC1 flows" )
204 main.ONOSbench.handle.expect( ":~" )
205 main.log.info( main.ONOSbench.handle.before )
206
207 break
208 result = [ "" ]*( main.Cluster.numCtrls )
209
210 rawResult = rawResult.splitlines()
211
212 for node in range( main.Cluster.numCtrls ):
213 for line in rawResult:
214 #print( "line: " + line )
215 if main.Cluster.active( node ).ipAddress in line and "server" in line:
216 temp = line.split( " " )
217 for word in temp:
218 #print ( "word: " + word )
219 if "elapsed" in repr( word ):
220 index = temp.index( word ) + 1
221 myParsed = ( temp[ index ] ).replace( ",", "" )
222 myParsed = myParsed.replace( "}", "" )
223 myParsed = int( myParsed )
224 result[ node ] = myParsed
225 main.log.info( main.Cluster.active( node ).ipAddress + " : " + str( myParsed ) )
226 break
227
228 if test >= warmUp:
229 for i in result:
230 if i == "":
231 main.log.error( "Missing data point, critical failure incoming" )
232
233 print result
234 maxes[ test-warmUp ] = max( result )
235 main.log.info( "Data collection iteration: " + str( test-warmUp ) + " of " + str( sampleSize ) )
236 main.log.info( "Throughput time: " + str( maxes[ test-warmUp ] ) + "(ms)" )
237
238 data[ test-warmUp ] = result
239
240 # wait for flows = 0
241 for checkCount in range( 0, 5 ):
242 time.sleep( 10 )
Devin Lim142b5342017-07-20 15:22:39 -0700243 main.ONOSbench.handle.sendline( "onos $OC1 summary" )
244 main.ONOSbench.handle.expect( ":~" )
Devin Lim9ef93e12017-08-07 17:01:46 -0700245 flowCheck = main.ONOSbench.handle.before
246 if "flows=0," in flowCheck:
247 main.log.info( toInstall + " removed" )
Jon Hall4ba53f02015-07-29 13:07:41 -0700248 break
Jon Hall4ba53f02015-07-29 13:07:41 -0700249 else:
Devin Lim9ef93e12017-08-07 17:01:46 -0700250 for line in flowCheck.splitlines():
251 if "flows=" in line:
252 main.log.info( "Current Summary: " + line )
253 if checkCount == 2:
254 main.log.info( toInstall + " are stuck, moving on " )
255 time.sleep( 5 )
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700256
Devin Lim9ef93e12017-08-07 17:01:46 -0700257 main.log.info( "raw data: " + str( data ) )
258 main.log.info( "maxes:" + str( maxes ) )
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700259
260
Devin Lim9ef93e12017-08-07 17:01:46 -0700261 # report data
262 print( "" )
263 main.log.info( "\t Results (measurments are in milliseconds)" )
264 print( "" )
Jon Hall4ba53f02015-07-29 13:07:41 -0700265
Devin Lim9ef93e12017-08-07 17:01:46 -0700266 nodeString = ""
267 for i in range( 1, int( servers ) + 1 ):
268 nodeString += ( "\tNode " + str( i ) )
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700269
Devin Lim9ef93e12017-08-07 17:01:46 -0700270 for test in range( 0, sampleSize ):
271 main.log.info( "\t Test iteration " + str( test + 1 ) )
272 main.log.info( "\t------------------" )
273 main.log.info( nodeString )
274 resultString = ""
Jon Hall4ba53f02015-07-29 13:07:41 -0700275
Devin Lim9ef93e12017-08-07 17:01:46 -0700276 for i in range( 0, int( servers ) ):
277 resultString += ( "\t" + str( data[ test ][ i ] ) )
278 main.log.info( resultString )
279 print( "\n" )
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700280
Devin Lim9ef93e12017-08-07 17:01:46 -0700281 avgOfMaxes = numpy.mean( maxes )
282 main.log.info( "Average of max value from each test iteration: " + str( avgOfMaxes ) )
Jon Hall4ba53f02015-07-29 13:07:41 -0700283
Devin Lim9ef93e12017-08-07 17:01:46 -0700284 stdOfMaxes = numpy.std( maxes )
285 main.log.info( "Standard Deviation of max values: " + str( stdOfMaxes ) )
286 print( "\n\n" )
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700287
Devin Lim9ef93e12017-08-07 17:01:46 -0700288 avgTP = int( installCount ) / avgOfMaxes #result in kflows/second
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700289
Devin Lim9ef93e12017-08-07 17:01:46 -0700290 tp = []
291 for i in maxes:
292 tp.append( ( int( installCount ) / i ) )
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700293
Devin Lim9ef93e12017-08-07 17:01:46 -0700294 stdTP = numpy.std( tp )
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700295
Devin Lim9ef93e12017-08-07 17:01:46 -0700296 main.log.info( "Average thoughput: " + str( avgTP ) + " K" + toInstall + "/second" )
297 main.log.info( "Standard deviation of throughput: " + str( stdTP ) + " K" + toInstall + "/second" )
cameron@onlab.us946d99c2015-07-08 15:34:37 -0700298
Devin Lim9ef93e12017-08-07 17:01:46 -0700299 resultsLog = open( str( resultFile ), "a" )
300 resultString = ( "'" + main.commit + "'," )
301 resultString += ( "'1gig'," )
302 resultString += ( str( installCount ) + "," )
303 resultString += ( str( main.Cluster.numCtrls ) + "," )
304 resultString += ( neighbors + "," )
305 resultString += ( str( avgTP ) + "," + str( stdTP ) + "\n" )
306 resultsLog.write( resultString )
307 resultsLog.close()
Jon Hall4ba53f02015-07-29 13:07:41 -0700308
Devin Lim9ef93e12017-08-07 17:01:46 -0700309 main.log.report( "Result line to file: " + resultString )
Jon Hall4ba53f02015-07-29 13:07:41 -0700310
Devin Lima4f95bc2017-08-11 11:13:03 -0700311 main.ONOSbench.logReport( main.Cluster.active( 0 ).ipAddress, [ "ERROR", "WARNING", "EXCEPT" ], outputMode="d" )