blob: bd63a80255211edba56bc47399f708f8a14c0eb2 [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 Lim0c972b72018-02-08 14:53:59 -080052 main.testSetUp.envSetupDescription( False )
Devin Lim58046fa2017-07-05 16:55:00 -070053 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 )
Devin Lim57221b02018-02-14 15:45:36 -080060 main.useCommonTopo = main.params[ 'DEPENDENCY' ][ 'useCommonTopo' ] == 'True'
61 main.topoPath = main.path + ( "/.." if main.useCommonTopo else "" ) + "/dependencies/"
62 main.useCommonConf = main.params[ 'DEPENDENCY' ][ 'useCommonConf' ] == 'True'
63 main.configPath = main.path + ( "/.." if main.useCommonConf else "" ) + "/dependencies/"
64 main.forJson = "json/"
65 main.forChart = "chart/"
66 main.forConfig = "conf/"
67 main.forHost = "host/"
You Wang27317572018-03-06 12:13:11 -080068 main.forSwitchFailure = "switchFailure/"
Andreas Pantelopoulosfab6bf32018-03-06 18:56:35 -080069 main.forLinkFailure = "linkFailure/"
Devin Lim58046fa2017-07-05 16:55:00 -070070 main.topology = main.params[ 'DEPENDENCY' ][ 'topology' ]
You Wangd87b2312018-01-30 12:47:17 -080071 main.topologyLib = main.params[ 'DEPENDENCY' ][ 'lib' ] if 'lib' in main.params[ 'DEPENDENCY' ] else None
72 main.topologyConf = main.params[ 'DEPENDENCY' ][ 'conf' ] if 'conf' in main.params[ 'DEPENDENCY' ] else None
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -070073 main.scale = ( main.params[ 'SCALE' ][ 'size' ] ).split( "," )
Devin Lim58046fa2017-07-05 16:55:00 -070074 main.maxNodes = int( main.params[ 'SCALE' ][ 'max' ] )
Devin Lim58046fa2017-07-05 16:55:00 -070075 main.startUpSleep = int( main.params[ 'SLEEP' ][ 'startup' ] )
Jon Hall1efcb3f2016-08-23 13:42:15 -070076
Devin Lim0c972b72018-02-08 14:53:59 -080077 stepResult = main.testSetUp.envSetup( False )
Devin Lim58046fa2017-07-05 16:55:00 -070078 except Exception as e:
79 main.testSetUp.envSetupException( e )
Jonghwan Hyun3731d6a2017-10-19 11:59:31 -070080
Devin Lim58046fa2017-07-05 16:55:00 -070081 main.testSetUp.evnSetupConclusion( stepResult )
Jon Hall1efcb3f2016-08-23 13:42:15 -070082
Jon Hall1efcb3f2016-08-23 13:42:15 -070083 @staticmethod
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080084 def installOnos( main, vlanCfg=True, skipPackage=False, cliSleep=10,
85 parallel=True ):
Jon Hall1efcb3f2016-08-23 13:42:15 -070086 """
87 - Set up cell
88 - Create cell file
89 - Set cell file
90 - Verify cell file
91 - Kill ONOS process
92 - Uninstall ONOS cluster
93 - Verify ONOS start up
94 - Install ONOS cluster
95 - Connect to cli
96 """
97 # main.scale[ 0 ] determines the current number of ONOS controller
You Wangd87b2312018-01-30 12:47:17 -080098 if not main.apps:
Jon Hall1efcb3f2016-08-23 13:42:15 -070099 main.log.error( "App list is empty" )
Jon Hall3c910162018-03-07 14:42:16 -0800100 main.log.info( "Cluster size: " + str( main.Cluster.numCtrls ) )
101 main.log.info( "Cluster ips: " + ', '.join( main.Cluster.getIps() ) )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700102 main.dynamicHosts = [ 'in1', 'out1' ]
You Wanga0f6ff62018-01-11 15:46:30 -0800103 main.testSetUp.ONOSSetUp( main.Cluster, newCell=True, cellName=main.cellName,
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -0800104 skipPack=skipPackage,
105 useSSH=Testcaselib.useSSH,
Devin Lim0c972b72018-02-08 14:53:59 -0800106 installParallel=parallel, includeCaseDesc=False )
Devin Lim142b5342017-07-20 15:22:39 -0700107 ready = utilities.retry( main.Cluster.active( 0 ).CLI.summary,
108 main.FALSE,
You Wang1cdc5f52017-12-19 16:47:51 -0800109 sleep=cliSleep,
Devin Lim142b5342017-07-20 15:22:39 -0700110 attempts=10 )
111 if ready:
112 ready = main.TRUE
113 utilities.assert_equals( expect=main.TRUE, actual=ready,
Jon Hall1efcb3f2016-08-23 13:42:15 -0700114 onpass="ONOS summary command succeded",
115 onfail="ONOS summary command failed" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700116 if not ready:
117 main.log.error( "ONOS startup failed!" )
Devin Lim44075962017-08-11 10:56:37 -0700118 main.cleanAndExit()
Jon Hall1efcb3f2016-08-23 13:42:15 -0700119
Devin Lim142b5342017-07-20 15:22:39 -0700120 for ctrl in main.Cluster.active():
121 ctrl.CLI.logSet( "DEBUG", "org.onosproject.segmentrouting" )
122 ctrl.CLI.logSet( "DEBUG", "org.onosproject.driver.pipeline" )
123 ctrl.CLI.logSet( "DEBUG", "org.onosproject.store.group.impl" )
124 ctrl.CLI.logSet( "DEBUG", "org.onosproject.net.flowobjective.impl" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700125
126 @staticmethod
Andreas Pantelopoulos9173d442018-03-01 17:07:37 -0800127 def loadCount( main ):
128 with open("%s/count/%s.count" % (main.configPath, main.cfgName)) as count:
129 main.count = json.load(count)
130
131 @staticmethod
Devin Lim57221b02018-02-14 15:45:36 -0800132 def loadJson( main ):
133 with open( "%s%s.json" % ( main.configPath + main.forJson,
134 main.cfgName ) ) as cfg:
135 main.Cluster.active( 0 ).REST.setNetCfg( json.load( cfg ) )
136
137 @staticmethod
138 def loadChart( main ):
139 try:
140 with open( "%s%s.chart" % ( main.configPath + main.forChart,
141 main.cfgName ) ) as chart:
142 main.pingChart = json.load(chart)
143 except IOError:
144 main.log.warn( "No chart file found." )
145
146 @staticmethod
147 def loadHost( main ):
148 with open( "%s%s.host" % ( main.configPath + main.forHost,
149 main.cfgName ) ) as host:
150 main.expectedHosts = json.load( host )
151
152 @staticmethod
You Wang27317572018-03-06 12:13:11 -0800153 def loadSwitchFailureChart( main ):
154 with open( "%s%s.switchFailureChart" % ( main.configPath + main.forSwitchFailure,
155 main.cfgName ) ) as sfc:
156 main.switchFailureChart = json.load( sfc )
157
158 @staticmethod
Andreas Pantelopoulosfab6bf32018-03-06 18:56:35 -0800159 def loadLinkFailureChart( main ):
160 with open( "%s%s.linkFailureChart" % ( main.configPath + main.forLinkFailure,
161 main.cfgName ) ) as sfc:
162 main.linkFailureChart = json.load( sfc )
163
164 @staticmethod
Jon Hall1efcb3f2016-08-23 13:42:15 -0700165 def startMininet( main, topology, args="" ):
You Wangd87b2312018-01-30 12:47:17 -0800166 copyResult = main.ONOSbench.scp( main.Mininet1,
167 main.topoPath + main.topology,
168 main.Mininet1.home,
169 direction="to" )
170 if main.topologyLib:
171 for lib in main.topologyLib.split(","):
172 copyResult = copyResult and main.ONOSbench.scp( main.Mininet1,
173 main.topoPath + lib,
174 main.Mininet1.home,
175 direction="to" )
176 if main.topologyConf:
177 for conf in main.topologyConf.split(","):
178 copyResult = copyResult and main.ONOSbench.scp( main.Mininet1,
Devin Lim57221b02018-02-14 15:45:36 -0800179 main.configPath + main.forConfig + conf,
You Wangd87b2312018-01-30 12:47:17 -0800180 "~/",
181 direction="to" )
182 stepResult = copyResult
183 utilities.assert_equals( expect=main.TRUE,
184 actual=stepResult,
185 onpass="Successfully copied topo files",
186 onfail="Failed to copy topo files" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700187 main.step( "Starting Mininet Topology" )
Jonghwan Hyun3731d6a2017-10-19 11:59:31 -0700188 arg = "--onos-ip=%s %s" % (",".join([ctrl.ipAddress for ctrl in main.Cluster.runningNodes]), args)
Jon Hall1efcb3f2016-08-23 13:42:15 -0700189 main.topology = topology
190 topoResult = main.Mininet1.startNet(
191 topoFile=main.Mininet1.home + main.topology, args=arg )
192 stepResult = topoResult
193 utilities.assert_equals( expect=main.TRUE,
194 actual=stepResult,
195 onpass="Successfully loaded topology",
196 onfail="Failed to load topology" )
197 # Exit if topology did not load properly
198 if not topoResult:
Devin Lim44075962017-08-11 10:56:37 -0700199 main.cleanAndExit()
Jon Hall1efcb3f2016-08-23 13:42:15 -0700200
201 @staticmethod
You Wang84f981d2018-01-12 16:11:50 -0800202 def connectToPhysicalNetwork( main, switchNames ):
203 main.step( "Connecting to physical netowrk" )
204 topoResult = main.NetworkBench.connectToNet()
205 stepResult = topoResult
206 utilities.assert_equals( expect=main.TRUE,
207 actual=stepResult,
208 onpass="Successfully loaded topology",
209 onfail="Failed to load topology" )
210 # Exit if topology did not load properly
211 if not topoResult:
212 main.cleanAndExit()
213
214 main.step( "Assign switches to controllers." )
215 assignResult = main.TRUE
216 for name in switchNames:
217 assignResult = assignResult & main.NetworkBench.assignSwController( sw=name,
218 ip=main.Cluster.getIps(),
219 port='6653' )
220 utilities.assert_equals( expect=main.TRUE,
221 actual=stepResult,
222 onpass="Successfully assign switches to controllers",
223 onfail="Failed to assign switches to controllers" )
224
225 @staticmethod
Devin Lim142b5342017-07-20 15:22:39 -0700226 def config( main, cfgName ):
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700227 main.spines = []
Piera2a7e1b2016-10-04 11:51:43 -0700228
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700229 main.failures = int( main.params[ 'failures' ] )
230 main.cfgName = cfgName
Piera2a7e1b2016-10-04 11:51:43 -0700231
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700232 if main.cfgName == '2x2':
233 spine = {}
234 spine[ 'name' ] = main.params[ 'switches' ][ 'spine1' ]
235 spine[ 'dpid' ] = main.params[ 'switches' ][ 'spinedpid1' ]
236 main.spines.append( spine )
Piera2a7e1b2016-10-04 11:51:43 -0700237
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700238 spine = {}
239 spine[ 'name' ] = main.params[ 'switches' ][ 'spine2' ]
240 spine[ 'dpid' ] = main.params[ 'switches' ][ 'spinedpid2' ]
241 main.spines.append( spine )
Piera2a7e1b2016-10-04 11:51:43 -0700242
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700243 elif main.cfgName == '4x4':
244 spine = {}
245 spine[ 'name' ] = main.params[ 'switches' ][ 'spine1' ]
246 spine[ 'dpid' ] = main.params[ 'switches' ][ 'spinedpid1' ]
247 main.spines.append( spine )
Piera2a7e1b2016-10-04 11:51:43 -0700248
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700249 spine = {}
250 spine[ 'name' ] = main.params[ 'switches' ][ 'spine2' ]
251 spine[ 'dpid' ] = main.params[ 'switches' ][ 'spinedpid2' ]
252 main.spines.append( spine )
Piera2a7e1b2016-10-04 11:51:43 -0700253
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700254 spine = {}
255 spine[ 'name' ] = main.params[ 'switches' ][ 'spine3' ]
256 spine[ 'dpid' ] = main.params[ 'switches' ][ 'spinedpid3' ]
257 main.spines.append( spine )
Piera2a7e1b2016-10-04 11:51:43 -0700258
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700259 spine = {}
260 spine[ 'name' ] = main.params[ 'switches' ][ 'spine4' ]
261 spine[ 'dpid' ] = main.params[ 'switches' ][ 'spinedpid4' ]
262 main.spines.append( spine )
Piera2a7e1b2016-10-04 11:51:43 -0700263
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700264 else:
Piera2a7e1b2016-10-04 11:51:43 -0700265 main.log.error( "Configuration failed!" )
Devin Lim44075962017-08-11 10:56:37 -0700266 main.cleanAndExit()
You Wang27317572018-03-06 12:13:11 -0800267
Andreas Pantelopoulos2eae3242018-03-06 13:47:20 -0800268 @staticmethod
269 def addStaticOnosRoute( main, subnet, intf):
270 """
271 Adds an ONOS static route with the use route-add command.
272 """
273 main.step("Add static route for subnet {0} towards router interface {1}".format(subnet, intf))
274 routeResult = main.Cluster.active( 0 ).addStaticRoute(subnet, intf)
275
276 utilities.assert_equals( expect=True, actual=( not routeResult ),
277 onpass="route-add command succeeded",
278 onfail="route-add command failed")
Piera2a7e1b2016-10-04 11:51:43 -0700279
280 @staticmethod
Jonghwan Hyun76a02b72018-01-30 16:40:48 +0900281 def checkFlows( main, minFlowCount, tag="", dumpflows=True, sleep=10 ):
Jon Hall1efcb3f2016-08-23 13:42:15 -0700282 main.step(
Jon Hall3c910162018-03-07 14:42:16 -0800283 "Check whether the flow count is bigger than %s" % minFlowCount )
Jonghwan Hyun76a02b72018-01-30 16:40:48 +0900284 if tag == "":
285 tag = 'CASE%d' % main.CurrentTestCaseNumber
Devin Lim142b5342017-07-20 15:22:39 -0700286 count = utilities.retry( main.Cluster.active( 0 ).CLI.checkFlowCount,
Jon Hall1efcb3f2016-08-23 13:42:15 -0700287 main.FALSE,
288 kwargs={ 'min': minFlowCount },
289 attempts=10,
You Wang1cdc5f52017-12-19 16:47:51 -0800290 sleep=sleep )
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700291 utilities.assertEquals(
Jon Hall1efcb3f2016-08-23 13:42:15 -0700292 expect=True,
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700293 actual=( count > 0 ),
Jon Hall1efcb3f2016-08-23 13:42:15 -0700294 onpass="Flow count looks correct: " + str( count ),
295 onfail="Flow count looks wrong: " + str( count ) )
296
297 main.step( "Check whether all flow status are ADDED" )
Devin Lim142b5342017-07-20 15:22:39 -0700298 flowCheck = utilities.retry( main.Cluster.active( 0 ).CLI.checkFlowsState,
Jon Hall1efcb3f2016-08-23 13:42:15 -0700299 main.FALSE,
300 kwargs={ 'isPENDING': False },
Jonghwan Hyun98fb40a2018-01-04 16:16:28 -0800301 attempts=5,
You Wang1cdc5f52017-12-19 16:47:51 -0800302 sleep=sleep )
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700303 utilities.assertEquals(
Jon Hall1efcb3f2016-08-23 13:42:15 -0700304 expect=main.TRUE,
305 actual=flowCheck,
306 onpass="Flow status is correct!",
307 onfail="Flow status is wrong!" )
308 if dumpflows:
Devin Lim142b5342017-07-20 15:22:39 -0700309 main.ONOSbench.dumpONOSCmd( main.Cluster.active( 0 ).ipAddress,
Pier50f0bc62016-09-07 17:53:40 -0700310 "flows",
311 main.logdir,
Jonghwan Hyun76a02b72018-01-30 16:40:48 +0900312 tag + "_FlowsBefore" )
Devin Lim142b5342017-07-20 15:22:39 -0700313 main.ONOSbench.dumpONOSCmd( main.Cluster.active( 0 ).ipAddress,
Pier50f0bc62016-09-07 17:53:40 -0700314 "groups",
315 main.logdir,
Jonghwan Hyun76a02b72018-01-30 16:40:48 +0900316 tag + "_GroupsBefore" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700317
318 @staticmethod
Jonghwan Hyun98fb40a2018-01-04 16:16:28 -0800319 def checkFlowsByDpid( main, dpid, minFlowCount, sleep=10 ):
320 main.step(
Jonghwan Hyuncf2345c2018-02-26 11:07:54 -0800321 " Check whether the flow count of device %s is bigger than %s" % ( dpid, minFlowCount ) )
322 count = utilities.retry( main.Cluster.active( 0 ).CLI.checkFlowAddedCount,
323 main.FALSE,
324 args=( dpid, minFlowCount ),
Jonghwan Hyun98fb40a2018-01-04 16:16:28 -0800325 attempts=5,
326 sleep=sleep )
327 utilities.assertEquals(
Jonghwan Hyuncf2345c2018-02-26 11:07:54 -0800328 expect=True,
329 actual=( count > minFlowCount ),
330 onpass="Flow count looks correct: " + str( count ),
331 onfail="Flow count looks wrong. " )
Jonghwan Hyun98fb40a2018-01-04 16:16:28 -0800332
333 @staticmethod
Andreas Pantelopoulos9173d442018-03-01 17:07:37 -0800334 def checkFlowEqualityByDpid( main, dpid, flowCount, sleep=10):
335 main.step(
336 " Check whether the flow count of device %s is equal to %s" % ( dpid, flowCount ) )
337 count = utilities.retry( main.Cluster.active( 0 ).CLI.checkFlowAddedCount,
338 main.FALSE,
339 args=( dpid, flowCount, False, 1),
340 attempts=5,
341 sleep=sleep )
342
343 utilities.assertEquals(
344 expect=True,
345 actual=( int( count ) == flowCount ),
346 onpass="Flow count looks correct: " + str(count) ,
347 onfail="Flow count looks wrong, should be " + str(flowCount))
348
349 @staticmethod
350 def checkGroupEqualityByDpid( main, dpid, groupCount, sleep=10):
351 main.step(
352 " Check whether the group count of device %s is equal to %s" % ( dpid, groupCount ) )
353 count = utilities.retry( main.Cluster.active( 0 ).CLI.checkGroupAddedCount,
354 main.FALSE,
355 args=( dpid, groupCount, False, 1),
356 attempts=5,
357 sleep=sleep )
358
359 utilities.assertEquals(
360 expect=True,
361 actual=( count == groupCount ),
362 onpass="Group count looks correct: " + str(count) ,
363 onfail="Group count looks wrong: should be " + str(groupCount))
364
365 @staticmethod
366 def checkFlowsGroupsFromFile(main):
367
368 for dpid, values in main.count.items():
369 flowCount = values["flows"]
370 groupCount = values["groups"]
371 main.log.report( "Check flow count for dpid " + str(dpid) +
372 ", should be " + str(flowCount))
373 Testcaselib.checkFlowEqualityByDpid(main, dpid, flowCount)
374
375 main.log.report( "Check group count for dpid " + str(dpid) +
376 ", should be " + str(groupCount))
377 Testcaselib.checkGroupEqualityByDpid(main, dpid, groupCount)
378
379 return
380
381 @staticmethod
You Wangf19d9f42018-02-23 16:34:19 -0800382 def pingAll( main, tag="", dumpflows=True, acceptableFailed=0, basedOnIp=False ):
383 '''
You Wangba231e72018-03-01 13:18:21 -0800384 Verify connectivity between hosts according to the ping chart
385 acceptableFailed: max number of acceptable failed pings.
You Wangf19d9f42018-02-23 16:34:19 -0800386 basedOnIp: if True, run ping or ping6 based on suffix of host names
387 '''
You Wangba231e72018-03-01 13:18:21 -0800388 main.log.report( "Check host connectivity" )
389 main.log.debug( "Ping chart: %s" % main.pingChart )
Andreas Pantelopoulosf6ed5012018-02-08 21:26:01 -0800390 if tag == "":
391 tag = 'CASE%d' % main.CurrentTestCaseNumber
392 for entry in main.pingChart.itervalues():
You Wangba231e72018-03-01 13:18:21 -0800393 main.log.debug( "Entry in ping chart: %s" % entry )
394 expect = entry[ 'expect' ]
395 if expect == "Unidirectional":
396 # Verify ping from each src host to each dst host
397 src = entry[ 'src' ]
398 dst = entry[ 'dst' ]
399 expect = main.TRUE
400 main.step( "Verify unidirectional connectivity from %s to %s with tag %s" % ( str( src ), str( dst ), tag ) )
401 if basedOnIp:
402 if ("v4" in src[0]):
403 pa = main.Network.pingallHostsUnidirectional( src, dst, acceptableFailed=acceptableFailed )
404 utilities.assert_equals( expect=expect, actual=pa,
405 onpass="IPv4 connectivity successfully tested",
406 onfail="IPv4 connectivity failed" )
407 if ("v6" in src[0]):
408 pa = main.Network.pingallHostsUnidirectional( src, dst, ipv6=True, acceptableFailed=acceptableFailed )
409 utilities.assert_equals( expect=expect, actual=pa,
410 onpass="IPv6 connectivity successfully tested",
411 onfail="IPv6 connectivity failed" )
412 else:
413 pa = main.Network.pingallHostsUnidirectional( src, dst, acceptableFailed=acceptableFailed )
414 utilities.assert_equals( expect=expect, actual=pa,
415 onpass="IP connectivity successfully tested",
416 onfail="IP connectivity failed" )
417 else:
418 # Verify ping between each host pair
419 hosts = entry[ 'hosts' ]
420 try:
421 expect = main.TRUE if str(expect).lower() == 'true' else main.FALSE
422 except:
423 expect = main.FALSE
424 main.step( "Verify full connectivity for %s with tag %s" % ( str( hosts ), tag ) )
425 if basedOnIp:
426 if ("v4" in hosts[0]):
427 pa = main.Network.pingallHosts( hosts )
428 utilities.assert_equals( expect=expect, actual=pa,
429 onpass="IPv4 connectivity successfully tested",
430 onfail="IPv4 connectivity failed" )
431 if ("v6" in hosts[0]):
432 pa = main.Network.pingIpv6Hosts( hosts, acceptableFailed=acceptableFailed )
433 utilities.assert_equals( expect=expect, actual=pa,
434 onpass="IPv6 connectivity successfully tested",
435 onfail="IPv6 connectivity failed" )
436 else:
You Wangf19d9f42018-02-23 16:34:19 -0800437 pa = main.Network.pingallHosts( hosts )
438 utilities.assert_equals( expect=expect, actual=pa,
You Wangba231e72018-03-01 13:18:21 -0800439 onpass="IP connectivity successfully tested",
440 onfail="IP connectivity failed" )
Andreas Pantelopoulosf6ed5012018-02-08 21:26:01 -0800441
442 if dumpflows:
443 main.ONOSbench.dumpONOSCmd( main.Cluster.active( 0 ).ipAddress,
444 "flows",
445 main.logdir,
446 tag + "_FlowsOn" )
447 main.ONOSbench.dumpONOSCmd( main.Cluster.active( 0 ).ipAddress,
448 "groups",
449 main.logdir,
450 tag + "_GroupsOn" )
451
452 @staticmethod
Jon Hall1efcb3f2016-08-23 13:42:15 -0700453 def killLink( main, end1, end2, switches, links ):
454 """
455 end1,end2: identify the switches, ex.: 'leaf1', 'spine1'
456 switches, links: number of expected switches and links after linkDown, ex.: '4', '6'
457 Kill a link and verify ONOS can see the proper link change
458 """
459 main.linkSleep = float( main.params[ 'timers' ][ 'LinkDiscovery' ] )
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700460 main.step( "Kill link between %s and %s" % ( end1, end2 ) )
You Wangd5873482018-01-24 12:30:00 -0800461 LinkDown = main.Network.link( END1=end1, END2=end2, OPTION="down" )
462 LinkDown = main.Network.link( END2=end1, END1=end2, OPTION="down" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700463 main.log.info(
464 "Waiting %s seconds for link down to be discovered" % main.linkSleep )
465 time.sleep( main.linkSleep )
Devin Lim142b5342017-07-20 15:22:39 -0700466 topology = utilities.retry( main.Cluster.active( 0 ).CLI.checkStatus,
Jon Hall1efcb3f2016-08-23 13:42:15 -0700467 main.FALSE,
468 kwargs={ 'numoswitch': switches,
469 'numolink': links },
470 attempts=10,
471 sleep=main.linkSleep )
472 result = topology & LinkDown
473 utilities.assert_equals( expect=main.TRUE, actual=result,
474 onpass="Link down successful",
475 onfail="Failed to turn off link?" )
476
477 @staticmethod
Andreas Pantelopoulosfab6bf32018-03-06 18:56:35 -0800478 def killLinkBatch( main, links, linksAfter, switches=7):
479 """
480 links = list of links (src, dst) to bring down.
481 """
482
483 main.step("Killing a batch of links {0}".format(links))
484
485 for end1, end2 in links:
486 main.Network.link( END1=end1, END2=end2, OPTION="down")
487 main.Network.link( END1=end2, END2=end1, OPTION="down")
488
489 main.linkSleep = float( main.params[ 'timers' ][ 'LinkDiscovery' ] )
490 main.log.info(
491 "Waiting %s seconds for links down to be discovered" % main.linkSleep )
492 time.sleep( main.linkSleep )
493
494 topology = utilities.retry( main.Cluster.active( 0 ).CLI.checkStatus,
495 main.FALSE,
496 kwargs={ 'numoswitch': switches,
497 'numolink': linksAfter },
498 attempts=10,
499 sleep=main.linkSleep )
500
501 @staticmethod
502 def restoreLinkBatch( main, links, linksAfter, switches=7):
503 """
504 links = list of link (src, dst) to bring up again.
505 """
506
507 main.step("Restoring a batch of links {0}".format(links))
508
509 for end1, end2 in links:
510 main.Network.link( END1=end1, END2=end2, OPTION="up")
511 main.Network.link( END1=end2, END2=end1, OPTION="up")
512
513 main.linkSleep = float( main.params[ 'timers' ][ 'LinkDiscovery' ] )
514 main.log.info(
515 "Waiting %s seconds for links down to be discovered" % main.linkSleep )
516 time.sleep( main.linkSleep )
517
518 topology = utilities.retry( main.Cluster.active( 0 ).CLI.checkStatus,
519 main.FALSE,
520 kwargs={ 'numoswitch': switches,
521 'numolink': linksAfter },
522 attempts=10,
523 sleep=main.linkSleep )
524
525 @staticmethod
Jon Hall1efcb3f2016-08-23 13:42:15 -0700526 def restoreLink( main, end1, end2, dpid1, dpid2, port1, port2, switches,
527 links ):
528 """
529 Params:
530 end1,end2: identify the end switches, ex.: 'leaf1', 'spine1'
531 dpid1, dpid2: dpid of the end switches respectively, ex.: 'of:0000000000000002'
532 port1, port2: respective port of the end switches that connects to the link, ex.:'1'
533 switches, links: number of expected switches and links after linkDown, ex.: '4', '6'
534 Kill a link and verify ONOS can see the proper link change
535 """
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700536 main.step( "Restore link between %s and %s" % ( end1, end2 ) )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700537 result = False
538 count = 0
539 while True:
540 count += 1
You Wangd5873482018-01-24 12:30:00 -0800541 main.Network.link( END1=end1, END2=end2, OPTION="up" )
542 main.Network.link( END2=end1, END1=end2, OPTION="up" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700543 main.log.info(
544 "Waiting %s seconds for link up to be discovered" % main.linkSleep )
545 time.sleep( main.linkSleep )
Pierfb719b12016-09-19 14:51:44 -0700546
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700547 for i in range( 0, main.Cluster.numCtrls ):
Devin Lim142b5342017-07-20 15:22:39 -0700548 ctrl = main.Cluster.runningNodes[ i ]
549 onosIsUp = main.ONOSbench.isup( ctrl.ipAddress )
Pierfb719b12016-09-19 14:51:44 -0700550 if onosIsUp == main.TRUE:
Jonghwan Hyun76a02b72018-01-30 16:40:48 +0900551 ctrl.CLI.portstate( dpid=dpid1, port=port1, state='Enable' )
552 ctrl.CLI.portstate( dpid=dpid2, port=port2, state='Enable' )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700553 time.sleep( main.linkSleep )
554
Devin Lim142b5342017-07-20 15:22:39 -0700555 result = main.Cluster.active( 0 ).CLI.checkStatus( numoswitch=switches,
556 numolink=links )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700557 if count > 5 or result:
558 break
559 utilities.assert_equals( expect=main.TRUE, actual=result,
560 onpass="Link up successful",
561 onfail="Failed to bring link up" )
562
563 @staticmethod
564 def killSwitch( main, switch, switches, links ):
565 """
566 Params: switches, links: number of expected switches and links after SwitchDown, ex.: '4', '6'
567 Completely kill a switch and verify ONOS can see the proper change
568 """
569 main.switchSleep = float( main.params[ 'timers' ][ 'SwitchDiscovery' ] )
570 main.step( "Kill " + switch )
571 main.log.info( "Stopping" + switch )
You Wangd5873482018-01-24 12:30:00 -0800572 main.Network.switch( SW=switch, OPTION="stop" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700573 # todo make this repeatable
574 main.log.info( "Waiting %s seconds for switch down to be discovered" % (
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700575 main.switchSleep ) )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700576 time.sleep( main.switchSleep )
Devin Lim142b5342017-07-20 15:22:39 -0700577 topology = utilities.retry( main.Cluster.active( 0 ).CLI.checkStatus,
Jon Hall1efcb3f2016-08-23 13:42:15 -0700578 main.FALSE,
579 kwargs={ 'numoswitch': switches,
580 'numolink': links },
581 attempts=10,
582 sleep=main.switchSleep )
583 utilities.assert_equals( expect=main.TRUE, actual=topology,
584 onpass="Kill switch successful",
585 onfail="Failed to kill switch?" )
586
587 @staticmethod
588 def recoverSwitch( main, switch, switches, links ):
589 """
590 Params: switches, links: number of expected switches and links after SwitchUp, ex.: '4', '6'
591 Recover a switch and verify ONOS can see the proper change
592 """
593 # todo make this repeatable
594 main.step( "Recovering " + switch )
595 main.log.info( "Starting" + switch )
You Wangd5873482018-01-24 12:30:00 -0800596 main.Network.switch( SW=switch, OPTION="start" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700597 main.log.info( "Waiting %s seconds for switch up to be discovered" % (
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700598 main.switchSleep ) )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700599 time.sleep( main.switchSleep )
Devin Lim142b5342017-07-20 15:22:39 -0700600 topology = utilities.retry( main.Cluster.active( 0 ).CLI.checkStatus,
Jon Hall1efcb3f2016-08-23 13:42:15 -0700601 main.FALSE,
602 kwargs={ 'numoswitch': switches,
603 'numolink': links },
604 attempts=10,
605 sleep=main.switchSleep )
606 utilities.assert_equals( expect=main.TRUE, actual=topology,
607 onpass="Switch recovery successful",
608 onfail="Failed to recover switch?" )
609
610 @staticmethod
611 def cleanup( main ):
612 """
613 Stop Onos-cluster.
614 Stops Mininet
615 Copies ONOS log
616 """
Devin Lim58046fa2017-07-05 16:55:00 -0700617 try:
618 from tests.dependencies.utils import Utils
619 except ImportError:
620 main.log.error( "Utils not found exiting the test" )
Devin Lim44075962017-08-11 10:56:37 -0700621 main.cleanAndExit()
Devin Lim58046fa2017-07-05 16:55:00 -0700622 try:
Devin Lim142b5342017-07-20 15:22:39 -0700623 main.utils
Devin Lim58046fa2017-07-05 16:55:00 -0700624 except ( NameError, AttributeError ):
Devin Lim142b5342017-07-20 15:22:39 -0700625 main.utils = Utils()
Devin Lim58046fa2017-07-05 16:55:00 -0700626
627 main.utils.mininetCleanup( main.Mininet1 )
628
Devin Lim0c972b72018-02-08 14:53:59 -0800629 main.utils.copyKarafLog( "CASE%d" % main.CurrentTestCaseNumber, before=True, includeCaseDesc=False )
Devin Lim58046fa2017-07-05 16:55:00 -0700630
Devin Lim142b5342017-07-20 15:22:39 -0700631 for ctrl in main.Cluster.active():
632 main.ONOSbench.onosStop( ctrl.ipAddress )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700633
634 @staticmethod
635 def killOnos( main, nodes, switches, links, expNodes ):
636 """
637 Params: nodes, integer array with position of the ONOS nodes in the CLIs array
638 switches, links, nodes: number of expected switches, links and nodes after KillOnos, ex.: '4', '6'
639 Completely Kill an ONOS instance and verify the ONOS cluster can see the proper change
640 """
Jon Hall3c910162018-03-07 14:42:16 -0800641 main.step( "Killing ONOS instances with index(es): {}".format( nodes ) )
Pier3b58c652016-09-26 12:03:31 -0700642
Jon Hall1efcb3f2016-08-23 13:42:15 -0700643 for i in nodes:
Devin Lim142b5342017-07-20 15:22:39 -0700644 killResult = main.ONOSbench.onosDie( main.Cluster.runningNodes[ i ].ipAddress )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700645 utilities.assert_equals( expect=main.TRUE, actual=killResult,
646 onpass="ONOS instance Killed",
647 onfail="Error killing ONOS instance" )
Devin Lim142b5342017-07-20 15:22:39 -0700648 main.Cluster.runningNodes[ i ].active = False
Jon Hall1efcb3f2016-08-23 13:42:15 -0700649 time.sleep( 12 )
Pier3b58c652016-09-26 12:03:31 -0700650
Devin Lim142b5342017-07-20 15:22:39 -0700651 if len( nodes ) < main.Cluster.numCtrls:
Pier3b58c652016-09-26 12:03:31 -0700652
Jonghwan Hyun3731d6a2017-10-19 11:59:31 -0700653 nodeResults = utilities.retry( main.Cluster.nodesCheck,
Pier3b58c652016-09-26 12:03:31 -0700654 False,
Pier3b58c652016-09-26 12:03:31 -0700655 attempts=5,
656 sleep=10 )
657 utilities.assert_equals( expect=True, actual=nodeResults,
658 onpass="Nodes check successful",
659 onfail="Nodes check NOT successful" )
660
661 if not nodeResults:
662 for i in nodes:
Devin Lim142b5342017-07-20 15:22:39 -0700663 ctrl = main.Cluster.runningNodes[ i ]
Pier3b58c652016-09-26 12:03:31 -0700664 main.log.debug( "{} components not ACTIVE: \n{}".format(
Devin Lim142b5342017-07-20 15:22:39 -0700665 ctrl.name,
666 ctrl.CLI.sendline( "scr:list | grep -v ACTIVE" ) ) )
Pier3b58c652016-09-26 12:03:31 -0700667 main.log.error( "Failed to kill ONOS, stopping test" )
Devin Lim44075962017-08-11 10:56:37 -0700668 main.cleanAndExit()
Pier3b58c652016-09-26 12:03:31 -0700669
Jonghwan Hyun76a02b72018-01-30 16:40:48 +0900670 topology = utilities.retry( main.Cluster.active( 0 ).CLI.checkStatus,
Jon Hall1efcb3f2016-08-23 13:42:15 -0700671 main.FALSE,
672 kwargs={ 'numoswitch': switches,
673 'numolink': links,
674 'numoctrl': expNodes },
675 attempts=10,
676 sleep=12 )
677 utilities.assert_equals( expect=main.TRUE, actual=topology,
678 onpass="ONOS Instance down successful",
679 onfail="Failed to turn off ONOS Instance" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700680
681 @staticmethod
682 def recoverOnos( main, nodes, switches, links, expNodes ):
683 """
684 Params: nodes, integer array with position of the ONOS nodes in the CLIs array
685 switches, links, nodes: number of expected switches, links and nodes after recoverOnos, ex.: '4', '6'
686 Recover an ONOS instance and verify the ONOS cluster can see the proper change
687 """
Jon Hall3c910162018-03-07 14:42:16 -0800688 main.step( "Recovering ONOS instances with index(es): {}".format( nodes ) )
Devin Lim142b5342017-07-20 15:22:39 -0700689 [ main.ONOSbench.onosStart( main.Cluster.runningNodes[ i ].ipAddress ) for i in nodes ]
Jon Hall1efcb3f2016-08-23 13:42:15 -0700690 for i in nodes:
Devin Lim142b5342017-07-20 15:22:39 -0700691 isUp = main.ONOSbench.isup( main.Cluster.runningNodes[ i ].ipAddress )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700692 utilities.assert_equals( expect=main.TRUE, actual=isUp,
693 onpass="ONOS service is ready",
694 onfail="ONOS service did not start properly" )
695 for i in nodes:
696 main.step( "Checking if ONOS CLI is ready" )
Devin Lim142b5342017-07-20 15:22:39 -0700697 ctrl = main.Cluster.runningNodes[ i ]
Jonghwan Hyun76a02b72018-01-30 16:40:48 +0900698 # ctrl.CLI.startCellCli()
Devin Lim142b5342017-07-20 15:22:39 -0700699 cliResult = ctrl.CLI.startOnosCli( ctrl.ipAddress,
700 commandlineTimeout=60,
701 onosStartTimeout=100 )
702 ctrl.active = True
Jon Hall1efcb3f2016-08-23 13:42:15 -0700703 utilities.assert_equals( expect=main.TRUE,
704 actual=cliResult,
705 onpass="ONOS CLI is ready",
706 onfail="ONOS CLI is not ready" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700707
Pier3b58c652016-09-26 12:03:31 -0700708 main.step( "Checking ONOS nodes" )
Jonghwan Hyun3731d6a2017-10-19 11:59:31 -0700709 nodeResults = utilities.retry( main.Cluster.nodesCheck,
Pier3b58c652016-09-26 12:03:31 -0700710 False,
Pier3b58c652016-09-26 12:03:31 -0700711 attempts=5,
712 sleep=10 )
713 utilities.assert_equals( expect=True, actual=nodeResults,
714 onpass="Nodes check successful",
715 onfail="Nodes check NOT successful" )
716
717 if not nodeResults:
718 for i in nodes:
Devin Lim142b5342017-07-20 15:22:39 -0700719 ctrl = main.Cluster.runningNodes[ i ]
Pier3b58c652016-09-26 12:03:31 -0700720 main.log.debug( "{} components not ACTIVE: \n{}".format(
Devin Lim142b5342017-07-20 15:22:39 -0700721 ctrl.name,
722 ctrl.CLI.sendline( "scr:list | grep -v ACTIVE" ) ) )
Pier3b58c652016-09-26 12:03:31 -0700723 main.log.error( "Failed to start ONOS, stopping test" )
Devin Lim44075962017-08-11 10:56:37 -0700724 main.cleanAndExit()
Pier3b58c652016-09-26 12:03:31 -0700725
Devin Lim142b5342017-07-20 15:22:39 -0700726 topology = utilities.retry( main.Cluster.active( 0 ).CLI.checkStatus,
Jon Hall1efcb3f2016-08-23 13:42:15 -0700727 main.FALSE,
728 kwargs={ 'numoswitch': switches,
729 'numolink': links,
730 'numoctrl': expNodes },
731 attempts=10,
732 sleep=12 )
733 utilities.assert_equals( expect=main.TRUE, actual=topology,
734 onpass="ONOS Instance down successful",
735 onfail="Failed to turn off ONOS Instance" )
Devin Lim142b5342017-07-20 15:22:39 -0700736 ready = utilities.retry( main.Cluster.active( 0 ).CLI.summary,
737 main.FALSE,
738 attempts=10,
739 sleep=12 )
740 if ready:
741 ready = main.TRUE
742 utilities.assert_equals( expect=main.TRUE, actual=ready,
Jon Hall1efcb3f2016-08-23 13:42:15 -0700743 onpass="ONOS summary command succeded",
744 onfail="ONOS summary command failed" )
745 if not ready:
746 main.log.error( "ONOS startup failed!" )
Devin Lim44075962017-08-11 10:56:37 -0700747 main.cleanAndExit()
Jon Hall1efcb3f2016-08-23 13:42:15 -0700748
749 @staticmethod
750 def addHostCfg( main ):
751 """
752 Adds Host Configuration to ONOS
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700753 Updates expected state of the network ( pingChart )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700754 """
755 import json
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700756 hostCfg = {}
Devin Lim57221b02018-02-14 15:45:36 -0800757 with open( main.configPath + main.forJson + "extra.json" ) as template:
Jon Hall1efcb3f2016-08-23 13:42:15 -0700758 hostCfg = json.load( template )
759 main.pingChart[ 'ip' ][ 'hosts' ] += [ 'in1' ]
760 main.step( "Pushing new configuration" )
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700761 mac, cfg = hostCfg[ 'hosts' ].popitem()
Devin Lim142b5342017-07-20 15:22:39 -0700762 main.Cluster.active( 0 ).REST.setNetCfg( cfg[ 'basic' ],
763 subjectClass="hosts",
764 subjectKey=urllib.quote( mac,
765 safe='' ),
766 configKey="basic" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700767 main.pingChart[ 'ip' ][ 'hosts' ] += [ 'out1' ]
768 main.step( "Pushing new configuration" )
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700769 mac, cfg = hostCfg[ 'hosts' ].popitem()
Devin Lim142b5342017-07-20 15:22:39 -0700770 main.Cluster.active( 0 ).REST.setNetCfg( cfg[ 'basic' ],
771 subjectClass="hosts",
772 subjectKey=urllib.quote( mac,
773 safe='' ),
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700774 configKey="basic" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700775 main.pingChart.update( { 'vlan1': { "expect": "True",
776 "hosts": [ "olt1", "vsg1" ] } } )
777 main.pingChart[ 'vlan5' ][ 'expect' ] = 0
778 main.pingChart[ 'vlan10' ][ 'expect' ] = 0
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700779 ports = "[%s,%s]" % ( 5, 6 )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700780 cfg = '{"of:0000000000000001":[{"vlan":1,"ports":%s,"name":"OLT 1"}]}' % ports
Devin Lim142b5342017-07-20 15:22:39 -0700781 main.Cluster.active( 0 ).REST.setNetCfg( json.loads( cfg ),
782 subjectClass="apps",
783 subjectKey="org.onosproject.segmentrouting",
784 configKey="xconnect" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700785
786 @staticmethod
787 def delHostCfg( main ):
788 """
789 Removest Host Configuration from ONOS
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700790 Updates expected state of the network ( pingChart )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700791 """
792 import json
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700793 hostCfg = {}
Devin Lim57221b02018-02-14 15:45:36 -0800794 with open( main.configPath + main.forJson + "extra.json" ) as template:
Jon Hall1efcb3f2016-08-23 13:42:15 -0700795 hostCfg = json.load( template )
796 main.step( "Removing host configuration" )
797 main.pingChart[ 'ip' ][ 'expect' ] = 0
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700798 mac, cfg = hostCfg[ 'hosts' ].popitem()
Devin Lim142b5342017-07-20 15:22:39 -0700799 main.Cluster.active( 0 ).REST.removeNetCfg( subjectClass="hosts",
800 subjectKey=urllib.quote(
801 mac,
802 safe='' ),
803 configKey="basic" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700804 main.step( "Removing configuration" )
805 main.pingChart[ 'ip' ][ 'expect' ] = 0
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700806 mac, cfg = hostCfg[ 'hosts' ].popitem()
Devin Lim142b5342017-07-20 15:22:39 -0700807 main.Cluster.active( 0 ).REST.removeNetCfg( subjectClass="hosts",
808 subjectKey=urllib.quote(
809 mac,
810 safe='' ),
811 configKey="basic" )
Jon Hall1efcb3f2016-08-23 13:42:15 -0700812 main.step( "Removing vlan configuration" )
813 main.pingChart[ 'vlan1' ][ 'expect' ] = 0
Devin Lim142b5342017-07-20 15:22:39 -0700814 main.Cluster.active( 0 ).REST.removeNetCfg( subjectClass="apps",
815 subjectKey="org.onosproject.segmentrouting",
816 configKey="xconnect" )
You Wang53dba1e2018-02-02 17:45:44 -0800817
818 @staticmethod
819 def verifyNetworkHostIp( main, attempts=10, sleep=10 ):
820 """
821 Verifies IP address assignment from the hosts
822 """
823 main.step( "Verify IP address assignment from hosts" )
824 ipResult = main.TRUE
825 for hostName, ip in main.expectedHosts[ "network" ].items():
826 ipResult = ipResult and utilities.retry( main.Network.verifyHostIp,
827 main.FALSE,
828 kwargs={ 'hostList': [ hostName ],
829 'prefix': ip },
830 attempts=attempts,
831 sleep=sleep )
832 utilities.assert_equals( expect=main.TRUE, actual=ipResult,
833 onpass="Verify network host IP succeded",
834 onfail="Verify network host IP failed" )
835
836 @staticmethod
837 def verifyOnosHostIp( main, attempts=10, sleep=10 ):
838 """
839 Verifies host IP address assignment from ONOS
840 """
841 main.step( "Verify host IP address assignment in ONOS" )
842 ipResult = main.TRUE
843 for hostName, ip in main.expectedHosts[ "onos" ].items():
844 ipResult = ipResult and utilities.retry( main.Cluster.active( 0 ).verifyHostIp,
845 main.FALSE,
846 kwargs={ 'hostList': [ hostName ],
847 'prefix': ip },
848 attempts=attempts,
849 sleep=sleep )
850 utilities.assert_equals( expect=main.TRUE, actual=ipResult,
851 onpass="Verify ONOS host IP succeded",
852 onfail="Verify ONOS host IP failed" )
Andreas Pantelopoulos2eae3242018-03-06 13:47:20 -0800853