blob: 632978276feba575315d28c2a99f4108a3f53929 [file] [log] [blame]
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -07001"""
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -07002Copyright 2016 Open Networking Foundation ( ONF )
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -07003
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
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -070011 ( at your option ) any later version.
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -070012
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"""
Jon Hall1efcb3f2016-08-23 13:42:15 -070021import os
22import imp
23import time
24import json
25import urllib
26from core import utilities
27
28
29class Testcaselib:
Pierfb719b12016-09-19 14:51:44 -070030
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -070031 useSSH = True
Pierfb719b12016-09-19 14:51:44 -070032
Jon Hall1efcb3f2016-08-23 13:42:15 -070033 @staticmethod
34 def initTest( main ):
35 """
36 - Construct tests variables
37 - GIT ( optional )
38 - Checkout ONOS master branch
39 - Pull latest ONOS code
40 - Building ONOS ( optional )
41 - Install ONOS package
42 - Build ONOS package
43 """
Devin Lim58046fa2017-07-05 16:55:00 -070044 try:
45 from tests.dependencies.ONOSSetup import ONOSSetup
46 main.testSetUp = ONOSSetup()
47 except ImportError:
48 main.log.error( "ONOSSetup not found. exiting the test" )
Devin Lim44075962017-08-11 10:56:37 -070049 main.cleanAndExit()
You Wangd5873482018-01-24 12:30:00 -080050 from tests.dependencies.Network import Network
51 main.Network = Network()
Devin Lim58046fa2017-07-05 16:55:00 -070052 main.testSetUp.envSetupDescription()
53 stepResult = main.FALSE
54 try:
55 main.step( "Constructing test variables" )
56 # Test variables
57 main.cellName = main.params[ 'ENV' ][ 'cellName' ]
58 main.apps = main.params[ 'ENV' ][ 'cellApps' ]
Devin Lim58046fa2017-07-05 16:55:00 -070059 main.path = os.path.dirname( main.testFile )
You Wangac02b142018-01-26 14:57:28 -080060 main.topoPath = main.path + "/../dependencies/"
61 main.configPath = main.path + "/../dependencies/"
Devin Lim58046fa2017-07-05 16:55:00 -070062 main.topology = main.params[ 'DEPENDENCY' ][ 'topology' ]
You Wangd87b2312018-01-30 12:47:17 -080063 main.topologyLib = main.params[ 'DEPENDENCY' ][ 'lib' ] if 'lib' in main.params[ 'DEPENDENCY' ] else None
64 main.topologyConf = main.params[ 'DEPENDENCY' ][ 'conf' ] if 'conf' in main.params[ 'DEPENDENCY' ] else None
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -070065 main.scale = ( main.params[ 'SCALE' ][ 'size' ] ).split( "," )
Devin Lim58046fa2017-07-05 16:55:00 -070066 main.maxNodes = int( main.params[ 'SCALE' ][ 'max' ] )
Devin Lim58046fa2017-07-05 16:55:00 -070067 main.startUpSleep = int( main.params[ 'SLEEP' ][ 'startup' ] )
Jon Hall1efcb3f2016-08-23 13:42:15 -070068
Devin Lim142b5342017-07-20 15:22:39 -070069 stepResult = main.testSetUp.envSetup()
Devin Lim58046fa2017-07-05 16:55:00 -070070 except Exception as e:
71 main.testSetUp.envSetupException( e )
Jonghwan Hyun3731d6a2017-10-19 11:59:31 -070072
Devin Lim58046fa2017-07-05 16:55:00 -070073 main.testSetUp.evnSetupConclusion( stepResult )
Jon Hall1efcb3f2016-08-23 13:42:15 -070074
Jon Hall1efcb3f2016-08-23 13:42:15 -070075 @staticmethod
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080076 def installOnos( main, vlanCfg=True, skipPackage=False, cliSleep=10,
77 parallel=True ):
Jon Hall1efcb3f2016-08-23 13:42:15 -070078 """
79 - Set up cell
80 - Create cell file
81 - Set cell file
82 - Verify cell file
83 - Kill ONOS process
84 - Uninstall ONOS cluster
85 - Verify ONOS start up
86 - Install ONOS cluster
87 - Connect to cli
88 """
89 # main.scale[ 0 ] determines the current number of ONOS controller
You Wangd87b2312018-01-30 12:47:17 -080090 if not main.apps:
Jon Hall1efcb3f2016-08-23 13:42:15 -070091 main.log.error( "App list is empty" )
Devin Lim142b5342017-07-20 15:22:39 -070092 main.log.info( "NODE COUNT = " + str( main.Cluster.numCtrls ) )
93 main.log.info( ''.join( main.Cluster.getIps() ) )
Jon Hall1efcb3f2016-08-23 13:42:15 -070094 main.dynamicHosts = [ 'in1', 'out1' ]
You Wanga0f6ff62018-01-11 15:46:30 -080095 main.testSetUp.ONOSSetUp( main.Cluster, newCell=True, cellName=main.cellName,
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080096 skipPack=skipPackage,
97 useSSH=Testcaselib.useSSH,
98 installParallel=parallel)
Devin Lim142b5342017-07-20 15:22:39 -070099 ready = utilities.retry( main.Cluster.active( 0 ).CLI.summary,
100 main.FALSE,
You Wang1cdc5f52017-12-19 16:47:51 -0800101 sleep=cliSleep,
Devin Lim142b5342017-07-20 15:22:39 -0700102 attempts=10 )
103 if ready:
104 ready = main.TRUE
105 utilities.assert_equals( expect=main.TRUE, actual=ready,
Jon Hall1efcb3f2016-08-23 13:42:15 -0700106 onpass="ONOS summary command succeded",
107 onfail="ONOS summary command failed" )
108
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -0800109 with open( "%s/json/%s.json" % (main.configPath, main.cfgName)) as cfg:
110 main.Cluster.active( 0 ).REST.setNetCfg(json.load(cfg))
111 with open("%s/json/%s.chart" % (main.configPath, main.cfgName)) as chart:
112 main.pingChart = json.load(chart)
Jon Hall1efcb3f2016-08-23 13:42:15 -0700113 if not ready:
114 main.log.error( "ONOS startup failed!" )
Devin Lim44075962017-08-11 10:56:37 -0700115 main.cleanAndExit()
Jon Hall1efcb3f2016-08-23 13:42:15 -0700116
Devin Lim142b5342017-07-20 15:22:39 -0700117 for ctrl in main.Cluster.active():
118 ctrl.CLI.logSet( "DEBUG", "org.onosproject.segmentrouting" )
119 ctrl.CLI.logSet( "DEBUG", "org.onosproject.driver.pipeline" )
120 ctrl.CLI.logSet( "DEBUG", "org.onosproject.store.group.impl" )
121 ctrl.CLI.logSet( "DEBUG", "org.onosproject.net.flowobjective.impl" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700122
123 @staticmethod
124 def startMininet( main, topology, args="" ):
You Wangd87b2312018-01-30 12:47:17 -0800125 copyResult = main.ONOSbench.scp( main.Mininet1,
126 main.topoPath + main.topology,
127 main.Mininet1.home,
128 direction="to" )
129 if main.topologyLib:
130 for lib in main.topologyLib.split(","):
131 copyResult = copyResult and main.ONOSbench.scp( main.Mininet1,
132 main.topoPath + lib,
133 main.Mininet1.home,
134 direction="to" )
135 if main.topologyConf:
136 for conf in main.topologyConf.split(","):
137 copyResult = copyResult and main.ONOSbench.scp( main.Mininet1,
138 main.topoPath + "conf/" + conf,
139 "~/",
140 direction="to" )
141 stepResult = copyResult
142 utilities.assert_equals( expect=main.TRUE,
143 actual=stepResult,
144 onpass="Successfully copied topo files",
145 onfail="Failed to copy topo files" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700146 main.step( "Starting Mininet Topology" )
Jonghwan Hyun3731d6a2017-10-19 11:59:31 -0700147 arg = "--onos-ip=%s %s" % (",".join([ctrl.ipAddress for ctrl in main.Cluster.runningNodes]), args)
Jon Hall1efcb3f2016-08-23 13:42:15 -0700148 main.topology = topology
149 topoResult = main.Mininet1.startNet(
150 topoFile=main.Mininet1.home + main.topology, args=arg )
151 stepResult = topoResult
152 utilities.assert_equals( expect=main.TRUE,
153 actual=stepResult,
154 onpass="Successfully loaded topology",
155 onfail="Failed to load topology" )
156 # Exit if topology did not load properly
157 if not topoResult:
Devin Lim44075962017-08-11 10:56:37 -0700158 main.cleanAndExit()
Jon Hall1efcb3f2016-08-23 13:42:15 -0700159
160 @staticmethod
Devin Lim142b5342017-07-20 15:22:39 -0700161 def config( main, cfgName ):
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700162 main.spines = []
Piera2a7e1b2016-10-04 11:51:43 -0700163
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700164 main.failures = int( main.params[ 'failures' ] )
165 main.cfgName = cfgName
Piera2a7e1b2016-10-04 11:51:43 -0700166
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700167 if main.cfgName == '2x2':
168 spine = {}
169 spine[ 'name' ] = main.params[ 'switches' ][ 'spine1' ]
170 spine[ 'dpid' ] = main.params[ 'switches' ][ 'spinedpid1' ]
171 main.spines.append( spine )
Piera2a7e1b2016-10-04 11:51:43 -0700172
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700173 spine = {}
174 spine[ 'name' ] = main.params[ 'switches' ][ 'spine2' ]
175 spine[ 'dpid' ] = main.params[ 'switches' ][ 'spinedpid2' ]
176 main.spines.append( spine )
Piera2a7e1b2016-10-04 11:51:43 -0700177
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700178 elif main.cfgName == '4x4':
179 spine = {}
180 spine[ 'name' ] = main.params[ 'switches' ][ 'spine1' ]
181 spine[ 'dpid' ] = main.params[ 'switches' ][ 'spinedpid1' ]
182 main.spines.append( spine )
Piera2a7e1b2016-10-04 11:51:43 -0700183
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700184 spine = {}
185 spine[ 'name' ] = main.params[ 'switches' ][ 'spine2' ]
186 spine[ 'dpid' ] = main.params[ 'switches' ][ 'spinedpid2' ]
187 main.spines.append( spine )
Piera2a7e1b2016-10-04 11:51:43 -0700188
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700189 spine = {}
190 spine[ 'name' ] = main.params[ 'switches' ][ 'spine3' ]
191 spine[ 'dpid' ] = main.params[ 'switches' ][ 'spinedpid3' ]
192 main.spines.append( spine )
Piera2a7e1b2016-10-04 11:51:43 -0700193
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700194 spine = {}
195 spine[ 'name' ] = main.params[ 'switches' ][ 'spine4' ]
196 spine[ 'dpid' ] = main.params[ 'switches' ][ 'spinedpid4' ]
197 main.spines.append( spine )
Piera2a7e1b2016-10-04 11:51:43 -0700198
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700199 else:
Piera2a7e1b2016-10-04 11:51:43 -0700200 main.log.error( "Configuration failed!" )
Devin Lim44075962017-08-11 10:56:37 -0700201 main.cleanAndExit()
Piera2a7e1b2016-10-04 11:51:43 -0700202
203 @staticmethod
You Wang1cdc5f52017-12-19 16:47:51 -0800204 def checkFlows( main, minFlowCount, dumpflows=True, sleep=10 ):
Jon Hall1efcb3f2016-08-23 13:42:15 -0700205 main.step(
206 " Check whether the flow count is bigger than %s" % minFlowCount )
Devin Lim142b5342017-07-20 15:22:39 -0700207 count = utilities.retry( main.Cluster.active( 0 ).CLI.checkFlowCount,
Jon Hall1efcb3f2016-08-23 13:42:15 -0700208 main.FALSE,
209 kwargs={ 'min': minFlowCount },
210 attempts=10,
You Wang1cdc5f52017-12-19 16:47:51 -0800211 sleep=sleep )
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700212 utilities.assertEquals(
Jon Hall1efcb3f2016-08-23 13:42:15 -0700213 expect=True,
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700214 actual=( count > 0 ),
Jon Hall1efcb3f2016-08-23 13:42:15 -0700215 onpass="Flow count looks correct: " + str( count ),
216 onfail="Flow count looks wrong: " + str( count ) )
217
218 main.step( "Check whether all flow status are ADDED" )
Devin Lim142b5342017-07-20 15:22:39 -0700219 flowCheck = utilities.retry( main.Cluster.active( 0 ).CLI.checkFlowsState,
Jon Hall1efcb3f2016-08-23 13:42:15 -0700220 main.FALSE,
221 kwargs={ 'isPENDING': False },
Jonghwan Hyun98fb40a2018-01-04 16:16:28 -0800222 attempts=5,
You Wang1cdc5f52017-12-19 16:47:51 -0800223 sleep=sleep )
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700224 utilities.assertEquals(
Jon Hall1efcb3f2016-08-23 13:42:15 -0700225 expect=main.TRUE,
226 actual=flowCheck,
227 onpass="Flow status is correct!",
228 onfail="Flow status is wrong!" )
229 if dumpflows:
Devin Lim142b5342017-07-20 15:22:39 -0700230 main.ONOSbench.dumpONOSCmd( main.Cluster.active( 0 ).ipAddress,
Pier50f0bc62016-09-07 17:53:40 -0700231 "flows",
232 main.logdir,
Devin Lim97b6b862018-01-23 22:51:25 -0800233 main.resultFileName + "_FlowsBefore" )
Devin Lim142b5342017-07-20 15:22:39 -0700234 main.ONOSbench.dumpONOSCmd( main.Cluster.active( 0 ).ipAddress,
Pier50f0bc62016-09-07 17:53:40 -0700235 "groups",
236 main.logdir,
Devin Lim97b6b862018-01-23 22:51:25 -0800237 main.resultFileName + "_GroupsBefore" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700238
239 @staticmethod
Jonghwan Hyun98fb40a2018-01-04 16:16:28 -0800240 def checkFlowsByDpid( main, dpid, minFlowCount, sleep=10 ):
241 main.step(
242 " Check whether the flow count of device %s is bigger than %s" % ( dpid, minFlowCount ) )
243 count = utilities.retry( main.Cluster.active( 0 ).CLI.flowAddedCount,
244 None,
245 args=( dpid, ),
246 attempts=5,
247 sleep=sleep )
248 utilities.assertEquals(
249 expect=True,
250 actual=( int( count ) > minFlowCount ),
251 onpass="Flow count looks correct: " + count ,
252 onfail="Flow count looks wrong: " + count )
253
254 @staticmethod
Jon Hall1efcb3f2016-08-23 13:42:15 -0700255 def pingAll( main, tag="", dumpflows=True ):
256 main.log.report( "Check full connectivity" )
257 print main.pingChart
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700258 for entry in main.pingChart.itervalues():
Jon Hall1efcb3f2016-08-23 13:42:15 -0700259 print entry
260 hosts, expect = entry[ 'hosts' ], entry[ 'expect' ]
Jonghwan Hyun3731d6a2017-10-19 11:59:31 -0700261 try:
262 expect = main.TRUE if str(expect).lower() == 'true' else main.FALSE
263 except:
264 expect = main.FALSE
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700265 main.step( "Connectivity for %s %s" % ( str( hosts ), tag ) )
You Wangd5873482018-01-24 12:30:00 -0800266 pa = main.Network.pingallHosts( hosts )
Jonghwan Hyun3731d6a2017-10-19 11:59:31 -0700267
Jon Hall1efcb3f2016-08-23 13:42:15 -0700268 utilities.assert_equals( expect=expect, actual=pa,
269 onpass="IP connectivity successfully tested",
270 onfail="IP connectivity failed" )
271 if dumpflows:
Devin Lim142b5342017-07-20 15:22:39 -0700272 main.ONOSbench.dumpONOSCmd( main.Cluster.active( 0 ).ipAddress,
Pier50f0bc62016-09-07 17:53:40 -0700273 "flows",
274 main.logdir,
Devin Lim97b6b862018-01-23 22:51:25 -0800275 tag + "_FlowsOn" )
Devin Lim142b5342017-07-20 15:22:39 -0700276 main.ONOSbench.dumpONOSCmd( main.Cluster.active( 0 ).ipAddress,
Pier50f0bc62016-09-07 17:53:40 -0700277 "groups",
278 main.logdir,
Devin Lim97b6b862018-01-23 22:51:25 -0800279 tag + "_GroupsOn" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700280
281 @staticmethod
282 def killLink( main, end1, end2, switches, links ):
283 """
284 end1,end2: identify the switches, ex.: 'leaf1', 'spine1'
285 switches, links: number of expected switches and links after linkDown, ex.: '4', '6'
286 Kill a link and verify ONOS can see the proper link change
287 """
288 main.linkSleep = float( main.params[ 'timers' ][ 'LinkDiscovery' ] )
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700289 main.step( "Kill link between %s and %s" % ( end1, end2 ) )
You Wangd5873482018-01-24 12:30:00 -0800290 LinkDown = main.Network.link( END1=end1, END2=end2, OPTION="down" )
291 LinkDown = main.Network.link( END2=end1, END1=end2, OPTION="down" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700292 main.log.info(
293 "Waiting %s seconds for link down to be discovered" % main.linkSleep )
294 time.sleep( main.linkSleep )
Devin Lim142b5342017-07-20 15:22:39 -0700295 topology = utilities.retry( main.Cluster.active( 0 ).CLI.checkStatus,
Jon Hall1efcb3f2016-08-23 13:42:15 -0700296 main.FALSE,
297 kwargs={ 'numoswitch': switches,
298 'numolink': links },
299 attempts=10,
300 sleep=main.linkSleep )
301 result = topology & LinkDown
302 utilities.assert_equals( expect=main.TRUE, actual=result,
303 onpass="Link down successful",
304 onfail="Failed to turn off link?" )
305
306 @staticmethod
307 def restoreLink( main, end1, end2, dpid1, dpid2, port1, port2, switches,
308 links ):
309 """
310 Params:
311 end1,end2: identify the end switches, ex.: 'leaf1', 'spine1'
312 dpid1, dpid2: dpid of the end switches respectively, ex.: 'of:0000000000000002'
313 port1, port2: respective port of the end switches that connects to the link, ex.:'1'
314 switches, links: number of expected switches and links after linkDown, ex.: '4', '6'
315 Kill a link and verify ONOS can see the proper link change
316 """
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700317 main.step( "Restore link between %s and %s" % ( end1, end2 ) )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700318 result = False
319 count = 0
320 while True:
321 count += 1
You Wangd5873482018-01-24 12:30:00 -0800322 main.Network.link( END1=end1, END2=end2, OPTION="up" )
323 main.Network.link( END2=end1, END1=end2, OPTION="up" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700324 main.log.info(
325 "Waiting %s seconds for link up to be discovered" % main.linkSleep )
326 time.sleep( main.linkSleep )
Pierfb719b12016-09-19 14:51:44 -0700327
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700328 for i in range( 0, main.Cluster.numCtrls ):
Devin Lim142b5342017-07-20 15:22:39 -0700329 ctrl = main.Cluster.runningNodes[ i ]
330 onosIsUp = main.ONOSbench.isup( ctrl.ipAddress )
Pierfb719b12016-09-19 14:51:44 -0700331 if onosIsUp == main.TRUE:
Devin Lim142b5342017-07-20 15:22:39 -0700332 ctrl.CLI.portstate( dpid=dpid1, port=port1 )
333 ctrl.CLI.portstate( dpid=dpid2, port=port2 )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700334 time.sleep( main.linkSleep )
335
Devin Lim142b5342017-07-20 15:22:39 -0700336 result = main.Cluster.active( 0 ).CLI.checkStatus( numoswitch=switches,
337 numolink=links )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700338 if count > 5 or result:
339 break
340 utilities.assert_equals( expect=main.TRUE, actual=result,
341 onpass="Link up successful",
342 onfail="Failed to bring link up" )
343
344 @staticmethod
345 def killSwitch( main, switch, switches, links ):
346 """
347 Params: switches, links: number of expected switches and links after SwitchDown, ex.: '4', '6'
348 Completely kill a switch and verify ONOS can see the proper change
349 """
350 main.switchSleep = float( main.params[ 'timers' ][ 'SwitchDiscovery' ] )
351 main.step( "Kill " + switch )
352 main.log.info( "Stopping" + switch )
You Wangd5873482018-01-24 12:30:00 -0800353 main.Network.switch( SW=switch, OPTION="stop" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700354 # todo make this repeatable
355 main.log.info( "Waiting %s seconds for switch down to be discovered" % (
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700356 main.switchSleep ) )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700357 time.sleep( main.switchSleep )
Devin Lim142b5342017-07-20 15:22:39 -0700358 topology = utilities.retry( main.Cluster.active( 0 ).CLI.checkStatus,
Jon Hall1efcb3f2016-08-23 13:42:15 -0700359 main.FALSE,
360 kwargs={ 'numoswitch': switches,
361 'numolink': links },
362 attempts=10,
363 sleep=main.switchSleep )
364 utilities.assert_equals( expect=main.TRUE, actual=topology,
365 onpass="Kill switch successful",
366 onfail="Failed to kill switch?" )
367
368 @staticmethod
369 def recoverSwitch( main, switch, switches, links ):
370 """
371 Params: switches, links: number of expected switches and links after SwitchUp, ex.: '4', '6'
372 Recover a switch and verify ONOS can see the proper change
373 """
374 # todo make this repeatable
375 main.step( "Recovering " + switch )
376 main.log.info( "Starting" + switch )
You Wangd5873482018-01-24 12:30:00 -0800377 main.Network.switch( SW=switch, OPTION="start" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700378 main.log.info( "Waiting %s seconds for switch up to be discovered" % (
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700379 main.switchSleep ) )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700380 time.sleep( main.switchSleep )
Devin Lim142b5342017-07-20 15:22:39 -0700381 topology = utilities.retry( main.Cluster.active( 0 ).CLI.checkStatus,
Jon Hall1efcb3f2016-08-23 13:42:15 -0700382 main.FALSE,
383 kwargs={ 'numoswitch': switches,
384 'numolink': links },
385 attempts=10,
386 sleep=main.switchSleep )
387 utilities.assert_equals( expect=main.TRUE, actual=topology,
388 onpass="Switch recovery successful",
389 onfail="Failed to recover switch?" )
390
391 @staticmethod
392 def cleanup( main ):
393 """
394 Stop Onos-cluster.
395 Stops Mininet
396 Copies ONOS log
397 """
Devin Lim58046fa2017-07-05 16:55:00 -0700398 try:
399 from tests.dependencies.utils import Utils
400 except ImportError:
401 main.log.error( "Utils not found exiting the test" )
Devin Lim44075962017-08-11 10:56:37 -0700402 main.cleanAndExit()
Devin Lim58046fa2017-07-05 16:55:00 -0700403 try:
Devin Lim142b5342017-07-20 15:22:39 -0700404 main.utils
Devin Lim58046fa2017-07-05 16:55:00 -0700405 except ( NameError, AttributeError ):
Devin Lim142b5342017-07-20 15:22:39 -0700406 main.utils = Utils()
Devin Lim58046fa2017-07-05 16:55:00 -0700407
408 main.utils.mininetCleanup( main.Mininet1 )
409
Devin Lim97b6b862018-01-23 22:51:25 -0800410 main.utils.copyKarafLog( main.resultFileName, before=True )
Devin Lim58046fa2017-07-05 16:55:00 -0700411
Devin Lim142b5342017-07-20 15:22:39 -0700412 for ctrl in main.Cluster.active():
413 main.ONOSbench.onosStop( ctrl.ipAddress )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700414
415 @staticmethod
416 def killOnos( main, nodes, switches, links, expNodes ):
417 """
418 Params: nodes, integer array with position of the ONOS nodes in the CLIs array
419 switches, links, nodes: number of expected switches, links and nodes after KillOnos, ex.: '4', '6'
420 Completely Kill an ONOS instance and verify the ONOS cluster can see the proper change
421 """
422 main.step( "Killing ONOS instance" )
Pier3b58c652016-09-26 12:03:31 -0700423
Jon Hall1efcb3f2016-08-23 13:42:15 -0700424 for i in nodes:
Devin Lim142b5342017-07-20 15:22:39 -0700425 killResult = main.ONOSbench.onosDie( main.Cluster.runningNodes[ i ].ipAddress )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700426 utilities.assert_equals( expect=main.TRUE, actual=killResult,
427 onpass="ONOS instance Killed",
428 onfail="Error killing ONOS instance" )
Devin Lim142b5342017-07-20 15:22:39 -0700429 main.Cluster.runningNodes[ i ].active = False
Jon Hall1efcb3f2016-08-23 13:42:15 -0700430 time.sleep( 12 )
Pier3b58c652016-09-26 12:03:31 -0700431
Devin Lim142b5342017-07-20 15:22:39 -0700432 if len( nodes ) < main.Cluster.numCtrls:
Pier3b58c652016-09-26 12:03:31 -0700433
Jonghwan Hyun3731d6a2017-10-19 11:59:31 -0700434 nodeResults = utilities.retry( main.Cluster.nodesCheck,
Pier3b58c652016-09-26 12:03:31 -0700435 False,
Pier3b58c652016-09-26 12:03:31 -0700436 attempts=5,
437 sleep=10 )
438 utilities.assert_equals( expect=True, actual=nodeResults,
439 onpass="Nodes check successful",
440 onfail="Nodes check NOT successful" )
441
442 if not nodeResults:
443 for i in nodes:
Devin Lim142b5342017-07-20 15:22:39 -0700444 ctrl = main.Cluster.runningNodes[ i ]
Pier3b58c652016-09-26 12:03:31 -0700445 main.log.debug( "{} components not ACTIVE: \n{}".format(
Devin Lim142b5342017-07-20 15:22:39 -0700446 ctrl.name,
447 ctrl.CLI.sendline( "scr:list | grep -v ACTIVE" ) ) )
Pier3b58c652016-09-26 12:03:31 -0700448 main.log.error( "Failed to kill ONOS, stopping test" )
Devin Lim44075962017-08-11 10:56:37 -0700449 main.cleanAndExit()
Pier3b58c652016-09-26 12:03:31 -0700450
Devin Lim142b5342017-07-20 15:22:39 -0700451 topology = utilities.retry( main.Cluster.active( 0 ).checkStatus,
Jon Hall1efcb3f2016-08-23 13:42:15 -0700452 main.FALSE,
453 kwargs={ 'numoswitch': switches,
454 'numolink': links,
455 'numoctrl': expNodes },
456 attempts=10,
457 sleep=12 )
458 utilities.assert_equals( expect=main.TRUE, actual=topology,
459 onpass="ONOS Instance down successful",
460 onfail="Failed to turn off ONOS Instance" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700461
462 @staticmethod
463 def recoverOnos( main, nodes, switches, links, expNodes ):
464 """
465 Params: nodes, integer array with position of the ONOS nodes in the CLIs array
466 switches, links, nodes: number of expected switches, links and nodes after recoverOnos, ex.: '4', '6'
467 Recover an ONOS instance and verify the ONOS cluster can see the proper change
468 """
469 main.step( "Recovering ONOS instance" )
Devin Lim142b5342017-07-20 15:22:39 -0700470 [ main.ONOSbench.onosStart( main.Cluster.runningNodes[ i ].ipAddress ) for i in nodes ]
Jon Hall1efcb3f2016-08-23 13:42:15 -0700471 for i in nodes:
Devin Lim142b5342017-07-20 15:22:39 -0700472 isUp = main.ONOSbench.isup( main.Cluster.runningNodes[ i ].ipAddress )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700473 utilities.assert_equals( expect=main.TRUE, actual=isUp,
474 onpass="ONOS service is ready",
475 onfail="ONOS service did not start properly" )
476 for i in nodes:
477 main.step( "Checking if ONOS CLI is ready" )
Devin Lim142b5342017-07-20 15:22:39 -0700478 ctrl = main.Cluster.runningNodes[ i ]
479 ctrl.CLI.startCellCli()
480 cliResult = ctrl.CLI.startOnosCli( ctrl.ipAddress,
481 commandlineTimeout=60,
482 onosStartTimeout=100 )
483 ctrl.active = True
Jon Hall1efcb3f2016-08-23 13:42:15 -0700484 utilities.assert_equals( expect=main.TRUE,
485 actual=cliResult,
486 onpass="ONOS CLI is ready",
487 onfail="ONOS CLI is not ready" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700488
Pier3b58c652016-09-26 12:03:31 -0700489 main.step( "Checking ONOS nodes" )
Jonghwan Hyun3731d6a2017-10-19 11:59:31 -0700490 nodeResults = utilities.retry( main.Cluster.nodesCheck,
Pier3b58c652016-09-26 12:03:31 -0700491 False,
Pier3b58c652016-09-26 12:03:31 -0700492 attempts=5,
493 sleep=10 )
494 utilities.assert_equals( expect=True, actual=nodeResults,
495 onpass="Nodes check successful",
496 onfail="Nodes check NOT successful" )
497
498 if not nodeResults:
499 for i in nodes:
Devin Lim142b5342017-07-20 15:22:39 -0700500 ctrl = main.Cluster.runningNodes[ i ]
Pier3b58c652016-09-26 12:03:31 -0700501 main.log.debug( "{} components not ACTIVE: \n{}".format(
Devin Lim142b5342017-07-20 15:22:39 -0700502 ctrl.name,
503 ctrl.CLI.sendline( "scr:list | grep -v ACTIVE" ) ) )
Pier3b58c652016-09-26 12:03:31 -0700504 main.log.error( "Failed to start ONOS, stopping test" )
Devin Lim44075962017-08-11 10:56:37 -0700505 main.cleanAndExit()
Pier3b58c652016-09-26 12:03:31 -0700506
Devin Lim142b5342017-07-20 15:22:39 -0700507 topology = utilities.retry( main.Cluster.active( 0 ).CLI.checkStatus,
Jon Hall1efcb3f2016-08-23 13:42:15 -0700508 main.FALSE,
509 kwargs={ 'numoswitch': switches,
510 'numolink': links,
511 'numoctrl': expNodes },
512 attempts=10,
513 sleep=12 )
514 utilities.assert_equals( expect=main.TRUE, actual=topology,
515 onpass="ONOS Instance down successful",
516 onfail="Failed to turn off ONOS Instance" )
Devin Lim142b5342017-07-20 15:22:39 -0700517 ready = utilities.retry( main.Cluster.active( 0 ).CLI.summary,
518 main.FALSE,
519 attempts=10,
520 sleep=12 )
521 if ready:
522 ready = main.TRUE
523 utilities.assert_equals( expect=main.TRUE, actual=ready,
Jon Hall1efcb3f2016-08-23 13:42:15 -0700524 onpass="ONOS summary command succeded",
525 onfail="ONOS summary command failed" )
526 if not ready:
527 main.log.error( "ONOS startup failed!" )
Devin Lim44075962017-08-11 10:56:37 -0700528 main.cleanAndExit()
Jon Hall1efcb3f2016-08-23 13:42:15 -0700529
530 @staticmethod
531 def addHostCfg( main ):
532 """
533 Adds Host Configuration to ONOS
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700534 Updates expected state of the network ( pingChart )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700535 """
536 import json
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700537 hostCfg = {}
You Wangac02b142018-01-26 14:57:28 -0800538 with open( main.configPath + "/json/extra.json" ) as template:
Jon Hall1efcb3f2016-08-23 13:42:15 -0700539 hostCfg = json.load( template )
540 main.pingChart[ 'ip' ][ 'hosts' ] += [ 'in1' ]
541 main.step( "Pushing new configuration" )
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700542 mac, cfg = hostCfg[ 'hosts' ].popitem()
Devin Lim142b5342017-07-20 15:22:39 -0700543 main.Cluster.active( 0 ).REST.setNetCfg( cfg[ 'basic' ],
544 subjectClass="hosts",
545 subjectKey=urllib.quote( mac,
546 safe='' ),
547 configKey="basic" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700548 main.pingChart[ 'ip' ][ 'hosts' ] += [ 'out1' ]
549 main.step( "Pushing new configuration" )
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700550 mac, cfg = hostCfg[ 'hosts' ].popitem()
Devin Lim142b5342017-07-20 15:22:39 -0700551 main.Cluster.active( 0 ).REST.setNetCfg( cfg[ 'basic' ],
552 subjectClass="hosts",
553 subjectKey=urllib.quote( mac,
554 safe='' ),
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700555 configKey="basic" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700556 main.pingChart.update( { 'vlan1': { "expect": "True",
557 "hosts": [ "olt1", "vsg1" ] } } )
558 main.pingChart[ 'vlan5' ][ 'expect' ] = 0
559 main.pingChart[ 'vlan10' ][ 'expect' ] = 0
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700560 ports = "[%s,%s]" % ( 5, 6 )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700561 cfg = '{"of:0000000000000001":[{"vlan":1,"ports":%s,"name":"OLT 1"}]}' % ports
Devin Lim142b5342017-07-20 15:22:39 -0700562 main.Cluster.active( 0 ).REST.setNetCfg( json.loads( cfg ),
563 subjectClass="apps",
564 subjectKey="org.onosproject.segmentrouting",
565 configKey="xconnect" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700566
567 @staticmethod
568 def delHostCfg( main ):
569 """
570 Removest Host Configuration from ONOS
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700571 Updates expected state of the network ( pingChart )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700572 """
573 import json
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700574 hostCfg = {}
You Wangac02b142018-01-26 14:57:28 -0800575 with open( main.configPath + "/json/extra.json" ) as template:
Jon Hall1efcb3f2016-08-23 13:42:15 -0700576 hostCfg = json.load( template )
577 main.step( "Removing host configuration" )
578 main.pingChart[ 'ip' ][ 'expect' ] = 0
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700579 mac, cfg = hostCfg[ 'hosts' ].popitem()
Devin Lim142b5342017-07-20 15:22:39 -0700580 main.Cluster.active( 0 ).REST.removeNetCfg( subjectClass="hosts",
581 subjectKey=urllib.quote(
582 mac,
583 safe='' ),
584 configKey="basic" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700585 main.step( "Removing configuration" )
586 main.pingChart[ 'ip' ][ 'expect' ] = 0
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700587 mac, cfg = hostCfg[ 'hosts' ].popitem()
Devin Lim142b5342017-07-20 15:22:39 -0700588 main.Cluster.active( 0 ).REST.removeNetCfg( subjectClass="hosts",
589 subjectKey=urllib.quote(
590 mac,
591 safe='' ),
592 configKey="basic" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700593 main.step( "Removing vlan configuration" )
594 main.pingChart[ 'vlan1' ][ 'expect' ] = 0
Devin Lim142b5342017-07-20 15:22:39 -0700595 main.Cluster.active( 0 ).REST.removeNetCfg( subjectClass="apps",
596 subjectKey="org.onosproject.segmentrouting",
597 configKey="xconnect" )