blob: 2e840a11aa345bd3803dc1e20caf24f0fc30967a [file] [log] [blame]
Jon Hall5cf14d52015-07-16 12:15:19 -07001"""
2Description: This test is to determine if ONOS can handle
3 all of it's nodes restarting
4
5List of test cases:
6CASE1: Compile ONOS and push it to the test machines
7CASE2: Assign devices to controllers
8CASE21: Assign mastership to controllers
9CASE3: Assign intents
10CASE4: Ping across added host intents
11CASE5: Reading state of ONOS
12CASE6: The Failure case.
13CASE7: Check state after control plane failure
14CASE8: Compare topo
15CASE9: Link s3-s28 down
16CASE10: Link s3-s28 up
17CASE11: Switch down
18CASE12: Switch up
19CASE13: Clean up
20CASE14: start election app on all onos nodes
21CASE15: Check that Leadership Election is still functional
22CASE16: Install Distributed Primitives app
23CASE17: Check for basic functionality with distributed primitives
24"""
25
26
27class HAclusterRestart:
28
29 def __init__( self ):
30 self.default = ''
31
32 def CASE1( self, main ):
33 """
34 CASE1 is to compile ONOS and push it to the test machines
35
36 Startup sequence:
37 cell <name>
38 onos-verify-cell
39 NOTE: temporary - onos-remove-raft-logs
40 onos-uninstall
41 start mininet
42 git pull
43 mvn clean install
44 onos-package
45 onos-install -f
46 onos-wait-for-start
47 start cli sessions
48 start tcpdump
49 """
Jon Halle1a3b752015-07-22 13:02:46 -070050 import imp
Jon Hallf3d16e72015-12-16 17:45:08 -080051 import time
Jon Halla440e872016-03-31 15:15:50 -070052 import json
Jon Hall5cf14d52015-07-16 12:15:19 -070053 main.log.info( "ONOS HA test: Restart all ONOS nodes - " +
54 "initialization" )
55 main.case( "Setting up test environment" )
Jon Hall783bbf92015-07-23 14:33:19 -070056 main.caseExplanation = "Setup the test environment including " +\
Jon Hall5cf14d52015-07-16 12:15:19 -070057 "installing ONOS, starting Mininet and ONOS" +\
58 "cli sessions."
Jon Hall5cf14d52015-07-16 12:15:19 -070059
60 # load some variables from the params file
61 PULLCODE = False
62 if main.params[ 'Git' ] == 'True':
63 PULLCODE = True
64 gitBranch = main.params[ 'branch' ]
65 cellName = main.params[ 'ENV' ][ 'cellName' ]
66
Jon Halle1a3b752015-07-22 13:02:46 -070067 main.numCtrls = int( main.params[ 'num_controllers' ] )
Jon Hall5cf14d52015-07-16 12:15:19 -070068 if main.ONOSbench.maxNodes:
Jon Halle1a3b752015-07-22 13:02:46 -070069 if main.ONOSbench.maxNodes < main.numCtrls:
70 main.numCtrls = int( main.ONOSbench.maxNodes )
71 # set global variables
Jon Hall5cf14d52015-07-16 12:15:19 -070072 global ONOS1Port
73 global ONOS2Port
74 global ONOS3Port
75 global ONOS4Port
76 global ONOS5Port
77 global ONOS6Port
78 global ONOS7Port
79 # These are for csv plotting in jenkins
80 global labels
81 global data
82 labels = []
83 data = []
84
85 # FIXME: just get controller port from params?
86 # TODO: do we really need all these?
87 ONOS1Port = main.params[ 'CTRL' ][ 'port1' ]
88 ONOS2Port = main.params[ 'CTRL' ][ 'port2' ]
89 ONOS3Port = main.params[ 'CTRL' ][ 'port3' ]
90 ONOS4Port = main.params[ 'CTRL' ][ 'port4' ]
91 ONOS5Port = main.params[ 'CTRL' ][ 'port5' ]
92 ONOS6Port = main.params[ 'CTRL' ][ 'port6' ]
93 ONOS7Port = main.params[ 'CTRL' ][ 'port7' ]
94
Jon Halle1a3b752015-07-22 13:02:46 -070095 try:
Jon Hall41d39f12016-04-11 22:54:35 -070096 from tests.HAsanity.dependencies.HA import HA
97 main.HA = HA()
Jon Halle1a3b752015-07-22 13:02:46 -070098 except Exception as e:
99 main.log.exception( e )
100 main.cleanup()
101 main.exit()
102
103 main.CLIs = []
104 main.nodes = []
Jon Hall5cf14d52015-07-16 12:15:19 -0700105 ipList = []
Jon Halle1a3b752015-07-22 13:02:46 -0700106 for i in range( 1, main.numCtrls + 1 ):
107 try:
108 main.CLIs.append( getattr( main, 'ONOScli' + str( i ) ) )
109 main.nodes.append( getattr( main, 'ONOS' + str( i ) ) )
110 ipList.append( main.nodes[ -1 ].ip_address )
111 except AttributeError:
112 break
Jon Hall5cf14d52015-07-16 12:15:19 -0700113
114 main.step( "Create cell file" )
115 cellAppString = main.params[ 'ENV' ][ 'appString' ]
116 main.ONOSbench.createCellFile( main.ONOSbench.ip_address, cellName,
117 main.Mininet1.ip_address,
118 cellAppString, ipList )
119 main.step( "Applying cell variable to environment" )
120 cellResult = main.ONOSbench.setCell( cellName )
121 verifyResult = main.ONOSbench.verifyCell()
122
123 # FIXME:this is short term fix
124 main.log.info( "Removing raft logs" )
125 main.ONOSbench.onosRemoveRaftLogs()
126
127 main.log.info( "Uninstalling ONOS" )
Jon Halle1a3b752015-07-22 13:02:46 -0700128 for node in main.nodes:
Jon Hall5cf14d52015-07-16 12:15:19 -0700129 main.ONOSbench.onosUninstall( node.ip_address )
130
131 # Make sure ONOS is DEAD
132 main.log.info( "Killing any ONOS processes" )
133 killResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -0700134 for node in main.nodes:
Jon Hall5cf14d52015-07-16 12:15:19 -0700135 killed = main.ONOSbench.onosKill( node.ip_address )
136 killResults = killResults and killed
137
138 cleanInstallResult = main.TRUE
139 gitPullResult = main.TRUE
140
141 main.step( "Starting Mininet" )
142 # scp topo file to mininet
143 # TODO: move to params?
144 topoName = "obelisk.py"
145 filePath = main.ONOSbench.home + "/tools/test/topos/"
kelvin-onlabd9e23de2015-08-06 10:34:44 -0700146 main.ONOSbench.scp( main.Mininet1,
147 filePath + topoName,
148 main.Mininet1.home,
149 direction="to" )
Jon Hall5cf14d52015-07-16 12:15:19 -0700150 mnResult = main.Mininet1.startNet( )
151 utilities.assert_equals( expect=main.TRUE, actual=mnResult,
152 onpass="Mininet Started",
153 onfail="Error starting Mininet" )
154
155 main.step( "Git checkout and pull " + gitBranch )
156 if PULLCODE:
157 main.ONOSbench.gitCheckout( gitBranch )
158 gitPullResult = main.ONOSbench.gitPull()
159 # values of 1 or 3 are good
160 utilities.assert_lesser( expect=0, actual=gitPullResult,
161 onpass="Git pull successful",
162 onfail="Git pull failed" )
163 main.ONOSbench.getVersion( report=True )
164
165 main.step( "Using mvn clean install" )
166 cleanInstallResult = main.TRUE
167 if PULLCODE and gitPullResult == main.TRUE:
168 cleanInstallResult = main.ONOSbench.cleanInstall()
169 else:
170 main.log.warn( "Did not pull new code so skipping mvn " +
171 "clean install" )
172 utilities.assert_equals( expect=main.TRUE,
173 actual=cleanInstallResult,
174 onpass="MCI successful",
175 onfail="MCI failed" )
176 # GRAPHS
177 # NOTE: important params here:
178 # job = name of Jenkins job
179 # Plot Name = Plot-HA, only can be used if multiple plots
180 # index = The number of the graph under plot name
181 job = "HAclusterRestart"
182 plotName = "Plot-HA"
Jon Hall843f8bc2016-03-18 14:28:13 -0700183 index = "2"
Jon Hall5cf14d52015-07-16 12:15:19 -0700184 graphs = '<ac:structured-macro ac:name="html">\n'
185 graphs += '<ac:plain-text-body><![CDATA[\n'
186 graphs += '<iframe src="https://onos-jenkins.onlab.us/job/' + job +\
Jon Halla9845df2016-01-15 14:55:58 -0800187 '/plot/' + plotName + '/getPlot?index=' + index +\
Jon Hall5cf14d52015-07-16 12:15:19 -0700188 '&width=500&height=300"' +\
189 'noborder="0" width="500" height="300" scrolling="yes" ' +\
190 'seamless="seamless"></iframe>\n'
191 graphs += ']]></ac:plain-text-body>\n'
192 graphs += '</ac:structured-macro>\n'
193 main.log.wiki(graphs)
194
195 main.step( "Creating ONOS package" )
196 packageResult = main.ONOSbench.onosPackage()
197 utilities.assert_equals( expect=main.TRUE, actual=packageResult,
198 onpass="ONOS package successful",
199 onfail="ONOS package failed" )
200
201 main.step( "Installing ONOS package" )
202 onosInstallResult = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -0700203 for node in main.nodes:
Jon Hall5cf14d52015-07-16 12:15:19 -0700204 tmpResult = main.ONOSbench.onosInstall( options="-f",
205 node=node.ip_address )
206 onosInstallResult = onosInstallResult and tmpResult
207 utilities.assert_equals( expect=main.TRUE, actual=onosInstallResult,
208 onpass="ONOS install successful",
209 onfail="ONOS install failed" )
210
211 main.step( "Checking if ONOS is up yet" )
212 for i in range( 2 ):
213 onosIsupResult = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -0700214 for node in main.nodes:
Jon Hall5cf14d52015-07-16 12:15:19 -0700215 started = main.ONOSbench.isup( node.ip_address )
216 if not started:
Jon Hallc6793552016-01-19 14:18:37 -0800217 main.log.error( node.name + " hasn't started" )
Jon Hall5cf14d52015-07-16 12:15:19 -0700218 onosIsupResult = onosIsupResult and started
219 if onosIsupResult == main.TRUE:
220 break
221 utilities.assert_equals( expect=main.TRUE, actual=onosIsupResult,
222 onpass="ONOS startup successful",
223 onfail="ONOS startup failed" )
224
225 main.log.step( "Starting ONOS CLI sessions" )
226 cliResults = main.TRUE
227 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -0700228 for i in range( main.numCtrls ):
229 t = main.Thread( target=main.CLIs[i].startOnosCli,
Jon Hall5cf14d52015-07-16 12:15:19 -0700230 name="startOnosCli-" + str( i ),
Jon Halle1a3b752015-07-22 13:02:46 -0700231 args=[main.nodes[i].ip_address] )
Jon Hall5cf14d52015-07-16 12:15:19 -0700232 threads.append( t )
233 t.start()
234
235 for t in threads:
236 t.join()
237 cliResults = cliResults and t.result
238 utilities.assert_equals( expect=main.TRUE, actual=cliResults,
239 onpass="ONOS cli startup successful",
240 onfail="ONOS cli startup failed" )
241
Jon Halla440e872016-03-31 15:15:50 -0700242 # Create a list of active nodes for use when some nodes are stopped
243 main.activeNodes = [ i for i in range( 0, len( main.CLIs ) ) ]
244
Jon Hall5cf14d52015-07-16 12:15:19 -0700245 if main.params[ 'tcpdump' ].lower() == "true":
246 main.step( "Start Packet Capture MN" )
247 main.Mininet2.startTcpdump(
248 str( main.params[ 'MNtcpdump' ][ 'folder' ] ) + str( main.TEST )
249 + "-MN.pcap",
250 intf=main.params[ 'MNtcpdump' ][ 'intf' ],
251 port=main.params[ 'MNtcpdump' ][ 'port' ] )
252
Jon Halla440e872016-03-31 15:15:50 -0700253 main.step( "Checking ONOS nodes" )
Jon Hall41d39f12016-04-11 22:54:35 -0700254 nodeResults = utilities.retry( main.HA.nodesCheck,
255 False,
256 args=[main.activeNodes],
257 attempts=5 )
Jon Halla440e872016-03-31 15:15:50 -0700258
Jon Hall41d39f12016-04-11 22:54:35 -0700259 utilities.assert_equals( expect=True, actual=nodeResults,
Jon Halla440e872016-03-31 15:15:50 -0700260 onpass="Nodes check successful",
261 onfail="Nodes check NOT successful" )
262
263 if not nodeResults:
264 for cli in main.CLIs:
265 main.log.debug( "{} components not ACTIVE: \n{}".format(
266 cli.name,
267 cli.sendline( "scr:list | grep -v ACTIVE" ) ) )
268
Jon Hall5cf14d52015-07-16 12:15:19 -0700269 if cliResults == main.FALSE:
270 main.log.error( "Failed to start ONOS, stopping test" )
271 main.cleanup()
272 main.exit()
273
Jon Hall172b7ba2016-04-07 18:12:20 -0700274 main.step( "Activate apps defined in the params file" )
275 # get data from the params
276 apps = main.params.get( 'apps' )
277 if apps:
278 apps = apps.split(',')
279 main.log.warn( apps )
280 activateResult = True
281 for app in apps:
282 main.CLIs[ 0 ].app( app, "Activate" )
283 # TODO: check this worked
284 time.sleep( 10 ) # wait for apps to activate
285 for app in apps:
286 state = main.CLIs[ 0 ].appStatus( app )
287 if state == "ACTIVE":
288 activateResult = activeResult and True
289 else:
290 main.log.error( "{} is in {} state".format( app, state ) )
291 activeResult = False
292 utilities.assert_equals( expect=True,
293 actual=activateResult,
294 onpass="Successfully activated apps",
295 onfail="Failed to activate apps" )
296 else:
297 main.log.warn( "No apps were specified to be loaded after startup" )
298
299 main.step( "Set ONOS configurations" )
300 config = main.params.get( 'ONOS_Configuration' )
301 if config:
302 main.log.debug( config )
303 checkResult = main.TRUE
304 for component in config:
305 for setting in config[component]:
306 value = config[component][setting]
307 check = main.CLIs[ 0 ].setCfg( component, setting, value )
308 main.log.info( "Value was changed? {}".format( main.TRUE == check ) )
309 checkResult = check and checkResult
310 utilities.assert_equals( expect=main.TRUE,
311 actual=checkResult,
312 onpass="Successfully set config",
313 onfail="Failed to set config" )
314 else:
315 main.log.warn( "No configurations were specified to be changed after startup" )
316
Jon Hall9d2dcad2016-04-08 10:15:20 -0700317 main.step( "App Ids check" )
318 appCheck = main.TRUE
319 threads = []
320 for i in main.activeNodes:
321 t = main.Thread( target=main.CLIs[i].appToIDCheck,
322 name="appToIDCheck-" + str( i ),
323 args=[] )
324 threads.append( t )
325 t.start()
326
327 for t in threads:
328 t.join()
329 appCheck = appCheck and t.result
330 if appCheck != main.TRUE:
331 node = main.activeNodes[0]
332 main.log.warn( main.CLIs[node].apps() )
333 main.log.warn( main.CLIs[node].appIDs() )
334 utilities.assert_equals( expect=main.TRUE, actual=appCheck,
335 onpass="App Ids seem to be correct",
336 onfail="Something is wrong with app Ids" )
337
Jon Hall5cf14d52015-07-16 12:15:19 -0700338 def CASE2( self, main ):
339 """
340 Assign devices to controllers
341 """
342 import re
Jon Halle1a3b752015-07-22 13:02:46 -0700343 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -0700344 assert main, "main not defined"
345 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -0700346 assert main.CLIs, "main.CLIs not defined"
347 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -0700348 assert ONOS1Port, "ONOS1Port not defined"
349 assert ONOS2Port, "ONOS2Port not defined"
350 assert ONOS3Port, "ONOS3Port not defined"
351 assert ONOS4Port, "ONOS4Port not defined"
352 assert ONOS5Port, "ONOS5Port not defined"
353 assert ONOS6Port, "ONOS6Port not defined"
354 assert ONOS7Port, "ONOS7Port not defined"
355
356 main.case( "Assigning devices to controllers" )
Jon Hall783bbf92015-07-23 14:33:19 -0700357 main.caseExplanation = "Assign switches to ONOS using 'ovs-vsctl' " +\
Jon Hall5cf14d52015-07-16 12:15:19 -0700358 "and check that an ONOS node becomes the " +\
359 "master of the device."
360 main.step( "Assign switches to controllers" )
361
362 ipList = []
Jon Halle1a3b752015-07-22 13:02:46 -0700363 for i in range( main.numCtrls ):
364 ipList.append( main.nodes[ i ].ip_address )
Jon Hall5cf14d52015-07-16 12:15:19 -0700365 swList = []
366 for i in range( 1, 29 ):
367 swList.append( "s" + str( i ) )
368 main.Mininet1.assignSwController( sw=swList, ip=ipList )
369
370 mastershipCheck = main.TRUE
371 for i in range( 1, 29 ):
372 response = main.Mininet1.getSwController( "s" + str( i ) )
373 try:
374 main.log.info( str( response ) )
375 except Exception:
376 main.log.info( repr( response ) )
Jon Halle1a3b752015-07-22 13:02:46 -0700377 for node in main.nodes:
Jon Hall5cf14d52015-07-16 12:15:19 -0700378 if re.search( "tcp:" + node.ip_address, response ):
379 mastershipCheck = mastershipCheck and main.TRUE
380 else:
381 main.log.error( "Error, node " + node.ip_address + " is " +
382 "not in the list of controllers s" +
383 str( i ) + " is connecting to." )
384 mastershipCheck = main.FALSE
385 utilities.assert_equals(
386 expect=main.TRUE,
387 actual=mastershipCheck,
388 onpass="Switch mastership assigned correctly",
389 onfail="Switches not assigned correctly to controllers" )
390
391 def CASE21( self, main ):
392 """
393 Assign mastership to controllers
394 """
Jon Hall5cf14d52015-07-16 12:15:19 -0700395 import time
Jon Halle1a3b752015-07-22 13:02:46 -0700396 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -0700397 assert main, "main not defined"
398 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -0700399 assert main.CLIs, "main.CLIs not defined"
400 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -0700401 assert ONOS1Port, "ONOS1Port not defined"
402 assert ONOS2Port, "ONOS2Port not defined"
403 assert ONOS3Port, "ONOS3Port not defined"
404 assert ONOS4Port, "ONOS4Port not defined"
405 assert ONOS5Port, "ONOS5Port not defined"
406 assert ONOS6Port, "ONOS6Port not defined"
407 assert ONOS7Port, "ONOS7Port not defined"
408
409 main.case( "Assigning Controller roles for switches" )
Jon Hall783bbf92015-07-23 14:33:19 -0700410 main.caseExplanation = "Check that ONOS is connected to each " +\
Jon Hall5cf14d52015-07-16 12:15:19 -0700411 "device. Then manually assign" +\
412 " mastership to specific ONOS nodes using" +\
413 " 'device-role'"
414 main.step( "Assign mastership of switches to specific controllers" )
415 # Manually assign mastership to the controller we want
416 roleCall = main.TRUE
417
418 ipList = [ ]
419 deviceList = []
Jon Halla440e872016-03-31 15:15:50 -0700420 onosCli = main.CLIs[ main.activeNodes[0] ]
Jon Hall5cf14d52015-07-16 12:15:19 -0700421 try:
422 # Assign mastership to specific controllers. This assignment was
423 # determined for a 7 node cluser, but will work with any sized
424 # cluster
425 for i in range( 1, 29 ): # switches 1 through 28
426 # set up correct variables:
427 if i == 1:
428 c = 0
Jon Halle1a3b752015-07-22 13:02:46 -0700429 ip = main.nodes[ c ].ip_address # ONOS1
Jon Halla440e872016-03-31 15:15:50 -0700430 deviceId = onosCli.getDevice( "1000" ).get( 'id' )
Jon Hall5cf14d52015-07-16 12:15:19 -0700431 elif i == 2:
Jon Halle1a3b752015-07-22 13:02:46 -0700432 c = 1 % main.numCtrls
433 ip = main.nodes[ c ].ip_address # ONOS2
Jon Halla440e872016-03-31 15:15:50 -0700434 deviceId = onosCli.getDevice( "2000" ).get( 'id' )
Jon Hall5cf14d52015-07-16 12:15:19 -0700435 elif i == 3:
Jon Halle1a3b752015-07-22 13:02:46 -0700436 c = 1 % main.numCtrls
437 ip = main.nodes[ c ].ip_address # ONOS2
Jon Halla440e872016-03-31 15:15:50 -0700438 deviceId = onosCli.getDevice( "3000" ).get( 'id' )
Jon Hall5cf14d52015-07-16 12:15:19 -0700439 elif i == 4:
Jon Halle1a3b752015-07-22 13:02:46 -0700440 c = 3 % main.numCtrls
441 ip = main.nodes[ c ].ip_address # ONOS4
Jon Halla440e872016-03-31 15:15:50 -0700442 deviceId = onosCli.getDevice( "3004" ).get( 'id' )
Jon Hall5cf14d52015-07-16 12:15:19 -0700443 elif i == 5:
Jon Halle1a3b752015-07-22 13:02:46 -0700444 c = 2 % main.numCtrls
445 ip = main.nodes[ c ].ip_address # ONOS3
Jon Halla440e872016-03-31 15:15:50 -0700446 deviceId = onosCli.getDevice( "5000" ).get( 'id' )
Jon Hall5cf14d52015-07-16 12:15:19 -0700447 elif i == 6:
Jon Halle1a3b752015-07-22 13:02:46 -0700448 c = 2 % main.numCtrls
449 ip = main.nodes[ c ].ip_address # ONOS3
Jon Halla440e872016-03-31 15:15:50 -0700450 deviceId = onosCli.getDevice( "6000" ).get( 'id' )
Jon Hall5cf14d52015-07-16 12:15:19 -0700451 elif i == 7:
Jon Halle1a3b752015-07-22 13:02:46 -0700452 c = 5 % main.numCtrls
453 ip = main.nodes[ c ].ip_address # ONOS6
Jon Halla440e872016-03-31 15:15:50 -0700454 deviceId = onosCli.getDevice( "6007" ).get( 'id' )
Jon Hall5cf14d52015-07-16 12:15:19 -0700455 elif i >= 8 and i <= 17:
Jon Halle1a3b752015-07-22 13:02:46 -0700456 c = 4 % main.numCtrls
457 ip = main.nodes[ c ].ip_address # ONOS5
Jon Hall5cf14d52015-07-16 12:15:19 -0700458 dpid = '3' + str( i ).zfill( 3 )
Jon Halla440e872016-03-31 15:15:50 -0700459 deviceId = onosCli.getDevice( dpid ).get( 'id' )
Jon Hall5cf14d52015-07-16 12:15:19 -0700460 elif i >= 18 and i <= 27:
Jon Halle1a3b752015-07-22 13:02:46 -0700461 c = 6 % main.numCtrls
462 ip = main.nodes[ c ].ip_address # ONOS7
Jon Hall5cf14d52015-07-16 12:15:19 -0700463 dpid = '6' + str( i ).zfill( 3 )
Jon Halla440e872016-03-31 15:15:50 -0700464 deviceId = onosCli.getDevice( dpid ).get( 'id' )
Jon Hall5cf14d52015-07-16 12:15:19 -0700465 elif i == 28:
466 c = 0
Jon Halle1a3b752015-07-22 13:02:46 -0700467 ip = main.nodes[ c ].ip_address # ONOS1
Jon Halla440e872016-03-31 15:15:50 -0700468 deviceId = onosCli.getDevice( "2800" ).get( 'id' )
Jon Hall5cf14d52015-07-16 12:15:19 -0700469 else:
470 main.log.error( "You didn't write an else statement for " +
471 "switch s" + str( i ) )
472 roleCall = main.FALSE
473 # Assign switch
474 assert deviceId, "No device id for s" + str( i ) + " in ONOS"
475 # TODO: make this controller dynamic
Jon Halla440e872016-03-31 15:15:50 -0700476 roleCall = roleCall and onosCli.deviceRole( deviceId, ip )
Jon Hall5cf14d52015-07-16 12:15:19 -0700477 ipList.append( ip )
478 deviceList.append( deviceId )
479 except ( AttributeError, AssertionError ):
480 main.log.exception( "Something is wrong with ONOS device view" )
Jon Halla440e872016-03-31 15:15:50 -0700481 main.log.info( onosCli.devices() )
Jon Hall5cf14d52015-07-16 12:15:19 -0700482 utilities.assert_equals(
483 expect=main.TRUE,
484 actual=roleCall,
485 onpass="Re-assigned switch mastership to designated controller",
486 onfail="Something wrong with deviceRole calls" )
487
488 main.step( "Check mastership was correctly assigned" )
489 roleCheck = main.TRUE
490 # NOTE: This is due to the fact that device mastership change is not
491 # atomic and is actually a multi step process
492 time.sleep( 5 )
493 for i in range( len( ipList ) ):
494 ip = ipList[i]
495 deviceId = deviceList[i]
496 # Check assignment
Jon Halla440e872016-03-31 15:15:50 -0700497 master = onosCli.getRole( deviceId ).get( 'master' )
Jon Hall5cf14d52015-07-16 12:15:19 -0700498 if ip in master:
499 roleCheck = roleCheck and main.TRUE
500 else:
501 roleCheck = roleCheck and main.FALSE
502 main.log.error( "Error, controller " + ip + " is not" +
503 " master " + "of device " +
504 str( deviceId ) + ". Master is " +
505 repr( master ) + "." )
506 utilities.assert_equals(
507 expect=main.TRUE,
508 actual=roleCheck,
509 onpass="Switches were successfully reassigned to designated " +
510 "controller",
511 onfail="Switches were not successfully reassigned" )
512
513 def CASE3( self, main ):
514 """
515 Assign intents
516 """
517 import time
518 import json
Jon Halle1a3b752015-07-22 13:02:46 -0700519 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -0700520 assert main, "main not defined"
521 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -0700522 assert main.CLIs, "main.CLIs not defined"
523 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -0700524 try:
525 labels
526 except NameError:
527 main.log.error( "labels not defined, setting to []" )
528 labels = []
529 try:
530 data
531 except NameError:
532 main.log.error( "data not defined, setting to []" )
533 data = []
534 # NOTE: we must reinstall intents until we have a persistant intent
535 # datastore!
536 main.case( "Adding host Intents" )
Jon Hall783bbf92015-07-23 14:33:19 -0700537 main.caseExplanation = "Discover hosts by using pingall then " +\
Jon Hall5cf14d52015-07-16 12:15:19 -0700538 "assign predetermined host-to-host intents." +\
539 " After installation, check that the intent" +\
540 " is distributed to all nodes and the state" +\
541 " is INSTALLED"
542
543 # install onos-app-fwd
544 main.step( "Install reactive forwarding app" )
Jon Halla440e872016-03-31 15:15:50 -0700545 onosCli = main.CLIs[ main.activeNodes[0] ]
546 installResults = onosCli.activateApp( "org.onosproject.fwd" )
Jon Hall5cf14d52015-07-16 12:15:19 -0700547 utilities.assert_equals( expect=main.TRUE, actual=installResults,
548 onpass="Install fwd successful",
549 onfail="Install fwd failed" )
550
551 main.step( "Check app ids" )
552 appCheck = main.TRUE
553 threads = []
Jon Halla440e872016-03-31 15:15:50 -0700554 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -0700555 t = main.Thread( target=main.CLIs[i].appToIDCheck,
Jon Hall5cf14d52015-07-16 12:15:19 -0700556 name="appToIDCheck-" + str( i ),
557 args=[] )
558 threads.append( t )
559 t.start()
560
561 for t in threads:
562 t.join()
563 appCheck = appCheck and t.result
564 if appCheck != main.TRUE:
Jon Halla440e872016-03-31 15:15:50 -0700565 main.log.warn( onosCli.apps() )
566 main.log.warn( onosCli.appIDs() )
Jon Hall5cf14d52015-07-16 12:15:19 -0700567 utilities.assert_equals( expect=main.TRUE, actual=appCheck,
568 onpass="App Ids seem to be correct",
569 onfail="Something is wrong with app Ids" )
570
571 main.step( "Discovering Hosts( Via pingall for now )" )
572 # FIXME: Once we have a host discovery mechanism, use that instead
573 # REACTIVE FWD test
574 pingResult = main.FALSE
Jon Hall96091e62015-09-21 17:34:17 -0700575 passMsg = "Reactive Pingall test passed"
576 time1 = time.time()
577 pingResult = main.Mininet1.pingall()
578 time2 = time.time()
579 if not pingResult:
580 main.log.warn("First pingall failed. Trying again...")
Jon Hall5cf14d52015-07-16 12:15:19 -0700581 pingResult = main.Mininet1.pingall()
Jon Hall96091e62015-09-21 17:34:17 -0700582 passMsg += " on the second try"
583 utilities.assert_equals(
584 expect=main.TRUE,
585 actual=pingResult,
586 onpass= passMsg,
587 onfail="Reactive Pingall failed, " +
588 "one or more ping pairs failed" )
589 main.log.info( "Time for pingall: %2f seconds" %
590 ( time2 - time1 ) )
Jon Hall5cf14d52015-07-16 12:15:19 -0700591 # timeout for fwd flows
592 time.sleep( 11 )
593 # uninstall onos-app-fwd
594 main.step( "Uninstall reactive forwarding app" )
Jon Halla440e872016-03-31 15:15:50 -0700595 node = main.activeNodes[0]
596 uninstallResult = main.CLIs[node].deactivateApp( "org.onosproject.fwd" )
Jon Hall5cf14d52015-07-16 12:15:19 -0700597 utilities.assert_equals( expect=main.TRUE, actual=uninstallResult,
598 onpass="Uninstall fwd successful",
599 onfail="Uninstall fwd failed" )
600
601 main.step( "Check app ids" )
602 threads = []
603 appCheck2 = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -0700604 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -0700605 t = main.Thread( target=main.CLIs[i].appToIDCheck,
Jon Hall5cf14d52015-07-16 12:15:19 -0700606 name="appToIDCheck-" + str( i ),
607 args=[] )
608 threads.append( t )
609 t.start()
610
611 for t in threads:
612 t.join()
613 appCheck2 = appCheck2 and t.result
614 if appCheck2 != main.TRUE:
Jon Halla440e872016-03-31 15:15:50 -0700615 node = main.activeNodes[0]
616 main.log.warn( main.CLIs[node].apps() )
617 main.log.warn( main.CLIs[node].appIDs() )
Jon Hall5cf14d52015-07-16 12:15:19 -0700618 utilities.assert_equals( expect=main.TRUE, actual=appCheck2,
619 onpass="App Ids seem to be correct",
620 onfail="Something is wrong with app Ids" )
621
622 main.step( "Add host intents via cli" )
623 intentIds = []
Jon Hall6e709752016-02-01 13:38:46 -0800624 # TODO: move the host numbers to params
625 # Maybe look at all the paths we ping?
Jon Hall5cf14d52015-07-16 12:15:19 -0700626 intentAddResult = True
627 hostResult = main.TRUE
628 for i in range( 8, 18 ):
629 main.log.info( "Adding host intent between h" + str( i ) +
630 " and h" + str( i + 10 ) )
631 host1 = "00:00:00:00:00:" + \
632 str( hex( i )[ 2: ] ).zfill( 2 ).upper()
633 host2 = "00:00:00:00:00:" + \
634 str( hex( i + 10 )[ 2: ] ).zfill( 2 ).upper()
635 # NOTE: getHost can return None
Jon Halla440e872016-03-31 15:15:50 -0700636 host1Dict = onosCli.getHost( host1 )
637 host2Dict = onosCli.getHost( host2 )
Jon Hall5cf14d52015-07-16 12:15:19 -0700638 host1Id = None
639 host2Id = None
640 if host1Dict and host2Dict:
641 host1Id = host1Dict.get( 'id', None )
642 host2Id = host2Dict.get( 'id', None )
643 if host1Id and host2Id:
Jon Halla440e872016-03-31 15:15:50 -0700644 nodeNum = ( i % len( main.activeNodes ) )
645 node = main.activeNodes[nodeNum]
646 tmpId = main.CLIs[node].addHostIntent( host1Id, host2Id )
Jon Hall5cf14d52015-07-16 12:15:19 -0700647 if tmpId:
648 main.log.info( "Added intent with id: " + tmpId )
649 intentIds.append( tmpId )
650 else:
651 main.log.error( "addHostIntent returned: " +
652 repr( tmpId ) )
653 else:
654 main.log.error( "Error, getHost() failed for h" + str( i ) +
655 " and/or h" + str( i + 10 ) )
Jon Halla440e872016-03-31 15:15:50 -0700656 node = main.activeNodes[0]
657 hosts = main.CLIs[node].hosts()
Jon Hall5cf14d52015-07-16 12:15:19 -0700658 main.log.warn( "Hosts output: " )
659 try:
660 main.log.warn( json.dumps( json.loads( hosts ),
661 sort_keys=True,
662 indent=4,
663 separators=( ',', ': ' ) ) )
664 except ( ValueError, TypeError ):
665 main.log.warn( repr( hosts ) )
666 hostResult = main.FALSE
667 utilities.assert_equals( expect=main.TRUE, actual=hostResult,
668 onpass="Found a host id for each host",
669 onfail="Error looking up host ids" )
670
671 intentStart = time.time()
Jon Halla440e872016-03-31 15:15:50 -0700672 onosIds = onosCli.getAllIntentsId()
Jon Hall5cf14d52015-07-16 12:15:19 -0700673 main.log.info( "Submitted intents: " + str( intentIds ) )
674 main.log.info( "Intents in ONOS: " + str( onosIds ) )
675 for intent in intentIds:
676 if intent in onosIds:
677 pass # intent submitted is in onos
678 else:
679 intentAddResult = False
680 if intentAddResult:
681 intentStop = time.time()
682 else:
683 intentStop = None
684 # Print the intent states
Jon Halla440e872016-03-31 15:15:50 -0700685 intents = onosCli.intents()
Jon Hall5cf14d52015-07-16 12:15:19 -0700686 intentStates = []
687 installedCheck = True
688 main.log.info( "%-6s%-15s%-15s" % ( 'Count', 'ID', 'State' ) )
689 count = 0
690 try:
691 for intent in json.loads( intents ):
692 state = intent.get( 'state', None )
693 if "INSTALLED" not in state:
694 installedCheck = False
695 intentId = intent.get( 'id', None )
696 intentStates.append( ( intentId, state ) )
697 except ( ValueError, TypeError ):
698 main.log.exception( "Error parsing intents" )
699 # add submitted intents not in the store
700 tmplist = [ i for i, s in intentStates ]
701 missingIntents = False
702 for i in intentIds:
703 if i not in tmplist:
704 intentStates.append( ( i, " - " ) )
705 missingIntents = True
706 intentStates.sort()
707 for i, s in intentStates:
708 count += 1
709 main.log.info( "%-6s%-15s%-15s" %
710 ( str( count ), str( i ), str( s ) ) )
Jon Halla440e872016-03-31 15:15:50 -0700711 leaders = onosCli.leaders()
Jon Hall5cf14d52015-07-16 12:15:19 -0700712 try:
713 missing = False
714 if leaders:
715 parsedLeaders = json.loads( leaders )
716 main.log.warn( json.dumps( parsedLeaders,
717 sort_keys=True,
718 indent=4,
719 separators=( ',', ': ' ) ) )
720 # check for all intent partitions
721 topics = []
722 for i in range( 14 ):
723 topics.append( "intent-partition-" + str( i ) )
724 main.log.debug( topics )
725 ONOStopics = [ j['topic'] for j in parsedLeaders ]
726 for topic in topics:
727 if topic not in ONOStopics:
728 main.log.error( "Error: " + topic +
729 " not in leaders" )
730 missing = True
731 else:
732 main.log.error( "leaders() returned None" )
733 except ( ValueError, TypeError ):
734 main.log.exception( "Error parsing leaders" )
735 main.log.error( repr( leaders ) )
736 # Check all nodes
737 if missing:
Jon Halla440e872016-03-31 15:15:50 -0700738 for i in main.activeNodes:
739 response = main.CLIs[i].leaders( jsonFormat=False)
740 main.log.warn( str( main.CLIs[i].name ) + " leaders output: \n" +
Jon Hall5cf14d52015-07-16 12:15:19 -0700741 str( response ) )
742
Jon Halla440e872016-03-31 15:15:50 -0700743 partitions = onosCli.partitions()
Jon Hall5cf14d52015-07-16 12:15:19 -0700744 try:
745 if partitions :
746 parsedPartitions = json.loads( partitions )
747 main.log.warn( json.dumps( parsedPartitions,
748 sort_keys=True,
749 indent=4,
750 separators=( ',', ': ' ) ) )
751 # TODO check for a leader in all paritions
752 # TODO check for consistency among nodes
753 else:
754 main.log.error( "partitions() returned None" )
755 except ( ValueError, TypeError ):
756 main.log.exception( "Error parsing partitions" )
757 main.log.error( repr( partitions ) )
Jon Halla440e872016-03-31 15:15:50 -0700758 pendingMap = onosCli.pendingMap()
Jon Hall5cf14d52015-07-16 12:15:19 -0700759 try:
760 if pendingMap :
761 parsedPending = json.loads( pendingMap )
762 main.log.warn( json.dumps( parsedPending,
763 sort_keys=True,
764 indent=4,
765 separators=( ',', ': ' ) ) )
766 # TODO check something here?
767 else:
768 main.log.error( "pendingMap() returned None" )
769 except ( ValueError, TypeError ):
770 main.log.exception( "Error parsing pending map" )
771 main.log.error( repr( pendingMap ) )
772
773 intentAddResult = bool( intentAddResult and not missingIntents and
774 installedCheck )
775 if not intentAddResult:
776 main.log.error( "Error in pushing host intents to ONOS" )
777
778 main.step( "Intent Anti-Entropy dispersion" )
Jon Halla440e872016-03-31 15:15:50 -0700779 for j in range(100):
Jon Hall5cf14d52015-07-16 12:15:19 -0700780 correct = True
781 main.log.info( "Submitted intents: " + str( sorted( intentIds ) ) )
Jon Halla440e872016-03-31 15:15:50 -0700782 for i in main.activeNodes:
Jon Hall5cf14d52015-07-16 12:15:19 -0700783 onosIds = []
Jon Halla440e872016-03-31 15:15:50 -0700784 ids = main.CLIs[i].getAllIntentsId()
Jon Hall5cf14d52015-07-16 12:15:19 -0700785 onosIds.append( ids )
Jon Halla440e872016-03-31 15:15:50 -0700786 main.log.debug( "Intents in " + main.CLIs[i].name + ": " +
Jon Hall5cf14d52015-07-16 12:15:19 -0700787 str( sorted( onosIds ) ) )
788 if sorted( ids ) != sorted( intentIds ):
789 main.log.warn( "Set of intent IDs doesn't match" )
790 correct = False
791 break
792 else:
Jon Halla440e872016-03-31 15:15:50 -0700793 intents = json.loads( main.CLIs[i].intents() )
Jon Hall5cf14d52015-07-16 12:15:19 -0700794 for intent in intents:
795 if intent[ 'state' ] != "INSTALLED":
796 main.log.warn( "Intent " + intent[ 'id' ] +
797 " is " + intent[ 'state' ] )
798 correct = False
799 break
800 if correct:
801 break
802 else:
803 time.sleep(1)
804 if not intentStop:
805 intentStop = time.time()
806 global gossipTime
807 gossipTime = intentStop - intentStart
808 main.log.info( "It took about " + str( gossipTime ) +
809 " seconds for all intents to appear in each node" )
810 append = False
811 title = "Gossip Intents"
812 count = 1
813 while append is False:
814 curTitle = title + str( count )
815 if curTitle not in labels:
816 labels.append( curTitle )
817 data.append( str( gossipTime ) )
818 append = True
819 else:
820 count += 1
Jon Hallb3ed8ed2015-10-28 16:43:55 -0700821 gossipPeriod = int( main.params['timers']['gossip'] )
Jon Halla440e872016-03-31 15:15:50 -0700822 maxGossipTime = gossipPeriod * len( main.activeNodes )
Jon Hall5cf14d52015-07-16 12:15:19 -0700823 utilities.assert_greater_equals(
Jon Hallb3ed8ed2015-10-28 16:43:55 -0700824 expect=maxGossipTime, actual=gossipTime,
Jon Hall5cf14d52015-07-16 12:15:19 -0700825 onpass="ECM anti-entropy for intents worked within " +
826 "expected time",
Jon Hallb3ed8ed2015-10-28 16:43:55 -0700827 onfail="Intent ECM anti-entropy took too long. " +
828 "Expected time:{}, Actual time:{}".format( maxGossipTime,
829 gossipTime ) )
830 if gossipTime <= maxGossipTime:
Jon Hall5cf14d52015-07-16 12:15:19 -0700831 intentAddResult = True
832
833 if not intentAddResult or "key" in pendingMap:
834 import time
835 installedCheck = True
836 main.log.info( "Sleeping 60 seconds to see if intents are found" )
837 time.sleep( 60 )
Jon Halla440e872016-03-31 15:15:50 -0700838 onosIds = onosCli.getAllIntentsId()
Jon Hall5cf14d52015-07-16 12:15:19 -0700839 main.log.info( "Submitted intents: " + str( intentIds ) )
840 main.log.info( "Intents in ONOS: " + str( onosIds ) )
841 # Print the intent states
Jon Halla440e872016-03-31 15:15:50 -0700842 intents = onosCli.intents()
Jon Hall5cf14d52015-07-16 12:15:19 -0700843 intentStates = []
844 main.log.info( "%-6s%-15s%-15s" % ( 'Count', 'ID', 'State' ) )
845 count = 0
846 try:
847 for intent in json.loads( intents ):
848 # Iter through intents of a node
849 state = intent.get( 'state', None )
850 if "INSTALLED" not in state:
851 installedCheck = False
852 intentId = intent.get( 'id', None )
853 intentStates.append( ( intentId, state ) )
854 except ( ValueError, TypeError ):
855 main.log.exception( "Error parsing intents" )
856 # add submitted intents not in the store
857 tmplist = [ i for i, s in intentStates ]
858 for i in intentIds:
859 if i not in tmplist:
860 intentStates.append( ( i, " - " ) )
861 intentStates.sort()
862 for i, s in intentStates:
863 count += 1
864 main.log.info( "%-6s%-15s%-15s" %
865 ( str( count ), str( i ), str( s ) ) )
Jon Halla440e872016-03-31 15:15:50 -0700866 leaders = onosCli.leaders()
Jon Hall5cf14d52015-07-16 12:15:19 -0700867 try:
868 missing = False
869 if leaders:
870 parsedLeaders = json.loads( leaders )
871 main.log.warn( json.dumps( parsedLeaders,
872 sort_keys=True,
873 indent=4,
874 separators=( ',', ': ' ) ) )
875 # check for all intent partitions
876 # check for election
877 topics = []
878 for i in range( 14 ):
879 topics.append( "intent-partition-" + str( i ) )
880 # FIXME: this should only be after we start the app
881 topics.append( "org.onosproject.election" )
882 main.log.debug( topics )
883 ONOStopics = [ j['topic'] for j in parsedLeaders ]
884 for topic in topics:
885 if topic not in ONOStopics:
886 main.log.error( "Error: " + topic +
887 " not in leaders" )
888 missing = True
889 else:
890 main.log.error( "leaders() returned None" )
891 except ( ValueError, TypeError ):
892 main.log.exception( "Error parsing leaders" )
893 main.log.error( repr( leaders ) )
894 # Check all nodes
895 if missing:
Jon Halla440e872016-03-31 15:15:50 -0700896 for i in main.activeNodes:
897 node = main.CLIs[i]
Jon Hall5cf14d52015-07-16 12:15:19 -0700898 response = node.leaders( jsonFormat=False)
899 main.log.warn( str( node.name ) + " leaders output: \n" +
900 str( response ) )
901
Jon Halla440e872016-03-31 15:15:50 -0700902 partitions = onosCli.partitions()
Jon Hall5cf14d52015-07-16 12:15:19 -0700903 try:
904 if partitions :
905 parsedPartitions = json.loads( partitions )
906 main.log.warn( json.dumps( parsedPartitions,
907 sort_keys=True,
908 indent=4,
909 separators=( ',', ': ' ) ) )
910 # TODO check for a leader in all paritions
911 # TODO check for consistency among nodes
912 else:
913 main.log.error( "partitions() returned None" )
914 except ( ValueError, TypeError ):
915 main.log.exception( "Error parsing partitions" )
916 main.log.error( repr( partitions ) )
Jon Halla440e872016-03-31 15:15:50 -0700917 pendingMap = onosCli.pendingMap()
Jon Hall5cf14d52015-07-16 12:15:19 -0700918 try:
919 if pendingMap :
920 parsedPending = json.loads( pendingMap )
921 main.log.warn( json.dumps( parsedPending,
922 sort_keys=True,
923 indent=4,
924 separators=( ',', ': ' ) ) )
925 # TODO check something here?
926 else:
927 main.log.error( "pendingMap() returned None" )
928 except ( ValueError, TypeError ):
929 main.log.exception( "Error parsing pending map" )
930 main.log.error( repr( pendingMap ) )
931
932 def CASE4( self, main ):
933 """
934 Ping across added host intents
935 """
936 import json
937 import time
Jon Halle1a3b752015-07-22 13:02:46 -0700938 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -0700939 assert main, "main not defined"
940 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -0700941 assert main.CLIs, "main.CLIs not defined"
942 assert main.nodes, "main.nodes not defined"
Jon Hall6e709752016-02-01 13:38:46 -0800943 main.case( "Verify connectivity by sending traffic across Intents" )
Jon Hall783bbf92015-07-23 14:33:19 -0700944 main.caseExplanation = "Ping across added host intents to check " +\
Jon Hall5cf14d52015-07-16 12:15:19 -0700945 "functionality and check the state of " +\
946 "the intent"
Jon Hall5cf14d52015-07-16 12:15:19 -0700947
Jon Hall41d39f12016-04-11 22:54:35 -0700948 onosCli = main.CLIs[ main.activeNodes[0] ]
Jon Hall5cf14d52015-07-16 12:15:19 -0700949 main.step( "Check Intent state" )
950 installedCheck = False
951 loopCount = 0
952 while not installedCheck and loopCount < 40:
953 installedCheck = True
954 # Print the intent states
Jon Halla440e872016-03-31 15:15:50 -0700955 intents = onosCli.intents()
Jon Hall5cf14d52015-07-16 12:15:19 -0700956 intentStates = []
957 main.log.info( "%-6s%-15s%-15s" % ( 'Count', 'ID', 'State' ) )
Jon Halle1a3b752015-07-22 13:02:46 -0700958 count = 0
Jon Hall5cf14d52015-07-16 12:15:19 -0700959 # Iter through intents of a node
960 try:
961 for intent in json.loads( intents ):
962 state = intent.get( 'state', None )
963 if "INSTALLED" not in state:
964 installedCheck = False
965 intentId = intent.get( 'id', None )
966 intentStates.append( ( intentId, state ) )
967 except ( ValueError, TypeError ):
968 main.log.exception( "Error parsing intents." )
969 # Print states
970 intentStates.sort()
971 for i, s in intentStates:
972 count += 1
973 main.log.info( "%-6s%-15s%-15s" %
974 ( str( count ), str( i ), str( s ) ) )
975 if not installedCheck:
976 time.sleep( 1 )
977 loopCount += 1
978 utilities.assert_equals( expect=True, actual=installedCheck,
979 onpass="Intents are all INSTALLED",
980 onfail="Intents are not all in " +
981 "INSTALLED state" )
982
Jon Hall9d2dcad2016-04-08 10:15:20 -0700983 main.step( "Ping across added host intents" )
Jon Hall9d2dcad2016-04-08 10:15:20 -0700984 PingResult = main.TRUE
985 for i in range( 8, 18 ):
986 ping = main.Mininet1.pingHost( src="h" + str( i ),
987 target="h" + str( i + 10 ) )
988 PingResult = PingResult and ping
989 if ping == main.FALSE:
990 main.log.warn( "Ping failed between h" + str( i ) +
991 " and h" + str( i + 10 ) )
992 elif ping == main.TRUE:
993 main.log.info( "Ping test passed!" )
994 # Don't set PingResult or you'd override failures
995 if PingResult == main.FALSE:
996 main.log.error(
997 "Intents have not been installed correctly, pings failed." )
998 # TODO: pretty print
999 main.log.warn( "ONOS1 intents: " )
1000 try:
1001 tmpIntents = onosCli.intents()
1002 main.log.warn( json.dumps( json.loads( tmpIntents ),
1003 sort_keys=True,
1004 indent=4,
1005 separators=( ',', ': ' ) ) )
1006 except ( ValueError, TypeError ):
1007 main.log.warn( repr( tmpIntents ) )
1008 utilities.assert_equals(
1009 expect=main.TRUE,
1010 actual=PingResult,
1011 onpass="Intents have been installed correctly and pings work",
1012 onfail="Intents have not been installed correctly, pings failed." )
1013
Jon Hall5cf14d52015-07-16 12:15:19 -07001014 main.step( "Check leadership of topics" )
Jon Halla440e872016-03-31 15:15:50 -07001015 leaders = onosCli.leaders()
Jon Hall5cf14d52015-07-16 12:15:19 -07001016 topicCheck = main.TRUE
1017 try:
1018 if leaders:
1019 parsedLeaders = json.loads( leaders )
1020 main.log.warn( json.dumps( parsedLeaders,
1021 sort_keys=True,
1022 indent=4,
1023 separators=( ',', ': ' ) ) )
1024 # check for all intent partitions
1025 # check for election
1026 # TODO: Look at Devices as topics now that it uses this system
1027 topics = []
1028 for i in range( 14 ):
1029 topics.append( "intent-partition-" + str( i ) )
1030 # FIXME: this should only be after we start the app
1031 # FIXME: topics.append( "org.onosproject.election" )
1032 # Print leaders output
1033 main.log.debug( topics )
1034 ONOStopics = [ j['topic'] for j in parsedLeaders ]
1035 for topic in topics:
1036 if topic not in ONOStopics:
1037 main.log.error( "Error: " + topic +
1038 " not in leaders" )
1039 topicCheck = main.FALSE
1040 else:
1041 main.log.error( "leaders() returned None" )
1042 topicCheck = main.FALSE
1043 except ( ValueError, TypeError ):
1044 topicCheck = main.FALSE
1045 main.log.exception( "Error parsing leaders" )
1046 main.log.error( repr( leaders ) )
1047 # TODO: Check for a leader of these topics
1048 # Check all nodes
1049 if topicCheck:
Jon Halla440e872016-03-31 15:15:50 -07001050 for i in main.activeNodes:
1051 node = main.CLIs[i]
Jon Hall5cf14d52015-07-16 12:15:19 -07001052 response = node.leaders( jsonFormat=False)
1053 main.log.warn( str( node.name ) + " leaders output: \n" +
1054 str( response ) )
1055
1056 utilities.assert_equals( expect=main.TRUE, actual=topicCheck,
1057 onpass="intent Partitions is in leaders",
1058 onfail="Some topics were lost " )
1059 # Print partitions
Jon Halla440e872016-03-31 15:15:50 -07001060 partitions = onosCli.partitions()
Jon Hall5cf14d52015-07-16 12:15:19 -07001061 try:
1062 if partitions :
1063 parsedPartitions = json.loads( partitions )
1064 main.log.warn( json.dumps( parsedPartitions,
1065 sort_keys=True,
1066 indent=4,
1067 separators=( ',', ': ' ) ) )
1068 # TODO check for a leader in all paritions
1069 # TODO check for consistency among nodes
1070 else:
1071 main.log.error( "partitions() returned None" )
1072 except ( ValueError, TypeError ):
1073 main.log.exception( "Error parsing partitions" )
1074 main.log.error( repr( partitions ) )
1075 # Print Pending Map
Jon Halla440e872016-03-31 15:15:50 -07001076 pendingMap = onosCli.pendingMap()
Jon Hall5cf14d52015-07-16 12:15:19 -07001077 try:
1078 if pendingMap :
1079 parsedPending = json.loads( pendingMap )
1080 main.log.warn( json.dumps( parsedPending,
1081 sort_keys=True,
1082 indent=4,
1083 separators=( ',', ': ' ) ) )
1084 # TODO check something here?
1085 else:
1086 main.log.error( "pendingMap() returned None" )
1087 except ( ValueError, TypeError ):
1088 main.log.exception( "Error parsing pending map" )
1089 main.log.error( repr( pendingMap ) )
1090
1091 if not installedCheck:
1092 main.log.info( "Waiting 60 seconds to see if the state of " +
1093 "intents change" )
1094 time.sleep( 60 )
1095 # Print the intent states
Jon Halla440e872016-03-31 15:15:50 -07001096 intents = onosCli.intents()
Jon Hall5cf14d52015-07-16 12:15:19 -07001097 intentStates = []
1098 main.log.info( "%-6s%-15s%-15s" % ( 'Count', 'ID', 'State' ) )
1099 count = 0
1100 # Iter through intents of a node
1101 try:
1102 for intent in json.loads( intents ):
1103 state = intent.get( 'state', None )
1104 if "INSTALLED" not in state:
1105 installedCheck = False
1106 intentId = intent.get( 'id', None )
1107 intentStates.append( ( intentId, state ) )
1108 except ( ValueError, TypeError ):
1109 main.log.exception( "Error parsing intents." )
1110 intentStates.sort()
1111 for i, s in intentStates:
1112 count += 1
1113 main.log.info( "%-6s%-15s%-15s" %
1114 ( str( count ), str( i ), str( s ) ) )
Jon Halla440e872016-03-31 15:15:50 -07001115 leaders = onosCli.leaders()
Jon Hall5cf14d52015-07-16 12:15:19 -07001116 try:
1117 missing = False
1118 if leaders:
1119 parsedLeaders = json.loads( leaders )
1120 main.log.warn( json.dumps( parsedLeaders,
1121 sort_keys=True,
1122 indent=4,
1123 separators=( ',', ': ' ) ) )
1124 # check for all intent partitions
1125 # check for election
1126 topics = []
1127 for i in range( 14 ):
1128 topics.append( "intent-partition-" + str( i ) )
1129 # FIXME: this should only be after we start the app
1130 topics.append( "org.onosproject.election" )
1131 main.log.debug( topics )
1132 ONOStopics = [ j['topic'] for j in parsedLeaders ]
1133 for topic in topics:
1134 if topic not in ONOStopics:
1135 main.log.error( "Error: " + topic +
1136 " not in leaders" )
1137 missing = True
1138 else:
1139 main.log.error( "leaders() returned None" )
1140 except ( ValueError, TypeError ):
1141 main.log.exception( "Error parsing leaders" )
1142 main.log.error( repr( leaders ) )
1143 if missing:
Jon Halla440e872016-03-31 15:15:50 -07001144 for i in main.activeNodes:
1145 node = main.CLIs[i]
Jon Hall5cf14d52015-07-16 12:15:19 -07001146 response = node.leaders( jsonFormat=False)
1147 main.log.warn( str( node.name ) + " leaders output: \n" +
1148 str( response ) )
1149
Jon Halla440e872016-03-31 15:15:50 -07001150 partitions = onosCli.partitions()
Jon Hall5cf14d52015-07-16 12:15:19 -07001151 try:
1152 if partitions :
1153 parsedPartitions = json.loads( partitions )
1154 main.log.warn( json.dumps( parsedPartitions,
1155 sort_keys=True,
1156 indent=4,
1157 separators=( ',', ': ' ) ) )
1158 # TODO check for a leader in all paritions
1159 # TODO check for consistency among nodes
1160 else:
1161 main.log.error( "partitions() returned None" )
1162 except ( ValueError, TypeError ):
1163 main.log.exception( "Error parsing partitions" )
1164 main.log.error( repr( partitions ) )
Jon Halla440e872016-03-31 15:15:50 -07001165 pendingMap = onosCli.pendingMap()
Jon Hall5cf14d52015-07-16 12:15:19 -07001166 try:
1167 if pendingMap :
1168 parsedPending = json.loads( pendingMap )
1169 main.log.warn( json.dumps( parsedPending,
1170 sort_keys=True,
1171 indent=4,
1172 separators=( ',', ': ' ) ) )
1173 # TODO check something here?
1174 else:
1175 main.log.error( "pendingMap() returned None" )
1176 except ( ValueError, TypeError ):
1177 main.log.exception( "Error parsing pending map" )
1178 main.log.error( repr( pendingMap ) )
1179 # Print flowrules
Jon Halla440e872016-03-31 15:15:50 -07001180 node = main.activeNodes[0]
1181 main.log.debug( main.CLIs[node].flows( jsonFormat=False ) )
Jon Hall5cf14d52015-07-16 12:15:19 -07001182 main.step( "Wait a minute then ping again" )
1183 # the wait is above
1184 PingResult = main.TRUE
1185 for i in range( 8, 18 ):
1186 ping = main.Mininet1.pingHost( src="h" + str( i ),
1187 target="h" + str( i + 10 ) )
1188 PingResult = PingResult and ping
1189 if ping == main.FALSE:
1190 main.log.warn( "Ping failed between h" + str( i ) +
1191 " and h" + str( i + 10 ) )
1192 elif ping == main.TRUE:
1193 main.log.info( "Ping test passed!" )
1194 # Don't set PingResult or you'd override failures
1195 if PingResult == main.FALSE:
1196 main.log.error(
1197 "Intents have not been installed correctly, pings failed." )
1198 # TODO: pretty print
1199 main.log.warn( "ONOS1 intents: " )
1200 try:
Jon Halla440e872016-03-31 15:15:50 -07001201 tmpIntents = onosCli.intents()
Jon Hall5cf14d52015-07-16 12:15:19 -07001202 main.log.warn( json.dumps( json.loads( tmpIntents ),
1203 sort_keys=True,
1204 indent=4,
1205 separators=( ',', ': ' ) ) )
1206 except ( ValueError, TypeError ):
1207 main.log.warn( repr( tmpIntents ) )
1208 utilities.assert_equals(
1209 expect=main.TRUE,
1210 actual=PingResult,
1211 onpass="Intents have been installed correctly and pings work",
1212 onfail="Intents have not been installed correctly, pings failed." )
1213
1214 def CASE5( self, main ):
1215 """
1216 Reading state of ONOS
1217 """
1218 import json
1219 import time
Jon Halle1a3b752015-07-22 13:02:46 -07001220 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07001221 assert main, "main not defined"
1222 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07001223 assert main.CLIs, "main.CLIs not defined"
1224 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07001225
1226 main.case( "Setting up and gathering data for current state" )
1227 # The general idea for this test case is to pull the state of
1228 # ( intents,flows, topology,... ) from each ONOS node
1229 # We can then compare them with each other and also with past states
1230
1231 main.step( "Check that each switch has a master" )
1232 global mastershipState
1233 mastershipState = '[]'
1234
1235 # Assert that each device has a master
1236 rolesNotNull = main.TRUE
1237 threads = []
Jon Halla440e872016-03-31 15:15:50 -07001238 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07001239 t = main.Thread( target=main.CLIs[i].rolesNotNull,
Jon Hall5cf14d52015-07-16 12:15:19 -07001240 name="rolesNotNull-" + str( i ),
1241 args=[] )
1242 threads.append( t )
1243 t.start()
1244
1245 for t in threads:
1246 t.join()
1247 rolesNotNull = rolesNotNull and t.result
1248 utilities.assert_equals(
1249 expect=main.TRUE,
1250 actual=rolesNotNull,
1251 onpass="Each device has a master",
1252 onfail="Some devices don't have a master assigned" )
1253
1254 main.step( "Get the Mastership of each switch from each controller" )
1255 ONOSMastership = []
1256 mastershipCheck = main.FALSE
1257 consistentMastership = True
1258 rolesResults = True
1259 threads = []
Jon Halla440e872016-03-31 15:15:50 -07001260 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07001261 t = main.Thread( target=main.CLIs[i].roles,
Jon Hall5cf14d52015-07-16 12:15:19 -07001262 name="roles-" + str( i ),
1263 args=[] )
1264 threads.append( t )
1265 t.start()
1266
1267 for t in threads:
1268 t.join()
1269 ONOSMastership.append( t.result )
1270
Jon Halla440e872016-03-31 15:15:50 -07001271 for i in range( len( ONOSMastership ) ):
1272 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07001273 if not ONOSMastership[i] or "Error" in ONOSMastership[i]:
Jon Halla440e872016-03-31 15:15:50 -07001274 main.log.error( "Error in getting ONOS" + node + " roles" )
1275 main.log.warn( "ONOS" + node + " mastership response: " +
1276 repr( ONOSMastership[i] ) )
Jon Hall5cf14d52015-07-16 12:15:19 -07001277 rolesResults = False
1278 utilities.assert_equals(
1279 expect=True,
1280 actual=rolesResults,
1281 onpass="No error in reading roles output",
1282 onfail="Error in reading roles from ONOS" )
1283
1284 main.step( "Check for consistency in roles from each controller" )
1285 if all([ i == ONOSMastership[ 0 ] for i in ONOSMastership ] ):
1286 main.log.info(
1287 "Switch roles are consistent across all ONOS nodes" )
1288 else:
1289 consistentMastership = False
1290 utilities.assert_equals(
1291 expect=True,
1292 actual=consistentMastership,
1293 onpass="Switch roles are consistent across all ONOS nodes",
1294 onfail="ONOS nodes have different views of switch roles" )
1295
1296 if rolesResults and not consistentMastership:
Jon Halla440e872016-03-31 15:15:50 -07001297 for i in range( len( main.activeNodes ) ):
1298 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07001299 try:
1300 main.log.warn(
Jon Halla440e872016-03-31 15:15:50 -07001301 "ONOS" + node + " roles: ",
Jon Hall5cf14d52015-07-16 12:15:19 -07001302 json.dumps(
1303 json.loads( ONOSMastership[ i ] ),
1304 sort_keys=True,
1305 indent=4,
1306 separators=( ',', ': ' ) ) )
1307 except ( ValueError, TypeError ):
1308 main.log.warn( repr( ONOSMastership[ i ] ) )
1309 elif rolesResults and consistentMastership:
1310 mastershipCheck = main.TRUE
1311 mastershipState = ONOSMastership[ 0 ]
1312
1313 main.step( "Get the intents from each controller" )
1314 global intentState
1315 intentState = []
1316 ONOSIntents = []
1317 intentCheck = main.FALSE
1318 consistentIntents = True
1319 intentsResults = True
1320 threads = []
Jon Halla440e872016-03-31 15:15:50 -07001321 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07001322 t = main.Thread( target=main.CLIs[i].intents,
Jon Hall5cf14d52015-07-16 12:15:19 -07001323 name="intents-" + str( i ),
1324 args=[],
1325 kwargs={ 'jsonFormat': True } )
1326 threads.append( t )
1327 t.start()
1328
1329 for t in threads:
1330 t.join()
1331 ONOSIntents.append( t.result )
1332
Jon Halla440e872016-03-31 15:15:50 -07001333 for i in range( len( ONOSIntents ) ):
1334 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07001335 if not ONOSIntents[ i ] or "Error" in ONOSIntents[ i ]:
Jon Hall6e709752016-02-01 13:38:46 -08001336 main.log.error( "Error in getting ONOS" + node + " intents" )
1337 main.log.warn( "ONOS" + node + " intents response: " +
Jon Hall5cf14d52015-07-16 12:15:19 -07001338 repr( ONOSIntents[ i ] ) )
1339 intentsResults = False
1340 utilities.assert_equals(
1341 expect=True,
1342 actual=intentsResults,
1343 onpass="No error in reading intents output",
1344 onfail="Error in reading intents from ONOS" )
1345
1346 main.step( "Check for consistency in Intents from each controller" )
1347 if all([ sorted( i ) == sorted( ONOSIntents[ 0 ] ) for i in ONOSIntents ] ):
1348 main.log.info( "Intents are consistent across all ONOS " +
1349 "nodes" )
1350 else:
1351 consistentIntents = False
1352 main.log.error( "Intents not consistent" )
1353 utilities.assert_equals(
1354 expect=True,
1355 actual=consistentIntents,
1356 onpass="Intents are consistent across all ONOS nodes",
1357 onfail="ONOS nodes have different views of intents" )
1358
1359 if intentsResults:
1360 # Try to make it easy to figure out what is happening
1361 #
1362 # Intent ONOS1 ONOS2 ...
1363 # 0x01 INSTALLED INSTALLING
1364 # ... ... ...
1365 # ... ... ...
1366 title = " Id"
Jon Halla440e872016-03-31 15:15:50 -07001367 for n in main.activeNodes:
Jon Hall5cf14d52015-07-16 12:15:19 -07001368 title += " " * 10 + "ONOS" + str( n + 1 )
1369 main.log.warn( title )
1370 # get all intent keys in the cluster
1371 keys = []
Jon Halla440e872016-03-31 15:15:50 -07001372 try:
1373 # Get the set of all intent keys
Jon Hall5cf14d52015-07-16 12:15:19 -07001374 for nodeStr in ONOSIntents:
1375 node = json.loads( nodeStr )
1376 for intent in node:
Jon Halla440e872016-03-31 15:15:50 -07001377 keys.append( intent.get( 'id' ) )
1378 keys = set( keys )
1379 # For each intent key, print the state on each node
1380 for key in keys:
1381 row = "%-13s" % key
1382 for nodeStr in ONOSIntents:
1383 node = json.loads( nodeStr )
1384 for intent in node:
1385 if intent.get( 'id', "Error" ) == key:
1386 row += "%-15s" % intent.get( 'state' )
1387 main.log.warn( row )
1388 # End of intent state table
1389 except ValueError as e:
1390 main.log.exception( e )
1391 main.log.debug( "nodeStr was: " + repr( nodeStr ) )
Jon Hall5cf14d52015-07-16 12:15:19 -07001392
1393 if intentsResults and not consistentIntents:
1394 # print the json objects
Jon Halla440e872016-03-31 15:15:50 -07001395 n = str( main.activeNodes[-1] + 1 )
1396 main.log.debug( "ONOS" + n + " intents: " )
Jon Hall5cf14d52015-07-16 12:15:19 -07001397 main.log.debug( json.dumps( json.loads( ONOSIntents[ -1 ] ),
1398 sort_keys=True,
1399 indent=4,
1400 separators=( ',', ': ' ) ) )
Jon Halla440e872016-03-31 15:15:50 -07001401 for i in range( len( ONOSIntents ) ):
1402 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07001403 if ONOSIntents[ i ] != ONOSIntents[ -1 ]:
Jon Halla440e872016-03-31 15:15:50 -07001404 main.log.debug( "ONOS" + node + " intents: " )
Jon Hall5cf14d52015-07-16 12:15:19 -07001405 main.log.debug( json.dumps( json.loads( ONOSIntents[i] ),
1406 sort_keys=True,
1407 indent=4,
1408 separators=( ',', ': ' ) ) )
1409 else:
Jon Halla440e872016-03-31 15:15:50 -07001410 main.log.debug( "ONOS" + node + " intents match ONOS" +
1411 n + " intents" )
Jon Hall5cf14d52015-07-16 12:15:19 -07001412 elif intentsResults and consistentIntents:
1413 intentCheck = main.TRUE
1414 intentState = ONOSIntents[ 0 ]
1415
1416 main.step( "Get the flows from each controller" )
1417 global flowState
1418 flowState = []
1419 ONOSFlows = []
1420 ONOSFlowsJson = []
1421 flowCheck = main.FALSE
1422 consistentFlows = True
1423 flowsResults = True
1424 threads = []
Jon Halla440e872016-03-31 15:15:50 -07001425 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07001426 t = main.Thread( target=main.CLIs[i].flows,
Jon Hall5cf14d52015-07-16 12:15:19 -07001427 name="flows-" + str( i ),
1428 args=[],
1429 kwargs={ 'jsonFormat': True } )
1430 threads.append( t )
1431 t.start()
1432
1433 # NOTE: Flows command can take some time to run
1434 time.sleep(30)
1435 for t in threads:
1436 t.join()
1437 result = t.result
1438 ONOSFlows.append( result )
1439
Jon Halla440e872016-03-31 15:15:50 -07001440 for i in range( len( ONOSFlows ) ):
1441 num = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07001442 if not ONOSFlows[ i ] or "Error" in ONOSFlows[ i ]:
1443 main.log.error( "Error in getting ONOS" + num + " flows" )
1444 main.log.warn( "ONOS" + num + " flows response: " +
1445 repr( ONOSFlows[ i ] ) )
1446 flowsResults = False
1447 ONOSFlowsJson.append( None )
1448 else:
1449 try:
1450 ONOSFlowsJson.append( json.loads( ONOSFlows[ i ] ) )
1451 except ( ValueError, TypeError ):
1452 # FIXME: change this to log.error?
1453 main.log.exception( "Error in parsing ONOS" + num +
1454 " response as json." )
1455 main.log.error( repr( ONOSFlows[ i ] ) )
1456 ONOSFlowsJson.append( None )
1457 flowsResults = False
1458 utilities.assert_equals(
1459 expect=True,
1460 actual=flowsResults,
1461 onpass="No error in reading flows output",
1462 onfail="Error in reading flows from ONOS" )
1463
1464 main.step( "Check for consistency in Flows from each controller" )
1465 tmp = [ len( i ) == len( ONOSFlowsJson[ 0 ] ) for i in ONOSFlowsJson ]
1466 if all( tmp ):
1467 main.log.info( "Flow count is consistent across all ONOS nodes" )
1468 else:
1469 consistentFlows = False
1470 utilities.assert_equals(
1471 expect=True,
1472 actual=consistentFlows,
1473 onpass="The flow count is consistent across all ONOS nodes",
1474 onfail="ONOS nodes have different flow counts" )
1475
1476 if flowsResults and not consistentFlows:
Jon Halla440e872016-03-31 15:15:50 -07001477 for i in range( len( ONOSFlows ) ):
1478 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07001479 try:
1480 main.log.warn(
Jon Halla440e872016-03-31 15:15:50 -07001481 "ONOS" + node + " flows: " +
Jon Hall5cf14d52015-07-16 12:15:19 -07001482 json.dumps( json.loads( ONOSFlows[i] ), sort_keys=True,
1483 indent=4, separators=( ',', ': ' ) ) )
1484 except ( ValueError, TypeError ):
Jon Halla440e872016-03-31 15:15:50 -07001485 main.log.warn( "ONOS" + node + " flows: " +
1486 repr( ONOSFlows[ i ] ) )
Jon Hall5cf14d52015-07-16 12:15:19 -07001487 elif flowsResults and consistentFlows:
1488 flowCheck = main.TRUE
1489 flowState = ONOSFlows[ 0 ]
1490
1491 main.step( "Get the OF Table entries" )
1492 global flows
1493 flows = []
1494 for i in range( 1, 29 ):
Jon Halla440e872016-03-31 15:15:50 -07001495 flows.append( main.Mininet1.getFlowTable( "s" + str( i ), version="1.3", debug=False ) )
Jon Hall5cf14d52015-07-16 12:15:19 -07001496 if flowCheck == main.FALSE:
1497 for table in flows:
1498 main.log.warn( table )
1499 # TODO: Compare switch flow tables with ONOS flow tables
1500
1501 main.step( "Start continuous pings" )
1502 main.Mininet2.pingLong(
1503 src=main.params[ 'PING' ][ 'source1' ],
1504 target=main.params[ 'PING' ][ 'target1' ],
1505 pingTime=500 )
1506 main.Mininet2.pingLong(
1507 src=main.params[ 'PING' ][ 'source2' ],
1508 target=main.params[ 'PING' ][ 'target2' ],
1509 pingTime=500 )
1510 main.Mininet2.pingLong(
1511 src=main.params[ 'PING' ][ 'source3' ],
1512 target=main.params[ 'PING' ][ 'target3' ],
1513 pingTime=500 )
1514 main.Mininet2.pingLong(
1515 src=main.params[ 'PING' ][ 'source4' ],
1516 target=main.params[ 'PING' ][ 'target4' ],
1517 pingTime=500 )
1518 main.Mininet2.pingLong(
1519 src=main.params[ 'PING' ][ 'source5' ],
1520 target=main.params[ 'PING' ][ 'target5' ],
1521 pingTime=500 )
1522 main.Mininet2.pingLong(
1523 src=main.params[ 'PING' ][ 'source6' ],
1524 target=main.params[ 'PING' ][ 'target6' ],
1525 pingTime=500 )
1526 main.Mininet2.pingLong(
1527 src=main.params[ 'PING' ][ 'source7' ],
1528 target=main.params[ 'PING' ][ 'target7' ],
1529 pingTime=500 )
1530 main.Mininet2.pingLong(
1531 src=main.params[ 'PING' ][ 'source8' ],
1532 target=main.params[ 'PING' ][ 'target8' ],
1533 pingTime=500 )
1534 main.Mininet2.pingLong(
1535 src=main.params[ 'PING' ][ 'source9' ],
1536 target=main.params[ 'PING' ][ 'target9' ],
1537 pingTime=500 )
1538 main.Mininet2.pingLong(
1539 src=main.params[ 'PING' ][ 'source10' ],
1540 target=main.params[ 'PING' ][ 'target10' ],
1541 pingTime=500 )
1542
1543 main.step( "Collecting topology information from ONOS" )
1544 devices = []
1545 threads = []
Jon Halla440e872016-03-31 15:15:50 -07001546 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07001547 t = main.Thread( target=main.CLIs[i].devices,
Jon Hall5cf14d52015-07-16 12:15:19 -07001548 name="devices-" + str( i ),
1549 args=[ ] )
1550 threads.append( t )
1551 t.start()
1552
1553 for t in threads:
1554 t.join()
1555 devices.append( t.result )
1556 hosts = []
1557 threads = []
Jon Halla440e872016-03-31 15:15:50 -07001558 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07001559 t = main.Thread( target=main.CLIs[i].hosts,
Jon Hall5cf14d52015-07-16 12:15:19 -07001560 name="hosts-" + str( i ),
1561 args=[ ] )
1562 threads.append( t )
1563 t.start()
1564
1565 for t in threads:
1566 t.join()
1567 try:
1568 hosts.append( json.loads( t.result ) )
1569 except ( ValueError, TypeError ):
1570 # FIXME: better handling of this, print which node
1571 # Maybe use thread name?
1572 main.log.exception( "Error parsing json output of hosts" )
Jon Hall3afe4c92015-12-14 19:30:38 -08001573 main.log.warn( repr( t.result ) )
Jon Hall5cf14d52015-07-16 12:15:19 -07001574 hosts.append( None )
1575
1576 ports = []
1577 threads = []
Jon Halla440e872016-03-31 15:15:50 -07001578 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07001579 t = main.Thread( target=main.CLIs[i].ports,
Jon Hall5cf14d52015-07-16 12:15:19 -07001580 name="ports-" + str( i ),
1581 args=[ ] )
1582 threads.append( t )
1583 t.start()
1584
1585 for t in threads:
1586 t.join()
1587 ports.append( t.result )
1588 links = []
1589 threads = []
Jon Halla440e872016-03-31 15:15:50 -07001590 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07001591 t = main.Thread( target=main.CLIs[i].links,
Jon Hall5cf14d52015-07-16 12:15:19 -07001592 name="links-" + str( i ),
1593 args=[ ] )
1594 threads.append( t )
1595 t.start()
1596
1597 for t in threads:
1598 t.join()
1599 links.append( t.result )
1600 clusters = []
1601 threads = []
Jon Halla440e872016-03-31 15:15:50 -07001602 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07001603 t = main.Thread( target=main.CLIs[i].clusters,
Jon Hall5cf14d52015-07-16 12:15:19 -07001604 name="clusters-" + str( i ),
1605 args=[ ] )
1606 threads.append( t )
1607 t.start()
1608
1609 for t in threads:
1610 t.join()
1611 clusters.append( t.result )
1612 # Compare json objects for hosts and dataplane clusters
1613
1614 # hosts
1615 main.step( "Host view is consistent across ONOS nodes" )
1616 consistentHostsResult = main.TRUE
1617 for controller in range( len( hosts ) ):
Jon Halla440e872016-03-31 15:15:50 -07001618 controllerStr = str( main.activeNodes[controller] + 1 )
Jon Hall3afe4c92015-12-14 19:30:38 -08001619 if hosts[ controller ] and "Error" not in hosts[ controller ]:
Jon Hall5cf14d52015-07-16 12:15:19 -07001620 if hosts[ controller ] == hosts[ 0 ]:
1621 continue
1622 else: # hosts not consistent
1623 main.log.error( "hosts from ONOS" +
1624 controllerStr +
1625 " is inconsistent with ONOS1" )
1626 main.log.warn( repr( hosts[ controller ] ) )
1627 consistentHostsResult = main.FALSE
1628
1629 else:
1630 main.log.error( "Error in getting ONOS hosts from ONOS" +
1631 controllerStr )
1632 consistentHostsResult = main.FALSE
1633 main.log.warn( "ONOS" + controllerStr +
1634 " hosts response: " +
1635 repr( hosts[ controller ] ) )
1636 utilities.assert_equals(
1637 expect=main.TRUE,
1638 actual=consistentHostsResult,
1639 onpass="Hosts view is consistent across all ONOS nodes",
1640 onfail="ONOS nodes have different views of hosts" )
1641
1642 main.step( "Each host has an IP address" )
1643 ipResult = main.TRUE
1644 for controller in range( 0, len( hosts ) ):
Jon Halla440e872016-03-31 15:15:50 -07001645 controllerStr = str( main.activeNodes[controller] + 1 )
Jon Hall3afe4c92015-12-14 19:30:38 -08001646 if hosts[ controller ]:
1647 for host in hosts[ controller ]:
1648 if not host.get( 'ipAddresses', [ ] ):
Jon Hallf3d16e72015-12-16 17:45:08 -08001649 main.log.error( "Error with host ips on controller" +
Jon Hall3afe4c92015-12-14 19:30:38 -08001650 controllerStr + ": " + str( host ) )
1651 ipResult = main.FALSE
Jon Hall5cf14d52015-07-16 12:15:19 -07001652 utilities.assert_equals(
1653 expect=main.TRUE,
1654 actual=ipResult,
1655 onpass="The ips of the hosts aren't empty",
1656 onfail="The ip of at least one host is missing" )
1657
1658 # Strongly connected clusters of devices
1659 main.step( "Cluster view is consistent across ONOS nodes" )
1660 consistentClustersResult = main.TRUE
1661 for controller in range( len( clusters ) ):
Jon Halla440e872016-03-31 15:15:50 -07001662 controllerStr = str( main.activeNodes[controller] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07001663 if "Error" not in clusters[ controller ]:
1664 if clusters[ controller ] == clusters[ 0 ]:
1665 continue
1666 else: # clusters not consistent
1667 main.log.error( "clusters from ONOS" + controllerStr +
1668 " is inconsistent with ONOS1" )
1669 consistentClustersResult = main.FALSE
1670
1671 else:
1672 main.log.error( "Error in getting dataplane clusters " +
1673 "from ONOS" + controllerStr )
1674 consistentClustersResult = main.FALSE
1675 main.log.warn( "ONOS" + controllerStr +
1676 " clusters response: " +
1677 repr( clusters[ controller ] ) )
1678 utilities.assert_equals(
1679 expect=main.TRUE,
1680 actual=consistentClustersResult,
1681 onpass="Clusters view is consistent across all ONOS nodes",
1682 onfail="ONOS nodes have different views of clusters" )
Jon Hall172b7ba2016-04-07 18:12:20 -07001683 if consistentClustersResult != main.TRUE:
1684 main.log.debug( clusters )
Jon Hall5cf14d52015-07-16 12:15:19 -07001685 # there should always only be one cluster
1686 main.step( "Cluster view correct across ONOS nodes" )
1687 try:
1688 numClusters = len( json.loads( clusters[ 0 ] ) )
1689 except ( ValueError, TypeError ):
1690 main.log.exception( "Error parsing clusters[0]: " +
1691 repr( clusters[ 0 ] ) )
Jon Hall6e709752016-02-01 13:38:46 -08001692 numClusters = "ERROR"
Jon Hall5cf14d52015-07-16 12:15:19 -07001693 clusterResults = main.FALSE
1694 if numClusters == 1:
1695 clusterResults = main.TRUE
1696 utilities.assert_equals(
1697 expect=1,
1698 actual=numClusters,
1699 onpass="ONOS shows 1 SCC",
1700 onfail="ONOS shows " + str( numClusters ) + " SCCs" )
1701
1702 main.step( "Comparing ONOS topology to MN" )
1703 devicesResults = main.TRUE
1704 linksResults = main.TRUE
1705 hostsResults = main.TRUE
1706 mnSwitches = main.Mininet1.getSwitches()
1707 mnLinks = main.Mininet1.getLinks()
1708 mnHosts = main.Mininet1.getHosts()
Jon Halla440e872016-03-31 15:15:50 -07001709 for controller in main.activeNodes:
1710 controllerStr = str( main.activeNodes[controller] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07001711 if devices[ controller ] and ports[ controller ] and\
1712 "Error" not in devices[ controller ] and\
1713 "Error" not in ports[ controller ]:
Jon Halle1a3b752015-07-22 13:02:46 -07001714 currentDevicesResult = main.Mininet1.compareSwitches(
1715 mnSwitches,
1716 json.loads( devices[ controller ] ),
1717 json.loads( ports[ controller ] ) )
Jon Hall5cf14d52015-07-16 12:15:19 -07001718 else:
1719 currentDevicesResult = main.FALSE
1720 utilities.assert_equals( expect=main.TRUE,
1721 actual=currentDevicesResult,
1722 onpass="ONOS" + controllerStr +
1723 " Switches view is correct",
1724 onfail="ONOS" + controllerStr +
1725 " Switches view is incorrect" )
1726 if links[ controller ] and "Error" not in links[ controller ]:
1727 currentLinksResult = main.Mininet1.compareLinks(
1728 mnSwitches, mnLinks,
1729 json.loads( links[ controller ] ) )
1730 else:
1731 currentLinksResult = main.FALSE
1732 utilities.assert_equals( expect=main.TRUE,
1733 actual=currentLinksResult,
1734 onpass="ONOS" + controllerStr +
1735 " links view is correct",
1736 onfail="ONOS" + controllerStr +
1737 " links view is incorrect" )
1738
Jon Hall657cdf62015-12-17 14:40:51 -08001739 if hosts[ controller ] and "Error" not in hosts[ controller ]:
Jon Hall5cf14d52015-07-16 12:15:19 -07001740 currentHostsResult = main.Mininet1.compareHosts(
1741 mnHosts,
1742 hosts[ controller ] )
1743 else:
1744 currentHostsResult = main.FALSE
1745 utilities.assert_equals( expect=main.TRUE,
1746 actual=currentHostsResult,
1747 onpass="ONOS" + controllerStr +
1748 " hosts exist in Mininet",
1749 onfail="ONOS" + controllerStr +
1750 " hosts don't match Mininet" )
1751
1752 devicesResults = devicesResults and currentDevicesResult
1753 linksResults = linksResults and currentLinksResult
1754 hostsResults = hostsResults and currentHostsResult
1755
1756 main.step( "Device information is correct" )
1757 utilities.assert_equals(
1758 expect=main.TRUE,
1759 actual=devicesResults,
1760 onpass="Device information is correct",
1761 onfail="Device information is incorrect" )
1762
1763 main.step( "Links are correct" )
1764 utilities.assert_equals(
1765 expect=main.TRUE,
1766 actual=linksResults,
1767 onpass="Link are correct",
1768 onfail="Links are incorrect" )
1769
1770 main.step( "Hosts are correct" )
1771 utilities.assert_equals(
1772 expect=main.TRUE,
1773 actual=hostsResults,
1774 onpass="Hosts are correct",
1775 onfail="Hosts are incorrect" )
1776
1777 def CASE6( self, main ):
1778 """
1779 The Failure case.
1780 """
1781 import time
Jon Halle1a3b752015-07-22 13:02:46 -07001782 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07001783 assert main, "main not defined"
1784 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07001785 assert main.CLIs, "main.CLIs not defined"
1786 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07001787 try:
1788 labels
1789 except NameError:
1790 main.log.error( "labels not defined, setting to []" )
1791 global labels
1792 labels = []
1793 try:
1794 data
1795 except NameError:
1796 main.log.error( "data not defined, setting to []" )
1797 global data
1798 data = []
1799 # Reset non-persistent variables
1800 try:
1801 iCounterValue = 0
1802 except NameError:
1803 main.log.error( "iCounterValue not defined, setting to 0" )
1804 iCounterValue = 0
1805
1806 main.case( "Restart entire ONOS cluster" )
1807
Jon Hall5ec6b1b2015-09-17 18:20:14 -07001808 main.step( "Checking ONOS Logs for errors" )
1809 for node in main.nodes:
1810 main.log.debug( "Checking logs for errors on " + node.name + ":" )
1811 main.log.warn( main.ONOSbench.checkLogs( node.ip_address ) )
1812
Jon Hall5cf14d52015-07-16 12:15:19 -07001813 main.step( "Killing ONOS nodes" )
1814 killResults = main.TRUE
1815 killTime = time.time()
Jon Halle1a3b752015-07-22 13:02:46 -07001816 for node in main.nodes:
Jon Hall5cf14d52015-07-16 12:15:19 -07001817 killed = main.ONOSbench.onosKill( node.ip_address )
1818 killResults = killResults and killed
1819 utilities.assert_equals( expect=main.TRUE, actual=killResults,
1820 onpass="ONOS nodes killed",
1821 onfail="ONOS kill unsuccessful" )
1822
1823 main.step( "Checking if ONOS is up yet" )
1824 for i in range( 2 ):
1825 onosIsupResult = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07001826 for node in main.nodes:
Jon Hall5cf14d52015-07-16 12:15:19 -07001827 started = main.ONOSbench.isup( node.ip_address )
1828 if not started:
1829 main.log.error( node.name + " didn't start!" )
1830 onosIsupResult = onosIsupResult and started
1831 if onosIsupResult == main.TRUE:
1832 break
1833 utilities.assert_equals( expect=main.TRUE, actual=onosIsupResult,
1834 onpass="ONOS restarted",
1835 onfail="ONOS restart NOT successful" )
1836
1837 main.log.step( "Starting ONOS CLI sessions" )
1838 cliResults = main.TRUE
1839 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07001840 for i in range( main.numCtrls ):
1841 t = main.Thread( target=main.CLIs[i].startOnosCli,
Jon Hall5cf14d52015-07-16 12:15:19 -07001842 name="startOnosCli-" + str( i ),
Jon Halle1a3b752015-07-22 13:02:46 -07001843 args=[main.nodes[i].ip_address] )
Jon Hall5cf14d52015-07-16 12:15:19 -07001844 threads.append( t )
1845 t.start()
1846
1847 for t in threads:
1848 t.join()
1849 cliResults = cliResults and t.result
1850 utilities.assert_equals( expect=main.TRUE, actual=cliResults,
1851 onpass="ONOS cli started",
1852 onfail="ONOS clis did not restart" )
1853
Jon Hall6e709752016-02-01 13:38:46 -08001854 for i in range( 10 ):
1855 ready = True
1856 for cli in main.CLIs:
1857 output = cli.summary()
1858 if not output:
1859 ready = False
1860 time.sleep( 30 )
1861 utilities.assert_equals( expect=True, actual=ready,
1862 onpass="ONOS summary command succeded",
1863 onfail="ONOS summary command failed" )
1864 if not ready:
1865 main.cleanup()
1866 main.exit()
1867
Jon Hall5cf14d52015-07-16 12:15:19 -07001868 # Grab the time of restart so we chan check how long the gossip
1869 # protocol has had time to work
1870 main.restartTime = time.time() - killTime
1871 main.log.debug( "Restart time: " + str( main.restartTime ) )
1872 labels.append( "Restart" )
1873 data.append( str( main.restartTime ) )
1874
Jon Hall5cf14d52015-07-16 12:15:19 -07001875 # Rerun for election on restarted nodes
1876 runResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07001877 for cli in main.CLIs:
Jon Halla440e872016-03-31 15:15:50 -07001878 run = cli.electionTestRun()
Jon Hall5cf14d52015-07-16 12:15:19 -07001879 if run != main.TRUE:
1880 main.log.error( "Error running for election on " + cli.name )
1881 runResults = runResults and run
1882 utilities.assert_equals( expect=main.TRUE, actual=runResults,
1883 onpass="Reran for election",
1884 onfail="Failed to rerun for election" )
1885
1886 # TODO: Make this configurable
1887 time.sleep( 60 )
Jon Halla440e872016-03-31 15:15:50 -07001888 node = main.activeNodes[0]
1889 main.log.debug( main.CLIs[node].nodes( jsonFormat=False ) )
1890 main.log.debug( main.CLIs[node].leaders( jsonFormat=False ) )
1891 main.log.debug( main.CLIs[node].partitions( jsonFormat=False ) )
Jon Hall5cf14d52015-07-16 12:15:19 -07001892
1893 def CASE7( self, main ):
1894 """
1895 Check state after ONOS failure
1896 """
1897 import json
Jon Halle1a3b752015-07-22 13:02:46 -07001898 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07001899 assert main, "main not defined"
1900 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07001901 assert main.CLIs, "main.CLIs not defined"
1902 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07001903 main.case( "Running ONOS Constant State Tests" )
1904
1905 main.step( "Check that each switch has a master" )
1906 # Assert that each device has a master
1907 rolesNotNull = main.TRUE
1908 threads = []
Jon Halla440e872016-03-31 15:15:50 -07001909 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07001910 t = main.Thread( target=main.CLIs[i].rolesNotNull,
Jon Hall5cf14d52015-07-16 12:15:19 -07001911 name="rolesNotNull-" + str( i ),
1912 args=[ ] )
1913 threads.append( t )
1914 t.start()
1915
1916 for t in threads:
1917 t.join()
1918 rolesNotNull = rolesNotNull and t.result
1919 utilities.assert_equals(
1920 expect=main.TRUE,
1921 actual=rolesNotNull,
1922 onpass="Each device has a master",
1923 onfail="Some devices don't have a master assigned" )
1924
1925 main.step( "Read device roles from ONOS" )
1926 ONOSMastership = []
1927 mastershipCheck = main.FALSE
1928 consistentMastership = True
1929 rolesResults = True
1930 threads = []
Jon Halla440e872016-03-31 15:15:50 -07001931 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07001932 t = main.Thread( target=main.CLIs[i].roles,
Jon Hall5cf14d52015-07-16 12:15:19 -07001933 name="roles-" + str( i ),
1934 args=[] )
1935 threads.append( t )
1936 t.start()
1937
1938 for t in threads:
1939 t.join()
1940 ONOSMastership.append( t.result )
1941
Jon Halla440e872016-03-31 15:15:50 -07001942 for i in range( len( ONOSMastership ) ):
1943 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07001944 if not ONOSMastership[i] or "Error" in ONOSMastership[i]:
Jon Halla440e872016-03-31 15:15:50 -07001945 main.log.error( "Error in getting ONOS" + node + " roles" )
1946 main.log.warn( "ONOS" + node + " mastership response: " +
1947 repr( ONOSMastership[i] ) )
Jon Hall5cf14d52015-07-16 12:15:19 -07001948 rolesResults = False
1949 utilities.assert_equals(
1950 expect=True,
1951 actual=rolesResults,
1952 onpass="No error in reading roles output",
1953 onfail="Error in reading roles from ONOS" )
1954
1955 main.step( "Check for consistency in roles from each controller" )
1956 if all([ i == ONOSMastership[ 0 ] for i in ONOSMastership ] ):
1957 main.log.info(
1958 "Switch roles are consistent across all ONOS nodes" )
1959 else:
1960 consistentMastership = False
1961 utilities.assert_equals(
1962 expect=True,
1963 actual=consistentMastership,
1964 onpass="Switch roles are consistent across all ONOS nodes",
1965 onfail="ONOS nodes have different views of switch roles" )
1966
1967 if rolesResults and not consistentMastership:
Jon Halla440e872016-03-31 15:15:50 -07001968 for i in range( len( ONOSMastership ) ):
1969 node = str( main.activeNodes[i] + 1 )
1970 main.log.warn( "ONOS" + node + " roles: ",
Jon Hall6e709752016-02-01 13:38:46 -08001971 json.dumps( json.loads( ONOSMastership[ i ] ),
1972 sort_keys=True,
1973 indent=4,
1974 separators=( ',', ': ' ) ) )
1975 elif rolesResults and consistentMastership:
Jon Hall5cf14d52015-07-16 12:15:19 -07001976 mastershipCheck = main.TRUE
1977
Jon Hall5cf14d52015-07-16 12:15:19 -07001978 # NOTE: we expect mastership to change on controller failure
1979
1980 main.step( "Get the intents and compare across all nodes" )
1981 ONOSIntents = []
1982 intentCheck = main.FALSE
1983 consistentIntents = True
1984 intentsResults = True
1985 threads = []
Jon Halla440e872016-03-31 15:15:50 -07001986 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07001987 t = main.Thread( target=main.CLIs[i].intents,
Jon Hall5cf14d52015-07-16 12:15:19 -07001988 name="intents-" + str( i ),
1989 args=[],
1990 kwargs={ 'jsonFormat': True } )
1991 threads.append( t )
1992 t.start()
1993
1994 for t in threads:
1995 t.join()
1996 ONOSIntents.append( t.result )
1997
Jon Halla440e872016-03-31 15:15:50 -07001998 for i in range( len( ONOSIntents) ):
1999 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07002000 if not ONOSIntents[ i ] or "Error" in ONOSIntents[ i ]:
Jon Halla440e872016-03-31 15:15:50 -07002001 main.log.error( "Error in getting ONOS" + node + " intents" )
2002 main.log.warn( "ONOS" + node + " intents response: " +
Jon Hall5cf14d52015-07-16 12:15:19 -07002003 repr( ONOSIntents[ i ] ) )
2004 intentsResults = False
2005 utilities.assert_equals(
2006 expect=True,
2007 actual=intentsResults,
2008 onpass="No error in reading intents output",
2009 onfail="Error in reading intents from ONOS" )
2010
2011 main.step( "Check for consistency in Intents from each controller" )
2012 if all([ sorted( i ) == sorted( ONOSIntents[ 0 ] ) for i in ONOSIntents ] ):
2013 main.log.info( "Intents are consistent across all ONOS " +
2014 "nodes" )
2015 else:
2016 consistentIntents = False
2017
2018 # Try to make it easy to figure out what is happening
2019 #
2020 # Intent ONOS1 ONOS2 ...
2021 # 0x01 INSTALLED INSTALLING
2022 # ... ... ...
2023 # ... ... ...
2024 title = " ID"
Jon Halla440e872016-03-31 15:15:50 -07002025 for n in main.activeNodes:
Jon Hall5cf14d52015-07-16 12:15:19 -07002026 title += " " * 10 + "ONOS" + str( n + 1 )
2027 main.log.warn( title )
2028 # get all intent keys in the cluster
2029 keys = []
2030 for nodeStr in ONOSIntents:
2031 node = json.loads( nodeStr )
2032 for intent in node:
2033 keys.append( intent.get( 'id' ) )
2034 keys = set( keys )
2035 for key in keys:
2036 row = "%-13s" % key
2037 for nodeStr in ONOSIntents:
2038 node = json.loads( nodeStr )
2039 for intent in node:
2040 if intent.get( 'id' ) == key:
2041 row += "%-15s" % intent.get( 'state' )
2042 main.log.warn( row )
2043 # End table view
2044
2045 utilities.assert_equals(
2046 expect=True,
2047 actual=consistentIntents,
2048 onpass="Intents are consistent across all ONOS nodes",
2049 onfail="ONOS nodes have different views of intents" )
2050 intentStates = []
2051 for node in ONOSIntents: # Iter through ONOS nodes
2052 nodeStates = []
2053 # Iter through intents of a node
2054 try:
2055 for intent in json.loads( node ):
2056 nodeStates.append( intent[ 'state' ] )
2057 except ( ValueError, TypeError ):
2058 main.log.exception( "Error in parsing intents" )
2059 main.log.error( repr( node ) )
2060 intentStates.append( nodeStates )
2061 out = [ (i, nodeStates.count( i ) ) for i in set( nodeStates ) ]
2062 main.log.info( dict( out ) )
2063
2064 if intentsResults and not consistentIntents:
Jon Halla440e872016-03-31 15:15:50 -07002065 for i in range( len( main.activeNodes ) ):
2066 node = str( main.activeNodes[i] + 1 )
2067 main.log.warn( "ONOS" + node + " intents: " )
Jon Hall5cf14d52015-07-16 12:15:19 -07002068 main.log.warn( json.dumps(
2069 json.loads( ONOSIntents[ i ] ),
2070 sort_keys=True,
2071 indent=4,
2072 separators=( ',', ': ' ) ) )
2073 elif intentsResults and consistentIntents:
2074 intentCheck = main.TRUE
2075
2076 # NOTE: Store has no durability, so intents are lost across system
2077 # restarts
2078 """
2079 main.step( "Compare current intents with intents before the failure" )
2080 # NOTE: this requires case 5 to pass for intentState to be set.
2081 # maybe we should stop the test if that fails?
2082 sameIntents = main.FALSE
Jon Halla440e872016-03-31 15:15:50 -07002083 try:
2084 intentState
2085 except NameError:
2086 main.log.warn( "No previous intent state was saved" )
2087 else:
2088 if intentState and intentState == ONOSIntents[ 0 ]:
2089 sameIntents = main.TRUE
2090 main.log.info( "Intents are consistent with before failure" )
2091 # TODO: possibly the states have changed? we may need to figure out
2092 # what the acceptable states are
2093 elif len( intentState ) == len( ONOSIntents[ 0 ] ):
2094 sameIntents = main.TRUE
2095 try:
2096 before = json.loads( intentState )
2097 after = json.loads( ONOSIntents[ 0 ] )
2098 for intent in before:
2099 if intent not in after:
2100 sameIntents = main.FALSE
2101 main.log.debug( "Intent is not currently in ONOS " +
2102 "(at least in the same form):" )
2103 main.log.debug( json.dumps( intent ) )
2104 except ( ValueError, TypeError ):
2105 main.log.exception( "Exception printing intents" )
2106 main.log.debug( repr( ONOSIntents[0] ) )
2107 main.log.debug( repr( intentState ) )
2108 if sameIntents == main.FALSE:
2109 try:
2110 main.log.debug( "ONOS intents before: " )
2111 main.log.debug( json.dumps( json.loads( intentState ),
2112 sort_keys=True, indent=4,
2113 separators=( ',', ': ' ) ) )
2114 main.log.debug( "Current ONOS intents: " )
2115 main.log.debug( json.dumps( json.loads( ONOSIntents[ 0 ] ),
2116 sort_keys=True, indent=4,
2117 separators=( ',', ': ' ) ) )
2118 except ( ValueError, TypeError ):
2119 main.log.exception( "Exception printing intents" )
2120 main.log.debug( repr( ONOSIntents[0] ) )
2121 main.log.debug( repr( intentState ) )
2122 utilities.assert_equals(
2123 expect=main.TRUE,
2124 actual=sameIntents,
2125 onpass="Intents are consistent with before failure",
2126 onfail="The Intents changed during failure" )
Jon Hall5cf14d52015-07-16 12:15:19 -07002127 intentCheck = intentCheck and sameIntents
2128 """
2129 main.step( "Get the OF Table entries and compare to before " +
2130 "component failure" )
2131 FlowTables = main.TRUE
Jon Hall5cf14d52015-07-16 12:15:19 -07002132 for i in range( 28 ):
2133 main.log.info( "Checking flow table on s" + str( i + 1 ) )
GlennRC68467eb2015-11-16 18:01:01 -08002134 tmpFlows = main.Mininet1.getFlowTable( "s" + str( i + 1 ), version="1.3", debug=False )
Jon Hall41d39f12016-04-11 22:54:35 -07002135 curSwitch = main.Mininet1.flowTableComp( flows[i], tmpFlows )
2136 FlowTables = FlowTables and curSwitch
2137 if curSwitch == main.FALSE:
GlennRC68467eb2015-11-16 18:01:01 -08002138 main.log.warn( "Differences in flow table for switch: s{}".format( i + 1 ) )
Jon Hall5cf14d52015-07-16 12:15:19 -07002139 utilities.assert_equals(
2140 expect=main.TRUE,
2141 actual=FlowTables,
2142 onpass="No changes were found in the flow tables",
2143 onfail="Changes were found in the flow tables" )
2144
2145 main.Mininet2.pingLongKill()
2146 '''
2147 # main.step( "Check the continuous pings to ensure that no packets " +
2148 # "were dropped during component failure" )
2149 main.Mininet2.pingKill( main.params[ 'TESTONUSER' ],
2150 main.params[ 'TESTONIP' ] )
2151 LossInPings = main.FALSE
2152 # NOTE: checkForLoss returns main.FALSE with 0% packet loss
2153 for i in range( 8, 18 ):
2154 main.log.info(
2155 "Checking for a loss in pings along flow from s" +
2156 str( i ) )
2157 LossInPings = main.Mininet2.checkForLoss(
2158 "/tmp/ping.h" +
2159 str( i ) ) or LossInPings
2160 if LossInPings == main.TRUE:
2161 main.log.info( "Loss in ping detected" )
2162 elif LossInPings == main.ERROR:
2163 main.log.info( "There are multiple mininet process running" )
2164 elif LossInPings == main.FALSE:
2165 main.log.info( "No Loss in the pings" )
2166 main.log.info( "No loss of dataplane connectivity" )
2167 # utilities.assert_equals(
2168 # expect=main.FALSE,
2169 # actual=LossInPings,
2170 # onpass="No Loss of connectivity",
2171 # onfail="Loss of dataplane connectivity detected" )
2172
2173 # NOTE: Since intents are not persisted with IntnentStore,
2174 # we expect loss in dataplane connectivity
2175 LossInPings = main.FALSE
2176 '''
2177
2178 main.step( "Leadership Election is still functional" )
2179 # Test of LeadershipElection
2180 leaderList = []
2181 leaderResult = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07002182
2183 for i in main.activeNodes:
2184 cli = main.CLIs[i]
Jon Hall5cf14d52015-07-16 12:15:19 -07002185 leaderN = cli.electionTestLeader()
2186 leaderList.append( leaderN )
2187 if leaderN == main.FALSE:
2188 # error in response
2189 main.log.error( "Something is wrong with " +
2190 "electionTestLeader function, check the" +
2191 " error logs" )
2192 leaderResult = main.FALSE
2193 elif leaderN is None:
2194 main.log.error( cli.name +
2195 " shows no leader for the election-app." )
2196 leaderResult = main.FALSE
2197 if len( set( leaderList ) ) != 1:
2198 leaderResult = main.FALSE
2199 main.log.error(
2200 "Inconsistent view of leader for the election test app" )
2201 # TODO: print the list
2202 utilities.assert_equals(
2203 expect=main.TRUE,
2204 actual=leaderResult,
2205 onpass="Leadership election passed",
2206 onfail="Something went wrong with Leadership election" )
2207
2208 def CASE8( self, main ):
2209 """
2210 Compare topo
2211 """
2212 import json
2213 import time
Jon Halle1a3b752015-07-22 13:02:46 -07002214 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002215 assert main, "main not defined"
2216 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07002217 assert main.CLIs, "main.CLIs not defined"
2218 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002219
2220 main.case( "Compare ONOS Topology view to Mininet topology" )
Jon Hall783bbf92015-07-23 14:33:19 -07002221 main.caseExplanation = "Compare topology objects between Mininet" +\
Jon Hall5cf14d52015-07-16 12:15:19 -07002222 " and ONOS"
Jon Hall5cf14d52015-07-16 12:15:19 -07002223 topoResult = main.FALSE
Jon Hall6e709752016-02-01 13:38:46 -08002224 topoFailMsg = "ONOS topology don't match Mininet"
Jon Hall5cf14d52015-07-16 12:15:19 -07002225 elapsed = 0
2226 count = 0
Jon Halle9b1fa32015-12-08 15:32:21 -08002227 main.step( "Comparing ONOS topology to MN topology" )
Jon Hall5cf14d52015-07-16 12:15:19 -07002228 startTime = time.time()
2229 # Give time for Gossip to work
Jon Halle9b1fa32015-12-08 15:32:21 -08002230 while topoResult == main.FALSE and ( elapsed < 60 or count < 3 ):
Jon Hallba609822015-09-18 12:00:21 -07002231 devicesResults = main.TRUE
2232 linksResults = main.TRUE
2233 hostsResults = main.TRUE
2234 hostAttachmentResults = True
Jon Hall5cf14d52015-07-16 12:15:19 -07002235 count += 1
2236 cliStart = time.time()
2237 devices = []
2238 threads = []
Jon Halla440e872016-03-31 15:15:50 -07002239 for i in main.activeNodes:
Jon Hall6e709752016-02-01 13:38:46 -08002240 t = main.Thread( target=utilities.retry,
Jon Hall5cf14d52015-07-16 12:15:19 -07002241 name="devices-" + str( i ),
Jon Hall6e709752016-02-01 13:38:46 -08002242 args=[ main.CLIs[i].devices, [ None ] ],
2243 kwargs= { 'sleep': 5, 'attempts': 5,
2244 'randomTime': True } )
Jon Hall5cf14d52015-07-16 12:15:19 -07002245 threads.append( t )
2246 t.start()
2247
2248 for t in threads:
2249 t.join()
2250 devices.append( t.result )
2251 hosts = []
2252 ipResult = main.TRUE
2253 threads = []
Jon Halla440e872016-03-31 15:15:50 -07002254 for i in main.activeNodes:
Jon Halld8f6de82015-12-17 17:04:34 -08002255 t = main.Thread( target=utilities.retry,
Jon Hall5cf14d52015-07-16 12:15:19 -07002256 name="hosts-" + str( i ),
Jon Halld8f6de82015-12-17 17:04:34 -08002257 args=[ main.CLIs[i].hosts, [ None ] ],
2258 kwargs= { 'sleep': 5, 'attempts': 5,
2259 'randomTime': True } )
Jon Hall5cf14d52015-07-16 12:15:19 -07002260 threads.append( t )
2261 t.start()
2262
2263 for t in threads:
2264 t.join()
2265 try:
2266 hosts.append( json.loads( t.result ) )
2267 except ( ValueError, TypeError ):
2268 main.log.exception( "Error parsing hosts results" )
2269 main.log.error( repr( t.result ) )
Jon Hall3afe4c92015-12-14 19:30:38 -08002270 hosts.append( None )
Jon Hall5cf14d52015-07-16 12:15:19 -07002271 for controller in range( 0, len( hosts ) ):
Jon Halla440e872016-03-31 15:15:50 -07002272 controllerStr = str( main.activeNodes[controller] + 1 )
Jon Hallacd1b182015-12-17 11:43:20 -08002273 if hosts[ controller ]:
2274 for host in hosts[ controller ]:
2275 if host is None or host.get( 'ipAddresses', [] ) == []:
2276 main.log.error(
2277 "Error with host ipAddresses on controller" +
2278 controllerStr + ": " + str( host ) )
2279 ipResult = main.FALSE
Jon Hall5cf14d52015-07-16 12:15:19 -07002280 ports = []
2281 threads = []
Jon Halla440e872016-03-31 15:15:50 -07002282 for i in main.activeNodes:
Jon Hall6e709752016-02-01 13:38:46 -08002283 t = main.Thread( target=utilities.retry,
Jon Hall5cf14d52015-07-16 12:15:19 -07002284 name="ports-" + str( i ),
Jon Hall6e709752016-02-01 13:38:46 -08002285 args=[ main.CLIs[i].ports, [ None ] ],
2286 kwargs= { 'sleep': 5, 'attempts': 5,
2287 'randomTime': True } )
Jon Hall5cf14d52015-07-16 12:15:19 -07002288 threads.append( t )
2289 t.start()
2290
2291 for t in threads:
2292 t.join()
2293 ports.append( t.result )
2294 links = []
2295 threads = []
Jon Halla440e872016-03-31 15:15:50 -07002296 for i in main.activeNodes:
Jon Hall6e709752016-02-01 13:38:46 -08002297 t = main.Thread( target=utilities.retry,
Jon Hall5cf14d52015-07-16 12:15:19 -07002298 name="links-" + str( i ),
Jon Hall6e709752016-02-01 13:38:46 -08002299 args=[ main.CLIs[i].links, [ None ] ],
2300 kwargs= { 'sleep': 5, 'attempts': 5,
2301 'randomTime': True } )
Jon Hall5cf14d52015-07-16 12:15:19 -07002302 threads.append( t )
2303 t.start()
2304
2305 for t in threads:
2306 t.join()
2307 links.append( t.result )
2308 clusters = []
2309 threads = []
Jon Halla440e872016-03-31 15:15:50 -07002310 for i in main.activeNodes:
Jon Hall6e709752016-02-01 13:38:46 -08002311 t = main.Thread( target=utilities.retry,
Jon Hall5cf14d52015-07-16 12:15:19 -07002312 name="clusters-" + str( i ),
Jon Hall6e709752016-02-01 13:38:46 -08002313 args=[ main.CLIs[i].clusters, [ None ] ],
2314 kwargs= { 'sleep': 5, 'attempts': 5,
2315 'randomTime': True } )
Jon Hall5cf14d52015-07-16 12:15:19 -07002316 threads.append( t )
2317 t.start()
2318
2319 for t in threads:
2320 t.join()
2321 clusters.append( t.result )
2322
2323 elapsed = time.time() - startTime
2324 cliTime = time.time() - cliStart
2325 print "Elapsed time: " + str( elapsed )
2326 print "CLI time: " + str( cliTime )
2327
Jon Hall6e709752016-02-01 13:38:46 -08002328 if all( e is None for e in devices ) and\
2329 all( e is None for e in hosts ) and\
2330 all( e is None for e in ports ) and\
2331 all( e is None for e in links ) and\
2332 all( e is None for e in clusters ):
2333 topoFailMsg = "Could not get topology from ONOS"
2334 main.log.error( topoFailMsg )
2335 continue # Try again, No use trying to compare
2336
Jon Hall5cf14d52015-07-16 12:15:19 -07002337 mnSwitches = main.Mininet1.getSwitches()
2338 mnLinks = main.Mininet1.getLinks()
2339 mnHosts = main.Mininet1.getHosts()
Jon Halla440e872016-03-31 15:15:50 -07002340 for controller in range( len( main.activeNodes ) ):
2341 controllerStr = str( main.activeNodes[controller] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07002342 if devices[ controller ] and ports[ controller ] and\
2343 "Error" not in devices[ controller ] and\
2344 "Error" not in ports[ controller ]:
2345
Jon Hallc6793552016-01-19 14:18:37 -08002346 try:
2347 currentDevicesResult = main.Mininet1.compareSwitches(
2348 mnSwitches,
2349 json.loads( devices[ controller ] ),
2350 json.loads( ports[ controller ] ) )
2351 except ( TypeError, ValueError ) as e:
2352 main.log.exception( "Object not as expected; devices={!r}\nports={!r}".format(
2353 devices[ controller ], ports[ controller ] ) )
Jon Hall5cf14d52015-07-16 12:15:19 -07002354 else:
2355 currentDevicesResult = main.FALSE
2356 utilities.assert_equals( expect=main.TRUE,
2357 actual=currentDevicesResult,
2358 onpass="ONOS" + controllerStr +
2359 " Switches view is correct",
2360 onfail="ONOS" + controllerStr +
2361 " Switches view is incorrect" )
2362
2363 if links[ controller ] and "Error" not in links[ controller ]:
2364 currentLinksResult = main.Mininet1.compareLinks(
2365 mnSwitches, mnLinks,
2366 json.loads( links[ controller ] ) )
2367 else:
2368 currentLinksResult = main.FALSE
2369 utilities.assert_equals( expect=main.TRUE,
2370 actual=currentLinksResult,
2371 onpass="ONOS" + controllerStr +
2372 " links view is correct",
2373 onfail="ONOS" + controllerStr +
2374 " links view is incorrect" )
Jon Hall657cdf62015-12-17 14:40:51 -08002375 if hosts[ controller ] and "Error" not in hosts[ controller ]:
Jon Hall5cf14d52015-07-16 12:15:19 -07002376 currentHostsResult = main.Mininet1.compareHosts(
2377 mnHosts,
2378 hosts[ controller ] )
Jon Hall13b446e2016-01-05 12:17:01 -08002379 elif hosts[ controller ] == []:
2380 currentHostsResult = main.TRUE
Jon Hall5cf14d52015-07-16 12:15:19 -07002381 else:
2382 currentHostsResult = main.FALSE
2383 utilities.assert_equals( expect=main.TRUE,
2384 actual=currentHostsResult,
2385 onpass="ONOS" + controllerStr +
2386 " hosts exist in Mininet",
2387 onfail="ONOS" + controllerStr +
2388 " hosts don't match Mininet" )
2389 # CHECKING HOST ATTACHMENT POINTS
2390 hostAttachment = True
Jon Halla440e872016-03-31 15:15:50 -07002391 zeroHosts = False
Jon Hall5cf14d52015-07-16 12:15:19 -07002392 # FIXME: topo-HA/obelisk specific mappings:
2393 # key is mac and value is dpid
2394 mappings = {}
2395 for i in range( 1, 29 ): # hosts 1 through 28
2396 # set up correct variables:
2397 macId = "00:" * 5 + hex( i ).split( "0x" )[1].upper().zfill(2)
2398 if i == 1:
2399 deviceId = "1000".zfill(16)
2400 elif i == 2:
2401 deviceId = "2000".zfill(16)
2402 elif i == 3:
2403 deviceId = "3000".zfill(16)
2404 elif i == 4:
2405 deviceId = "3004".zfill(16)
2406 elif i == 5:
2407 deviceId = "5000".zfill(16)
2408 elif i == 6:
2409 deviceId = "6000".zfill(16)
2410 elif i == 7:
2411 deviceId = "6007".zfill(16)
2412 elif i >= 8 and i <= 17:
2413 dpid = '3' + str( i ).zfill( 3 )
2414 deviceId = dpid.zfill(16)
2415 elif i >= 18 and i <= 27:
2416 dpid = '6' + str( i ).zfill( 3 )
2417 deviceId = dpid.zfill(16)
2418 elif i == 28:
2419 deviceId = "2800".zfill(16)
2420 mappings[ macId ] = deviceId
Jon Halld8f6de82015-12-17 17:04:34 -08002421 if hosts[ controller ] is not None and "Error" not in hosts[ controller ]:
Jon Hall5cf14d52015-07-16 12:15:19 -07002422 if hosts[ controller ] == []:
2423 main.log.warn( "There are no hosts discovered" )
Jon Halla440e872016-03-31 15:15:50 -07002424 zeroHosts = True
Jon Hall5cf14d52015-07-16 12:15:19 -07002425 else:
2426 for host in hosts[ controller ]:
2427 mac = None
2428 location = None
2429 device = None
2430 port = None
2431 try:
2432 mac = host.get( 'mac' )
2433 assert mac, "mac field could not be found for this host object"
2434
2435 location = host.get( 'location' )
2436 assert location, "location field could not be found for this host object"
2437
2438 # Trim the protocol identifier off deviceId
2439 device = str( location.get( 'elementId' ) ).split(':')[1]
2440 assert device, "elementId field could not be found for this host location object"
2441
2442 port = location.get( 'port' )
2443 assert port, "port field could not be found for this host location object"
2444
2445 # Now check if this matches where they should be
2446 if mac and device and port:
2447 if str( port ) != "1":
2448 main.log.error( "The attachment port is incorrect for " +
2449 "host " + str( mac ) +
2450 ". Expected: 1 Actual: " + str( port) )
2451 hostAttachment = False
2452 if device != mappings[ str( mac ) ]:
2453 main.log.error( "The attachment device is incorrect for " +
2454 "host " + str( mac ) +
2455 ". Expected: " + mappings[ str( mac ) ] +
2456 " Actual: " + device )
2457 hostAttachment = False
2458 else:
2459 hostAttachment = False
2460 except AssertionError:
2461 main.log.exception( "Json object not as expected" )
2462 main.log.error( repr( host ) )
2463 hostAttachment = False
2464 else:
2465 main.log.error( "No hosts json output or \"Error\"" +
2466 " in output. hosts = " +
2467 repr( hosts[ controller ] ) )
Jon Halla440e872016-03-31 15:15:50 -07002468 if zeroHosts is False:
Jon Hall5cf14d52015-07-16 12:15:19 -07002469 # TODO: Find a way to know if there should be hosts in a
2470 # given point of the test
2471 hostAttachment = True
2472
2473 # END CHECKING HOST ATTACHMENT POINTS
2474 devicesResults = devicesResults and currentDevicesResult
2475 linksResults = linksResults and currentLinksResult
2476 hostsResults = hostsResults and currentHostsResult
2477 hostAttachmentResults = hostAttachmentResults and\
2478 hostAttachment
2479 topoResult = ( devicesResults and linksResults
2480 and hostsResults and ipResult and
2481 hostAttachmentResults )
Jon Halle9b1fa32015-12-08 15:32:21 -08002482 utilities.assert_equals( expect=True,
2483 actual=topoResult,
2484 onpass="ONOS topology matches Mininet",
Jon Hall6e709752016-02-01 13:38:46 -08002485 onfail=topoFailMsg )
Jon Halle9b1fa32015-12-08 15:32:21 -08002486 # End of While loop to pull ONOS state
Jon Hall5cf14d52015-07-16 12:15:19 -07002487
2488 # Compare json objects for hosts and dataplane clusters
2489
2490 # hosts
2491 main.step( "Hosts view is consistent across all ONOS nodes" )
2492 consistentHostsResult = main.TRUE
2493 for controller in range( len( hosts ) ):
Jon Halla440e872016-03-31 15:15:50 -07002494 controllerStr = str( main.activeNodes[controller] + 1 )
Jon Hall13b446e2016-01-05 12:17:01 -08002495 if hosts[ controller ] is not None and "Error" not in hosts[ controller ]:
Jon Hall5cf14d52015-07-16 12:15:19 -07002496 if hosts[ controller ] == hosts[ 0 ]:
2497 continue
2498 else: # hosts not consistent
2499 main.log.error( "hosts from ONOS" + controllerStr +
2500 " is inconsistent with ONOS1" )
2501 main.log.warn( repr( hosts[ controller ] ) )
2502 consistentHostsResult = main.FALSE
2503
2504 else:
2505 main.log.error( "Error in getting ONOS hosts from ONOS" +
2506 controllerStr )
2507 consistentHostsResult = main.FALSE
2508 main.log.warn( "ONOS" + controllerStr +
2509 " hosts response: " +
2510 repr( hosts[ controller ] ) )
2511 utilities.assert_equals(
2512 expect=main.TRUE,
2513 actual=consistentHostsResult,
2514 onpass="Hosts view is consistent across all ONOS nodes",
2515 onfail="ONOS nodes have different views of hosts" )
2516
2517 main.step( "Hosts information is correct" )
2518 hostsResults = hostsResults and ipResult
2519 utilities.assert_equals(
2520 expect=main.TRUE,
2521 actual=hostsResults,
2522 onpass="Host information is correct",
2523 onfail="Host information is incorrect" )
2524
2525 main.step( "Host attachment points to the network" )
2526 utilities.assert_equals(
2527 expect=True,
2528 actual=hostAttachmentResults,
2529 onpass="Hosts are correctly attached to the network",
2530 onfail="ONOS did not correctly attach hosts to the network" )
2531
2532 # Strongly connected clusters of devices
2533 main.step( "Clusters view is consistent across all ONOS nodes" )
2534 consistentClustersResult = main.TRUE
2535 for controller in range( len( clusters ) ):
Jon Halla440e872016-03-31 15:15:50 -07002536 controllerStr = str( main.activeNodes[controller] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07002537 if "Error" not in clusters[ controller ]:
2538 if clusters[ controller ] == clusters[ 0 ]:
2539 continue
2540 else: # clusters not consistent
2541 main.log.error( "clusters from ONOS" +
2542 controllerStr +
2543 " is inconsistent with ONOS1" )
2544 consistentClustersResult = main.FALSE
Jon Hall5cf14d52015-07-16 12:15:19 -07002545 else:
2546 main.log.error( "Error in getting dataplane clusters " +
2547 "from ONOS" + controllerStr )
2548 consistentClustersResult = main.FALSE
2549 main.log.warn( "ONOS" + controllerStr +
2550 " clusters response: " +
2551 repr( clusters[ controller ] ) )
2552 utilities.assert_equals(
2553 expect=main.TRUE,
2554 actual=consistentClustersResult,
2555 onpass="Clusters view is consistent across all ONOS nodes",
2556 onfail="ONOS nodes have different views of clusters" )
2557
2558 main.step( "There is only one SCC" )
2559 # there should always only be one cluster
2560 try:
2561 numClusters = len( json.loads( clusters[ 0 ] ) )
2562 except ( ValueError, TypeError ):
2563 main.log.exception( "Error parsing clusters[0]: " +
2564 repr( clusters[0] ) )
Jon Halla440e872016-03-31 15:15:50 -07002565 numClusters = "ERROR"
Jon Hall5cf14d52015-07-16 12:15:19 -07002566 clusterResults = main.FALSE
2567 if numClusters == 1:
2568 clusterResults = main.TRUE
2569 utilities.assert_equals(
2570 expect=1,
2571 actual=numClusters,
2572 onpass="ONOS shows 1 SCC",
2573 onfail="ONOS shows " + str( numClusters ) + " SCCs" )
2574
2575 topoResult = ( devicesResults and linksResults
2576 and hostsResults and consistentHostsResult
2577 and consistentClustersResult and clusterResults
2578 and ipResult and hostAttachmentResults )
2579
2580 topoResult = topoResult and int( count <= 2 )
2581 note = "note it takes about " + str( int( cliTime ) ) + \
2582 " seconds for the test to make all the cli calls to fetch " +\
2583 "the topology from each ONOS instance"
2584 main.log.info(
2585 "Very crass estimate for topology discovery/convergence( " +
2586 str( note ) + " ): " + str( elapsed ) + " seconds, " +
2587 str( count ) + " tries" )
2588
2589 main.step( "Device information is correct" )
2590 utilities.assert_equals(
2591 expect=main.TRUE,
2592 actual=devicesResults,
2593 onpass="Device information is correct",
2594 onfail="Device information is incorrect" )
2595
2596 main.step( "Links are correct" )
2597 utilities.assert_equals(
2598 expect=main.TRUE,
2599 actual=linksResults,
2600 onpass="Link are correct",
2601 onfail="Links are incorrect" )
2602
Jon Halla440e872016-03-31 15:15:50 -07002603 main.step( "Hosts are correct" )
2604 utilities.assert_equals(
2605 expect=main.TRUE,
2606 actual=hostsResults,
2607 onpass="Hosts are correct",
2608 onfail="Hosts are incorrect" )
2609
Jon Hall5cf14d52015-07-16 12:15:19 -07002610 # FIXME: move this to an ONOS state case
2611 main.step( "Checking ONOS nodes" )
Jon Hall41d39f12016-04-11 22:54:35 -07002612 nodeResults = utilities.retry( main.HA.nodesCheck,
2613 False,
2614 args=[main.activeNodes],
2615 attempts=5 )
Jon Hall5cf14d52015-07-16 12:15:19 -07002616
Jon Hall41d39f12016-04-11 22:54:35 -07002617 utilities.assert_equals( expect=True, actual=nodeResults,
Jon Hall5cf14d52015-07-16 12:15:19 -07002618 onpass="Nodes check successful",
2619 onfail="Nodes check NOT successful" )
Jon Halla440e872016-03-31 15:15:50 -07002620 if not nodeResults:
Jon Hall41d39f12016-04-11 22:54:35 -07002621 for i in main.activeNodes:
Jon Halla440e872016-03-31 15:15:50 -07002622 main.log.debug( "{} components not ACTIVE: \n{}".format(
Jon Hall41d39f12016-04-11 22:54:35 -07002623 main.CLIs[i].name,
2624 main.CLIs[i].sendline( "scr:list | grep -v ACTIVE" ) ) )
Jon Hall5cf14d52015-07-16 12:15:19 -07002625
2626 def CASE9( self, main ):
2627 """
2628 Link s3-s28 down
2629 """
2630 import time
Jon Halle1a3b752015-07-22 13:02:46 -07002631 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002632 assert main, "main not defined"
2633 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07002634 assert main.CLIs, "main.CLIs not defined"
2635 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002636 # NOTE: You should probably run a topology check after this
2637
2638 linkSleep = float( main.params[ 'timers' ][ 'LinkDiscovery' ] )
2639
2640 description = "Turn off a link to ensure that Link Discovery " +\
2641 "is working properly"
2642 main.case( description )
2643
2644 main.step( "Kill Link between s3 and s28" )
2645 LinkDown = main.Mininet1.link( END1="s3", END2="s28", OPTION="down" )
2646 main.log.info( "Waiting " + str( linkSleep ) +
2647 " seconds for link down to be discovered" )
2648 time.sleep( linkSleep )
2649 utilities.assert_equals( expect=main.TRUE, actual=LinkDown,
2650 onpass="Link down successful",
2651 onfail="Failed to bring link down" )
2652 # TODO do some sort of check here
2653
2654 def CASE10( self, main ):
2655 """
2656 Link s3-s28 up
2657 """
2658 import time
Jon Halle1a3b752015-07-22 13:02:46 -07002659 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002660 assert main, "main not defined"
2661 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07002662 assert main.CLIs, "main.CLIs not defined"
2663 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002664 # NOTE: You should probably run a topology check after this
2665
2666 linkSleep = float( main.params[ 'timers' ][ 'LinkDiscovery' ] )
2667
2668 description = "Restore a link to ensure that Link Discovery is " + \
2669 "working properly"
2670 main.case( description )
2671
2672 main.step( "Bring link between s3 and s28 back up" )
2673 LinkUp = main.Mininet1.link( END1="s3", END2="s28", OPTION="up" )
2674 main.log.info( "Waiting " + str( linkSleep ) +
2675 " seconds for link up to be discovered" )
2676 time.sleep( linkSleep )
2677 utilities.assert_equals( expect=main.TRUE, actual=LinkUp,
2678 onpass="Link up successful",
2679 onfail="Failed to bring link up" )
2680 # TODO do some sort of check here
2681
2682 def CASE11( self, main ):
2683 """
2684 Switch Down
2685 """
2686 # NOTE: You should probably run a topology check after this
2687 import time
Jon Halle1a3b752015-07-22 13:02:46 -07002688 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002689 assert main, "main not defined"
2690 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07002691 assert main.CLIs, "main.CLIs not defined"
2692 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002693
2694 switchSleep = float( main.params[ 'timers' ][ 'SwitchDiscovery' ] )
2695
2696 description = "Killing a switch to ensure it is discovered correctly"
Jon Halla440e872016-03-31 15:15:50 -07002697 onosCli = main.CLIs[ main.activeNodes[0] ]
Jon Hall5cf14d52015-07-16 12:15:19 -07002698 main.case( description )
2699 switch = main.params[ 'kill' ][ 'switch' ]
2700 switchDPID = main.params[ 'kill' ][ 'dpid' ]
2701
2702 # TODO: Make this switch parameterizable
2703 main.step( "Kill " + switch )
2704 main.log.info( "Deleting " + switch )
2705 main.Mininet1.delSwitch( switch )
2706 main.log.info( "Waiting " + str( switchSleep ) +
2707 " seconds for switch down to be discovered" )
2708 time.sleep( switchSleep )
Jon Halla440e872016-03-31 15:15:50 -07002709 device = onosCli.getDevice( dpid=switchDPID )
Jon Hall5cf14d52015-07-16 12:15:19 -07002710 # Peek at the deleted switch
2711 main.log.warn( str( device ) )
2712 result = main.FALSE
2713 if device and device[ 'available' ] is False:
2714 result = main.TRUE
2715 utilities.assert_equals( expect=main.TRUE, actual=result,
2716 onpass="Kill switch successful",
2717 onfail="Failed to kill switch?" )
2718
2719 def CASE12( self, main ):
2720 """
2721 Switch Up
2722 """
2723 # NOTE: You should probably run a topology check after this
2724 import time
Jon Halle1a3b752015-07-22 13:02:46 -07002725 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002726 assert main, "main not defined"
2727 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07002728 assert main.CLIs, "main.CLIs not defined"
2729 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002730 assert ONOS1Port, "ONOS1Port not defined"
2731 assert ONOS2Port, "ONOS2Port not defined"
2732 assert ONOS3Port, "ONOS3Port not defined"
2733 assert ONOS4Port, "ONOS4Port not defined"
2734 assert ONOS5Port, "ONOS5Port not defined"
2735 assert ONOS6Port, "ONOS6Port not defined"
2736 assert ONOS7Port, "ONOS7Port not defined"
2737
2738 switchSleep = float( main.params[ 'timers' ][ 'SwitchDiscovery' ] )
2739 switch = main.params[ 'kill' ][ 'switch' ]
2740 switchDPID = main.params[ 'kill' ][ 'dpid' ]
2741 links = main.params[ 'kill' ][ 'links' ].split()
Jon Halla440e872016-03-31 15:15:50 -07002742 onosCli = main.CLIs[ main.activeNodes[0] ]
Jon Hall5cf14d52015-07-16 12:15:19 -07002743 description = "Adding a switch to ensure it is discovered correctly"
2744 main.case( description )
2745
2746 main.step( "Add back " + switch )
2747 main.Mininet1.addSwitch( switch, dpid=switchDPID )
2748 for peer in links:
2749 main.Mininet1.addLink( switch, peer )
Jon Halla440e872016-03-31 15:15:50 -07002750 ipList = [ node.ip_address for node in main.nodes ]
Jon Hall5cf14d52015-07-16 12:15:19 -07002751 main.Mininet1.assignSwController( sw=switch, ip=ipList )
2752 main.log.info( "Waiting " + str( switchSleep ) +
2753 " seconds for switch up to be discovered" )
2754 time.sleep( switchSleep )
Jon Halla440e872016-03-31 15:15:50 -07002755 device = onosCli.getDevice( dpid=switchDPID )
Jon Hall5cf14d52015-07-16 12:15:19 -07002756 # Peek at the deleted switch
2757 main.log.warn( str( device ) )
2758 result = main.FALSE
2759 if device and device[ 'available' ]:
2760 result = main.TRUE
2761 utilities.assert_equals( expect=main.TRUE, actual=result,
2762 onpass="add switch successful",
2763 onfail="Failed to add switch?" )
2764
2765 def CASE13( self, main ):
2766 """
2767 Clean up
2768 """
2769 import os
2770 import time
Jon Halle1a3b752015-07-22 13:02:46 -07002771 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002772 assert main, "main not defined"
2773 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07002774 assert main.CLIs, "main.CLIs not defined"
2775 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002776
2777 # printing colors to terminal
2778 colors = { 'cyan': '\033[96m', 'purple': '\033[95m',
2779 'blue': '\033[94m', 'green': '\033[92m',
2780 'yellow': '\033[93m', 'red': '\033[91m', 'end': '\033[0m' }
2781 main.case( "Test Cleanup" )
2782 main.step( "Killing tcpdumps" )
2783 main.Mininet2.stopTcpdump()
2784
2785 testname = main.TEST
Jon Hall5ec6b1b2015-09-17 18:20:14 -07002786 if main.params[ 'BACKUP' ][ 'ENABLED' ] == "True":
Jon Hall5cf14d52015-07-16 12:15:19 -07002787 main.step( "Copying MN pcap and ONOS log files to test station" )
2788 teststationUser = main.params[ 'BACKUP' ][ 'TESTONUSER' ]
2789 teststationIP = main.params[ 'BACKUP' ][ 'TESTONIP' ]
Jon Hall96091e62015-09-21 17:34:17 -07002790 # NOTE: MN Pcap file is being saved to logdir.
2791 # We scp this file as MN and TestON aren't necessarily the same vm
2792
2793 # FIXME: To be replaced with a Jenkin's post script
Jon Hall5cf14d52015-07-16 12:15:19 -07002794 # TODO: Load these from params
2795 # NOTE: must end in /
2796 logFolder = "/opt/onos/log/"
2797 logFiles = [ "karaf.log", "karaf.log.1" ]
2798 # NOTE: must end in /
Jon Hall5cf14d52015-07-16 12:15:19 -07002799 for f in logFiles:
Jon Halle1a3b752015-07-22 13:02:46 -07002800 for node in main.nodes:
Jon Hall6e709752016-02-01 13:38:46 -08002801 dstName = main.logdir + "/" + node.name + "-" + f
Jon Hall96091e62015-09-21 17:34:17 -07002802 main.ONOSbench.secureCopy( node.user_name, node.ip_address,
2803 logFolder + f, dstName )
Jon Hall5cf14d52015-07-16 12:15:19 -07002804 # std*.log's
2805 # NOTE: must end in /
2806 logFolder = "/opt/onos/var/"
2807 logFiles = [ "stderr.log", "stdout.log" ]
2808 # NOTE: must end in /
Jon Hall5cf14d52015-07-16 12:15:19 -07002809 for f in logFiles:
Jon Halle1a3b752015-07-22 13:02:46 -07002810 for node in main.nodes:
Jon Hall6e709752016-02-01 13:38:46 -08002811 dstName = main.logdir + "/" + node.name + "-" + f
Jon Hall96091e62015-09-21 17:34:17 -07002812 main.ONOSbench.secureCopy( node.user_name, node.ip_address,
2813 logFolder + f, dstName )
Jon Hall5ec6b1b2015-09-17 18:20:14 -07002814 else:
2815 main.log.debug( "skipping saving log files" )
Jon Hall5cf14d52015-07-16 12:15:19 -07002816
2817 main.step( "Stopping Mininet" )
2818 mnResult = main.Mininet1.stopNet()
2819 utilities.assert_equals( expect=main.TRUE, actual=mnResult,
2820 onpass="Mininet stopped",
2821 onfail="MN cleanup NOT successful" )
2822
2823 main.step( "Checking ONOS Logs for errors" )
Jon Halle1a3b752015-07-22 13:02:46 -07002824 for node in main.nodes:
Jon Hall5ec6b1b2015-09-17 18:20:14 -07002825 main.log.debug( "Checking logs for errors on " + node.name + ":" )
2826 main.log.warn( main.ONOSbench.checkLogs( node.ip_address ) )
Jon Hall5cf14d52015-07-16 12:15:19 -07002827
2828 try:
2829 timerLog = open( main.logdir + "/Timers.csv", 'w')
2830 main.log.error( ", ".join( labels ) + "\n" + ", ".join( data ) )
2831 timerLog.write( ", ".join( labels ) + "\n" + ", ".join( data ) )
2832 timerLog.close()
2833 except NameError, e:
2834 main.log.exception(e)
2835
2836 def CASE14( self, main ):
2837 """
2838 start election app on all onos nodes
2839 """
Jon Halle1a3b752015-07-22 13:02:46 -07002840 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002841 assert main, "main not defined"
2842 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07002843 assert main.CLIs, "main.CLIs not defined"
2844 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002845
2846 main.case("Start Leadership Election app")
2847 main.step( "Install leadership election app" )
Jon Halla440e872016-03-31 15:15:50 -07002848 onosCli = main.CLIs[ main.activeNodes[0] ]
2849 appResult = onosCli.activateApp( "org.onosproject.election" )
Jon Hall5cf14d52015-07-16 12:15:19 -07002850 utilities.assert_equals(
2851 expect=main.TRUE,
2852 actual=appResult,
2853 onpass="Election app installed",
2854 onfail="Something went wrong with installing Leadership election" )
2855
2856 main.step( "Run for election on each node" )
2857 leaderResult = main.TRUE
2858 leaders = []
Jon Halla440e872016-03-31 15:15:50 -07002859 for i in main.activeNodes:
2860 main.CLIs[i].electionTestRun()
2861 for i in main.activeNodes:
2862 cli = main.CLIs[i]
Jon Hall5cf14d52015-07-16 12:15:19 -07002863 leader = cli.electionTestLeader()
2864 if leader is None or leader == main.FALSE:
2865 main.log.error( cli.name + ": Leader for the election app " +
2866 "should be an ONOS node, instead got '" +
2867 str( leader ) + "'" )
2868 leaderResult = main.FALSE
2869 leaders.append( leader )
2870 utilities.assert_equals(
2871 expect=main.TRUE,
2872 actual=leaderResult,
2873 onpass="Successfully ran for leadership",
2874 onfail="Failed to run for leadership" )
2875
2876 main.step( "Check that each node shows the same leader" )
2877 sameLeader = main.TRUE
2878 if len( set( leaders ) ) != 1:
2879 sameLeader = main.FALSE
Jon Hall6e709752016-02-01 13:38:46 -08002880 main.log.error( "Results of electionTestLeader is order of main.CLIs:" +
Jon Hall5cf14d52015-07-16 12:15:19 -07002881 str( leaders ) )
2882 utilities.assert_equals(
2883 expect=main.TRUE,
2884 actual=sameLeader,
2885 onpass="Leadership is consistent for the election topic",
2886 onfail="Nodes have different leaders" )
2887
2888 def CASE15( self, main ):
2889 """
2890 Check that Leadership Election is still functional
acsmars9475b1c2015-08-28 18:02:08 -07002891 15.1 Run election on each node
2892 15.2 Check that each node has the same leaders and candidates
2893 15.3 Find current leader and withdraw
2894 15.4 Check that a new node was elected leader
2895 15.5 Check that that new leader was the candidate of old leader
2896 15.6 Run for election on old leader
2897 15.7 Check that oldLeader is a candidate, and leader if only 1 node
2898 15.8 Make sure that the old leader was added to the candidate list
2899
2900 old and new variable prefixes refer to data from before vs after
2901 withdrawl and later before withdrawl vs after re-election
Jon Hall5cf14d52015-07-16 12:15:19 -07002902 """
2903 import time
Jon Halle1a3b752015-07-22 13:02:46 -07002904 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002905 assert main, "main not defined"
2906 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07002907 assert main.CLIs, "main.CLIs not defined"
2908 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002909
Jon Hall5cf14d52015-07-16 12:15:19 -07002910 description = "Check that Leadership Election is still functional"
2911 main.case( description )
Jon Halla440e872016-03-31 15:15:50 -07002912 # NOTE: Need to re-run after restarts since being a canidate is not persistant
acsmars9475b1c2015-08-28 18:02:08 -07002913
Jon Halla440e872016-03-31 15:15:50 -07002914 oldLeaders = [] # list of lists of each nodes' candidates before
2915 newLeaders = [] # list of lists of each nodes' candidates after
acsmars9475b1c2015-08-28 18:02:08 -07002916 oldLeader = '' # the old leader from oldLeaders, None if not same
2917 newLeader = '' # the new leaders fron newLoeaders, None if not same
2918 oldLeaderCLI = None # the CLI of the old leader used for re-electing
acsmars71adceb2015-08-31 15:09:26 -07002919 expectNoLeader = False # True when there is only one leader
2920 if main.numCtrls == 1:
2921 expectNoLeader = True
acsmars9475b1c2015-08-28 18:02:08 -07002922
Jon Hall5cf14d52015-07-16 12:15:19 -07002923 main.step( "Run for election on each node" )
acsmars9475b1c2015-08-28 18:02:08 -07002924 electionResult = main.TRUE
2925
Jon Halla440e872016-03-31 15:15:50 -07002926 for i in main.activeNodes: # run test election on each node
2927 if main.CLIs[i].electionTestRun() == main.FALSE:
acsmars9475b1c2015-08-28 18:02:08 -07002928 electionResult = main.FALSE
Jon Hall5cf14d52015-07-16 12:15:19 -07002929 utilities.assert_equals(
2930 expect=main.TRUE,
acsmars9475b1c2015-08-28 18:02:08 -07002931 actual=electionResult,
2932 onpass="All nodes successfully ran for leadership",
2933 onfail="At least one node failed to run for leadership" )
Jon Hall5cf14d52015-07-16 12:15:19 -07002934
acsmars3a72bde2015-09-02 14:16:22 -07002935 if electionResult == main.FALSE:
2936 main.log.error(
2937 "Skipping Test Case because Election Test App isn't loaded" )
2938 main.skipCase()
2939
acsmars9475b1c2015-08-28 18:02:08 -07002940 main.step( "Check that each node shows the same leader and candidates" )
Jon Halla440e872016-03-31 15:15:50 -07002941 failMessage = "Nodes have different leaderboards"
Jon Halla440e872016-03-31 15:15:50 -07002942 activeCLIs = [ main.CLIs[i] for i in main.activeNodes ]
Jon Hall41d39f12016-04-11 22:54:35 -07002943 sameResult, oldLeaders = main.HA.consistentLeaderboards( activeCLIs )
Jon Halla440e872016-03-31 15:15:50 -07002944 if sameResult:
2945 oldLeader = oldLeaders[ 0 ][ 0 ]
2946 main.log.warn( oldLeader )
acsmars9475b1c2015-08-28 18:02:08 -07002947 else:
Jon Halla440e872016-03-31 15:15:50 -07002948 oldLeader = None
Jon Hall5cf14d52015-07-16 12:15:19 -07002949 utilities.assert_equals(
Jon Halla440e872016-03-31 15:15:50 -07002950 expect=True,
acsmars71adceb2015-08-31 15:09:26 -07002951 actual=sameResult,
Jon Halla440e872016-03-31 15:15:50 -07002952 onpass="Leaderboards are consistent for the election topic",
acsmars9475b1c2015-08-28 18:02:08 -07002953 onfail=failMessage )
Jon Hall5cf14d52015-07-16 12:15:19 -07002954
2955 main.step( "Find current leader and withdraw" )
acsmars9475b1c2015-08-28 18:02:08 -07002956 withdrawResult = main.TRUE
Jon Hall5cf14d52015-07-16 12:15:19 -07002957 # do some sanity checking on leader before using it
acsmars9475b1c2015-08-28 18:02:08 -07002958 if oldLeader is None:
2959 main.log.error( "Leadership isn't consistent." )
2960 withdrawResult = main.FALSE
2961 # Get the CLI of the oldLeader
Jon Halla440e872016-03-31 15:15:50 -07002962 for i in main.activeNodes:
acsmars9475b1c2015-08-28 18:02:08 -07002963 if oldLeader == main.nodes[ i ].ip_address:
2964 oldLeaderCLI = main.CLIs[ i ]
Jon Hall5cf14d52015-07-16 12:15:19 -07002965 break
2966 else: # FOR/ELSE statement
2967 main.log.error( "Leader election, could not find current leader" )
2968 if oldLeader:
acsmars9475b1c2015-08-28 18:02:08 -07002969 withdrawResult = oldLeaderCLI.electionTestWithdraw()
Jon Hall5cf14d52015-07-16 12:15:19 -07002970 utilities.assert_equals(
2971 expect=main.TRUE,
2972 actual=withdrawResult,
2973 onpass="Node was withdrawn from election",
2974 onfail="Node was not withdrawn from election" )
2975
acsmars9475b1c2015-08-28 18:02:08 -07002976 main.step( "Check that a new node was elected leader" )
acsmars9475b1c2015-08-28 18:02:08 -07002977 failMessage = "Nodes have different leaders"
acsmars9475b1c2015-08-28 18:02:08 -07002978 # Get new leaders and candidates
Jon Hall41d39f12016-04-11 22:54:35 -07002979 newLeaderResult, newLeaders = main.HA.consistentLeaderboards( activeCLIs )
Jon Halla440e872016-03-31 15:15:50 -07002980 if newLeaders[ 0 ][ 0 ] == 'none':
2981 main.log.error( "No leader was elected on at least 1 node" )
2982 if not expectNoLeader:
2983 newLeaderResult = False
2984 if newLeaderResult:
2985 newLeader = newLeaders[ 0 ][ 0 ]
Jon Hall5cf14d52015-07-16 12:15:19 -07002986 else:
Jon Halla440e872016-03-31 15:15:50 -07002987 newLeader = None
acsmars71adceb2015-08-31 15:09:26 -07002988
acsmars9475b1c2015-08-28 18:02:08 -07002989 # Check that the new leader is not the older leader, which was withdrawn
2990 if newLeader == oldLeader:
Jon Halla440e872016-03-31 15:15:50 -07002991 newLeaderResult = False
Jon Hall6e709752016-02-01 13:38:46 -08002992 main.log.error( "All nodes still see old leader: " + str( oldLeader ) +
acsmars9475b1c2015-08-28 18:02:08 -07002993 " as the current leader" )
Jon Hall5cf14d52015-07-16 12:15:19 -07002994 utilities.assert_equals(
Jon Halla440e872016-03-31 15:15:50 -07002995 expect=True,
acsmars9475b1c2015-08-28 18:02:08 -07002996 actual=newLeaderResult,
Jon Hall5cf14d52015-07-16 12:15:19 -07002997 onpass="Leadership election passed",
2998 onfail="Something went wrong with Leadership election" )
2999
Jon Halla440e872016-03-31 15:15:50 -07003000 main.step( "Check that that new leader was the candidate of old leader" )
Jon Hall6e709752016-02-01 13:38:46 -08003001 # candidates[ 2 ] should become the top candidate after withdrawl
acsmars9475b1c2015-08-28 18:02:08 -07003002 correctCandidateResult = main.TRUE
acsmars71adceb2015-08-31 15:09:26 -07003003 if expectNoLeader:
3004 if newLeader == 'none':
3005 main.log.info( "No leader expected. None found. Pass" )
3006 correctCandidateResult = main.TRUE
3007 else:
3008 main.log.info( "Expected no leader, got: " + str( newLeader ) )
3009 correctCandidateResult = main.FALSE
Jon Halla440e872016-03-31 15:15:50 -07003010 elif len( oldLeaders[0] ) >= 3:
3011 if newLeader == oldLeaders[ 0 ][ 2 ]:
3012 # correct leader was elected
3013 correctCandidateResult = main.TRUE
3014 else:
3015 correctCandidateResult = main.FALSE
3016 main.log.error( "Candidate {} was elected. {} should have had priority.".format(
3017 newLeader, oldLeaders[ 0 ][ 2 ] ) )
Jon Hall6e709752016-02-01 13:38:46 -08003018 else:
3019 main.log.warn( "Could not determine who should be the correct leader" )
Jon Halla440e872016-03-31 15:15:50 -07003020 main.log.debug( oldLeaders[ 0 ] )
Jon Hall6e709752016-02-01 13:38:46 -08003021 correctCandidateResult = main.FALSE
acsmars9475b1c2015-08-28 18:02:08 -07003022 utilities.assert_equals(
3023 expect=main.TRUE,
3024 actual=correctCandidateResult,
3025 onpass="Correct Candidate Elected",
3026 onfail="Incorrect Candidate Elected" )
3027
Jon Hall5cf14d52015-07-16 12:15:19 -07003028 main.step( "Run for election on old leader( just so everyone " +
3029 "is in the hat )" )
acsmars9475b1c2015-08-28 18:02:08 -07003030 if oldLeaderCLI is not None:
3031 runResult = oldLeaderCLI.electionTestRun()
Jon Hall5cf14d52015-07-16 12:15:19 -07003032 else:
acsmars9475b1c2015-08-28 18:02:08 -07003033 main.log.error( "No old leader to re-elect" )
Jon Hall5cf14d52015-07-16 12:15:19 -07003034 runResult = main.FALSE
3035 utilities.assert_equals(
3036 expect=main.TRUE,
3037 actual=runResult,
3038 onpass="App re-ran for election",
3039 onfail="App failed to run for election" )
Jon Halla440e872016-03-31 15:15:50 -07003040
acsmars9475b1c2015-08-28 18:02:08 -07003041 main.step(
3042 "Check that oldLeader is a candidate, and leader if only 1 node" )
Jon Hall5cf14d52015-07-16 12:15:19 -07003043 # verify leader didn't just change
Jon Halla440e872016-03-31 15:15:50 -07003044 # Get new leaders and candidates
3045 reRunLeaders = []
3046 time.sleep( 5 ) # Paremterize
Jon Hall41d39f12016-04-11 22:54:35 -07003047 positionResult, reRunLeaders = main.HA.consistentLeaderboards( activeCLIs )
acsmars71adceb2015-08-31 15:09:26 -07003048
acsmars9475b1c2015-08-28 18:02:08 -07003049 # Check that the re-elected node is last on the candidate List
Jon Halla440e872016-03-31 15:15:50 -07003050 if oldLeader != reRunLeaders[ 0 ][ -1 ]:
3051 main.log.error( "Old Leader ({}) not in the proper position: {} ".format( str( oldLeader),
3052 str( reRunLeaders[ 0 ] ) ) )
acsmars9475b1c2015-08-28 18:02:08 -07003053 positionResult = main.FALSE
Jon Hall5cf14d52015-07-16 12:15:19 -07003054
3055 utilities.assert_equals(
Jon Halla440e872016-03-31 15:15:50 -07003056 expect=True,
acsmars9475b1c2015-08-28 18:02:08 -07003057 actual=positionResult,
Jon Hall5cf14d52015-07-16 12:15:19 -07003058 onpass="Old leader successfully re-ran for election",
3059 onfail="Something went wrong with Leadership election after " +
3060 "the old leader re-ran for election" )
3061
3062 def CASE16( self, main ):
3063 """
3064 Install Distributed Primitives app
3065 """
3066 import time
Jon Halle1a3b752015-07-22 13:02:46 -07003067 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07003068 assert main, "main not defined"
3069 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07003070 assert main.CLIs, "main.CLIs not defined"
3071 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07003072
3073 # Variables for the distributed primitives tests
3074 global pCounterName
Jon Hall5cf14d52015-07-16 12:15:19 -07003075 global pCounterValue
Jon Hall5cf14d52015-07-16 12:15:19 -07003076 global onosSet
3077 global onosSetName
3078 pCounterName = "TestON-Partitions"
Jon Hall5cf14d52015-07-16 12:15:19 -07003079 pCounterValue = 0
Jon Hall5cf14d52015-07-16 12:15:19 -07003080 onosSet = set([])
3081 onosSetName = "TestON-set"
3082
3083 description = "Install Primitives app"
3084 main.case( description )
3085 main.step( "Install Primitives app" )
3086 appName = "org.onosproject.distributedprimitives"
Jon Halla440e872016-03-31 15:15:50 -07003087 node = main.activeNodes[0]
3088 appResults = main.CLIs[node].activateApp( appName )
Jon Hall5cf14d52015-07-16 12:15:19 -07003089 utilities.assert_equals( expect=main.TRUE,
3090 actual=appResults,
3091 onpass="Primitives app activated",
3092 onfail="Primitives app not activated" )
3093 time.sleep( 5 ) # To allow all nodes to activate
3094
3095 def CASE17( self, main ):
3096 """
3097 Check for basic functionality with distributed primitives
3098 """
Jon Hall5cf14d52015-07-16 12:15:19 -07003099 # Make sure variables are defined/set
Jon Halle1a3b752015-07-22 13:02:46 -07003100 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07003101 assert main, "main not defined"
3102 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07003103 assert main.CLIs, "main.CLIs not defined"
3104 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07003105 assert pCounterName, "pCounterName not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07003106 assert onosSetName, "onosSetName not defined"
3107 # NOTE: assert fails if value is 0/None/Empty/False
3108 try:
3109 pCounterValue
3110 except NameError:
3111 main.log.error( "pCounterValue not defined, setting to 0" )
3112 pCounterValue = 0
3113 try:
Jon Hall5cf14d52015-07-16 12:15:19 -07003114 onosSet
3115 except NameError:
3116 main.log.error( "onosSet not defined, setting to empty Set" )
3117 onosSet = set([])
3118 # Variables for the distributed primitives tests. These are local only
3119 addValue = "a"
3120 addAllValue = "a b c d e f"
3121 retainValue = "c d e f"
3122
3123 description = "Check for basic functionality with distributed " +\
3124 "primitives"
3125 main.case( description )
Jon Halle1a3b752015-07-22 13:02:46 -07003126 main.caseExplanation = "Test the methods of the distributed " +\
3127 "primitives (counters and sets) throught the cli"
Jon Hall5cf14d52015-07-16 12:15:19 -07003128 # DISTRIBUTED ATOMIC COUNTERS
Jon Halle1a3b752015-07-22 13:02:46 -07003129 # Partitioned counters
3130 main.step( "Increment then get a default counter on each node" )
Jon Hall5cf14d52015-07-16 12:15:19 -07003131 pCounters = []
3132 threads = []
3133 addedPValues = []
Jon Halla440e872016-03-31 15:15:50 -07003134 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003135 t = main.Thread( target=main.CLIs[i].counterTestAddAndGet,
3136 name="counterAddAndGet-" + str( i ),
Jon Hall5cf14d52015-07-16 12:15:19 -07003137 args=[ pCounterName ] )
3138 pCounterValue += 1
3139 addedPValues.append( pCounterValue )
3140 threads.append( t )
3141 t.start()
3142
3143 for t in threads:
3144 t.join()
3145 pCounters.append( t.result )
3146 # Check that counter incremented numController times
3147 pCounterResults = True
3148 for i in addedPValues:
3149 tmpResult = i in pCounters
3150 pCounterResults = pCounterResults and tmpResult
3151 if not tmpResult:
3152 main.log.error( str( i ) + " is not in partitioned "
3153 "counter incremented results" )
3154 utilities.assert_equals( expect=True,
3155 actual=pCounterResults,
3156 onpass="Default counter incremented",
3157 onfail="Error incrementing default" +
3158 " counter" )
3159
Jon Halle1a3b752015-07-22 13:02:46 -07003160 main.step( "Get then Increment a default counter on each node" )
3161 pCounters = []
3162 threads = []
3163 addedPValues = []
Jon Halla440e872016-03-31 15:15:50 -07003164 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003165 t = main.Thread( target=main.CLIs[i].counterTestGetAndAdd,
3166 name="counterGetAndAdd-" + str( i ),
3167 args=[ pCounterName ] )
3168 addedPValues.append( pCounterValue )
3169 pCounterValue += 1
3170 threads.append( t )
3171 t.start()
3172
3173 for t in threads:
3174 t.join()
3175 pCounters.append( t.result )
3176 # Check that counter incremented numController times
3177 pCounterResults = True
3178 for i in addedPValues:
3179 tmpResult = i in pCounters
3180 pCounterResults = pCounterResults and tmpResult
3181 if not tmpResult:
3182 main.log.error( str( i ) + " is not in partitioned "
3183 "counter incremented results" )
3184 utilities.assert_equals( expect=True,
3185 actual=pCounterResults,
3186 onpass="Default counter incremented",
3187 onfail="Error incrementing default" +
3188 " counter" )
3189
3190 main.step( "Counters we added have the correct values" )
Jon Hall41d39f12016-04-11 22:54:35 -07003191 incrementCheck = main.HA.counterCheck( pCounterName, pCounterValue )
Jon Halle1a3b752015-07-22 13:02:46 -07003192 utilities.assert_equals( expect=main.TRUE,
3193 actual=incrementCheck,
3194 onpass="Added counters are correct",
3195 onfail="Added counters are incorrect" )
3196
3197 main.step( "Add -8 to then get a default counter on each node" )
3198 pCounters = []
3199 threads = []
3200 addedPValues = []
Jon Halla440e872016-03-31 15:15:50 -07003201 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003202 t = main.Thread( target=main.CLIs[i].counterTestAddAndGet,
3203 name="counterIncrement-" + str( i ),
3204 args=[ pCounterName ],
3205 kwargs={ "delta": -8 } )
3206 pCounterValue += -8
3207 addedPValues.append( pCounterValue )
3208 threads.append( t )
3209 t.start()
3210
3211 for t in threads:
3212 t.join()
3213 pCounters.append( t.result )
3214 # Check that counter incremented numController times
3215 pCounterResults = True
3216 for i in addedPValues:
3217 tmpResult = i in pCounters
3218 pCounterResults = pCounterResults and tmpResult
3219 if not tmpResult:
3220 main.log.error( str( i ) + " is not in partitioned "
3221 "counter incremented results" )
3222 utilities.assert_equals( expect=True,
3223 actual=pCounterResults,
3224 onpass="Default counter incremented",
3225 onfail="Error incrementing default" +
3226 " counter" )
3227
3228 main.step( "Add 5 to then get a default counter on each node" )
3229 pCounters = []
3230 threads = []
3231 addedPValues = []
Jon Halla440e872016-03-31 15:15:50 -07003232 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003233 t = main.Thread( target=main.CLIs[i].counterTestAddAndGet,
3234 name="counterIncrement-" + str( i ),
3235 args=[ pCounterName ],
3236 kwargs={ "delta": 5 } )
3237 pCounterValue += 5
3238 addedPValues.append( pCounterValue )
3239 threads.append( t )
3240 t.start()
3241
3242 for t in threads:
3243 t.join()
3244 pCounters.append( t.result )
3245 # Check that counter incremented numController times
3246 pCounterResults = True
3247 for i in addedPValues:
3248 tmpResult = i in pCounters
3249 pCounterResults = pCounterResults and tmpResult
3250 if not tmpResult:
3251 main.log.error( str( i ) + " is not in partitioned "
3252 "counter incremented results" )
3253 utilities.assert_equals( expect=True,
3254 actual=pCounterResults,
3255 onpass="Default counter incremented",
3256 onfail="Error incrementing default" +
3257 " counter" )
3258
3259 main.step( "Get then add 5 to a default counter on each node" )
3260 pCounters = []
3261 threads = []
3262 addedPValues = []
Jon Halla440e872016-03-31 15:15:50 -07003263 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003264 t = main.Thread( target=main.CLIs[i].counterTestGetAndAdd,
3265 name="counterIncrement-" + str( i ),
3266 args=[ pCounterName ],
3267 kwargs={ "delta": 5 } )
3268 addedPValues.append( pCounterValue )
3269 pCounterValue += 5
3270 threads.append( t )
3271 t.start()
3272
3273 for t in threads:
3274 t.join()
3275 pCounters.append( t.result )
3276 # Check that counter incremented numController times
3277 pCounterResults = True
3278 for i in addedPValues:
3279 tmpResult = i in pCounters
3280 pCounterResults = pCounterResults and tmpResult
3281 if not tmpResult:
3282 main.log.error( str( i ) + " is not in partitioned "
3283 "counter incremented results" )
3284 utilities.assert_equals( expect=True,
3285 actual=pCounterResults,
3286 onpass="Default counter incremented",
3287 onfail="Error incrementing default" +
3288 " counter" )
3289
3290 main.step( "Counters we added have the correct values" )
Jon Hall41d39f12016-04-11 22:54:35 -07003291 incrementCheck = main.HA.counterCheck( pCounterName, pCounterValue )
Jon Halle1a3b752015-07-22 13:02:46 -07003292 utilities.assert_equals( expect=main.TRUE,
3293 actual=incrementCheck,
3294 onpass="Added counters are correct",
3295 onfail="Added counters are incorrect" )
3296
Jon Hall5cf14d52015-07-16 12:15:19 -07003297 # DISTRIBUTED SETS
3298 main.step( "Distributed Set get" )
3299 size = len( onosSet )
3300 getResponses = []
3301 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003302 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003303 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07003304 name="setTestGet-" + str( i ),
3305 args=[ onosSetName ] )
3306 threads.append( t )
3307 t.start()
3308 for t in threads:
3309 t.join()
3310 getResponses.append( t.result )
3311
3312 getResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003313 for i in range( len( main.activeNodes ) ):
3314 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07003315 if isinstance( getResponses[ i ], list):
3316 current = set( getResponses[ i ] )
3317 if len( current ) == len( getResponses[ i ] ):
3318 # no repeats
3319 if onosSet != current:
Jon Hall6e709752016-02-01 13:38:46 -08003320 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003321 " has incorrect view" +
3322 " of set " + onosSetName + ":\n" +
3323 str( getResponses[ i ] ) )
3324 main.log.debug( "Expected: " + str( onosSet ) )
3325 main.log.debug( "Actual: " + str( current ) )
3326 getResults = main.FALSE
3327 else:
3328 # error, set is not a set
Jon Hall6e709752016-02-01 13:38:46 -08003329 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003330 " has repeat elements in" +
3331 " set " + onosSetName + ":\n" +
3332 str( getResponses[ i ] ) )
3333 getResults = main.FALSE
3334 elif getResponses[ i ] == main.ERROR:
3335 getResults = main.FALSE
3336 utilities.assert_equals( expect=main.TRUE,
3337 actual=getResults,
3338 onpass="Set elements are correct",
3339 onfail="Set elements are incorrect" )
3340
3341 main.step( "Distributed Set size" )
3342 sizeResponses = []
3343 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003344 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003345 t = main.Thread( target=main.CLIs[i].setTestSize,
Jon Hall5cf14d52015-07-16 12:15:19 -07003346 name="setTestSize-" + str( i ),
3347 args=[ onosSetName ] )
3348 threads.append( t )
3349 t.start()
3350 for t in threads:
3351 t.join()
3352 sizeResponses.append( t.result )
3353
3354 sizeResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003355 for i in range( len( main.activeNodes ) ):
3356 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07003357 if size != sizeResponses[ i ]:
3358 sizeResults = main.FALSE
Jon Hall6e709752016-02-01 13:38:46 -08003359 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003360 " expected a size of " + str( size ) +
3361 " for set " + onosSetName +
3362 " but got " + str( sizeResponses[ i ] ) )
3363 utilities.assert_equals( expect=main.TRUE,
3364 actual=sizeResults,
3365 onpass="Set sizes are correct",
3366 onfail="Set sizes are incorrect" )
3367
3368 main.step( "Distributed Set add()" )
3369 onosSet.add( addValue )
3370 addResponses = []
3371 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003372 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003373 t = main.Thread( target=main.CLIs[i].setTestAdd,
Jon Hall5cf14d52015-07-16 12:15:19 -07003374 name="setTestAdd-" + str( i ),
3375 args=[ onosSetName, addValue ] )
3376 threads.append( t )
3377 t.start()
3378 for t in threads:
3379 t.join()
3380 addResponses.append( t.result )
3381
3382 # main.TRUE = successfully changed the set
3383 # main.FALSE = action resulted in no change in set
3384 # main.ERROR - Some error in executing the function
3385 addResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003386 for i in range( len( main.activeNodes ) ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003387 if addResponses[ i ] == main.TRUE:
3388 # All is well
3389 pass
3390 elif addResponses[ i ] == main.FALSE:
3391 # Already in set, probably fine
3392 pass
3393 elif addResponses[ i ] == main.ERROR:
3394 # Error in execution
3395 addResults = main.FALSE
3396 else:
3397 # unexpected result
3398 addResults = main.FALSE
3399 if addResults != main.TRUE:
3400 main.log.error( "Error executing set add" )
3401
3402 # Check if set is still correct
3403 size = len( onosSet )
3404 getResponses = []
3405 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003406 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003407 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07003408 name="setTestGet-" + str( i ),
3409 args=[ onosSetName ] )
3410 threads.append( t )
3411 t.start()
3412 for t in threads:
3413 t.join()
3414 getResponses.append( t.result )
3415 getResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003416 for i in range( len( main.activeNodes ) ):
3417 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07003418 if isinstance( getResponses[ i ], list):
3419 current = set( getResponses[ i ] )
3420 if len( current ) == len( getResponses[ i ] ):
3421 # no repeats
3422 if onosSet != current:
Jon Hall6e709752016-02-01 13:38:46 -08003423 main.log.error( "ONOS" + node + " has incorrect view" +
Jon Hall5cf14d52015-07-16 12:15:19 -07003424 " of set " + onosSetName + ":\n" +
3425 str( getResponses[ i ] ) )
3426 main.log.debug( "Expected: " + str( onosSet ) )
3427 main.log.debug( "Actual: " + str( current ) )
3428 getResults = main.FALSE
3429 else:
3430 # error, set is not a set
Jon Hall6e709752016-02-01 13:38:46 -08003431 main.log.error( "ONOS" + node + " has repeat elements in" +
Jon Hall5cf14d52015-07-16 12:15:19 -07003432 " set " + onosSetName + ":\n" +
3433 str( getResponses[ i ] ) )
3434 getResults = main.FALSE
3435 elif getResponses[ i ] == main.ERROR:
3436 getResults = main.FALSE
3437 sizeResponses = []
3438 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003439 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003440 t = main.Thread( target=main.CLIs[i].setTestSize,
Jon Hall5cf14d52015-07-16 12:15:19 -07003441 name="setTestSize-" + str( i ),
3442 args=[ onosSetName ] )
3443 threads.append( t )
3444 t.start()
3445 for t in threads:
3446 t.join()
3447 sizeResponses.append( t.result )
3448 sizeResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003449 for i in range( len( main.activeNodes ) ):
3450 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07003451 if size != sizeResponses[ i ]:
3452 sizeResults = main.FALSE
Jon Hall6e709752016-02-01 13:38:46 -08003453 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003454 " expected a size of " + str( size ) +
3455 " for set " + onosSetName +
3456 " but got " + str( sizeResponses[ i ] ) )
3457 addResults = addResults and getResults and sizeResults
3458 utilities.assert_equals( expect=main.TRUE,
3459 actual=addResults,
3460 onpass="Set add correct",
3461 onfail="Set add was incorrect" )
3462
3463 main.step( "Distributed Set addAll()" )
3464 onosSet.update( addAllValue.split() )
3465 addResponses = []
3466 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003467 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003468 t = main.Thread( target=main.CLIs[i].setTestAdd,
Jon Hall5cf14d52015-07-16 12:15:19 -07003469 name="setTestAddAll-" + str( i ),
3470 args=[ onosSetName, addAllValue ] )
3471 threads.append( t )
3472 t.start()
3473 for t in threads:
3474 t.join()
3475 addResponses.append( t.result )
3476
3477 # main.TRUE = successfully changed the set
3478 # main.FALSE = action resulted in no change in set
3479 # main.ERROR - Some error in executing the function
3480 addAllResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003481 for i in range( len( main.activeNodes ) ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003482 if addResponses[ i ] == main.TRUE:
3483 # All is well
3484 pass
3485 elif addResponses[ i ] == main.FALSE:
3486 # Already in set, probably fine
3487 pass
3488 elif addResponses[ i ] == main.ERROR:
3489 # Error in execution
3490 addAllResults = main.FALSE
3491 else:
3492 # unexpected result
3493 addAllResults = main.FALSE
3494 if addAllResults != main.TRUE:
3495 main.log.error( "Error executing set addAll" )
3496
3497 # Check if set is still correct
3498 size = len( onosSet )
3499 getResponses = []
3500 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003501 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003502 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07003503 name="setTestGet-" + str( i ),
3504 args=[ onosSetName ] )
3505 threads.append( t )
3506 t.start()
3507 for t in threads:
3508 t.join()
3509 getResponses.append( t.result )
3510 getResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003511 for i in range( len( main.activeNodes ) ):
3512 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07003513 if isinstance( getResponses[ i ], list):
3514 current = set( getResponses[ i ] )
3515 if len( current ) == len( getResponses[ i ] ):
3516 # no repeats
3517 if onosSet != current:
Jon Hall6e709752016-02-01 13:38:46 -08003518 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003519 " has incorrect view" +
3520 " of set " + onosSetName + ":\n" +
3521 str( getResponses[ i ] ) )
3522 main.log.debug( "Expected: " + str( onosSet ) )
3523 main.log.debug( "Actual: " + str( current ) )
3524 getResults = main.FALSE
3525 else:
3526 # error, set is not a set
Jon Hall6e709752016-02-01 13:38:46 -08003527 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003528 " has repeat elements in" +
3529 " set " + onosSetName + ":\n" +
3530 str( getResponses[ i ] ) )
3531 getResults = main.FALSE
3532 elif getResponses[ i ] == main.ERROR:
3533 getResults = main.FALSE
3534 sizeResponses = []
3535 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003536 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003537 t = main.Thread( target=main.CLIs[i].setTestSize,
Jon Hall5cf14d52015-07-16 12:15:19 -07003538 name="setTestSize-" + str( i ),
3539 args=[ onosSetName ] )
3540 threads.append( t )
3541 t.start()
3542 for t in threads:
3543 t.join()
3544 sizeResponses.append( t.result )
3545 sizeResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003546 for i in range( len( main.activeNodes ) ):
3547 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07003548 if size != sizeResponses[ i ]:
3549 sizeResults = main.FALSE
Jon Hall6e709752016-02-01 13:38:46 -08003550 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003551 " expected a size of " + str( size ) +
3552 " for set " + onosSetName +
3553 " but got " + str( sizeResponses[ i ] ) )
3554 addAllResults = addAllResults and getResults and sizeResults
3555 utilities.assert_equals( expect=main.TRUE,
3556 actual=addAllResults,
3557 onpass="Set addAll correct",
3558 onfail="Set addAll was incorrect" )
3559
3560 main.step( "Distributed Set contains()" )
3561 containsResponses = []
3562 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003563 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003564 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07003565 name="setContains-" + str( i ),
3566 args=[ onosSetName ],
3567 kwargs={ "values": addValue } )
3568 threads.append( t )
3569 t.start()
3570 for t in threads:
3571 t.join()
3572 # NOTE: This is the tuple
3573 containsResponses.append( t.result )
3574
3575 containsResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003576 for i in range( len( main.activeNodes ) ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003577 if containsResponses[ i ] == main.ERROR:
3578 containsResults = main.FALSE
3579 else:
3580 containsResults = containsResults and\
3581 containsResponses[ i ][ 1 ]
3582 utilities.assert_equals( expect=main.TRUE,
3583 actual=containsResults,
3584 onpass="Set contains is functional",
3585 onfail="Set contains failed" )
3586
3587 main.step( "Distributed Set containsAll()" )
3588 containsAllResponses = []
3589 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003590 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003591 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07003592 name="setContainsAll-" + str( i ),
3593 args=[ onosSetName ],
3594 kwargs={ "values": addAllValue } )
3595 threads.append( t )
3596 t.start()
3597 for t in threads:
3598 t.join()
3599 # NOTE: This is the tuple
3600 containsAllResponses.append( t.result )
3601
3602 containsAllResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003603 for i in range( len( main.activeNodes ) ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003604 if containsResponses[ i ] == main.ERROR:
3605 containsResults = main.FALSE
3606 else:
3607 containsResults = containsResults and\
3608 containsResponses[ i ][ 1 ]
3609 utilities.assert_equals( expect=main.TRUE,
3610 actual=containsAllResults,
3611 onpass="Set containsAll is functional",
3612 onfail="Set containsAll failed" )
3613
3614 main.step( "Distributed Set remove()" )
3615 onosSet.remove( addValue )
3616 removeResponses = []
3617 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003618 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003619 t = main.Thread( target=main.CLIs[i].setTestRemove,
Jon Hall5cf14d52015-07-16 12:15:19 -07003620 name="setTestRemove-" + str( i ),
3621 args=[ onosSetName, addValue ] )
3622 threads.append( t )
3623 t.start()
3624 for t in threads:
3625 t.join()
3626 removeResponses.append( t.result )
3627
3628 # main.TRUE = successfully changed the set
3629 # main.FALSE = action resulted in no change in set
3630 # main.ERROR - Some error in executing the function
3631 removeResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003632 for i in range( len( main.activeNodes ) ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003633 if removeResponses[ i ] == main.TRUE:
3634 # All is well
3635 pass
3636 elif removeResponses[ i ] == main.FALSE:
3637 # not in set, probably fine
3638 pass
3639 elif removeResponses[ i ] == main.ERROR:
3640 # Error in execution
3641 removeResults = main.FALSE
3642 else:
3643 # unexpected result
3644 removeResults = main.FALSE
3645 if removeResults != main.TRUE:
3646 main.log.error( "Error executing set remove" )
3647
3648 # Check if set is still correct
3649 size = len( onosSet )
3650 getResponses = []
3651 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003652 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003653 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07003654 name="setTestGet-" + str( i ),
3655 args=[ onosSetName ] )
3656 threads.append( t )
3657 t.start()
3658 for t in threads:
3659 t.join()
3660 getResponses.append( t.result )
3661 getResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003662 for i in range( len( main.activeNodes ) ):
3663 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07003664 if isinstance( getResponses[ i ], list):
3665 current = set( getResponses[ i ] )
3666 if len( current ) == len( getResponses[ i ] ):
3667 # no repeats
3668 if onosSet != current:
Jon Hall6e709752016-02-01 13:38:46 -08003669 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003670 " has incorrect view" +
3671 " of set " + onosSetName + ":\n" +
3672 str( getResponses[ i ] ) )
3673 main.log.debug( "Expected: " + str( onosSet ) )
3674 main.log.debug( "Actual: " + str( current ) )
3675 getResults = main.FALSE
3676 else:
3677 # error, set is not a set
Jon Hall6e709752016-02-01 13:38:46 -08003678 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003679 " has repeat elements in" +
3680 " set " + onosSetName + ":\n" +
3681 str( getResponses[ i ] ) )
3682 getResults = main.FALSE
3683 elif getResponses[ i ] == main.ERROR:
3684 getResults = main.FALSE
3685 sizeResponses = []
3686 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003687 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003688 t = main.Thread( target=main.CLIs[i].setTestSize,
Jon Hall5cf14d52015-07-16 12:15:19 -07003689 name="setTestSize-" + str( i ),
3690 args=[ onosSetName ] )
3691 threads.append( t )
3692 t.start()
3693 for t in threads:
3694 t.join()
3695 sizeResponses.append( t.result )
3696 sizeResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003697 for i in range( len( main.activeNodes ) ):
3698 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07003699 if size != sizeResponses[ i ]:
3700 sizeResults = main.FALSE
Jon Hall6e709752016-02-01 13:38:46 -08003701 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003702 " expected a size of " + str( size ) +
3703 " for set " + onosSetName +
3704 " but got " + str( sizeResponses[ i ] ) )
3705 removeResults = removeResults and getResults and sizeResults
3706 utilities.assert_equals( expect=main.TRUE,
3707 actual=removeResults,
3708 onpass="Set remove correct",
3709 onfail="Set remove was incorrect" )
3710
3711 main.step( "Distributed Set removeAll()" )
3712 onosSet.difference_update( addAllValue.split() )
3713 removeAllResponses = []
3714 threads = []
3715 try:
Jon Halla440e872016-03-31 15:15:50 -07003716 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003717 t = main.Thread( target=main.CLIs[i].setTestRemove,
Jon Hall5cf14d52015-07-16 12:15:19 -07003718 name="setTestRemoveAll-" + str( i ),
3719 args=[ onosSetName, addAllValue ] )
3720 threads.append( t )
3721 t.start()
3722 for t in threads:
3723 t.join()
3724 removeAllResponses.append( t.result )
3725 except Exception, e:
3726 main.log.exception(e)
3727
3728 # main.TRUE = successfully changed the set
3729 # main.FALSE = action resulted in no change in set
3730 # main.ERROR - Some error in executing the function
3731 removeAllResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003732 for i in range( len( main.activeNodes ) ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003733 if removeAllResponses[ i ] == main.TRUE:
3734 # All is well
3735 pass
3736 elif removeAllResponses[ i ] == main.FALSE:
3737 # not in set, probably fine
3738 pass
3739 elif removeAllResponses[ i ] == main.ERROR:
3740 # Error in execution
3741 removeAllResults = main.FALSE
3742 else:
3743 # unexpected result
3744 removeAllResults = main.FALSE
3745 if removeAllResults != main.TRUE:
3746 main.log.error( "Error executing set removeAll" )
3747
3748 # Check if set is still correct
3749 size = len( onosSet )
3750 getResponses = []
3751 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003752 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003753 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07003754 name="setTestGet-" + str( i ),
3755 args=[ onosSetName ] )
3756 threads.append( t )
3757 t.start()
3758 for t in threads:
3759 t.join()
3760 getResponses.append( t.result )
3761 getResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003762 for i in range( len( main.activeNodes ) ):
3763 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07003764 if isinstance( getResponses[ i ], list):
3765 current = set( getResponses[ i ] )
3766 if len( current ) == len( getResponses[ i ] ):
3767 # no repeats
3768 if onosSet != current:
Jon Hall6e709752016-02-01 13:38:46 -08003769 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003770 " has incorrect view" +
3771 " of set " + onosSetName + ":\n" +
3772 str( getResponses[ i ] ) )
3773 main.log.debug( "Expected: " + str( onosSet ) )
3774 main.log.debug( "Actual: " + str( current ) )
3775 getResults = main.FALSE
3776 else:
3777 # error, set is not a set
Jon Hall6e709752016-02-01 13:38:46 -08003778 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003779 " has repeat elements in" +
3780 " set " + onosSetName + ":\n" +
3781 str( getResponses[ i ] ) )
3782 getResults = main.FALSE
3783 elif getResponses[ i ] == main.ERROR:
3784 getResults = main.FALSE
3785 sizeResponses = []
3786 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003787 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003788 t = main.Thread( target=main.CLIs[i].setTestSize,
Jon Hall5cf14d52015-07-16 12:15:19 -07003789 name="setTestSize-" + str( i ),
3790 args=[ onosSetName ] )
3791 threads.append( t )
3792 t.start()
3793 for t in threads:
3794 t.join()
3795 sizeResponses.append( t.result )
3796 sizeResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003797 for i in range( len( main.activeNodes ) ):
3798 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07003799 if size != sizeResponses[ i ]:
3800 sizeResults = main.FALSE
Jon Hall6e709752016-02-01 13:38:46 -08003801 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003802 " expected a size of " + str( size ) +
3803 " for set " + onosSetName +
3804 " but got " + str( sizeResponses[ i ] ) )
3805 removeAllResults = removeAllResults and getResults and sizeResults
3806 utilities.assert_equals( expect=main.TRUE,
3807 actual=removeAllResults,
3808 onpass="Set removeAll correct",
3809 onfail="Set removeAll was incorrect" )
3810
3811 main.step( "Distributed Set addAll()" )
3812 onosSet.update( addAllValue.split() )
3813 addResponses = []
3814 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003815 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003816 t = main.Thread( target=main.CLIs[i].setTestAdd,
Jon Hall5cf14d52015-07-16 12:15:19 -07003817 name="setTestAddAll-" + str( i ),
3818 args=[ onosSetName, addAllValue ] )
3819 threads.append( t )
3820 t.start()
3821 for t in threads:
3822 t.join()
3823 addResponses.append( t.result )
3824
3825 # main.TRUE = successfully changed the set
3826 # main.FALSE = action resulted in no change in set
3827 # main.ERROR - Some error in executing the function
3828 addAllResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003829 for i in range( len( main.activeNodes ) ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003830 if addResponses[ i ] == main.TRUE:
3831 # All is well
3832 pass
3833 elif addResponses[ i ] == main.FALSE:
3834 # Already in set, probably fine
3835 pass
3836 elif addResponses[ i ] == main.ERROR:
3837 # Error in execution
3838 addAllResults = main.FALSE
3839 else:
3840 # unexpected result
3841 addAllResults = main.FALSE
3842 if addAllResults != main.TRUE:
3843 main.log.error( "Error executing set addAll" )
3844
3845 # Check if set is still correct
3846 size = len( onosSet )
3847 getResponses = []
3848 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003849 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003850 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07003851 name="setTestGet-" + str( i ),
3852 args=[ onosSetName ] )
3853 threads.append( t )
3854 t.start()
3855 for t in threads:
3856 t.join()
3857 getResponses.append( t.result )
3858 getResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003859 for i in range( len( main.activeNodes ) ):
3860 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07003861 if isinstance( getResponses[ i ], list):
3862 current = set( getResponses[ i ] )
3863 if len( current ) == len( getResponses[ i ] ):
3864 # no repeats
3865 if onosSet != current:
Jon Hall6e709752016-02-01 13:38:46 -08003866 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003867 " has incorrect view" +
3868 " of set " + onosSetName + ":\n" +
3869 str( getResponses[ i ] ) )
3870 main.log.debug( "Expected: " + str( onosSet ) )
3871 main.log.debug( "Actual: " + str( current ) )
3872 getResults = main.FALSE
3873 else:
3874 # error, set is not a set
Jon Hall6e709752016-02-01 13:38:46 -08003875 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003876 " has repeat elements in" +
3877 " set " + onosSetName + ":\n" +
3878 str( getResponses[ i ] ) )
3879 getResults = main.FALSE
3880 elif getResponses[ i ] == main.ERROR:
3881 getResults = main.FALSE
3882 sizeResponses = []
3883 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003884 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003885 t = main.Thread( target=main.CLIs[i].setTestSize,
Jon Hall5cf14d52015-07-16 12:15:19 -07003886 name="setTestSize-" + str( i ),
3887 args=[ onosSetName ] )
3888 threads.append( t )
3889 t.start()
3890 for t in threads:
3891 t.join()
3892 sizeResponses.append( t.result )
3893 sizeResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003894 for i in range( len( main.activeNodes ) ):
3895 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07003896 if size != sizeResponses[ i ]:
3897 sizeResults = main.FALSE
Jon Hall6e709752016-02-01 13:38:46 -08003898 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003899 " expected a size of " + str( size ) +
3900 " for set " + onosSetName +
3901 " but got " + str( sizeResponses[ i ] ) )
3902 addAllResults = addAllResults and getResults and sizeResults
3903 utilities.assert_equals( expect=main.TRUE,
3904 actual=addAllResults,
3905 onpass="Set addAll correct",
3906 onfail="Set addAll was incorrect" )
3907
3908 main.step( "Distributed Set clear()" )
3909 onosSet.clear()
3910 clearResponses = []
3911 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003912 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003913 t = main.Thread( target=main.CLIs[i].setTestRemove,
Jon Hall5cf14d52015-07-16 12:15:19 -07003914 name="setTestClear-" + str( i ),
3915 args=[ onosSetName, " "], # Values doesn't matter
3916 kwargs={ "clear": True } )
3917 threads.append( t )
3918 t.start()
3919 for t in threads:
3920 t.join()
3921 clearResponses.append( t.result )
3922
3923 # main.TRUE = successfully changed the set
3924 # main.FALSE = action resulted in no change in set
3925 # main.ERROR - Some error in executing the function
3926 clearResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003927 for i in range( len( main.activeNodes ) ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003928 if clearResponses[ i ] == main.TRUE:
3929 # All is well
3930 pass
3931 elif clearResponses[ i ] == main.FALSE:
3932 # Nothing set, probably fine
3933 pass
3934 elif clearResponses[ i ] == main.ERROR:
3935 # Error in execution
3936 clearResults = main.FALSE
3937 else:
3938 # unexpected result
3939 clearResults = main.FALSE
3940 if clearResults != main.TRUE:
3941 main.log.error( "Error executing set clear" )
3942
3943 # Check if set is still correct
3944 size = len( onosSet )
3945 getResponses = []
3946 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003947 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003948 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07003949 name="setTestGet-" + str( i ),
3950 args=[ onosSetName ] )
3951 threads.append( t )
3952 t.start()
3953 for t in threads:
3954 t.join()
3955 getResponses.append( t.result )
3956 getResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003957 for i in range( len( main.activeNodes ) ):
3958 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07003959 if isinstance( getResponses[ i ], list):
3960 current = set( getResponses[ i ] )
3961 if len( current ) == len( getResponses[ i ] ):
3962 # no repeats
3963 if onosSet != current:
Jon Hall6e709752016-02-01 13:38:46 -08003964 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003965 " has incorrect view" +
3966 " of set " + onosSetName + ":\n" +
3967 str( getResponses[ i ] ) )
3968 main.log.debug( "Expected: " + str( onosSet ) )
3969 main.log.debug( "Actual: " + str( current ) )
3970 getResults = main.FALSE
3971 else:
3972 # error, set is not a set
Jon Hall6e709752016-02-01 13:38:46 -08003973 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003974 " has repeat elements in" +
3975 " set " + onosSetName + ":\n" +
3976 str( getResponses[ i ] ) )
3977 getResults = main.FALSE
3978 elif getResponses[ i ] == main.ERROR:
3979 getResults = main.FALSE
3980 sizeResponses = []
3981 threads = []
Jon Halla440e872016-03-31 15:15:50 -07003982 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07003983 t = main.Thread( target=main.CLIs[i].setTestSize,
Jon Hall5cf14d52015-07-16 12:15:19 -07003984 name="setTestSize-" + str( i ),
3985 args=[ onosSetName ] )
3986 threads.append( t )
3987 t.start()
3988 for t in threads:
3989 t.join()
3990 sizeResponses.append( t.result )
3991 sizeResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07003992 for i in range( len( main.activeNodes ) ):
3993 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07003994 if size != sizeResponses[ i ]:
3995 sizeResults = main.FALSE
Jon Hall6e709752016-02-01 13:38:46 -08003996 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07003997 " expected a size of " + str( size ) +
3998 " for set " + onosSetName +
3999 " but got " + str( sizeResponses[ i ] ) )
4000 clearResults = clearResults and getResults and sizeResults
4001 utilities.assert_equals( expect=main.TRUE,
4002 actual=clearResults,
4003 onpass="Set clear correct",
4004 onfail="Set clear was incorrect" )
4005
4006 main.step( "Distributed Set addAll()" )
4007 onosSet.update( addAllValue.split() )
4008 addResponses = []
4009 threads = []
Jon Halla440e872016-03-31 15:15:50 -07004010 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07004011 t = main.Thread( target=main.CLIs[i].setTestAdd,
Jon Hall5cf14d52015-07-16 12:15:19 -07004012 name="setTestAddAll-" + str( i ),
4013 args=[ onosSetName, addAllValue ] )
4014 threads.append( t )
4015 t.start()
4016 for t in threads:
4017 t.join()
4018 addResponses.append( t.result )
4019
4020 # main.TRUE = successfully changed the set
4021 # main.FALSE = action resulted in no change in set
4022 # main.ERROR - Some error in executing the function
4023 addAllResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07004024 for i in range( len( main.activeNodes ) ):
Jon Hall5cf14d52015-07-16 12:15:19 -07004025 if addResponses[ i ] == main.TRUE:
4026 # All is well
4027 pass
4028 elif addResponses[ i ] == main.FALSE:
4029 # Already in set, probably fine
4030 pass
4031 elif addResponses[ i ] == main.ERROR:
4032 # Error in execution
4033 addAllResults = main.FALSE
4034 else:
4035 # unexpected result
4036 addAllResults = main.FALSE
4037 if addAllResults != main.TRUE:
4038 main.log.error( "Error executing set addAll" )
4039
4040 # Check if set is still correct
4041 size = len( onosSet )
4042 getResponses = []
4043 threads = []
Jon Halla440e872016-03-31 15:15:50 -07004044 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07004045 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07004046 name="setTestGet-" + str( i ),
4047 args=[ onosSetName ] )
4048 threads.append( t )
4049 t.start()
4050 for t in threads:
4051 t.join()
4052 getResponses.append( t.result )
4053 getResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07004054 for i in range( len( main.activeNodes ) ):
4055 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07004056 if isinstance( getResponses[ i ], list):
4057 current = set( getResponses[ i ] )
4058 if len( current ) == len( getResponses[ i ] ):
4059 # no repeats
4060 if onosSet != current:
Jon Hall6e709752016-02-01 13:38:46 -08004061 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07004062 " has incorrect view" +
4063 " of set " + onosSetName + ":\n" +
4064 str( getResponses[ i ] ) )
4065 main.log.debug( "Expected: " + str( onosSet ) )
4066 main.log.debug( "Actual: " + str( current ) )
4067 getResults = main.FALSE
4068 else:
4069 # error, set is not a set
Jon Hall6e709752016-02-01 13:38:46 -08004070 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07004071 " has repeat elements in" +
4072 " set " + onosSetName + ":\n" +
4073 str( getResponses[ i ] ) )
4074 getResults = main.FALSE
4075 elif getResponses[ i ] == main.ERROR:
4076 getResults = main.FALSE
4077 sizeResponses = []
4078 threads = []
Jon Halla440e872016-03-31 15:15:50 -07004079 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07004080 t = main.Thread( target=main.CLIs[i].setTestSize,
Jon Hall5cf14d52015-07-16 12:15:19 -07004081 name="setTestSize-" + str( i ),
4082 args=[ onosSetName ] )
4083 threads.append( t )
4084 t.start()
4085 for t in threads:
4086 t.join()
4087 sizeResponses.append( t.result )
4088 sizeResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07004089 for i in range( len( main.activeNodes ) ):
4090 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07004091 if size != sizeResponses[ i ]:
4092 sizeResults = main.FALSE
Jon Hall6e709752016-02-01 13:38:46 -08004093 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07004094 " expected a size of " + str( size ) +
4095 " for set " + onosSetName +
4096 " but got " + str( sizeResponses[ i ] ) )
4097 addAllResults = addAllResults and getResults and sizeResults
4098 utilities.assert_equals( expect=main.TRUE,
4099 actual=addAllResults,
4100 onpass="Set addAll correct",
4101 onfail="Set addAll was incorrect" )
4102
4103 main.step( "Distributed Set retain()" )
4104 onosSet.intersection_update( retainValue.split() )
4105 retainResponses = []
4106 threads = []
Jon Halla440e872016-03-31 15:15:50 -07004107 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07004108 t = main.Thread( target=main.CLIs[i].setTestRemove,
Jon Hall5cf14d52015-07-16 12:15:19 -07004109 name="setTestRetain-" + str( i ),
4110 args=[ onosSetName, retainValue ],
4111 kwargs={ "retain": True } )
4112 threads.append( t )
4113 t.start()
4114 for t in threads:
4115 t.join()
4116 retainResponses.append( t.result )
4117
4118 # main.TRUE = successfully changed the set
4119 # main.FALSE = action resulted in no change in set
4120 # main.ERROR - Some error in executing the function
4121 retainResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07004122 for i in range( len( main.activeNodes ) ):
Jon Hall5cf14d52015-07-16 12:15:19 -07004123 if retainResponses[ i ] == main.TRUE:
4124 # All is well
4125 pass
4126 elif retainResponses[ i ] == main.FALSE:
4127 # Already in set, probably fine
4128 pass
4129 elif retainResponses[ i ] == main.ERROR:
4130 # Error in execution
4131 retainResults = main.FALSE
4132 else:
4133 # unexpected result
4134 retainResults = main.FALSE
4135 if retainResults != main.TRUE:
4136 main.log.error( "Error executing set retain" )
4137
4138 # Check if set is still correct
4139 size = len( onosSet )
4140 getResponses = []
4141 threads = []
Jon Halla440e872016-03-31 15:15:50 -07004142 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07004143 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07004144 name="setTestGet-" + str( i ),
4145 args=[ onosSetName ] )
4146 threads.append( t )
4147 t.start()
4148 for t in threads:
4149 t.join()
4150 getResponses.append( t.result )
4151 getResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07004152 for i in range( len( main.activeNodes ) ):
4153 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07004154 if isinstance( getResponses[ i ], list):
4155 current = set( getResponses[ i ] )
4156 if len( current ) == len( getResponses[ i ] ):
4157 # no repeats
4158 if onosSet != current:
Jon Hall6e709752016-02-01 13:38:46 -08004159 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07004160 " has incorrect view" +
4161 " of set " + onosSetName + ":\n" +
4162 str( getResponses[ i ] ) )
4163 main.log.debug( "Expected: " + str( onosSet ) )
4164 main.log.debug( "Actual: " + str( current ) )
4165 getResults = main.FALSE
4166 else:
4167 # error, set is not a set
Jon Hall6e709752016-02-01 13:38:46 -08004168 main.log.error( "ONOS" + node +
Jon Hall5cf14d52015-07-16 12:15:19 -07004169 " has repeat elements in" +
4170 " set " + onosSetName + ":\n" +
4171 str( getResponses[ i ] ) )
4172 getResults = main.FALSE
4173 elif getResponses[ i ] == main.ERROR:
4174 getResults = main.FALSE
4175 sizeResponses = []
4176 threads = []
Jon Halla440e872016-03-31 15:15:50 -07004177 for i in main.activeNodes:
Jon Halle1a3b752015-07-22 13:02:46 -07004178 t = main.Thread( target=main.CLIs[i].setTestSize,
Jon Hall5cf14d52015-07-16 12:15:19 -07004179 name="setTestSize-" + str( i ),
4180 args=[ onosSetName ] )
4181 threads.append( t )
4182 t.start()
4183 for t in threads:
4184 t.join()
4185 sizeResponses.append( t.result )
4186 sizeResults = main.TRUE
Jon Halla440e872016-03-31 15:15:50 -07004187 for i in range( len( main.activeNodes ) ):
4188 node = str( main.activeNodes[i] + 1 )
Jon Hall5cf14d52015-07-16 12:15:19 -07004189 if size != sizeResponses[ i ]:
4190 sizeResults = main.FALSE
Jon Hall6e709752016-02-01 13:38:46 -08004191 main.log.error( "ONOS" + node + " expected a size of " +
Jon Hall5cf14d52015-07-16 12:15:19 -07004192 str( size ) + " for set " + onosSetName +
4193 " but got " + str( sizeResponses[ i ] ) )
4194 retainResults = retainResults and getResults and sizeResults
4195 utilities.assert_equals( expect=main.TRUE,
4196 actual=retainResults,
4197 onpass="Set retain correct",
4198 onfail="Set retain was incorrect" )
4199
Jon Hall2a5002c2015-08-21 16:49:11 -07004200 # Transactional maps
4201 main.step( "Partitioned Transactional maps put" )
4202 tMapValue = "Testing"
4203 numKeys = 100
4204 putResult = True
Jon Halla440e872016-03-31 15:15:50 -07004205 node = main.activeNodes[0]
4206 putResponses = main.CLIs[node].transactionalMapPut( numKeys, tMapValue )
Jon Hall6e709752016-02-01 13:38:46 -08004207 if putResponses and len( putResponses ) == 100:
Jon Hall2a5002c2015-08-21 16:49:11 -07004208 for i in putResponses:
4209 if putResponses[ i ][ 'value' ] != tMapValue:
4210 putResult = False
4211 else:
4212 putResult = False
4213 if not putResult:
4214 main.log.debug( "Put response values: " + str( putResponses ) )
4215 utilities.assert_equals( expect=True,
4216 actual=putResult,
4217 onpass="Partitioned Transactional Map put successful",
4218 onfail="Partitioned Transactional Map put values are incorrect" )
4219
4220 main.step( "Partitioned Transactional maps get" )
4221 getCheck = True
4222 for n in range( 1, numKeys + 1 ):
4223 getResponses = []
4224 threads = []
4225 valueCheck = True
Jon Halla440e872016-03-31 15:15:50 -07004226 for i in main.activeNodes:
Jon Hall2a5002c2015-08-21 16:49:11 -07004227 t = main.Thread( target=main.CLIs[i].transactionalMapGet,
4228 name="TMap-get-" + str( i ),
Jon Hall6e709752016-02-01 13:38:46 -08004229 args=[ "Key" + str( n ) ] )
Jon Hall2a5002c2015-08-21 16:49:11 -07004230 threads.append( t )
4231 t.start()
4232 for t in threads:
4233 t.join()
4234 getResponses.append( t.result )
4235 for node in getResponses:
4236 if node != tMapValue:
4237 valueCheck = False
4238 if not valueCheck:
4239 main.log.warn( "Values for key 'Key" + str( n ) + "' do not match:" )
4240 main.log.warn( getResponses )
4241 getCheck = getCheck and valueCheck
4242 utilities.assert_equals( expect=True,
4243 actual=getCheck,
4244 onpass="Partitioned Transactional Map get values were correct",
4245 onfail="Partitioned Transactional Map values incorrect" )