blob: a781698f68b2b3f3becc6abd2bba1be43791e034 [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
YPZhangcbc2a062016-07-11 10:55:44 -070022'''
23SCPFintentEventTp
24 - Use intentperf app to generate a lot of intent install and withdraw events
25 - Test will run with 1,3,5,7 nodes, and with all neighbors
26 - Test will run 400 seconds and grep the overall rate from intent-perf summary
andrew@onlab.us2ae3a112015-02-02 11:24:32 -080027
YPZhangcbc2a062016-07-11 10:55:44 -070028 yunpeng@onlab.us
29'''
30
cameron@onlab.usaaecfd72015-07-08 12:27:26 -070031import time
andrew@onlab.us10332202015-03-11 15:04:43 -070032
andrew@onlab.us2ae3a112015-02-02 11:24:32 -080033
suibin7f2c9cd2015-07-08 17:34:59 -070034class SCPFintentEventTp:
andrew@onlab.us2ae3a112015-02-02 11:24:32 -080035 def __init__( self ):
36 self.default = ''
37
YPZhangcbc2a062016-07-11 10:55:44 -070038 def CASE0( self, main ):
39 '''
40 - GIT
41 - BUILDING ONOS
42 Pull specific ONOS branch, then Build ONOS ono ONOS Bench.
43 This step is usually skipped. Because in a Jenkins driven automated
44 test env. We want Jenkins jobs to pull&build for flexibility to handle
45 different versions of ONOS.
46 - Construct tests variables
47 '''
Devin Lim58046fa2017-07-05 16:55:00 -070048 try:
49 from tests.dependencies.ONOSSetup import ONOSSetup
50 main.testSetUp = ONOSSetup()
51 except ImportError:
52 main.log.error( "ONOSSetup not found. exiting the test" )
53 main.exit()
54 main.testSetUp.envSetupDescription()
55 stepResult = main.FALSE
56 try:
Devin Lim142b5342017-07-20 15:22:39 -070057 main.cellName = main.params[ 'ENV' ][ 'cellName' ]
Devin Lim58046fa2017-07-05 16:55:00 -070058 main.apps = main.params[ 'ENV' ][ 'cellApps' ]
59 main.BENCHIp = main.params[ 'BENCH' ][ 'ip1' ]
60 main.BENCHUser = main.params[ 'BENCH' ][ 'user' ]
61 main.MN1Ip = main.params[ 'MN' ][ 'ip1' ]
Devin Lim142b5342017-07-20 15:22:39 -070062 main.numSwitches = ( main.params[ 'TEST' ][ 'numSwitches' ] ).split( "," )
Devin Lim58046fa2017-07-05 16:55:00 -070063 main.skipRelRsrc = main.params[ 'TEST' ][ 'skipReleaseResourcesOnWithdrawal' ]
64 main.flowObj = main.params[ 'TEST' ][ 'flowObj' ]
65 main.startUpSleep = int( main.params[ 'SLEEP' ][ 'startup' ] )
66 main.installSleep = int( main.params[ 'SLEEP' ][ 'install' ] )
67 main.verifySleep = int( main.params[ 'SLEEP' ][ 'verify' ] )
Devin Lim142b5342017-07-20 15:22:39 -070068 main.scale = ( main.params[ 'SCALE' ] ).split( "," )
Devin Lim58046fa2017-07-05 16:55:00 -070069 main.testDuration = main.params[ 'TEST' ][ 'duration' ]
70 main.logInterval = main.params[ 'TEST' ][ 'log_interval' ]
71 main.debug = main.params[ 'debugMode' ]
Devin Lim142b5342017-07-20 15:22:39 -070072 main.intentManagerCfg = main.params[ 'CFG' ][ 'intentManager' ]
73 main.intentConfigRegiCfg = main.params[ 'CFG' ][ 'intentConfigRegi' ]
74 main.nullProviderCfg = main.params[ 'CFG' ][ 'nullProvider' ]
75 main.linkCollectionIntentCfg = main.params[ 'CFG' ][ 'linkCollectionIntent' ]
76 main.intentPerfInstallerCfg = main.params[ 'CFG' ][ 'intentPerfInstaller' ]
Devin Lim9ef93e12017-08-07 17:01:46 -070077 main.neighbor = ( main.params[ 'TEST' ][ 'neighbors' ] ).split( "," )
Devin Lim58046fa2017-07-05 16:55:00 -070078 main.timeout = int( main.params[ 'SLEEP' ][ 'timeout' ] )
79 main.cyclePeriod = main.params[ 'TEST' ][ 'cyclePeriod' ]
80 if main.flowObj == "True":
81 main.flowObj = True
82 main.dbFileName = main.params[ 'DATABASE' ][ 'dbFlowObj' ]
83 main.numKeys = main.params[ 'TEST' ][ 'numKeysFlowObj' ]
84 else:
85 main.flowObj = False
86 main.dbFileName = main.params[ 'DATABASE' ][ 'dbName' ]
87 main.numKeys = main.params[ 'TEST' ][ 'numKeys' ]
cameron@onlab.usc10e22c2015-05-13 13:07:28 -070088
Devin Lim142b5342017-07-20 15:22:39 -070089 stepResult = main.testSetUp.envSetup()
Devin Lim58046fa2017-07-05 16:55:00 -070090 # Create DataBase file
91 main.log.info( "Create Database file " + main.dbFileName )
92 resultsDB = open( main.dbFileName, "w+" )
93 resultsDB.close()
Devin Lim58046fa2017-07-05 16:55:00 -070094 except Exception as e:
95 main.testSetUp.envSetupException( e )
96 main.testSetUp.evnSetupConclusion( stepResult )
97 main.commit = main.commit.split( " " )[ 1 ]
cameron@onlab.us412e9562015-05-13 16:04:34 -070098
YPZhangcbc2a062016-07-11 10:55:44 -070099 def CASE1( self, main ):
100 # Clean up test environment and set up
101 import time
YPZhangcbc2a062016-07-11 10:55:44 -0700102 main.maxNumBatch = 0
Devin Lim142b5342017-07-20 15:22:39 -0700103 main.testSetUp.ONOSSetUp( main.MN1Ip, main.Cluster, True,
104 cellName=main.cellName, killRemoveMax=False )
YPZhangcbc2a062016-07-11 10:55:44 -0700105 # config apps
Devin Lim142b5342017-07-20 15:22:39 -0700106 main.Cluster.active( 0 ).CLI.setCfg( main.intentManagerCfg,
107 "skipReleaseResourcesOnWithdrawal " + main.skipRelRsrc )
108 main.Cluster.active( 0 ).CLI.setCfg( main.nullProviderCfg,
109 "deviceCount " + str( int( main.Cluster.numCtrls * 10 ) ) )
110 main.Cluster.active( 0 ).CLI.setCfg( main.nullProviderCfg, "topoShape linear" )
111 main.Cluster.active( 0 ).CLI.setCfg( main.nullProviderCfg, "enabled true" )
YPZhange6ef82a2016-07-05 16:48:15 -0700112 if main.flowObj:
Devin Lim6301b742017-08-07 11:00:21 -0700113 main.Cluster.active( 0 ).CLI.setCfg( main.intentConfigRegiCfg,
Devin Lim142b5342017-07-20 15:22:39 -0700114 "useFlowObjectives", value="true" )
Devin Lim6301b742017-08-07 11:00:21 -0700115 main.Cluster.active( 0 ).CLI.setCfg( main.intentConfigRegiCfg,
Devin Lim142b5342017-07-20 15:22:39 -0700116 "defaultFlowObjectiveCompiler",
117 value=main.linkCollectionIntentCfg )
YPZhangcbc2a062016-07-11 10:55:44 -0700118 time.sleep( main.startUpSleep )
cameron@onlab.useae03dc2015-07-29 11:51:28 -0700119
YPZhangcbc2a062016-07-11 10:55:44 -0700120 # balanceMasters
Devin Lim142b5342017-07-20 15:22:39 -0700121 main.Cluster.active( 0 ).CLI.balanceMasters()
YPZhangcbc2a062016-07-11 10:55:44 -0700122 time.sleep( main.startUpSleep )
Devin Lim142b5342017-07-20 15:22:39 -0700123 def CASE2( self, main ):
jenkins3af0cd82015-03-24 10:27:16 -0700124 import numpy
cameron@onlab.usc10e22c2015-05-13 13:07:28 -0700125
Devin Lim142b5342017-07-20 15:22:39 -0700126 main.log.info( "Cluster Count = " + str( main.Cluster.numCtrls ) )
Devin Lim9ef93e12017-08-07 17:01:46 -0700127 neighbors = '0' if main.neighbor.pop( 0 ) == '0' else str( main.Cluster.numCtrls - 1 )
128 main.log.info( "Neighbors: " + neighbors )
YPZhangcbc2a062016-07-11 10:55:44 -0700129 main.log.info( "Config intent-perf app" )
Devin Lim142b5342017-07-20 15:22:39 -0700130 main.Cluster.active( 0 ).CLI.setCfg( main.intentPerfInstallerCfg,
131 "numKeys " + main.numKeys )
132 main.Cluster.active( 0 ).CLI.setCfg( main.intentPerfInstallerCfg,
Devin Lim9ef93e12017-08-07 17:01:46 -0700133 "numNeighbors " + neighbors )
Devin Lim142b5342017-07-20 15:22:39 -0700134 main.Cluster.active( 0 ).CLI.setCfg( main.intentPerfInstallerCfg,
135 "cyclePeriod " + main.cyclePeriod )
cameron@onlab.usc10e22c2015-05-13 13:07:28 -0700136
Devin Lim142b5342017-07-20 15:22:39 -0700137 main.log.info( "Starting intent-perf test for " + str( main.testDuration ) + " seconds..." )
138 main.Cluster.active( 0 ).CLI.sendline( "intent-perf-start" )
YPZhangcbc2a062016-07-11 10:55:44 -0700139 stop = time.time() + float( main.testDuration )
andrew@onlab.us10332202015-03-11 15:04:43 -0700140
YPZhangcbc2a062016-07-11 10:55:44 -0700141 while time.time() < stop:
Devin Lim142b5342017-07-20 15:22:39 -0700142 time.sleep( 15 )
143 result = main.Cluster.active( 0 ).CLI.getIntentPerfSummary()
YPZhangcbc2a062016-07-11 10:55:44 -0700144 if result:
Devin Lim142b5342017-07-20 15:22:39 -0700145 for ctrl in main.Cluster.active():
146 main.log.info( "Node {} Overall Rate: {}".format( ctrl.ipAddress,
147 result[ ctrl.ipAddress ] ) )
YPZhangcbc2a062016-07-11 10:55:44 -0700148 main.log.info( "Stop intent-perf" )
Devin Lim142b5342017-07-20 15:22:39 -0700149 for ctrl in main.Cluster.active():
150 ctrl.CLI.sendline( "intent-perf-stop" )
YPZhangcbc2a062016-07-11 10:55:44 -0700151 if result:
Devin Lim142b5342017-07-20 15:22:39 -0700152 for ctrl in main.Cluster.active():
153 main.log.info( "Node {} final Overall Rate: {}".format( ctrl.ipAddress,
154 result[ ctrl.ipAddress ] ) )
andrew@onlab.us2ae3a112015-02-02 11:24:32 -0800155
YPZhangcbc2a062016-07-11 10:55:44 -0700156 with open( main.dbFileName, "a" ) as resultDB:
Devin Lim142b5342017-07-20 15:22:39 -0700157 for nodes in range( main.Cluster.numCtrls ):
YPZhangcbc2a062016-07-11 10:55:44 -0700158 resultString = "'" + main.commit + "',"
159 resultString += "'1gig',"
Devin Lim142b5342017-07-20 15:22:39 -0700160 resultString += str( main.Cluster.numCtrls ) + ","
161 resultString += "'baremetal" + str( nodes + 1 ) + "',"
Devin Lim9ef93e12017-08-07 17:01:46 -0700162 resultString += neighbors + ","
Devin Lim142b5342017-07-20 15:22:39 -0700163 resultString += result[ main.Cluster.active( nodes ).ipAddress ] + ","
164 resultString += str( 0 ) + "\n" # no stddev
YPZhangcbc2a062016-07-11 10:55:44 -0700165 resultDB.write( resultString )
166 resultDB.close()