blob: 72381aed33e74f209e8d9ac42f4fb5118f02de87 [file] [log] [blame]
Jon Hall5cf14d52015-07-16 12:15:19 -07001"""
2Description: This test is to determine if the HA test setup is
3 working correctly. There are no failures so this test should
4 have a 100% pass rate
5
6List of test cases:
7CASE1: Compile ONOS and push it to the test machines
8CASE2: Assign devices to controllers
9CASE21: Assign mastership to controllers
10CASE3: Assign intents
11CASE4: Ping across added host intents
12CASE5: Reading state of ONOS
13CASE6: The Failure case. Since this is the Sanity test, we do nothing.
14CASE7: Check state after control plane failure
15CASE8: Compare topo
16CASE9: Link s3-s28 down
17CASE10: Link s3-s28 up
18CASE11: Switch down
19CASE12: Switch up
20CASE13: Clean up
21CASE14: start election app on all onos nodes
22CASE15: Check that Leadership Election is still functional
23CASE16: Install Distributed Primitives app
24CASE17: Check for basic functionality with distributed primitives
25"""
26
27
28class HAsanity:
29
30 def __init__( self ):
31 self.default = ''
32
33 def CASE1( self, main ):
34 """
35 CASE1 is to compile ONOS and push it to the test machines
36
37 Startup sequence:
38 cell <name>
39 onos-verify-cell
40 NOTE: temporary - onos-remove-raft-logs
41 onos-uninstall
42 start mininet
43 git pull
44 mvn clean install
45 onos-package
46 onos-install -f
47 onos-wait-for-start
48 start cli sessions
49 start tcpdump
50 """
Jon Halle1a3b752015-07-22 13:02:46 -070051 import imp
Jon Hall5cf14d52015-07-16 12:15:19 -070052 main.log.info( "ONOS HA Sanity test - initialization" )
53 main.case( "Setting up test environment" )
Jon Hall783bbf92015-07-23 14:33:19 -070054 main.caseExplanation = "Setup the test environment including " +\
Jon Hall5cf14d52015-07-16 12:15:19 -070055 "installing ONOS, starting Mininet and ONOS" +\
56 "cli sessions."
57 # TODO: save all the timers and output them for plotting
58
59 # load some variables from the params file
60 PULLCODE = False
61 if main.params[ 'Git' ] == 'True':
62 PULLCODE = True
63 gitBranch = main.params[ 'branch' ]
64 cellName = main.params[ 'ENV' ][ 'cellName' ]
65
Jon Halle1a3b752015-07-22 13:02:46 -070066 main.numCtrls = int( main.params[ 'num_controllers' ] )
Jon Hall5cf14d52015-07-16 12:15:19 -070067 if main.ONOSbench.maxNodes:
Jon Halle1a3b752015-07-22 13:02:46 -070068 if main.ONOSbench.maxNodes < main.numCtrls:
69 main.numCtrls = int( main.ONOSbench.maxNodes )
Jon Hall5cf14d52015-07-16 12:15:19 -070070 # TODO: refactor how to get onos port, maybe put into component tag?
Jon Halle1a3b752015-07-22 13:02:46 -070071 # 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
80 # FIXME: just get controller port from params?
81 # TODO: do we really need all these?
82 ONOS1Port = main.params[ 'CTRL' ][ 'port1' ]
83 ONOS2Port = main.params[ 'CTRL' ][ 'port2' ]
84 ONOS3Port = main.params[ 'CTRL' ][ 'port3' ]
85 ONOS4Port = main.params[ 'CTRL' ][ 'port4' ]
86 ONOS5Port = main.params[ 'CTRL' ][ 'port5' ]
87 ONOS6Port = main.params[ 'CTRL' ][ 'port6' ]
88 ONOS7Port = main.params[ 'CTRL' ][ 'port7' ]
89
Jon Halle1a3b752015-07-22 13:02:46 -070090 try:
91 fileName = "Counters"
92 path = main.params[ 'imports' ][ 'path' ]
93 main.Counters = imp.load_source( fileName,
94 path + fileName + ".py" )
95 except Exception as e:
96 main.log.exception( e )
97 main.cleanup()
98 main.exit()
99
100 main.CLIs = []
101 main.nodes = []
Jon Hall5cf14d52015-07-16 12:15:19 -0700102 ipList = []
Jon Halle1a3b752015-07-22 13:02:46 -0700103 for i in range( 1, main.numCtrls + 1 ):
104 try:
105 main.CLIs.append( getattr( main, 'ONOScli' + str( i ) ) )
106 main.nodes.append( getattr( main, 'ONOS' + str( i ) ) )
107 ipList.append( main.nodes[ -1 ].ip_address )
108 except AttributeError:
109 break
Jon Hall5cf14d52015-07-16 12:15:19 -0700110
111 main.step( "Create cell file" )
112 cellAppString = main.params[ 'ENV' ][ 'appString' ]
113 main.ONOSbench.createCellFile( main.ONOSbench.ip_address, cellName,
114 main.Mininet1.ip_address,
115 cellAppString, ipList )
116 main.step( "Applying cell variable to environment" )
117 cellResult = main.ONOSbench.setCell( cellName )
118 verifyResult = main.ONOSbench.verifyCell()
119
120 # FIXME:this is short term fix
121 main.log.info( "Removing raft logs" )
122 main.ONOSbench.onosRemoveRaftLogs()
123
124 main.log.info( "Uninstalling ONOS" )
Jon Halle1a3b752015-07-22 13:02:46 -0700125 for node in main.nodes:
Jon Hall5cf14d52015-07-16 12:15:19 -0700126 main.ONOSbench.onosUninstall( node.ip_address )
127
128 # Make sure ONOS is DEAD
129 main.log.info( "Killing any ONOS processes" )
130 killResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -0700131 for node in main.nodes:
Jon Hall5cf14d52015-07-16 12:15:19 -0700132 killed = main.ONOSbench.onosKill( node.ip_address )
133 killResults = killResults and killed
134
135 cleanInstallResult = main.TRUE
136 gitPullResult = main.TRUE
137
138 main.step( "Starting Mininet" )
139 # scp topo file to mininet
140 # TODO: move to params?
141 topoName = "obelisk.py"
142 filePath = main.ONOSbench.home + "/tools/test/topos/"
kelvin-onlabd9e23de2015-08-06 10:34:44 -0700143 main.ONOSbench.scp( main.Mininet1,
144 filePath + topoName,
145 main.Mininet1.home,
146 direction="to" )
Jon Hall5cf14d52015-07-16 12:15:19 -0700147 mnResult = main.Mininet1.startNet( )
148 utilities.assert_equals( expect=main.TRUE, actual=mnResult,
149 onpass="Mininet Started",
150 onfail="Error starting Mininet" )
151
152 main.step( "Git checkout and pull " + gitBranch )
153 if PULLCODE:
154 main.ONOSbench.gitCheckout( gitBranch )
155 gitPullResult = main.ONOSbench.gitPull()
156 # values of 1 or 3 are good
157 utilities.assert_lesser( expect=0, actual=gitPullResult,
158 onpass="Git pull successful",
159 onfail="Git pull failed" )
160 main.ONOSbench.getVersion( report=True )
161
162 main.step( "Using mvn clean install" )
163 cleanInstallResult = main.TRUE
164 if PULLCODE and gitPullResult == main.TRUE:
165 cleanInstallResult = main.ONOSbench.cleanInstall()
166 else:
167 main.log.warn( "Did not pull new code so skipping mvn " +
168 "clean install" )
169 utilities.assert_equals( expect=main.TRUE,
170 actual=cleanInstallResult,
171 onpass="MCI successful",
172 onfail="MCI failed" )
173 # GRAPHS
174 # NOTE: important params here:
175 # job = name of Jenkins job
176 # Plot Name = Plot-HA, only can be used if multiple plots
177 # index = The number of the graph under plot name
178 job = "HAsanity"
179 plotName = "Plot-HA"
180 graphs = '<ac:structured-macro ac:name="html">\n'
181 graphs += '<ac:plain-text-body><![CDATA[\n'
182 graphs += '<iframe src="https://onos-jenkins.onlab.us/job/' + job +\
183 '/plot/' + plotName + '/getPlot?index=0' +\
184 '&width=500&height=300"' +\
185 'noborder="0" width="500" height="300" scrolling="yes" ' +\
186 'seamless="seamless"></iframe>\n'
187 graphs += ']]></ac:plain-text-body>\n'
188 graphs += '</ac:structured-macro>\n'
189 main.log.wiki(graphs)
190
191 main.step( "Creating ONOS package" )
192 packageResult = main.ONOSbench.onosPackage()
193 utilities.assert_equals( expect=main.TRUE, actual=packageResult,
194 onpass="ONOS package successful",
195 onfail="ONOS package failed" )
196
197 main.step( "Installing ONOS package" )
198 onosInstallResult = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -0700199 for node in main.nodes:
Jon Hall5cf14d52015-07-16 12:15:19 -0700200 tmpResult = main.ONOSbench.onosInstall( options="-f",
201 node=node.ip_address )
202 onosInstallResult = onosInstallResult and tmpResult
203 utilities.assert_equals( expect=main.TRUE, actual=onosInstallResult,
204 onpass="ONOS install successful",
205 onfail="ONOS install failed" )
206
207 main.step( "Checking if ONOS is up yet" )
208 for i in range( 2 ):
209 onosIsupResult = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -0700210 for node in main.nodes:
Jon Hall5cf14d52015-07-16 12:15:19 -0700211 started = main.ONOSbench.isup( node.ip_address )
212 if not started:
213 main.log.error( node.name + " didn't start!" )
214 main.ONOSbench.onosStop( node.ip_address )
215 main.ONOSbench.onosStart( node.ip_address )
216 onosIsupResult = onosIsupResult and started
217 if onosIsupResult == main.TRUE:
218 break
219 utilities.assert_equals( expect=main.TRUE, actual=onosIsupResult,
220 onpass="ONOS startup successful",
221 onfail="ONOS startup failed" )
222
223 main.log.step( "Starting ONOS CLI sessions" )
224 cliResults = main.TRUE
225 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -0700226 for i in range( main.numCtrls ):
227 t = main.Thread( target=main.CLIs[i].startOnosCli,
Jon Hall5cf14d52015-07-16 12:15:19 -0700228 name="startOnosCli-" + str( i ),
Jon Halle1a3b752015-07-22 13:02:46 -0700229 args=[main.nodes[i].ip_address] )
Jon Hall5cf14d52015-07-16 12:15:19 -0700230 threads.append( t )
231 t.start()
232
233 for t in threads:
234 t.join()
235 cliResults = cliResults and t.result
236 utilities.assert_equals( expect=main.TRUE, actual=cliResults,
237 onpass="ONOS cli startup successful",
238 onfail="ONOS cli startup failed" )
239
240 if main.params[ 'tcpdump' ].lower() == "true":
241 main.step( "Start Packet Capture MN" )
242 main.Mininet2.startTcpdump(
243 str( main.params[ 'MNtcpdump' ][ 'folder' ] ) + str( main.TEST )
244 + "-MN.pcap",
245 intf=main.params[ 'MNtcpdump' ][ 'intf' ],
246 port=main.params[ 'MNtcpdump' ][ 'port' ] )
247
248 main.step( "App Ids check" )
249 appCheck = main.TRUE
250 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -0700251 for i in range( main.numCtrls ):
252 t = main.Thread( target=main.CLIs[i].appToIDCheck,
Jon Hall5cf14d52015-07-16 12:15:19 -0700253 name="appToIDCheck-" + str( i ),
254 args=[] )
255 threads.append( t )
256 t.start()
257
258 for t in threads:
259 t.join()
260 appCheck = appCheck and t.result
261 if appCheck != main.TRUE:
Jon Halle1a3b752015-07-22 13:02:46 -0700262 main.log.warn( main.CLIs[0].apps() )
263 main.log.warn( main.CLIs[0].appIDs() )
Jon Hall5cf14d52015-07-16 12:15:19 -0700264 utilities.assert_equals( expect=main.TRUE, actual=appCheck,
265 onpass="App Ids seem to be correct",
266 onfail="Something is wrong with app Ids" )
267
268 if cliResults == main.FALSE:
269 main.log.error( "Failed to start ONOS, stopping test" )
270 main.cleanup()
271 main.exit()
272
273 def CASE2( self, main ):
274 """
275 Assign devices to controllers
276 """
277 import re
Jon Halle1a3b752015-07-22 13:02:46 -0700278 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -0700279 assert main, "main not defined"
280 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -0700281 assert main.CLIs, "main.CLIs not defined"
282 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -0700283 assert ONOS1Port, "ONOS1Port not defined"
284 assert ONOS2Port, "ONOS2Port not defined"
285 assert ONOS3Port, "ONOS3Port not defined"
286 assert ONOS4Port, "ONOS4Port not defined"
287 assert ONOS5Port, "ONOS5Port not defined"
288 assert ONOS6Port, "ONOS6Port not defined"
289 assert ONOS7Port, "ONOS7Port not defined"
290
291 main.case( "Assigning devices to controllers" )
Jon Hall783bbf92015-07-23 14:33:19 -0700292 main.caseExplanation = "Assign switches to ONOS using 'ovs-vsctl' " +\
Jon Hall5cf14d52015-07-16 12:15:19 -0700293 "and check that an ONOS node becomes the " +\
294 "master of the device."
295 main.step( "Assign switches to controllers" )
296
297 ipList = []
Jon Halle1a3b752015-07-22 13:02:46 -0700298 for i in range( main.numCtrls ):
299 ipList.append( main.nodes[ i ].ip_address )
Jon Hall5cf14d52015-07-16 12:15:19 -0700300 swList = []
301 for i in range( 1, 29 ):
302 swList.append( "s" + str( i ) )
303 main.Mininet1.assignSwController( sw=swList, ip=ipList )
304
305 mastershipCheck = main.TRUE
306 for i in range( 1, 29 ):
307 response = main.Mininet1.getSwController( "s" + str( i ) )
308 try:
309 main.log.info( str( response ) )
310 except Exception:
311 main.log.info( repr( response ) )
Jon Halle1a3b752015-07-22 13:02:46 -0700312 for node in main.nodes:
Jon Hall5cf14d52015-07-16 12:15:19 -0700313 if re.search( "tcp:" + node.ip_address, response ):
314 mastershipCheck = mastershipCheck and main.TRUE
315 else:
316 main.log.error( "Error, node " + node.ip_address + " is " +
317 "not in the list of controllers s" +
318 str( i ) + " is connecting to." )
319 mastershipCheck = main.FALSE
320 utilities.assert_equals(
321 expect=main.TRUE,
322 actual=mastershipCheck,
323 onpass="Switch mastership assigned correctly",
324 onfail="Switches not assigned correctly to controllers" )
325
326 def CASE21( self, main ):
327 """
328 Assign mastership to controllers
329 """
Jon Hall5cf14d52015-07-16 12:15:19 -0700330 import time
Jon Halle1a3b752015-07-22 13:02:46 -0700331 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -0700332 assert main, "main not defined"
333 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -0700334 assert main.CLIs, "main.CLIs not defined"
335 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -0700336 assert ONOS1Port, "ONOS1Port not defined"
337 assert ONOS2Port, "ONOS2Port not defined"
338 assert ONOS3Port, "ONOS3Port not defined"
339 assert ONOS4Port, "ONOS4Port not defined"
340 assert ONOS5Port, "ONOS5Port not defined"
341 assert ONOS6Port, "ONOS6Port not defined"
342 assert ONOS7Port, "ONOS7Port not defined"
343
344 main.case( "Assigning Controller roles for switches" )
Jon Hall783bbf92015-07-23 14:33:19 -0700345 main.caseExplanation = "Check that ONOS is connected to each " +\
Jon Hall5cf14d52015-07-16 12:15:19 -0700346 "device. Then manually assign" +\
347 " mastership to specific ONOS nodes using" +\
348 " 'device-role'"
349 main.step( "Assign mastership of switches to specific controllers" )
350 # Manually assign mastership to the controller we want
351 roleCall = main.TRUE
352
353 ipList = [ ]
354 deviceList = []
355 try:
356 # Assign mastership to specific controllers. This assignment was
357 # determined for a 7 node cluser, but will work with any sized
358 # cluster
359 for i in range( 1, 29 ): # switches 1 through 28
360 # set up correct variables:
361 if i == 1:
362 c = 0
Jon Halle1a3b752015-07-22 13:02:46 -0700363 ip = main.nodes[ c ].ip_address # ONOS1
Jon Hall5cf14d52015-07-16 12:15:19 -0700364 deviceId = main.ONOScli1.getDevice( "1000" ).get( 'id' )
365 elif i == 2:
Jon Halle1a3b752015-07-22 13:02:46 -0700366 c = 1 % main.numCtrls
367 ip = main.nodes[ c ].ip_address # ONOS2
Jon Hall5cf14d52015-07-16 12:15:19 -0700368 deviceId = main.ONOScli1.getDevice( "2000" ).get( 'id' )
369 elif i == 3:
Jon Halle1a3b752015-07-22 13:02:46 -0700370 c = 1 % main.numCtrls
371 ip = main.nodes[ c ].ip_address # ONOS2
Jon Hall5cf14d52015-07-16 12:15:19 -0700372 deviceId = main.ONOScli1.getDevice( "3000" ).get( 'id' )
373 elif i == 4:
Jon Halle1a3b752015-07-22 13:02:46 -0700374 c = 3 % main.numCtrls
375 ip = main.nodes[ c ].ip_address # ONOS4
Jon Hall5cf14d52015-07-16 12:15:19 -0700376 deviceId = main.ONOScli1.getDevice( "3004" ).get( 'id' )
377 elif i == 5:
Jon Halle1a3b752015-07-22 13:02:46 -0700378 c = 2 % main.numCtrls
379 ip = main.nodes[ c ].ip_address # ONOS3
Jon Hall5cf14d52015-07-16 12:15:19 -0700380 deviceId = main.ONOScli1.getDevice( "5000" ).get( 'id' )
381 elif i == 6:
Jon Halle1a3b752015-07-22 13:02:46 -0700382 c = 2 % main.numCtrls
383 ip = main.nodes[ c ].ip_address # ONOS3
Jon Hall5cf14d52015-07-16 12:15:19 -0700384 deviceId = main.ONOScli1.getDevice( "6000" ).get( 'id' )
385 elif i == 7:
Jon Halle1a3b752015-07-22 13:02:46 -0700386 c = 5 % main.numCtrls
387 ip = main.nodes[ c ].ip_address # ONOS6
Jon Hall5cf14d52015-07-16 12:15:19 -0700388 deviceId = main.ONOScli1.getDevice( "6007" ).get( 'id' )
389 elif i >= 8 and i <= 17:
Jon Halle1a3b752015-07-22 13:02:46 -0700390 c = 4 % main.numCtrls
391 ip = main.nodes[ c ].ip_address # ONOS5
Jon Hall5cf14d52015-07-16 12:15:19 -0700392 dpid = '3' + str( i ).zfill( 3 )
393 deviceId = main.ONOScli1.getDevice( dpid ).get( 'id' )
394 elif i >= 18 and i <= 27:
Jon Halle1a3b752015-07-22 13:02:46 -0700395 c = 6 % main.numCtrls
396 ip = main.nodes[ c ].ip_address # ONOS7
Jon Hall5cf14d52015-07-16 12:15:19 -0700397 dpid = '6' + str( i ).zfill( 3 )
398 deviceId = main.ONOScli1.getDevice( dpid ).get( 'id' )
399 elif i == 28:
400 c = 0
Jon Halle1a3b752015-07-22 13:02:46 -0700401 ip = main.nodes[ c ].ip_address # ONOS1
Jon Hall5cf14d52015-07-16 12:15:19 -0700402 deviceId = main.ONOScli1.getDevice( "2800" ).get( 'id' )
403 else:
404 main.log.error( "You didn't write an else statement for " +
405 "switch s" + str( i ) )
406 roleCall = main.FALSE
407 # Assign switch
408 assert deviceId, "No device id for s" + str( i ) + " in ONOS"
409 # TODO: make this controller dynamic
410 roleCall = roleCall and main.ONOScli1.deviceRole( deviceId,
411 ip )
412 ipList.append( ip )
413 deviceList.append( deviceId )
414 except ( AttributeError, AssertionError ):
415 main.log.exception( "Something is wrong with ONOS device view" )
416 main.log.info( main.ONOScli1.devices() )
417 utilities.assert_equals(
418 expect=main.TRUE,
419 actual=roleCall,
420 onpass="Re-assigned switch mastership to designated controller",
421 onfail="Something wrong with deviceRole calls" )
422
423 main.step( "Check mastership was correctly assigned" )
424 roleCheck = main.TRUE
425 # NOTE: This is due to the fact that device mastership change is not
426 # atomic and is actually a multi step process
427 time.sleep( 5 )
428 for i in range( len( ipList ) ):
429 ip = ipList[i]
430 deviceId = deviceList[i]
431 # Check assignment
432 master = main.ONOScli1.getRole( deviceId ).get( 'master' )
433 if ip in master:
434 roleCheck = roleCheck and main.TRUE
435 else:
436 roleCheck = roleCheck and main.FALSE
437 main.log.error( "Error, controller " + ip + " is not" +
438 " master " + "of device " +
439 str( deviceId ) + ". Master is " +
440 repr( master ) + "." )
441 utilities.assert_equals(
442 expect=main.TRUE,
443 actual=roleCheck,
444 onpass="Switches were successfully reassigned to designated " +
445 "controller",
446 onfail="Switches were not successfully reassigned" )
447
448 def CASE3( self, main ):
449 """
450 Assign intents
451 """
452 import time
453 import json
Jon Halle1a3b752015-07-22 13:02:46 -0700454 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -0700455 assert main, "main not defined"
456 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -0700457 assert main.CLIs, "main.CLIs not defined"
458 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -0700459 main.case( "Adding host Intents" )
Jon Hall783bbf92015-07-23 14:33:19 -0700460 main.caseExplanation = "Discover hosts by using pingall then " +\
Jon Hall5cf14d52015-07-16 12:15:19 -0700461 "assign predetermined host-to-host intents." +\
462 " After installation, check that the intent" +\
463 " is distributed to all nodes and the state" +\
464 " is INSTALLED"
465
466 # install onos-app-fwd
467 main.step( "Install reactive forwarding app" )
Jon Halle1a3b752015-07-22 13:02:46 -0700468 installResults = main.CLIs[0].activateApp( "org.onosproject.fwd" )
Jon Hall5cf14d52015-07-16 12:15:19 -0700469 utilities.assert_equals( expect=main.TRUE, actual=installResults,
470 onpass="Install fwd successful",
471 onfail="Install fwd failed" )
472
473 main.step( "Check app ids" )
474 appCheck = main.TRUE
475 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -0700476 for i in range( main.numCtrls ):
477 t = main.Thread( target=main.CLIs[i].appToIDCheck,
Jon Hall5cf14d52015-07-16 12:15:19 -0700478 name="appToIDCheck-" + str( i ),
479 args=[] )
480 threads.append( t )
481 t.start()
482
483 for t in threads:
484 t.join()
485 appCheck = appCheck and t.result
486 if appCheck != main.TRUE:
Jon Halle1a3b752015-07-22 13:02:46 -0700487 main.log.warn( main.CLIs[0].apps() )
488 main.log.warn( main.CLIs[0].appIDs() )
Jon Hall5cf14d52015-07-16 12:15:19 -0700489 utilities.assert_equals( expect=main.TRUE, actual=appCheck,
490 onpass="App Ids seem to be correct",
491 onfail="Something is wrong with app Ids" )
492
493 main.step( "Discovering Hosts( Via pingall for now )" )
494 # FIXME: Once we have a host discovery mechanism, use that instead
495 # REACTIVE FWD test
496 pingResult = main.FALSE
497 for i in range(2): # Retry if pingall fails first time
498 time1 = time.time()
499 pingResult = main.Mininet1.pingall()
500 if i == 0:
501 utilities.assert_equals(
502 expect=main.TRUE,
503 actual=pingResult,
504 onpass="Reactive Pingall test passed",
505 onfail="Reactive Pingall failed, " +
506 "one or more ping pairs failed" )
507 time2 = time.time()
508 main.log.info( "Time for pingall: %2f seconds" %
509 ( time2 - time1 ) )
510 # timeout for fwd flows
511 time.sleep( 11 )
512 # uninstall onos-app-fwd
513 main.step( "Uninstall reactive forwarding app" )
Jon Halle1a3b752015-07-22 13:02:46 -0700514 uninstallResult = main.CLIs[0].deactivateApp( "org.onosproject.fwd" )
Jon Hall5cf14d52015-07-16 12:15:19 -0700515 utilities.assert_equals( expect=main.TRUE, actual=uninstallResult,
516 onpass="Uninstall fwd successful",
517 onfail="Uninstall fwd failed" )
518 '''
519 main.Mininet1.handle.sendline( "py [ h.cmd( \"arping -c 1 10.1.1.1 \" ) for h in net.hosts ] ")
520 import time
521 time.sleep(60)
522 '''
523
524 main.step( "Check app ids" )
525 threads = []
526 appCheck2 = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -0700527 for i in range( main.numCtrls ):
528 t = main.Thread( target=main.CLIs[i].appToIDCheck,
Jon Hall5cf14d52015-07-16 12:15:19 -0700529 name="appToIDCheck-" + str( i ),
530 args=[] )
531 threads.append( t )
532 t.start()
533
534 for t in threads:
535 t.join()
536 appCheck2 = appCheck2 and t.result
537 if appCheck2 != main.TRUE:
Jon Halle1a3b752015-07-22 13:02:46 -0700538 main.log.warn( main.CLIs[0].apps() )
539 main.log.warn( main.CLIs[0].appIDs() )
Jon Hall5cf14d52015-07-16 12:15:19 -0700540 utilities.assert_equals( expect=main.TRUE, actual=appCheck2,
541 onpass="App Ids seem to be correct",
542 onfail="Something is wrong with app Ids" )
543
544 main.step( "Add host intents via cli" )
545 intentIds = []
546 # TODO: move the host numbers to params
547 # Maybe look at all the paths we ping?
548 intentAddResult = True
549 hostResult = main.TRUE
550 for i in range( 8, 18 ):
551 main.log.info( "Adding host intent between h" + str( i ) +
552 " and h" + str( i + 10 ) )
553 host1 = "00:00:00:00:00:" + \
554 str( hex( i )[ 2: ] ).zfill( 2 ).upper()
555 host2 = "00:00:00:00:00:" + \
556 str( hex( i + 10 )[ 2: ] ).zfill( 2 ).upper()
557 # NOTE: getHost can return None
558 host1Dict = main.ONOScli1.getHost( host1 )
559 host2Dict = main.ONOScli1.getHost( host2 )
560 host1Id = None
561 host2Id = None
562 if host1Dict and host2Dict:
563 host1Id = host1Dict.get( 'id', None )
564 host2Id = host2Dict.get( 'id', None )
565 if host1Id and host2Id:
Jon Halle1a3b752015-07-22 13:02:46 -0700566 nodeNum = ( i % main.numCtrls )
567 tmpId = main.CLIs[ nodeNum ].addHostIntent( host1Id, host2Id )
Jon Hall5cf14d52015-07-16 12:15:19 -0700568 if tmpId:
569 main.log.info( "Added intent with id: " + tmpId )
570 intentIds.append( tmpId )
571 else:
572 main.log.error( "addHostIntent returned: " +
573 repr( tmpId ) )
574 else:
575 main.log.error( "Error, getHost() failed for h" + str( i ) +
576 " and/or h" + str( i + 10 ) )
Jon Halle1a3b752015-07-22 13:02:46 -0700577 hosts = main.CLIs[ 0 ].hosts()
Jon Hall5cf14d52015-07-16 12:15:19 -0700578 main.log.warn( "Hosts output: " )
579 try:
580 main.log.warn( json.dumps( json.loads( hosts ),
581 sort_keys=True,
582 indent=4,
583 separators=( ',', ': ' ) ) )
584 except ( ValueError, TypeError ):
585 main.log.warn( repr( hosts ) )
586 hostResult = main.FALSE
587 utilities.assert_equals( expect=main.TRUE, actual=hostResult,
588 onpass="Found a host id for each host",
589 onfail="Error looking up host ids" )
590
591 intentStart = time.time()
592 onosIds = main.ONOScli1.getAllIntentsId()
593 main.log.info( "Submitted intents: " + str( intentIds ) )
594 main.log.info( "Intents in ONOS: " + str( onosIds ) )
595 for intent in intentIds:
596 if intent in onosIds:
597 pass # intent submitted is in onos
598 else:
599 intentAddResult = False
600 if intentAddResult:
601 intentStop = time.time()
602 else:
603 intentStop = None
604 # Print the intent states
605 intents = main.ONOScli1.intents()
606 intentStates = []
607 installedCheck = True
608 main.log.info( "%-6s%-15s%-15s" % ( 'Count', 'ID', 'State' ) )
609 count = 0
610 try:
611 for intent in json.loads( intents ):
612 state = intent.get( 'state', None )
613 if "INSTALLED" not in state:
614 installedCheck = False
615 intentId = intent.get( 'id', None )
616 intentStates.append( ( intentId, state ) )
617 except ( ValueError, TypeError ):
618 main.log.exception( "Error parsing intents" )
619 # add submitted intents not in the store
620 tmplist = [ i for i, s in intentStates ]
621 missingIntents = False
622 for i in intentIds:
623 if i not in tmplist:
624 intentStates.append( ( i, " - " ) )
625 missingIntents = True
626 intentStates.sort()
627 for i, s in intentStates:
628 count += 1
629 main.log.info( "%-6s%-15s%-15s" %
630 ( str( count ), str( i ), str( s ) ) )
631 leaders = main.ONOScli1.leaders()
632 try:
633 missing = False
634 if leaders:
635 parsedLeaders = json.loads( leaders )
636 main.log.warn( json.dumps( parsedLeaders,
637 sort_keys=True,
638 indent=4,
639 separators=( ',', ': ' ) ) )
640 # check for all intent partitions
641 topics = []
642 for i in range( 14 ):
643 topics.append( "intent-partition-" + str( i ) )
644 main.log.debug( topics )
645 ONOStopics = [ j['topic'] for j in parsedLeaders ]
646 for topic in topics:
647 if topic not in ONOStopics:
648 main.log.error( "Error: " + topic +
649 " not in leaders" )
650 missing = True
651 else:
652 main.log.error( "leaders() returned None" )
653 except ( ValueError, TypeError ):
654 main.log.exception( "Error parsing leaders" )
655 main.log.error( repr( leaders ) )
656 # Check all nodes
657 if missing:
Jon Halle1a3b752015-07-22 13:02:46 -0700658 for node in main.CLIs:
Jon Hall5cf14d52015-07-16 12:15:19 -0700659 response = node.leaders( jsonFormat=False)
660 main.log.warn( str( node.name ) + " leaders output: \n" +
661 str( response ) )
662
663 partitions = main.ONOScli1.partitions()
664 try:
665 if partitions :
666 parsedPartitions = json.loads( partitions )
667 main.log.warn( json.dumps( parsedPartitions,
668 sort_keys=True,
669 indent=4,
670 separators=( ',', ': ' ) ) )
671 # TODO check for a leader in all paritions
672 # TODO check for consistency among nodes
673 else:
674 main.log.error( "partitions() returned None" )
675 except ( ValueError, TypeError ):
676 main.log.exception( "Error parsing partitions" )
677 main.log.error( repr( partitions ) )
678 pendingMap = main.ONOScli1.pendingMap()
679 try:
680 if pendingMap :
681 parsedPending = json.loads( pendingMap )
682 main.log.warn( json.dumps( parsedPending,
683 sort_keys=True,
684 indent=4,
685 separators=( ',', ': ' ) ) )
686 # TODO check something here?
687 else:
688 main.log.error( "pendingMap() returned None" )
689 except ( ValueError, TypeError ):
690 main.log.exception( "Error parsing pending map" )
691 main.log.error( repr( pendingMap ) )
692
693 intentAddResult = bool( intentAddResult and not missingIntents and
694 installedCheck )
695 if not intentAddResult:
696 main.log.error( "Error in pushing host intents to ONOS" )
697
698 main.step( "Intent Anti-Entropy dispersion" )
699 for i in range(100):
700 correct = True
701 main.log.info( "Submitted intents: " + str( sorted( intentIds ) ) )
Jon Halle1a3b752015-07-22 13:02:46 -0700702 for cli in main.CLIs:
Jon Hall5cf14d52015-07-16 12:15:19 -0700703 onosIds = []
704 ids = cli.getAllIntentsId()
705 onosIds.append( ids )
706 main.log.debug( "Intents in " + cli.name + ": " +
707 str( sorted( onosIds ) ) )
708 if sorted( ids ) != sorted( intentIds ):
709 main.log.warn( "Set of intent IDs doesn't match" )
710 correct = False
711 break
712 else:
713 intents = json.loads( cli.intents() )
714 for intent in intents:
715 if intent[ 'state' ] != "INSTALLED":
716 main.log.warn( "Intent " + intent[ 'id' ] +
717 " is " + intent[ 'state' ] )
718 correct = False
719 break
720 if correct:
721 break
722 else:
723 time.sleep(1)
724 if not intentStop:
725 intentStop = time.time()
726 global gossipTime
727 gossipTime = intentStop - intentStart
728 main.log.info( "It took about " + str( gossipTime ) +
729 " seconds for all intents to appear in each node" )
730 # FIXME: make this time configurable/calculate based off of number of
731 # nodes and gossip rounds
732 utilities.assert_greater_equals(
733 expect=40, actual=gossipTime,
734 onpass="ECM anti-entropy for intents worked within " +
735 "expected time",
736 onfail="Intent ECM anti-entropy took too long" )
737 if gossipTime <= 40:
738 intentAddResult = True
739
740 if not intentAddResult or "key" in pendingMap:
741 import time
742 installedCheck = True
743 main.log.info( "Sleeping 60 seconds to see if intents are found" )
744 time.sleep( 60 )
745 onosIds = main.ONOScli1.getAllIntentsId()
746 main.log.info( "Submitted intents: " + str( intentIds ) )
747 main.log.info( "Intents in ONOS: " + str( onosIds ) )
748 # Print the intent states
749 intents = main.ONOScli1.intents()
750 intentStates = []
751 main.log.info( "%-6s%-15s%-15s" % ( 'Count', 'ID', 'State' ) )
752 count = 0
753 try:
754 for intent in json.loads( intents ):
755 # Iter through intents of a node
756 state = intent.get( 'state', None )
757 if "INSTALLED" not in state:
758 installedCheck = False
759 intentId = intent.get( 'id', None )
760 intentStates.append( ( intentId, state ) )
761 except ( ValueError, TypeError ):
762 main.log.exception( "Error parsing intents" )
763 # add submitted intents not in the store
764 tmplist = [ i for i, s in intentStates ]
765 for i in intentIds:
766 if i not in tmplist:
767 intentStates.append( ( i, " - " ) )
768 intentStates.sort()
769 for i, s in intentStates:
770 count += 1
771 main.log.info( "%-6s%-15s%-15s" %
772 ( str( count ), str( i ), str( s ) ) )
773 leaders = main.ONOScli1.leaders()
774 try:
775 missing = False
776 if leaders:
777 parsedLeaders = json.loads( leaders )
778 main.log.warn( json.dumps( parsedLeaders,
779 sort_keys=True,
780 indent=4,
781 separators=( ',', ': ' ) ) )
782 # check for all intent partitions
783 # check for election
784 topics = []
785 for i in range( 14 ):
786 topics.append( "intent-partition-" + str( i ) )
787 # FIXME: this should only be after we start the app
788 topics.append( "org.onosproject.election" )
789 main.log.debug( topics )
790 ONOStopics = [ j['topic'] for j in parsedLeaders ]
791 for topic in topics:
792 if topic not in ONOStopics:
793 main.log.error( "Error: " + topic +
794 " not in leaders" )
795 missing = True
796 else:
797 main.log.error( "leaders() returned None" )
798 except ( ValueError, TypeError ):
799 main.log.exception( "Error parsing leaders" )
800 main.log.error( repr( leaders ) )
801 # Check all nodes
802 if missing:
Jon Halle1a3b752015-07-22 13:02:46 -0700803 for node in main.CLIs:
Jon Hall5cf14d52015-07-16 12:15:19 -0700804 response = node.leaders( jsonFormat=False)
805 main.log.warn( str( node.name ) + " leaders output: \n" +
806 str( response ) )
807
808 partitions = main.ONOScli1.partitions()
809 try:
810 if partitions :
811 parsedPartitions = json.loads( partitions )
812 main.log.warn( json.dumps( parsedPartitions,
813 sort_keys=True,
814 indent=4,
815 separators=( ',', ': ' ) ) )
816 # TODO check for a leader in all paritions
817 # TODO check for consistency among nodes
818 else:
819 main.log.error( "partitions() returned None" )
820 except ( ValueError, TypeError ):
821 main.log.exception( "Error parsing partitions" )
822 main.log.error( repr( partitions ) )
823 pendingMap = main.ONOScli1.pendingMap()
824 try:
825 if pendingMap :
826 parsedPending = json.loads( pendingMap )
827 main.log.warn( json.dumps( parsedPending,
828 sort_keys=True,
829 indent=4,
830 separators=( ',', ': ' ) ) )
831 # TODO check something here?
832 else:
833 main.log.error( "pendingMap() returned None" )
834 except ( ValueError, TypeError ):
835 main.log.exception( "Error parsing pending map" )
836 main.log.error( repr( pendingMap ) )
837
838 def CASE4( self, main ):
839 """
840 Ping across added host intents
841 """
842 import json
843 import time
Jon Halle1a3b752015-07-22 13:02:46 -0700844 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -0700845 assert main, "main not defined"
846 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -0700847 assert main.CLIs, "main.CLIs not defined"
848 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -0700849 main.case( "Verify connectivity by sendind traffic across Intents" )
Jon Hall783bbf92015-07-23 14:33:19 -0700850 main.caseExplanation = "Ping across added host intents to check " +\
Jon Hall5cf14d52015-07-16 12:15:19 -0700851 "functionality and check the state of " +\
852 "the intent"
853 main.step( "Ping across added host intents" )
854 PingResult = main.TRUE
855 for i in range( 8, 18 ):
856 ping = main.Mininet1.pingHost( src="h" + str( i ),
857 target="h" + str( i + 10 ) )
858 PingResult = PingResult and ping
859 if ping == main.FALSE:
860 main.log.warn( "Ping failed between h" + str( i ) +
861 " and h" + str( i + 10 ) )
862 elif ping == main.TRUE:
863 main.log.info( "Ping test passed!" )
864 # Don't set PingResult or you'd override failures
865 if PingResult == main.FALSE:
866 main.log.error(
867 "Intents have not been installed correctly, pings failed." )
868 # TODO: pretty print
869 main.log.warn( "ONOS1 intents: " )
870 try:
871 tmpIntents = main.ONOScli1.intents()
872 main.log.warn( json.dumps( json.loads( tmpIntents ),
873 sort_keys=True,
874 indent=4,
875 separators=( ',', ': ' ) ) )
876 except ( ValueError, TypeError ):
877 main.log.warn( repr( tmpIntents ) )
878 utilities.assert_equals(
879 expect=main.TRUE,
880 actual=PingResult,
881 onpass="Intents have been installed correctly and pings work",
882 onfail="Intents have not been installed correctly, pings failed." )
883
884 main.step( "Check Intent state" )
885 installedCheck = False
886 loopCount = 0
887 while not installedCheck and loopCount < 40:
888 installedCheck = True
889 # Print the intent states
890 intents = main.ONOScli1.intents()
891 intentStates = []
892 main.log.info( "%-6s%-15s%-15s" % ( 'Count', 'ID', 'State' ) )
893 count = 0
894 # Iter through intents of a node
895 try:
896 for intent in json.loads( intents ):
897 state = intent.get( 'state', None )
898 if "INSTALLED" not in state:
899 installedCheck = False
900 intentId = intent.get( 'id', None )
901 intentStates.append( ( intentId, state ) )
902 except ( ValueError, TypeError ):
903 main.log.exception( "Error parsing intents." )
904 # Print states
905 intentStates.sort()
906 for i, s in intentStates:
907 count += 1
908 main.log.info( "%-6s%-15s%-15s" %
909 ( str( count ), str( i ), str( s ) ) )
910 if not installedCheck:
911 time.sleep( 1 )
912 loopCount += 1
913 utilities.assert_equals( expect=True, actual=installedCheck,
914 onpass="Intents are all INSTALLED",
915 onfail="Intents are not all in " +
916 "INSTALLED state" )
917
918 main.step( "Check leadership of topics" )
919 leaders = main.ONOScli1.leaders()
920 topicCheck = main.TRUE
921 try:
922 if leaders:
923 parsedLeaders = json.loads( leaders )
924 main.log.warn( json.dumps( parsedLeaders,
925 sort_keys=True,
926 indent=4,
927 separators=( ',', ': ' ) ) )
928 # check for all intent partitions
929 # check for election
930 # TODO: Look at Devices as topics now that it uses this system
931 topics = []
932 for i in range( 14 ):
933 topics.append( "intent-partition-" + str( i ) )
934 # FIXME: this should only be after we start the app
935 # FIXME: topics.append( "org.onosproject.election" )
936 # Print leaders output
937 main.log.debug( topics )
938 ONOStopics = [ j['topic'] for j in parsedLeaders ]
939 for topic in topics:
940 if topic not in ONOStopics:
941 main.log.error( "Error: " + topic +
942 " not in leaders" )
943 topicCheck = main.FALSE
944 else:
945 main.log.error( "leaders() returned None" )
946 topicCheck = main.FALSE
947 except ( ValueError, TypeError ):
948 topicCheck = main.FALSE
949 main.log.exception( "Error parsing leaders" )
950 main.log.error( repr( leaders ) )
951 # TODO: Check for a leader of these topics
952 # Check all nodes
953 if topicCheck:
Jon Halle1a3b752015-07-22 13:02:46 -0700954 for node in main.CLIs:
Jon Hall5cf14d52015-07-16 12:15:19 -0700955 response = node.leaders( jsonFormat=False)
956 main.log.warn( str( node.name ) + " leaders output: \n" +
957 str( response ) )
958
959 utilities.assert_equals( expect=main.TRUE, actual=topicCheck,
960 onpass="intent Partitions is in leaders",
961 onfail="Some topics were lost " )
962 # Print partitions
963 partitions = main.ONOScli1.partitions()
964 try:
965 if partitions :
966 parsedPartitions = json.loads( partitions )
967 main.log.warn( json.dumps( parsedPartitions,
968 sort_keys=True,
969 indent=4,
970 separators=( ',', ': ' ) ) )
971 # TODO check for a leader in all paritions
972 # TODO check for consistency among nodes
973 else:
974 main.log.error( "partitions() returned None" )
975 except ( ValueError, TypeError ):
976 main.log.exception( "Error parsing partitions" )
977 main.log.error( repr( partitions ) )
978 # Print Pending Map
979 pendingMap = main.ONOScli1.pendingMap()
980 try:
981 if pendingMap :
982 parsedPending = json.loads( pendingMap )
983 main.log.warn( json.dumps( parsedPending,
984 sort_keys=True,
985 indent=4,
986 separators=( ',', ': ' ) ) )
987 # TODO check something here?
988 else:
989 main.log.error( "pendingMap() returned None" )
990 except ( ValueError, TypeError ):
991 main.log.exception( "Error parsing pending map" )
992 main.log.error( repr( pendingMap ) )
993
994 if not installedCheck:
995 main.log.info( "Waiting 60 seconds to see if the state of " +
996 "intents change" )
997 time.sleep( 60 )
998 # Print the intent states
999 intents = main.ONOScli1.intents()
1000 intentStates = []
1001 main.log.info( "%-6s%-15s%-15s" % ( 'Count', 'ID', 'State' ) )
1002 count = 0
1003 # Iter through intents of a node
1004 try:
1005 for intent in json.loads( intents ):
1006 state = intent.get( 'state', None )
1007 if "INSTALLED" not in state:
1008 installedCheck = False
1009 intentId = intent.get( 'id', None )
1010 intentStates.append( ( intentId, state ) )
1011 except ( ValueError, TypeError ):
1012 main.log.exception( "Error parsing intents." )
1013 intentStates.sort()
1014 for i, s in intentStates:
1015 count += 1
1016 main.log.info( "%-6s%-15s%-15s" %
1017 ( str( count ), str( i ), str( s ) ) )
1018 leaders = main.ONOScli1.leaders()
1019 try:
1020 missing = False
1021 if leaders:
1022 parsedLeaders = json.loads( leaders )
1023 main.log.warn( json.dumps( parsedLeaders,
1024 sort_keys=True,
1025 indent=4,
1026 separators=( ',', ': ' ) ) )
1027 # check for all intent partitions
1028 # check for election
1029 topics = []
1030 for i in range( 14 ):
1031 topics.append( "intent-partition-" + str( i ) )
1032 # FIXME: this should only be after we start the app
1033 topics.append( "org.onosproject.election" )
1034 main.log.debug( topics )
1035 ONOStopics = [ j['topic'] for j in parsedLeaders ]
1036 for topic in topics:
1037 if topic not in ONOStopics:
1038 main.log.error( "Error: " + topic +
1039 " not in leaders" )
1040 missing = True
1041 else:
1042 main.log.error( "leaders() returned None" )
1043 except ( ValueError, TypeError ):
1044 main.log.exception( "Error parsing leaders" )
1045 main.log.error( repr( leaders ) )
1046 if missing:
Jon Halle1a3b752015-07-22 13:02:46 -07001047 for node in main.CLIs:
Jon Hall5cf14d52015-07-16 12:15:19 -07001048 response = node.leaders( jsonFormat=False)
1049 main.log.warn( str( node.name ) + " leaders output: \n" +
1050 str( response ) )
1051
1052 partitions = main.ONOScli1.partitions()
1053 try:
1054 if partitions :
1055 parsedPartitions = json.loads( partitions )
1056 main.log.warn( json.dumps( parsedPartitions,
1057 sort_keys=True,
1058 indent=4,
1059 separators=( ',', ': ' ) ) )
1060 # TODO check for a leader in all paritions
1061 # TODO check for consistency among nodes
1062 else:
1063 main.log.error( "partitions() returned None" )
1064 except ( ValueError, TypeError ):
1065 main.log.exception( "Error parsing partitions" )
1066 main.log.error( repr( partitions ) )
1067 pendingMap = main.ONOScli1.pendingMap()
1068 try:
1069 if pendingMap :
1070 parsedPending = json.loads( pendingMap )
1071 main.log.warn( json.dumps( parsedPending,
1072 sort_keys=True,
1073 indent=4,
1074 separators=( ',', ': ' ) ) )
1075 # TODO check something here?
1076 else:
1077 main.log.error( "pendingMap() returned None" )
1078 except ( ValueError, TypeError ):
1079 main.log.exception( "Error parsing pending map" )
1080 main.log.error( repr( pendingMap ) )
1081 # Print flowrules
Jon Halle1a3b752015-07-22 13:02:46 -07001082 main.log.debug( main.CLIs[0].flows( jsonFormat=False ) )
Jon Hall5cf14d52015-07-16 12:15:19 -07001083 main.step( "Wait a minute then ping again" )
1084 # the wait is above
1085 PingResult = main.TRUE
1086 for i in range( 8, 18 ):
1087 ping = main.Mininet1.pingHost( src="h" + str( i ),
1088 target="h" + str( i + 10 ) )
1089 PingResult = PingResult and ping
1090 if ping == main.FALSE:
1091 main.log.warn( "Ping failed between h" + str( i ) +
1092 " and h" + str( i + 10 ) )
1093 elif ping == main.TRUE:
1094 main.log.info( "Ping test passed!" )
1095 # Don't set PingResult or you'd override failures
1096 if PingResult == main.FALSE:
1097 main.log.error(
1098 "Intents have not been installed correctly, pings failed." )
1099 # TODO: pretty print
1100 main.log.warn( "ONOS1 intents: " )
1101 try:
1102 tmpIntents = main.ONOScli1.intents()
1103 main.log.warn( json.dumps( json.loads( tmpIntents ),
1104 sort_keys=True,
1105 indent=4,
1106 separators=( ',', ': ' ) ) )
1107 except ( ValueError, TypeError ):
1108 main.log.warn( repr( tmpIntents ) )
1109 utilities.assert_equals(
1110 expect=main.TRUE,
1111 actual=PingResult,
1112 onpass="Intents have been installed correctly and pings work",
1113 onfail="Intents have not been installed correctly, pings failed." )
1114
1115 def CASE5( self, main ):
1116 """
1117 Reading state of ONOS
1118 """
1119 import json
1120 import time
Jon Halle1a3b752015-07-22 13:02:46 -07001121 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07001122 assert main, "main not defined"
1123 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07001124 assert main.CLIs, "main.CLIs not defined"
1125 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07001126
1127 main.case( "Setting up and gathering data for current state" )
1128 # The general idea for this test case is to pull the state of
1129 # ( intents,flows, topology,... ) from each ONOS node
1130 # We can then compare them with each other and also with past states
1131
1132 main.step( "Check that each switch has a master" )
1133 global mastershipState
1134 mastershipState = '[]'
1135
1136 # Assert that each device has a master
1137 rolesNotNull = main.TRUE
1138 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07001139 for i in range( main.numCtrls ):
1140 t = main.Thread( target=main.CLIs[i].rolesNotNull,
Jon Hall5cf14d52015-07-16 12:15:19 -07001141 name="rolesNotNull-" + str( i ),
1142 args=[] )
1143 threads.append( t )
1144 t.start()
1145
1146 for t in threads:
1147 t.join()
1148 rolesNotNull = rolesNotNull and t.result
1149 utilities.assert_equals(
1150 expect=main.TRUE,
1151 actual=rolesNotNull,
1152 onpass="Each device has a master",
1153 onfail="Some devices don't have a master assigned" )
1154
1155 main.step( "Get the Mastership of each switch from each controller" )
1156 ONOSMastership = []
1157 mastershipCheck = main.FALSE
1158 consistentMastership = True
1159 rolesResults = True
1160 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07001161 for i in range( main.numCtrls ):
1162 t = main.Thread( target=main.CLIs[i].roles,
Jon Hall5cf14d52015-07-16 12:15:19 -07001163 name="roles-" + str( i ),
1164 args=[] )
1165 threads.append( t )
1166 t.start()
1167
1168 for t in threads:
1169 t.join()
1170 ONOSMastership.append( t.result )
1171
Jon Halle1a3b752015-07-22 13:02:46 -07001172 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07001173 if not ONOSMastership[i] or "Error" in ONOSMastership[i]:
1174 main.log.error( "Error in getting ONOS" + str( i + 1 ) +
1175 " roles" )
1176 main.log.warn(
1177 "ONOS" + str( i + 1 ) + " mastership response: " +
1178 repr( ONOSMastership[i] ) )
1179 rolesResults = False
1180 utilities.assert_equals(
1181 expect=True,
1182 actual=rolesResults,
1183 onpass="No error in reading roles output",
1184 onfail="Error in reading roles from ONOS" )
1185
1186 main.step( "Check for consistency in roles from each controller" )
1187 if all([ i == ONOSMastership[ 0 ] for i in ONOSMastership ] ):
1188 main.log.info(
1189 "Switch roles are consistent across all ONOS nodes" )
1190 else:
1191 consistentMastership = False
1192 utilities.assert_equals(
1193 expect=True,
1194 actual=consistentMastership,
1195 onpass="Switch roles are consistent across all ONOS nodes",
1196 onfail="ONOS nodes have different views of switch roles" )
1197
1198 if rolesResults and not consistentMastership:
Jon Halle1a3b752015-07-22 13:02:46 -07001199 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07001200 try:
1201 main.log.warn(
1202 "ONOS" + str( i + 1 ) + " roles: ",
1203 json.dumps(
1204 json.loads( ONOSMastership[ i ] ),
1205 sort_keys=True,
1206 indent=4,
1207 separators=( ',', ': ' ) ) )
1208 except ( ValueError, TypeError ):
1209 main.log.warn( repr( ONOSMastership[ i ] ) )
1210 elif rolesResults and consistentMastership:
1211 mastershipCheck = main.TRUE
1212 mastershipState = ONOSMastership[ 0 ]
1213
1214 main.step( "Get the intents from each controller" )
1215 global intentState
1216 intentState = []
1217 ONOSIntents = []
1218 intentCheck = main.FALSE
1219 consistentIntents = True
1220 intentsResults = True
1221 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07001222 for i in range( main.numCtrls ):
1223 t = main.Thread( target=main.CLIs[i].intents,
Jon Hall5cf14d52015-07-16 12:15:19 -07001224 name="intents-" + str( i ),
1225 args=[],
1226 kwargs={ 'jsonFormat': True } )
1227 threads.append( t )
1228 t.start()
1229
1230 for t in threads:
1231 t.join()
1232 ONOSIntents.append( t.result )
1233
Jon Halle1a3b752015-07-22 13:02:46 -07001234 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07001235 if not ONOSIntents[ i ] or "Error" in ONOSIntents[ i ]:
1236 main.log.error( "Error in getting ONOS" + str( i + 1 ) +
1237 " intents" )
1238 main.log.warn( "ONOS" + str( i + 1 ) + " intents response: " +
1239 repr( ONOSIntents[ i ] ) )
1240 intentsResults = False
1241 utilities.assert_equals(
1242 expect=True,
1243 actual=intentsResults,
1244 onpass="No error in reading intents output",
1245 onfail="Error in reading intents from ONOS" )
1246
1247 main.step( "Check for consistency in Intents from each controller" )
1248 if all([ sorted( i ) == sorted( ONOSIntents[ 0 ] ) for i in ONOSIntents ] ):
1249 main.log.info( "Intents are consistent across all ONOS " +
1250 "nodes" )
1251 else:
1252 consistentIntents = False
1253 main.log.error( "Intents not consistent" )
1254 utilities.assert_equals(
1255 expect=True,
1256 actual=consistentIntents,
1257 onpass="Intents are consistent across all ONOS nodes",
1258 onfail="ONOS nodes have different views of intents" )
1259
1260 if intentsResults:
1261 # Try to make it easy to figure out what is happening
1262 #
1263 # Intent ONOS1 ONOS2 ...
1264 # 0x01 INSTALLED INSTALLING
1265 # ... ... ...
1266 # ... ... ...
1267 title = " Id"
Jon Halle1a3b752015-07-22 13:02:46 -07001268 for n in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07001269 title += " " * 10 + "ONOS" + str( n + 1 )
1270 main.log.warn( title )
Jon Halle1a3b752015-07-22 13:02:46 -07001271 # get all intent keys in the cluster
Jon Hall5cf14d52015-07-16 12:15:19 -07001272 keys = []
1273 try:
1274 # Get the set of all intent keys
1275 for nodeStr in ONOSIntents:
1276 node = json.loads( nodeStr )
1277 for intent in node:
1278 keys.append( intent.get( 'id' ) )
1279 keys = set( keys )
1280 # For each intent key, print the state on each node
1281 for key in keys:
1282 row = "%-13s" % key
1283 for nodeStr in ONOSIntents:
1284 node = json.loads( nodeStr )
1285 for intent in node:
1286 if intent.get( 'id', "Error" ) == key:
1287 row += "%-15s" % intent.get( 'state' )
1288 main.log.warn( row )
1289 # End of intent state table
1290 except ValueError as e:
1291 main.log.exception( e )
1292 main.log.debug( "nodeStr was: " + repr( nodeStr ) )
1293
1294 if intentsResults and not consistentIntents:
1295 # print the json objects
1296 n = len(ONOSIntents)
1297 main.log.debug( "ONOS" + str( n ) + " intents: " )
1298 main.log.debug( json.dumps( json.loads( ONOSIntents[ -1 ] ),
1299 sort_keys=True,
1300 indent=4,
1301 separators=( ',', ': ' ) ) )
Jon Halle1a3b752015-07-22 13:02:46 -07001302 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07001303 if ONOSIntents[ i ] != ONOSIntents[ -1 ]:
1304 main.log.debug( "ONOS" + str( i + 1 ) + " intents: " )
1305 main.log.debug( json.dumps( json.loads( ONOSIntents[i] ),
1306 sort_keys=True,
1307 indent=4,
1308 separators=( ',', ': ' ) ) )
1309 else:
Jon Halle1a3b752015-07-22 13:02:46 -07001310 main.log.debug( main.nodes[ i ].name + " intents match ONOS" +
Jon Hall5cf14d52015-07-16 12:15:19 -07001311 str( n ) + " intents" )
1312 elif intentsResults and consistentIntents:
1313 intentCheck = main.TRUE
1314 intentState = ONOSIntents[ 0 ]
1315
1316 main.step( "Get the flows from each controller" )
1317 global flowState
1318 flowState = []
1319 ONOSFlows = []
1320 ONOSFlowsJson = []
1321 flowCheck = main.FALSE
1322 consistentFlows = True
1323 flowsResults = True
1324 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07001325 for i in range( main.numCtrls ):
1326 t = main.Thread( target=main.CLIs[i].flows,
Jon Hall5cf14d52015-07-16 12:15:19 -07001327 name="flows-" + str( i ),
1328 args=[],
1329 kwargs={ 'jsonFormat': True } )
1330 threads.append( t )
1331 t.start()
1332
1333 # NOTE: Flows command can take some time to run
1334 time.sleep(30)
1335 for t in threads:
1336 t.join()
1337 result = t.result
1338 ONOSFlows.append( result )
1339
Jon Halle1a3b752015-07-22 13:02:46 -07001340 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07001341 num = str( i + 1 )
1342 if not ONOSFlows[ i ] or "Error" in ONOSFlows[ i ]:
1343 main.log.error( "Error in getting ONOS" + num + " flows" )
1344 main.log.warn( "ONOS" + num + " flows response: " +
1345 repr( ONOSFlows[ i ] ) )
1346 flowsResults = False
1347 ONOSFlowsJson.append( None )
1348 else:
1349 try:
1350 ONOSFlowsJson.append( json.loads( ONOSFlows[ i ] ) )
1351 except ( ValueError, TypeError ):
1352 # FIXME: change this to log.error?
1353 main.log.exception( "Error in parsing ONOS" + num +
1354 " response as json." )
1355 main.log.error( repr( ONOSFlows[ i ] ) )
1356 ONOSFlowsJson.append( None )
1357 flowsResults = False
1358 utilities.assert_equals(
1359 expect=True,
1360 actual=flowsResults,
1361 onpass="No error in reading flows output",
1362 onfail="Error in reading flows from ONOS" )
1363
1364 main.step( "Check for consistency in Flows from each controller" )
1365 tmp = [ len( i ) == len( ONOSFlowsJson[ 0 ] ) for i in ONOSFlowsJson ]
1366 if all( tmp ):
1367 main.log.info( "Flow count is consistent across all ONOS nodes" )
1368 else:
1369 consistentFlows = False
1370 utilities.assert_equals(
1371 expect=True,
1372 actual=consistentFlows,
1373 onpass="The flow count is consistent across all ONOS nodes",
1374 onfail="ONOS nodes have different flow counts" )
1375
1376 if flowsResults and not consistentFlows:
Jon Halle1a3b752015-07-22 13:02:46 -07001377 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07001378 try:
1379 main.log.warn(
1380 "ONOS" + str( i + 1 ) + " flows: " +
1381 json.dumps( json.loads( ONOSFlows[i] ), sort_keys=True,
1382 indent=4, separators=( ',', ': ' ) ) )
1383 except ( ValueError, TypeError ):
1384 main.log.warn(
1385 "ONOS" + str( i + 1 ) + " flows: " +
1386 repr( ONOSFlows[ i ] ) )
1387 elif flowsResults and consistentFlows:
1388 flowCheck = main.TRUE
1389 flowState = ONOSFlows[ 0 ]
1390
1391 main.step( "Get the OF Table entries" )
1392 global flows
1393 flows = []
1394 for i in range( 1, 29 ):
Jon Hall9043c902015-07-30 14:23:44 -07001395 flows.append( main.Mininet1.getFlowTable( 1.3, "s" + str( i ) ) )
Jon Hall5cf14d52015-07-16 12:15:19 -07001396 if flowCheck == main.FALSE:
1397 for table in flows:
1398 main.log.warn( table )
1399 # TODO: Compare switch flow tables with ONOS flow tables
1400
1401 main.step( "Start continuous pings" )
1402 main.Mininet2.pingLong(
1403 src=main.params[ 'PING' ][ 'source1' ],
1404 target=main.params[ 'PING' ][ 'target1' ],
1405 pingTime=500 )
1406 main.Mininet2.pingLong(
1407 src=main.params[ 'PING' ][ 'source2' ],
1408 target=main.params[ 'PING' ][ 'target2' ],
1409 pingTime=500 )
1410 main.Mininet2.pingLong(
1411 src=main.params[ 'PING' ][ 'source3' ],
1412 target=main.params[ 'PING' ][ 'target3' ],
1413 pingTime=500 )
1414 main.Mininet2.pingLong(
1415 src=main.params[ 'PING' ][ 'source4' ],
1416 target=main.params[ 'PING' ][ 'target4' ],
1417 pingTime=500 )
1418 main.Mininet2.pingLong(
1419 src=main.params[ 'PING' ][ 'source5' ],
1420 target=main.params[ 'PING' ][ 'target5' ],
1421 pingTime=500 )
1422 main.Mininet2.pingLong(
1423 src=main.params[ 'PING' ][ 'source6' ],
1424 target=main.params[ 'PING' ][ 'target6' ],
1425 pingTime=500 )
1426 main.Mininet2.pingLong(
1427 src=main.params[ 'PING' ][ 'source7' ],
1428 target=main.params[ 'PING' ][ 'target7' ],
1429 pingTime=500 )
1430 main.Mininet2.pingLong(
1431 src=main.params[ 'PING' ][ 'source8' ],
1432 target=main.params[ 'PING' ][ 'target8' ],
1433 pingTime=500 )
1434 main.Mininet2.pingLong(
1435 src=main.params[ 'PING' ][ 'source9' ],
1436 target=main.params[ 'PING' ][ 'target9' ],
1437 pingTime=500 )
1438 main.Mininet2.pingLong(
1439 src=main.params[ 'PING' ][ 'source10' ],
1440 target=main.params[ 'PING' ][ 'target10' ],
1441 pingTime=500 )
1442
1443 main.step( "Collecting topology information from ONOS" )
1444 devices = []
1445 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07001446 for i in range( main.numCtrls ):
1447 t = main.Thread( target=main.CLIs[i].devices,
Jon Hall5cf14d52015-07-16 12:15:19 -07001448 name="devices-" + str( i ),
1449 args=[ ] )
1450 threads.append( t )
1451 t.start()
1452
1453 for t in threads:
1454 t.join()
1455 devices.append( t.result )
1456 hosts = []
1457 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07001458 for i in range( main.numCtrls ):
1459 t = main.Thread( target=main.CLIs[i].hosts,
Jon Hall5cf14d52015-07-16 12:15:19 -07001460 name="hosts-" + str( i ),
1461 args=[ ] )
1462 threads.append( t )
1463 t.start()
1464
1465 for t in threads:
1466 t.join()
1467 try:
1468 hosts.append( json.loads( t.result ) )
1469 except ( ValueError, TypeError ):
1470 # FIXME: better handling of this, print which node
1471 # Maybe use thread name?
1472 main.log.exception( "Error parsing json output of hosts" )
1473 # FIXME: should this be an empty json object instead?
1474 hosts.append( None )
1475
1476 ports = []
1477 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07001478 for i in range( main.numCtrls ):
1479 t = main.Thread( target=main.CLIs[i].ports,
Jon Hall5cf14d52015-07-16 12:15:19 -07001480 name="ports-" + str( i ),
1481 args=[ ] )
1482 threads.append( t )
1483 t.start()
1484
1485 for t in threads:
1486 t.join()
1487 ports.append( t.result )
1488 links = []
1489 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07001490 for i in range( main.numCtrls ):
1491 t = main.Thread( target=main.CLIs[i].links,
Jon Hall5cf14d52015-07-16 12:15:19 -07001492 name="links-" + str( i ),
1493 args=[ ] )
1494 threads.append( t )
1495 t.start()
1496
1497 for t in threads:
1498 t.join()
1499 links.append( t.result )
1500 clusters = []
1501 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07001502 for i in range( main.numCtrls ):
1503 t = main.Thread( target=main.CLIs[i].clusters,
Jon Hall5cf14d52015-07-16 12:15:19 -07001504 name="clusters-" + str( i ),
1505 args=[ ] )
1506 threads.append( t )
1507 t.start()
1508
1509 for t in threads:
1510 t.join()
1511 clusters.append( t.result )
1512 # Compare json objects for hosts and dataplane clusters
1513
1514 # hosts
1515 main.step( "Host view is consistent across ONOS nodes" )
1516 consistentHostsResult = main.TRUE
1517 for controller in range( len( hosts ) ):
1518 controllerStr = str( controller + 1 )
1519 if "Error" not in hosts[ controller ]:
1520 if hosts[ controller ] == hosts[ 0 ]:
1521 continue
1522 else: # hosts not consistent
1523 main.log.error( "hosts from ONOS" +
1524 controllerStr +
1525 " is inconsistent with ONOS1" )
1526 main.log.warn( repr( hosts[ controller ] ) )
1527 consistentHostsResult = main.FALSE
1528
1529 else:
1530 main.log.error( "Error in getting ONOS hosts from ONOS" +
1531 controllerStr )
1532 consistentHostsResult = main.FALSE
1533 main.log.warn( "ONOS" + controllerStr +
1534 " hosts response: " +
1535 repr( hosts[ controller ] ) )
1536 utilities.assert_equals(
1537 expect=main.TRUE,
1538 actual=consistentHostsResult,
1539 onpass="Hosts view is consistent across all ONOS nodes",
1540 onfail="ONOS nodes have different views of hosts" )
1541
1542 main.step( "Each host has an IP address" )
1543 ipResult = main.TRUE
1544 for controller in range( 0, len( hosts ) ):
1545 controllerStr = str( controller + 1 )
1546 for host in hosts[ controller ]:
1547 if not host.get( 'ipAddresses', [ ] ):
1548 main.log.error( "DEBUG:Error with host ips on controller" +
1549 controllerStr + ": " + str( host ) )
1550 ipResult = main.FALSE
1551 utilities.assert_equals(
1552 expect=main.TRUE,
1553 actual=ipResult,
1554 onpass="The ips of the hosts aren't empty",
1555 onfail="The ip of at least one host is missing" )
1556
1557 # Strongly connected clusters of devices
1558 main.step( "Cluster view is consistent across ONOS nodes" )
1559 consistentClustersResult = main.TRUE
1560 for controller in range( len( clusters ) ):
1561 controllerStr = str( controller + 1 )
1562 if "Error" not in clusters[ controller ]:
1563 if clusters[ controller ] == clusters[ 0 ]:
1564 continue
1565 else: # clusters not consistent
1566 main.log.error( "clusters from ONOS" + controllerStr +
1567 " is inconsistent with ONOS1" )
1568 consistentClustersResult = main.FALSE
1569
1570 else:
1571 main.log.error( "Error in getting dataplane clusters " +
1572 "from ONOS" + controllerStr )
1573 consistentClustersResult = main.FALSE
1574 main.log.warn( "ONOS" + controllerStr +
1575 " clusters response: " +
1576 repr( clusters[ controller ] ) )
1577 utilities.assert_equals(
1578 expect=main.TRUE,
1579 actual=consistentClustersResult,
1580 onpass="Clusters view is consistent across all ONOS nodes",
1581 onfail="ONOS nodes have different views of clusters" )
1582 # there should always only be one cluster
1583 main.step( "Cluster view correct across ONOS nodes" )
1584 try:
1585 numClusters = len( json.loads( clusters[ 0 ] ) )
1586 except ( ValueError, TypeError ):
1587 main.log.exception( "Error parsing clusters[0]: " +
1588 repr( clusters[ 0 ] ) )
1589 clusterResults = main.FALSE
1590 if numClusters == 1:
1591 clusterResults = main.TRUE
1592 utilities.assert_equals(
1593 expect=1,
1594 actual=numClusters,
1595 onpass="ONOS shows 1 SCC",
1596 onfail="ONOS shows " + str( numClusters ) + " SCCs" )
1597
1598 main.step( "Comparing ONOS topology to MN" )
1599 devicesResults = main.TRUE
1600 linksResults = main.TRUE
1601 hostsResults = main.TRUE
1602 mnSwitches = main.Mininet1.getSwitches()
1603 mnLinks = main.Mininet1.getLinks()
1604 mnHosts = main.Mininet1.getHosts()
Jon Halle1a3b752015-07-22 13:02:46 -07001605 for controller in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07001606 controllerStr = str( controller + 1 )
1607 if devices[ controller ] and ports[ controller ] and\
1608 "Error" not in devices[ controller ] and\
1609 "Error" not in ports[ controller ]:
1610
1611 currentDevicesResult = main.Mininet1.compareSwitches(
1612 mnSwitches,
1613 json.loads( devices[ controller ] ),
1614 json.loads( ports[ controller ] ) )
1615 else:
1616 currentDevicesResult = main.FALSE
1617 utilities.assert_equals( expect=main.TRUE,
1618 actual=currentDevicesResult,
1619 onpass="ONOS" + controllerStr +
1620 " Switches view is correct",
1621 onfail="ONOS" + controllerStr +
1622 " Switches view is incorrect" )
1623 if links[ controller ] and "Error" not in links[ controller ]:
1624 currentLinksResult = main.Mininet1.compareLinks(
1625 mnSwitches, mnLinks,
1626 json.loads( links[ controller ] ) )
1627 else:
1628 currentLinksResult = main.FALSE
1629 utilities.assert_equals( expect=main.TRUE,
1630 actual=currentLinksResult,
1631 onpass="ONOS" + controllerStr +
1632 " links view is correct",
1633 onfail="ONOS" + controllerStr +
1634 " links view is incorrect" )
1635
1636 if hosts[ controller ] or "Error" not in hosts[ controller ]:
1637 currentHostsResult = main.Mininet1.compareHosts(
1638 mnHosts,
1639 hosts[ controller ] )
1640 else:
1641 currentHostsResult = main.FALSE
1642 utilities.assert_equals( expect=main.TRUE,
1643 actual=currentHostsResult,
1644 onpass="ONOS" + controllerStr +
1645 " hosts exist in Mininet",
1646 onfail="ONOS" + controllerStr +
1647 " hosts don't match Mininet" )
1648
1649 devicesResults = devicesResults and currentDevicesResult
1650 linksResults = linksResults and currentLinksResult
1651 hostsResults = hostsResults and currentHostsResult
1652
1653 main.step( "Device information is correct" )
1654 utilities.assert_equals(
1655 expect=main.TRUE,
1656 actual=devicesResults,
1657 onpass="Device information is correct",
1658 onfail="Device information is incorrect" )
1659
1660 main.step( "Links are correct" )
1661 utilities.assert_equals(
1662 expect=main.TRUE,
1663 actual=linksResults,
1664 onpass="Link are correct",
1665 onfail="Links are incorrect" )
1666
1667 main.step( "Hosts are correct" )
1668 utilities.assert_equals(
1669 expect=main.TRUE,
1670 actual=hostsResults,
1671 onpass="Hosts are correct",
1672 onfail="Hosts are incorrect" )
1673
1674 def CASE6( self, main ):
1675 """
1676 The Failure case. Since this is the Sanity test, we do nothing.
1677 """
1678 import time
Jon Halle1a3b752015-07-22 13:02:46 -07001679 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07001680 assert main, "main not defined"
1681 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07001682 assert main.CLIs, "main.CLIs not defined"
1683 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07001684 main.case( "Wait 60 seconds instead of inducing a failure" )
1685 time.sleep( 60 )
1686 utilities.assert_equals(
1687 expect=main.TRUE,
1688 actual=main.TRUE,
1689 onpass="Sleeping 60 seconds",
1690 onfail="Something is terribly wrong with my math" )
1691
1692 def CASE7( self, main ):
1693 """
1694 Check state after ONOS failure
1695 """
1696 import json
Jon Halle1a3b752015-07-22 13:02:46 -07001697 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07001698 assert main, "main not defined"
1699 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07001700 assert main.CLIs, "main.CLIs not defined"
1701 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07001702 main.case( "Running ONOS Constant State Tests" )
1703
1704 main.step( "Check that each switch has a master" )
1705 # Assert that each device has a master
1706 rolesNotNull = main.TRUE
1707 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07001708 for i in range( main.numCtrls ):
1709 t = main.Thread( target=main.CLIs[i].rolesNotNull,
Jon Hall5cf14d52015-07-16 12:15:19 -07001710 name="rolesNotNull-" + str( i ),
1711 args=[ ] )
1712 threads.append( t )
1713 t.start()
1714
1715 for t in threads:
1716 t.join()
1717 rolesNotNull = rolesNotNull and t.result
1718 utilities.assert_equals(
1719 expect=main.TRUE,
1720 actual=rolesNotNull,
1721 onpass="Each device has a master",
1722 onfail="Some devices don't have a master assigned" )
1723
1724 main.step( "Read device roles from ONOS" )
1725 ONOSMastership = []
1726 mastershipCheck = main.FALSE
1727 consistentMastership = True
1728 rolesResults = True
1729 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07001730 for i in range( main.numCtrls ):
1731 t = main.Thread( target=main.CLIs[i].roles,
Jon Hall5cf14d52015-07-16 12:15:19 -07001732 name="roles-" + str( i ),
1733 args=[] )
1734 threads.append( t )
1735 t.start()
1736
1737 for t in threads:
1738 t.join()
1739 ONOSMastership.append( t.result )
1740
Jon Halle1a3b752015-07-22 13:02:46 -07001741 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07001742 if not ONOSMastership[i] or "Error" in ONOSMastership[i]:
1743 main.log.error( "Error in getting ONOS" + str( i + 1 ) +
1744 " roles" )
1745 main.log.warn(
1746 "ONOS" + str( i + 1 ) + " mastership response: " +
1747 repr( ONOSMastership[i] ) )
1748 rolesResults = False
1749 utilities.assert_equals(
1750 expect=True,
1751 actual=rolesResults,
1752 onpass="No error in reading roles output",
1753 onfail="Error in reading roles from ONOS" )
1754
1755 main.step( "Check for consistency in roles from each controller" )
1756 if all([ i == ONOSMastership[ 0 ] for i in ONOSMastership ] ):
1757 main.log.info(
1758 "Switch roles are consistent across all ONOS nodes" )
1759 else:
1760 consistentMastership = False
1761 utilities.assert_equals(
1762 expect=True,
1763 actual=consistentMastership,
1764 onpass="Switch roles are consistent across all ONOS nodes",
1765 onfail="ONOS nodes have different views of switch roles" )
1766
1767 if rolesResults and not consistentMastership:
Jon Halle1a3b752015-07-22 13:02:46 -07001768 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07001769 main.log.warn(
1770 "ONOS" + str( i + 1 ) + " roles: ",
1771 json.dumps(
1772 json.loads( ONOSMastership[ i ] ),
1773 sort_keys=True,
1774 indent=4,
1775 separators=( ',', ': ' ) ) )
1776 elif rolesResults and not consistentMastership:
1777 mastershipCheck = main.TRUE
1778
1779 description2 = "Compare switch roles from before failure"
1780 main.step( description2 )
1781 try:
1782 currentJson = json.loads( ONOSMastership[0] )
1783 oldJson = json.loads( mastershipState )
1784 except ( ValueError, TypeError ):
1785 main.log.exception( "Something is wrong with parsing " +
1786 "ONOSMastership[0] or mastershipState" )
1787 main.log.error( "ONOSMastership[0]: " + repr( ONOSMastership[0] ) )
1788 main.log.error( "mastershipState" + repr( mastershipState ) )
1789 main.cleanup()
1790 main.exit()
1791 mastershipCheck = main.TRUE
1792 for i in range( 1, 29 ):
1793 switchDPID = str(
1794 main.Mininet1.getSwitchDPID( switch="s" + str( i ) ) )
1795 current = [ switch[ 'master' ] for switch in currentJson
1796 if switchDPID in switch[ 'id' ] ]
1797 old = [ switch[ 'master' ] for switch in oldJson
1798 if switchDPID in switch[ 'id' ] ]
1799 if current == old:
1800 mastershipCheck = mastershipCheck and main.TRUE
1801 else:
1802 main.log.warn( "Mastership of switch %s changed" % switchDPID )
1803 mastershipCheck = main.FALSE
1804 utilities.assert_equals(
1805 expect=main.TRUE,
1806 actual=mastershipCheck,
1807 onpass="Mastership of Switches was not changed",
1808 onfail="Mastership of some switches changed" )
1809 mastershipCheck = mastershipCheck and consistentMastership
1810
1811 main.step( "Get the intents and compare across all nodes" )
1812 ONOSIntents = []
1813 intentCheck = main.FALSE
1814 consistentIntents = True
1815 intentsResults = True
1816 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07001817 for i in range( main.numCtrls ):
1818 t = main.Thread( target=main.CLIs[i].intents,
Jon Hall5cf14d52015-07-16 12:15:19 -07001819 name="intents-" + str( i ),
1820 args=[],
1821 kwargs={ 'jsonFormat': True } )
1822 threads.append( t )
1823 t.start()
1824
1825 for t in threads:
1826 t.join()
1827 ONOSIntents.append( t.result )
1828
Jon Halle1a3b752015-07-22 13:02:46 -07001829 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07001830 if not ONOSIntents[ i ] or "Error" in ONOSIntents[ i ]:
1831 main.log.error( "Error in getting ONOS" + str( i + 1 ) +
1832 " intents" )
1833 main.log.warn( "ONOS" + str( i + 1 ) + " intents response: " +
1834 repr( ONOSIntents[ i ] ) )
1835 intentsResults = False
1836 utilities.assert_equals(
1837 expect=True,
1838 actual=intentsResults,
1839 onpass="No error in reading intents output",
1840 onfail="Error in reading intents from ONOS" )
1841
1842 main.step( "Check for consistency in Intents from each controller" )
1843 if all([ sorted( i ) == sorted( ONOSIntents[ 0 ] ) for i in ONOSIntents ] ):
1844 main.log.info( "Intents are consistent across all ONOS " +
1845 "nodes" )
1846 else:
1847 consistentIntents = False
1848
1849 # Try to make it easy to figure out what is happening
1850 #
1851 # Intent ONOS1 ONOS2 ...
1852 # 0x01 INSTALLED INSTALLING
1853 # ... ... ...
1854 # ... ... ...
1855 title = " ID"
Jon Halle1a3b752015-07-22 13:02:46 -07001856 for n in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07001857 title += " " * 10 + "ONOS" + str( n + 1 )
1858 main.log.warn( title )
1859 # get all intent keys in the cluster
1860 keys = []
1861 for nodeStr in ONOSIntents:
1862 node = json.loads( nodeStr )
1863 for intent in node:
1864 keys.append( intent.get( 'id' ) )
1865 keys = set( keys )
1866 for key in keys:
1867 row = "%-13s" % key
1868 for nodeStr in ONOSIntents:
1869 node = json.loads( nodeStr )
1870 for intent in node:
1871 if intent.get( 'id' ) == key:
1872 row += "%-15s" % intent.get( 'state' )
1873 main.log.warn( row )
1874 # End table view
1875
1876 utilities.assert_equals(
1877 expect=True,
1878 actual=consistentIntents,
1879 onpass="Intents are consistent across all ONOS nodes",
1880 onfail="ONOS nodes have different views of intents" )
1881 intentStates = []
1882 for node in ONOSIntents: # Iter through ONOS nodes
1883 nodeStates = []
1884 # Iter through intents of a node
1885 try:
1886 for intent in json.loads( node ):
1887 nodeStates.append( intent[ 'state' ] )
1888 except ( ValueError, TypeError ):
1889 main.log.exception( "Error in parsing intents" )
1890 main.log.error( repr( node ) )
1891 intentStates.append( nodeStates )
1892 out = [ (i, nodeStates.count( i ) ) for i in set( nodeStates ) ]
1893 main.log.info( dict( out ) )
1894
1895 if intentsResults and not consistentIntents:
Jon Halle1a3b752015-07-22 13:02:46 -07001896 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07001897 main.log.warn( "ONOS" + str( i + 1 ) + " intents: " )
1898 main.log.warn( json.dumps(
1899 json.loads( ONOSIntents[ i ] ),
1900 sort_keys=True,
1901 indent=4,
1902 separators=( ',', ': ' ) ) )
1903 elif intentsResults and consistentIntents:
1904 intentCheck = main.TRUE
1905
1906 # NOTE: Store has no durability, so intents are lost across system
1907 # restarts
1908 main.step( "Compare current intents with intents before the failure" )
1909 # NOTE: this requires case 5 to pass for intentState to be set.
1910 # maybe we should stop the test if that fails?
1911 sameIntents = main.FALSE
1912 if intentState and intentState == ONOSIntents[ 0 ]:
1913 sameIntents = main.TRUE
1914 main.log.info( "Intents are consistent with before failure" )
1915 # TODO: possibly the states have changed? we may need to figure out
1916 # what the acceptable states are
1917 elif len( intentState ) == len( ONOSIntents[ 0 ] ):
1918 sameIntents = main.TRUE
1919 try:
1920 before = json.loads( intentState )
1921 after = json.loads( ONOSIntents[ 0 ] )
1922 for intent in before:
1923 if intent not in after:
1924 sameIntents = main.FALSE
1925 main.log.debug( "Intent is not currently in ONOS " +
1926 "(at least in the same form):" )
1927 main.log.debug( json.dumps( intent ) )
1928 except ( ValueError, TypeError ):
1929 main.log.exception( "Exception printing intents" )
1930 main.log.debug( repr( ONOSIntents[0] ) )
1931 main.log.debug( repr( intentState ) )
1932 if sameIntents == main.FALSE:
1933 try:
1934 main.log.debug( "ONOS intents before: " )
1935 main.log.debug( json.dumps( json.loads( intentState ),
1936 sort_keys=True, indent=4,
1937 separators=( ',', ': ' ) ) )
1938 main.log.debug( "Current ONOS intents: " )
1939 main.log.debug( json.dumps( json.loads( ONOSIntents[ 0 ] ),
1940 sort_keys=True, indent=4,
1941 separators=( ',', ': ' ) ) )
1942 except ( ValueError, TypeError ):
1943 main.log.exception( "Exception printing intents" )
1944 main.log.debug( repr( ONOSIntents[0] ) )
1945 main.log.debug( repr( intentState ) )
1946 utilities.assert_equals(
1947 expect=main.TRUE,
1948 actual=sameIntents,
1949 onpass="Intents are consistent with before failure",
1950 onfail="The Intents changed during failure" )
1951 intentCheck = intentCheck and sameIntents
1952
1953 main.step( "Get the OF Table entries and compare to before " +
1954 "component failure" )
1955 FlowTables = main.TRUE
1956 flows2 = []
1957 for i in range( 28 ):
1958 main.log.info( "Checking flow table on s" + str( i + 1 ) )
Jon Hall9043c902015-07-30 14:23:44 -07001959 tmpFlows = main.Mininet1.getFlowTable( 1.3, "s" + str( i + 1 ) )
Jon Hall5cf14d52015-07-16 12:15:19 -07001960 flows2.append( tmpFlows )
Jon Hall9043c902015-07-30 14:23:44 -07001961 tempResult = main.Mininet1.flowComp(
Jon Hall5cf14d52015-07-16 12:15:19 -07001962 flow1=flows[ i ],
1963 flow2=tmpFlows )
1964 FlowTables = FlowTables and tempResult
1965 if FlowTables == main.FALSE:
1966 main.log.info( "Differences in flow table for switch: s" +
1967 str( i + 1 ) )
1968 utilities.assert_equals(
1969 expect=main.TRUE,
1970 actual=FlowTables,
1971 onpass="No changes were found in the flow tables",
1972 onfail="Changes were found in the flow tables" )
1973
1974 main.Mininet2.pingLongKill()
1975 '''
1976 main.step( "Check the continuous pings to ensure that no packets " +
1977 "were dropped during component failure" )
1978 main.Mininet2.pingKill( main.params[ 'TESTONUSER' ],
1979 main.params[ 'TESTONIP' ] )
1980 LossInPings = main.FALSE
1981 # NOTE: checkForLoss returns main.FALSE with 0% packet loss
1982 for i in range( 8, 18 ):
1983 main.log.info(
1984 "Checking for a loss in pings along flow from s" +
1985 str( i ) )
1986 LossInPings = main.Mininet2.checkForLoss(
1987 "/tmp/ping.h" +
1988 str( i ) ) or LossInPings
1989 if LossInPings == main.TRUE:
1990 main.log.info( "Loss in ping detected" )
1991 elif LossInPings == main.ERROR:
1992 main.log.info( "There are multiple mininet process running" )
1993 elif LossInPings == main.FALSE:
1994 main.log.info( "No Loss in the pings" )
1995 main.log.info( "No loss of dataplane connectivity" )
1996 utilities.assert_equals(
1997 expect=main.FALSE,
1998 actual=LossInPings,
1999 onpass="No Loss of connectivity",
2000 onfail="Loss of dataplane connectivity detected" )
2001 '''
2002
2003 main.step( "Leadership Election is still functional" )
2004 # Test of LeadershipElection
2005 # NOTE: this only works for the sanity test. In case of failures,
2006 # leader will likely change
Jon Halle1a3b752015-07-22 13:02:46 -07002007 leader = main.nodes[ 0 ].ip_address
Jon Hall5cf14d52015-07-16 12:15:19 -07002008 leaderResult = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07002009 for cli in main.CLIs:
Jon Hall5cf14d52015-07-16 12:15:19 -07002010 leaderN = cli.electionTestLeader()
2011 # verify leader is ONOS1
2012 if leaderN == leader:
2013 # all is well
2014 # NOTE: In failure scenario, this could be a new node, maybe
2015 # check != ONOS1
2016 pass
2017 elif leaderN == main.FALSE:
2018 # error in response
2019 main.log.error( "Something is wrong with " +
2020 "electionTestLeader function, check the" +
2021 " error logs" )
2022 leaderResult = main.FALSE
2023 elif leader != leaderN:
2024 leaderResult = main.FALSE
2025 main.log.error( cli.name + " sees " + str( leaderN ) +
2026 " as the leader of the election app. " +
2027 "Leader should be " + str( leader ) )
2028 utilities.assert_equals(
2029 expect=main.TRUE,
2030 actual=leaderResult,
2031 onpass="Leadership election passed",
2032 onfail="Something went wrong with Leadership election" )
2033
2034 def CASE8( self, main ):
2035 """
2036 Compare topo
2037 """
2038 import json
2039 import time
Jon Halle1a3b752015-07-22 13:02:46 -07002040 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002041 assert main, "main not defined"
2042 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07002043 assert main.CLIs, "main.CLIs not defined"
2044 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002045
2046 main.case( "Compare ONOS Topology view to Mininet topology" )
Jon Hall783bbf92015-07-23 14:33:19 -07002047 main.caseExplanation = "Compare topology objects between Mininet" +\
Jon Hall5cf14d52015-07-16 12:15:19 -07002048 " and ONOS"
2049
2050 main.step( "Comparing ONOS topology to MN" )
2051 devicesResults = main.TRUE
2052 linksResults = main.TRUE
2053 hostsResults = main.TRUE
2054 hostAttachmentResults = True
2055 topoResult = main.FALSE
2056 elapsed = 0
2057 count = 0
2058 main.step( "Collecting topology information from ONOS" )
2059 startTime = time.time()
2060 # Give time for Gossip to work
2061 while topoResult == main.FALSE and elapsed < 60:
2062 count += 1
2063 cliStart = time.time()
2064 devices = []
2065 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07002066 for i in range( main.numCtrls ):
2067 t = main.Thread( target=main.CLIs[i].devices,
Jon Hall5cf14d52015-07-16 12:15:19 -07002068 name="devices-" + str( i ),
2069 args=[ ] )
2070 threads.append( t )
2071 t.start()
2072
2073 for t in threads:
2074 t.join()
2075 devices.append( t.result )
2076 hosts = []
2077 ipResult = main.TRUE
2078 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07002079 for i in range( main.numCtrls ):
2080 t = main.Thread( target=main.CLIs[i].hosts,
Jon Hall5cf14d52015-07-16 12:15:19 -07002081 name="hosts-" + str( i ),
2082 args=[ ] )
2083 threads.append( t )
2084 t.start()
2085
2086 for t in threads:
2087 t.join()
2088 try:
2089 hosts.append( json.loads( t.result ) )
2090 except ( ValueError, TypeError ):
2091 main.log.exception( "Error parsing hosts results" )
2092 main.log.error( repr( t.result ) )
2093 for controller in range( 0, len( hosts ) ):
2094 controllerStr = str( controller + 1 )
2095 for host in hosts[ controller ]:
2096 if host is None or host.get( 'ipAddresses', [] ) == []:
2097 main.log.error(
2098 "DEBUG:Error with host ipAddresses on controller" +
2099 controllerStr + ": " + str( host ) )
2100 ipResult = main.FALSE
2101 ports = []
2102 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07002103 for i in range( main.numCtrls ):
2104 t = main.Thread( target=main.CLIs[i].ports,
Jon Hall5cf14d52015-07-16 12:15:19 -07002105 name="ports-" + str( i ),
2106 args=[ ] )
2107 threads.append( t )
2108 t.start()
2109
2110 for t in threads:
2111 t.join()
2112 ports.append( t.result )
2113 links = []
2114 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07002115 for i in range( main.numCtrls ):
2116 t = main.Thread( target=main.CLIs[i].links,
Jon Hall5cf14d52015-07-16 12:15:19 -07002117 name="links-" + str( i ),
2118 args=[ ] )
2119 threads.append( t )
2120 t.start()
2121
2122 for t in threads:
2123 t.join()
2124 links.append( t.result )
2125 clusters = []
2126 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07002127 for i in range( main.numCtrls ):
2128 t = main.Thread( target=main.CLIs[i].clusters,
Jon Hall5cf14d52015-07-16 12:15:19 -07002129 name="clusters-" + str( i ),
2130 args=[ ] )
2131 threads.append( t )
2132 t.start()
2133
2134 for t in threads:
2135 t.join()
2136 clusters.append( t.result )
2137
2138 elapsed = time.time() - startTime
2139 cliTime = time.time() - cliStart
2140 print "Elapsed time: " + str( elapsed )
2141 print "CLI time: " + str( cliTime )
2142
2143 mnSwitches = main.Mininet1.getSwitches()
2144 mnLinks = main.Mininet1.getLinks()
2145 mnHosts = main.Mininet1.getHosts()
Jon Halle1a3b752015-07-22 13:02:46 -07002146 for controller in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07002147 controllerStr = str( controller + 1 )
2148 if devices[ controller ] and ports[ controller ] and\
2149 "Error" not in devices[ controller ] and\
2150 "Error" not in ports[ controller ]:
2151
2152 currentDevicesResult = main.Mininet1.compareSwitches(
2153 mnSwitches,
2154 json.loads( devices[ controller ] ),
2155 json.loads( ports[ controller ] ) )
2156 else:
2157 currentDevicesResult = main.FALSE
2158 utilities.assert_equals( expect=main.TRUE,
2159 actual=currentDevicesResult,
2160 onpass="ONOS" + controllerStr +
2161 " Switches view is correct",
2162 onfail="ONOS" + controllerStr +
2163 " Switches view is incorrect" )
2164
2165 if links[ controller ] and "Error" not in links[ controller ]:
2166 currentLinksResult = main.Mininet1.compareLinks(
2167 mnSwitches, mnLinks,
2168 json.loads( links[ controller ] ) )
2169 else:
2170 currentLinksResult = main.FALSE
2171 utilities.assert_equals( expect=main.TRUE,
2172 actual=currentLinksResult,
2173 onpass="ONOS" + controllerStr +
2174 " links view is correct",
2175 onfail="ONOS" + controllerStr +
2176 " links view is incorrect" )
2177
2178 if hosts[ controller ] or "Error" not in hosts[ controller ]:
2179 currentHostsResult = main.Mininet1.compareHosts(
2180 mnHosts,
2181 hosts[ controller ] )
2182 else:
2183 currentHostsResult = main.FALSE
2184 utilities.assert_equals( expect=main.TRUE,
2185 actual=currentHostsResult,
2186 onpass="ONOS" + controllerStr +
2187 " hosts exist in Mininet",
2188 onfail="ONOS" + controllerStr +
2189 " hosts don't match Mininet" )
2190 # CHECKING HOST ATTACHMENT POINTS
2191 hostAttachment = True
2192 zeroHosts = False
2193 # FIXME: topo-HA/obelisk specific mappings:
2194 # key is mac and value is dpid
2195 mappings = {}
2196 for i in range( 1, 29 ): # hosts 1 through 28
2197 # set up correct variables:
2198 macId = "00:" * 5 + hex( i ).split( "0x" )[1].upper().zfill(2)
2199 if i == 1:
2200 deviceId = "1000".zfill(16)
2201 elif i == 2:
2202 deviceId = "2000".zfill(16)
2203 elif i == 3:
2204 deviceId = "3000".zfill(16)
2205 elif i == 4:
2206 deviceId = "3004".zfill(16)
2207 elif i == 5:
2208 deviceId = "5000".zfill(16)
2209 elif i == 6:
2210 deviceId = "6000".zfill(16)
2211 elif i == 7:
2212 deviceId = "6007".zfill(16)
2213 elif i >= 8 and i <= 17:
2214 dpid = '3' + str( i ).zfill( 3 )
2215 deviceId = dpid.zfill(16)
2216 elif i >= 18 and i <= 27:
2217 dpid = '6' + str( i ).zfill( 3 )
2218 deviceId = dpid.zfill(16)
2219 elif i == 28:
2220 deviceId = "2800".zfill(16)
2221 mappings[ macId ] = deviceId
2222 if hosts[ controller ] or "Error" not in hosts[ controller ]:
2223 if hosts[ controller ] == []:
2224 main.log.warn( "There are no hosts discovered" )
2225 zeroHosts = True
2226 else:
2227 for host in hosts[ controller ]:
2228 mac = None
2229 location = None
2230 device = None
2231 port = None
2232 try:
2233 mac = host.get( 'mac' )
2234 assert mac, "mac field could not be found for this host object"
2235
2236 location = host.get( 'location' )
2237 assert location, "location field could not be found for this host object"
2238
2239 # Trim the protocol identifier off deviceId
2240 device = str( location.get( 'elementId' ) ).split(':')[1]
2241 assert device, "elementId field could not be found for this host location object"
2242
2243 port = location.get( 'port' )
2244 assert port, "port field could not be found for this host location object"
2245
2246 # Now check if this matches where they should be
2247 if mac and device and port:
2248 if str( port ) != "1":
2249 main.log.error( "The attachment port is incorrect for " +
2250 "host " + str( mac ) +
2251 ". Expected: 1 Actual: " + str( port) )
2252 hostAttachment = False
2253 if device != mappings[ str( mac ) ]:
2254 main.log.error( "The attachment device is incorrect for " +
2255 "host " + str( mac ) +
2256 ". Expected: " + mappings[ str( mac ) ] +
2257 " Actual: " + device )
2258 hostAttachment = False
2259 else:
2260 hostAttachment = False
2261 except AssertionError:
2262 main.log.exception( "Json object not as expected" )
2263 main.log.error( repr( host ) )
2264 hostAttachment = False
2265 else:
2266 main.log.error( "No hosts json output or \"Error\"" +
2267 " in output. hosts = " +
2268 repr( hosts[ controller ] ) )
2269 if zeroHosts is False:
2270 hostAttachment = True
2271
2272 # END CHECKING HOST ATTACHMENT POINTS
2273 devicesResults = devicesResults and currentDevicesResult
2274 linksResults = linksResults and currentLinksResult
2275 hostsResults = hostsResults and currentHostsResult
2276 hostAttachmentResults = hostAttachmentResults and\
2277 hostAttachment
2278 topoResult = ( devicesResults and linksResults
2279 and hostsResults and ipResult and
2280 hostAttachmentResults )
2281
2282 # Compare json objects for hosts and dataplane clusters
2283
2284 # hosts
2285 main.step( "Hosts view is consistent across all ONOS nodes" )
2286 consistentHostsResult = main.TRUE
2287 for controller in range( len( hosts ) ):
2288 controllerStr = str( controller + 1 )
2289 if "Error" not in hosts[ controller ]:
2290 if hosts[ controller ] == hosts[ 0 ]:
2291 continue
2292 else: # hosts not consistent
2293 main.log.error( "hosts from ONOS" + controllerStr +
2294 " is inconsistent with ONOS1" )
2295 main.log.warn( repr( hosts[ controller ] ) )
2296 consistentHostsResult = main.FALSE
2297
2298 else:
2299 main.log.error( "Error in getting ONOS hosts from ONOS" +
2300 controllerStr )
2301 consistentHostsResult = main.FALSE
2302 main.log.warn( "ONOS" + controllerStr +
2303 " hosts response: " +
2304 repr( hosts[ controller ] ) )
2305 utilities.assert_equals(
2306 expect=main.TRUE,
2307 actual=consistentHostsResult,
2308 onpass="Hosts view is consistent across all ONOS nodes",
2309 onfail="ONOS nodes have different views of hosts" )
2310
2311 main.step( "Hosts information is correct" )
2312 hostsResults = hostsResults and ipResult
2313 utilities.assert_equals(
2314 expect=main.TRUE,
2315 actual=hostsResults,
2316 onpass="Host information is correct",
2317 onfail="Host information is incorrect" )
2318
2319 main.step( "Host attachment points to the network" )
2320 utilities.assert_equals(
2321 expect=True,
2322 actual=hostAttachmentResults,
2323 onpass="Hosts are correctly attached to the network",
2324 onfail="ONOS did not correctly attach hosts to the network" )
2325
2326 # Strongly connected clusters of devices
2327 main.step( "Clusters view is consistent across all ONOS nodes" )
2328 consistentClustersResult = main.TRUE
2329 for controller in range( len( clusters ) ):
2330 controllerStr = str( controller + 1 )
2331 if "Error" not in clusters[ controller ]:
2332 if clusters[ controller ] == clusters[ 0 ]:
2333 continue
2334 else: # clusters not consistent
2335 main.log.error( "clusters from ONOS" +
2336 controllerStr +
2337 " is inconsistent with ONOS1" )
2338 consistentClustersResult = main.FALSE
2339
2340 else:
2341 main.log.error( "Error in getting dataplane clusters " +
2342 "from ONOS" + controllerStr )
2343 consistentClustersResult = main.FALSE
2344 main.log.warn( "ONOS" + controllerStr +
2345 " clusters response: " +
2346 repr( clusters[ controller ] ) )
2347 utilities.assert_equals(
2348 expect=main.TRUE,
2349 actual=consistentClustersResult,
2350 onpass="Clusters view is consistent across all ONOS nodes",
2351 onfail="ONOS nodes have different views of clusters" )
2352
2353 main.step( "There is only one SCC" )
2354 # there should always only be one cluster
2355 try:
2356 numClusters = len( json.loads( clusters[ 0 ] ) )
2357 except ( ValueError, TypeError ):
2358 main.log.exception( "Error parsing clusters[0]: " +
2359 repr( clusters[0] ) )
2360 clusterResults = main.FALSE
2361 if numClusters == 1:
2362 clusterResults = main.TRUE
2363 utilities.assert_equals(
2364 expect=1,
2365 actual=numClusters,
2366 onpass="ONOS shows 1 SCC",
2367 onfail="ONOS shows " + str( numClusters ) + " SCCs" )
2368
2369 topoResult = ( devicesResults and linksResults
2370 and hostsResults and consistentHostsResult
2371 and consistentClustersResult and clusterResults
2372 and ipResult and hostAttachmentResults )
2373
2374 topoResult = topoResult and int( count <= 2 )
2375 note = "note it takes about " + str( int( cliTime ) ) + \
2376 " seconds for the test to make all the cli calls to fetch " +\
2377 "the topology from each ONOS instance"
2378 main.log.info(
2379 "Very crass estimate for topology discovery/convergence( " +
2380 str( note ) + " ): " + str( elapsed ) + " seconds, " +
2381 str( count ) + " tries" )
2382
2383 main.step( "Device information is correct" )
2384 utilities.assert_equals(
2385 expect=main.TRUE,
2386 actual=devicesResults,
2387 onpass="Device information is correct",
2388 onfail="Device information is incorrect" )
2389
2390 main.step( "Links are correct" )
2391 utilities.assert_equals(
2392 expect=main.TRUE,
2393 actual=linksResults,
2394 onpass="Link are correct",
2395 onfail="Links are incorrect" )
2396
2397 main.step( "Hosts are correct" )
2398 utilities.assert_equals(
2399 expect=main.TRUE,
2400 actual=hostsResults,
2401 onpass="Hosts are correct",
2402 onfail="Hosts are incorrect" )
2403
2404 # FIXME: move this to an ONOS state case
2405 main.step( "Checking ONOS nodes" )
2406 nodesOutput = []
2407 nodeResults = main.TRUE
2408 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07002409 for i in range( main.numCtrls ):
2410 t = main.Thread( target=main.CLIs[i].nodes,
Jon Hall5cf14d52015-07-16 12:15:19 -07002411 name="nodes-" + str( i ),
2412 args=[ ] )
2413 threads.append( t )
2414 t.start()
2415
2416 for t in threads:
2417 t.join()
2418 nodesOutput.append( t.result )
Jon Halle1a3b752015-07-22 13:02:46 -07002419 ips = [ node.ip_address for node in main.nodes ]
Jon Hall5cf14d52015-07-16 12:15:19 -07002420 for i in nodesOutput:
2421 try:
2422 current = json.loads( i )
2423 for node in current:
2424 currentResult = main.FALSE
2425 if node['ip'] in ips: # node in nodes() output is in cell
2426 if node['state'] == 'ACTIVE':
2427 currentResult = main.TRUE
2428 else:
2429 main.log.error( "Error in ONOS node availability" )
2430 main.log.error(
2431 json.dumps( current,
2432 sort_keys=True,
2433 indent=4,
2434 separators=( ',', ': ' ) ) )
2435 break
2436 nodeResults = nodeResults and currentResult
2437 except ( ValueError, TypeError ):
2438 main.log.error( "Error parsing nodes output" )
2439 main.log.warn( repr( i ) )
2440 utilities.assert_equals( expect=main.TRUE, actual=nodeResults,
2441 onpass="Nodes check successful",
2442 onfail="Nodes check NOT successful" )
2443
2444 def CASE9( self, main ):
2445 """
2446 Link s3-s28 down
2447 """
2448 import time
Jon Halle1a3b752015-07-22 13:02:46 -07002449 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002450 assert main, "main not defined"
2451 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07002452 assert main.CLIs, "main.CLIs not defined"
2453 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002454 # NOTE: You should probably run a topology check after this
2455
2456 linkSleep = float( main.params[ 'timers' ][ 'LinkDiscovery' ] )
2457
2458 description = "Turn off a link to ensure that Link Discovery " +\
2459 "is working properly"
2460 main.case( description )
2461
2462 main.step( "Kill Link between s3 and s28" )
2463 LinkDown = main.Mininet1.link( END1="s3", END2="s28", OPTION="down" )
2464 main.log.info( "Waiting " + str( linkSleep ) +
2465 " seconds for link down to be discovered" )
2466 time.sleep( linkSleep )
2467 utilities.assert_equals( expect=main.TRUE, actual=LinkDown,
2468 onpass="Link down successful",
2469 onfail="Failed to bring link down" )
2470 # TODO do some sort of check here
2471
2472 def CASE10( self, main ):
2473 """
2474 Link s3-s28 up
2475 """
2476 import time
Jon Halle1a3b752015-07-22 13:02:46 -07002477 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002478 assert main, "main not defined"
2479 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07002480 assert main.CLIs, "main.CLIs not defined"
2481 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002482 # NOTE: You should probably run a topology check after this
2483
2484 linkSleep = float( main.params[ 'timers' ][ 'LinkDiscovery' ] )
2485
2486 description = "Restore a link to ensure that Link Discovery is " + \
2487 "working properly"
2488 main.case( description )
2489
2490 main.step( "Bring link between s3 and s28 back up" )
2491 LinkUp = main.Mininet1.link( END1="s3", END2="s28", OPTION="up" )
2492 main.log.info( "Waiting " + str( linkSleep ) +
2493 " seconds for link up to be discovered" )
2494 time.sleep( linkSleep )
2495 utilities.assert_equals( expect=main.TRUE, actual=LinkUp,
2496 onpass="Link up successful",
2497 onfail="Failed to bring link up" )
2498 # TODO do some sort of check here
2499
2500 def CASE11( self, main ):
2501 """
2502 Switch Down
2503 """
2504 # NOTE: You should probably run a topology check after this
2505 import time
Jon Halle1a3b752015-07-22 13:02:46 -07002506 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002507 assert main, "main not defined"
2508 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07002509 assert main.CLIs, "main.CLIs not defined"
2510 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002511
2512 switchSleep = float( main.params[ 'timers' ][ 'SwitchDiscovery' ] )
2513
2514 description = "Killing a switch to ensure it is discovered correctly"
2515 main.case( description )
2516 switch = main.params[ 'kill' ][ 'switch' ]
2517 switchDPID = main.params[ 'kill' ][ 'dpid' ]
2518
2519 # TODO: Make this switch parameterizable
2520 main.step( "Kill " + switch )
2521 main.log.info( "Deleting " + switch )
2522 main.Mininet1.delSwitch( switch )
2523 main.log.info( "Waiting " + str( switchSleep ) +
2524 " seconds for switch down to be discovered" )
2525 time.sleep( switchSleep )
2526 device = main.ONOScli1.getDevice( dpid=switchDPID )
2527 # Peek at the deleted switch
2528 main.log.warn( str( device ) )
2529 result = main.FALSE
2530 if device and device[ 'available' ] is False:
2531 result = main.TRUE
2532 utilities.assert_equals( expect=main.TRUE, actual=result,
2533 onpass="Kill switch successful",
2534 onfail="Failed to kill switch?" )
2535
2536 def CASE12( self, main ):
2537 """
2538 Switch Up
2539 """
2540 # NOTE: You should probably run a topology check after this
2541 import time
Jon Halle1a3b752015-07-22 13:02:46 -07002542 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002543 assert main, "main not defined"
2544 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07002545 assert main.CLIs, "main.CLIs not defined"
2546 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002547 assert ONOS1Port, "ONOS1Port not defined"
2548 assert ONOS2Port, "ONOS2Port not defined"
2549 assert ONOS3Port, "ONOS3Port not defined"
2550 assert ONOS4Port, "ONOS4Port not defined"
2551 assert ONOS5Port, "ONOS5Port not defined"
2552 assert ONOS6Port, "ONOS6Port not defined"
2553 assert ONOS7Port, "ONOS7Port not defined"
2554
2555 switchSleep = float( main.params[ 'timers' ][ 'SwitchDiscovery' ] )
2556 switch = main.params[ 'kill' ][ 'switch' ]
2557 switchDPID = main.params[ 'kill' ][ 'dpid' ]
2558 links = main.params[ 'kill' ][ 'links' ].split()
2559 description = "Adding a switch to ensure it is discovered correctly"
2560 main.case( description )
2561
2562 main.step( "Add back " + switch )
2563 main.Mininet1.addSwitch( switch, dpid=switchDPID )
2564 for peer in links:
2565 main.Mininet1.addLink( switch, peer )
2566 ipList = []
Jon Halle1a3b752015-07-22 13:02:46 -07002567 for i in range( main.numCtrls ):
2568 ipList.append( main.nodes[ i ].ip_address )
Jon Hall5cf14d52015-07-16 12:15:19 -07002569 main.Mininet1.assignSwController( sw=switch, ip=ipList )
2570 main.log.info( "Waiting " + str( switchSleep ) +
2571 " seconds for switch up to be discovered" )
2572 time.sleep( switchSleep )
2573 device = main.ONOScli1.getDevice( dpid=switchDPID )
2574 # Peek at the deleted switch
2575 main.log.warn( str( device ) )
2576 result = main.FALSE
2577 if device and device[ 'available' ]:
2578 result = main.TRUE
2579 utilities.assert_equals( expect=main.TRUE, actual=result,
2580 onpass="add switch successful",
2581 onfail="Failed to add switch?" )
2582
2583 def CASE13( self, main ):
2584 """
2585 Clean up
2586 """
2587 import os
2588 import time
Jon Halle1a3b752015-07-22 13:02:46 -07002589 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002590 assert main, "main not defined"
2591 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07002592 assert main.CLIs, "main.CLIs not defined"
2593 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002594
2595 # printing colors to terminal
2596 colors = { 'cyan': '\033[96m', 'purple': '\033[95m',
2597 'blue': '\033[94m', 'green': '\033[92m',
2598 'yellow': '\033[93m', 'red': '\033[91m', 'end': '\033[0m' }
2599 main.case( "Test Cleanup" )
2600 main.step( "Killing tcpdumps" )
2601 main.Mininet2.stopTcpdump()
2602
2603 testname = main.TEST
2604 if main.params[ 'BACKUP' ] == "True":
2605 main.step( "Copying MN pcap and ONOS log files to test station" )
2606 teststationUser = main.params[ 'BACKUP' ][ 'TESTONUSER' ]
2607 teststationIP = main.params[ 'BACKUP' ][ 'TESTONIP' ]
2608 # NOTE: MN Pcap file is being saved to ~/packet_captures
2609 # scp this file as MN and TestON aren't necessarily the same vm
2610 # FIXME: scp
2611 # mn files
2612 # TODO: Load these from params
2613 # NOTE: must end in /
2614 logFolder = "/opt/onos/log/"
2615 logFiles = [ "karaf.log", "karaf.log.1" ]
2616 # NOTE: must end in /
2617 dstDir = "~/packet_captures/"
2618 for f in logFiles:
Jon Halle1a3b752015-07-22 13:02:46 -07002619 for node in main.nodes:
Jon Hall5cf14d52015-07-16 12:15:19 -07002620 main.ONOSbench.handle.sendline( "scp sdn@" + node.ip_address +
2621 ":" + logFolder + f + " " +
2622 teststationUser + "@" +
2623 teststationIP + ":" +
2624 dstDir + str( testname ) +
2625 "-" + node.name + "-" + f )
2626 main.ONOSbench.handle.expect( "\$" )
2627
2628 # std*.log's
2629 # NOTE: must end in /
2630 logFolder = "/opt/onos/var/"
2631 logFiles = [ "stderr.log", "stdout.log" ]
2632 # NOTE: must end in /
2633 dstDir = "~/packet_captures/"
2634 for f in logFiles:
Jon Halle1a3b752015-07-22 13:02:46 -07002635 for node in main.nodes:
Jon Hall5cf14d52015-07-16 12:15:19 -07002636 main.ONOSbench.handle.sendline( "scp sdn@" + node.ip_address +
2637 ":" + logFolder + f + " " +
2638 teststationUser + "@" +
2639 teststationIP + ":" +
2640 dstDir + str( testname ) +
2641 "-" + node.name + "-" + f )
2642 main.ONOSbench.handle.expect( "\$" )
2643 # sleep so scp can finish
2644 time.sleep( 10 )
2645 main.step( "Packing and rotating pcap archives" )
2646 os.system( "~/TestON/dependencies/rotate.sh " + str( testname ) )
2647
2648 main.step( "Stopping Mininet" )
2649 mnResult = main.Mininet1.stopNet()
2650 utilities.assert_equals( expect=main.TRUE, actual=mnResult,
2651 onpass="Mininet stopped",
2652 onfail="MN cleanup NOT successful" )
2653
2654 main.step( "Checking ONOS Logs for errors" )
Jon Halle1a3b752015-07-22 13:02:46 -07002655 for node in main.nodes:
Jon Hall5cf14d52015-07-16 12:15:19 -07002656 print colors[ 'purple' ] + "Checking logs for errors on " + \
2657 node.name + ":" + colors[ 'end' ]
2658 print main.ONOSbench.checkLogs( node.ip_address )
2659
2660 try:
2661 timerLog = open( main.logdir + "/Timers.csv", 'w')
2662 # Overwrite with empty line and close
2663 labels = "Gossip Intents"
2664 data = str( gossipTime )
2665 timerLog.write( labels + "\n" + data )
2666 timerLog.close()
2667 except NameError, e:
2668 main.log.exception(e)
2669
2670 def CASE14( self, main ):
2671 """
2672 start election app on all onos nodes
2673 """
Jon Halle1a3b752015-07-22 13:02:46 -07002674 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002675 assert main, "main not defined"
2676 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07002677 assert main.CLIs, "main.CLIs not defined"
2678 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002679
2680 main.case("Start Leadership Election app")
2681 main.step( "Install leadership election app" )
2682 appResult = main.ONOScli1.activateApp( "org.onosproject.election" )
2683 utilities.assert_equals(
2684 expect=main.TRUE,
2685 actual=appResult,
2686 onpass="Election app installed",
2687 onfail="Something went wrong with installing Leadership election" )
2688
2689 main.step( "Run for election on each node" )
2690 leaderResult = main.TRUE
2691 leaders = []
Jon Halle1a3b752015-07-22 13:02:46 -07002692 for cli in main.CLIs:
Jon Hall5cf14d52015-07-16 12:15:19 -07002693 cli.electionTestRun()
Jon Halle1a3b752015-07-22 13:02:46 -07002694 for cli in main.CLIs:
Jon Hall5cf14d52015-07-16 12:15:19 -07002695 leader = cli.electionTestLeader()
2696 if leader is None or leader == main.FALSE:
2697 main.log.error( cli.name + ": Leader for the election app " +
2698 "should be an ONOS node, instead got '" +
2699 str( leader ) + "'" )
2700 leaderResult = main.FALSE
2701 leaders.append( leader )
2702 utilities.assert_equals(
2703 expect=main.TRUE,
2704 actual=leaderResult,
2705 onpass="Successfully ran for leadership",
2706 onfail="Failed to run for leadership" )
2707
2708 main.step( "Check that each node shows the same leader" )
2709 sameLeader = main.TRUE
2710 if len( set( leaders ) ) != 1:
2711 sameLeader = main.FALSE
Jon Halle1a3b752015-07-22 13:02:46 -07002712 main.log.error( "Results of electionTestLeader is order of main.CLIs:" +
Jon Hall5cf14d52015-07-16 12:15:19 -07002713 str( leaders ) )
2714 utilities.assert_equals(
2715 expect=main.TRUE,
2716 actual=sameLeader,
2717 onpass="Leadership is consistent for the election topic",
2718 onfail="Nodes have different leaders" )
2719
2720 def CASE15( self, main ):
2721 """
2722 Check that Leadership Election is still functional
acsmars71adceb2015-08-31 15:09:26 -07002723 15.1 Run election on each node
2724 15.2 Check that each node has the same leaders and candidates
2725 15.3 Find current leader and withdraw
2726 15.4 Check that a new node was elected leader
2727 15.5 Check that that new leader was the candidate of old leader
2728 15.6 Run for election on old leader
2729 15.7 Check that oldLeader is a candidate, and leader if only 1 node
2730 15.8 Make sure that the old leader was added to the candidate list
2731
2732 old and new variable prefixes refer to data from before vs after
2733 withdrawl and later before withdrawl vs after re-election
Jon Hall5cf14d52015-07-16 12:15:19 -07002734 """
2735 import time
Jon Halle1a3b752015-07-22 13:02:46 -07002736 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002737 assert main, "main not defined"
2738 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07002739 assert main.CLIs, "main.CLIs not defined"
2740 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002741
Jon Hall5cf14d52015-07-16 12:15:19 -07002742 description = "Check that Leadership Election is still functional"
2743 main.case( description )
acsmars71adceb2015-08-31 15:09:26 -07002744 # NOTE: Need to re-run since being a canidate is not persistant
2745 # TODO: add check for "Command not found:" in the driver, this
2746 # means the election test app isn't loaded
Jon Hall5cf14d52015-07-16 12:15:19 -07002747
acsmars71adceb2015-08-31 15:09:26 -07002748 oldLeaders = [] # leaders by node before withdrawl from candidates
2749 newLeaders = [] # leaders by node after withdrawl from candidates
2750 oldAllCandidates = [] # list of lists of each nodes' candidates before
2751 newAllCandidates = [] # list of lists of each nodes' candidates after
2752 oldCandidates = [] # list of candidates from node 0 before withdrawl
2753 newCandidates = [] # list of candidates from node 0 after withdrawl
2754 oldLeader = '' # the old leader from oldLeaders, None if not same
2755 newLeader = '' # the new leaders fron newLoeaders, None if not same
2756 oldLeaderCLI = None # the CLI of the old leader used for re-electing
2757 expectNoLeader = False # True when there is only one leader
2758 if main.numCtrls == 1:
2759 expectNoLeader = True
2760
2761 main.step( "Run for election on each node" )
2762 electionResult = main.TRUE
2763
2764 for cli in main.CLIs: # run test election on each node
2765 if cli.electionTestRun() == main.FALSE:
2766 electionResult = main.FALSE
2767
Jon Hall5cf14d52015-07-16 12:15:19 -07002768 utilities.assert_equals(
2769 expect=main.TRUE,
acsmars71adceb2015-08-31 15:09:26 -07002770 actual=electionResult,
2771 onpass="All nodes successfully ran for leadership",
2772 onfail="At least one node failed to run for leadership" )
2773
2774 main.step( "Check that each node shows the same leader and candidates" )
2775 sameResult = main.TRUE
2776 failMessage = "Nodes have different leaders"
2777 for cli in main.CLIs:
2778 node = cli.specificLeaderCandidate( 'org.onosproject.election' )
2779 oldAllCandidates.append( node )
2780 oldLeaders.append( node[ 0 ] )
2781 oldCandidates = oldAllCandidates[ 0 ]
2782
2783 # Check that each node has the same leader. Defines oldLeader
2784 if len( set( oldLeaders ) ) != 1:
2785 sameResult = main.FALSE
2786 main.log.error( "More than one leader present:" + str( oldLeaders ) )
2787 oldLeader = None
2788 else:
2789 oldLeader = oldLeaders[ 0 ]
2790
2791 # Check that each node's candidate list is the same
2792 for candidates in oldAllCandidates:
2793 if set( candidates ) != set( oldCandidates ):
2794 sameResult = main.FALSE
2795 failMessage += "and candidates"
2796
2797 utilities.assert_equals(
2798 expect=main.TRUE,
2799 actual=sameResult,
Jon Hall5cf14d52015-07-16 12:15:19 -07002800 onpass="Leadership is consistent for the election topic",
acsmars71adceb2015-08-31 15:09:26 -07002801 onfail=failMessage )
Jon Hall5cf14d52015-07-16 12:15:19 -07002802
2803 main.step( "Find current leader and withdraw" )
acsmars71adceb2015-08-31 15:09:26 -07002804 withdrawResult = main.TRUE
Jon Hall5cf14d52015-07-16 12:15:19 -07002805 # do some sanity checking on leader before using it
acsmars71adceb2015-08-31 15:09:26 -07002806 if oldLeader is None:
2807 main.log.error( "Leadership isn't consistent." )
2808 withdrawResult = main.FALSE
2809 # Get the CLI of the oldLeader
Jon Halle1a3b752015-07-22 13:02:46 -07002810 for i in range( len( main.CLIs ) ):
acsmars71adceb2015-08-31 15:09:26 -07002811 if oldLeader == main.nodes[ i ].ip_address:
2812 oldLeaderCLI = main.CLIs[ i ]
Jon Hall5cf14d52015-07-16 12:15:19 -07002813 break
2814 else: # FOR/ELSE statement
2815 main.log.error( "Leader election, could not find current leader" )
2816 if oldLeader:
acsmars71adceb2015-08-31 15:09:26 -07002817 withdrawResult = oldLeaderCLI.electionTestWithdraw()
Jon Hall5cf14d52015-07-16 12:15:19 -07002818 utilities.assert_equals(
2819 expect=main.TRUE,
2820 actual=withdrawResult,
2821 onpass="Node was withdrawn from election",
2822 onfail="Node was not withdrawn from election" )
2823
acsmars71adceb2015-08-31 15:09:26 -07002824 main.step( "Check that a new node was elected leader" )
2825
Jon Hall5cf14d52015-07-16 12:15:19 -07002826 # FIXME: use threads
acsmars71adceb2015-08-31 15:09:26 -07002827 newLeaderResult = main.TRUE
2828 failMessage = "Nodes have different leaders"
2829
2830 # Get new leaders and candidates
Jon Halle1a3b752015-07-22 13:02:46 -07002831 for cli in main.CLIs:
acsmars71adceb2015-08-31 15:09:26 -07002832 node = cli.specificLeaderCandidate( 'org.onosproject.election' )
2833 # elections might no have finished yet
2834 if node[ 0 ] == 'none' and not expectNoLeader:
2835 main.log.info( "Node has no leader, waiting 5 seconds to be " +
2836 "sure elections are complete." )
2837 time.sleep(5)
2838 node = cli.specificLeaderCandidate( 'org.onosproject.election' )
2839 # election still isn't done or there is a problem
2840 if node[ 0 ] == 'none':
2841 main.log.error( "No leader was elected on at least 1 node" )
2842 newLeaderResult = main.FALSE
2843 newAllCandidates.append( node )
2844 newLeaders.append( node[ 0 ] )
2845 newCandidates = newAllCandidates[ 0 ]
2846
2847 # Check that each node has the same leader. Defines newLeader
2848 if len( set( newLeaders ) ) != 1:
2849 newLeaderResult = main.FALSE
2850 main.log.error( "Nodes have different leaders: " +
2851 str( newLeaders ) )
2852 newLeader = None
Jon Hall5cf14d52015-07-16 12:15:19 -07002853 else:
acsmars71adceb2015-08-31 15:09:26 -07002854 newLeader = newLeaders[ 0 ]
2855
2856 # Check that each node's candidate list is the same
2857 for candidates in newAllCandidates:
2858 if set( candidates ) != set( newCandidates ):
2859 newLeaderResult = main.FALSE
2860 main.error.log( "Discrepancy in candidate lists detected" )
2861
2862 # Check that the new leader is not the older leader, which was withdrawn
2863 if newLeader == oldLeader:
2864 newLeaderResult = main.FALSE
2865 main.log.error( "All nodes still see old leader: " + oldLeader +
2866 " as the current leader" )
2867
Jon Hall5cf14d52015-07-16 12:15:19 -07002868 utilities.assert_equals(
2869 expect=main.TRUE,
acsmars71adceb2015-08-31 15:09:26 -07002870 actual=newLeaderResult,
Jon Hall5cf14d52015-07-16 12:15:19 -07002871 onpass="Leadership election passed",
2872 onfail="Something went wrong with Leadership election" )
2873
acsmars71adceb2015-08-31 15:09:26 -07002874 main.step( "Check that that new leader was the candidate of old leader")
2875 # candidates[ 2 ] should be come the top candidate after withdrawl
2876 correctCandidateResult = main.TRUE
2877 if expectNoLeader:
2878 if newLeader == 'none':
2879 main.log.info( "No leader expected. None found. Pass" )
2880 correctCandidateResult = main.TRUE
2881 else:
2882 main.log.info( "Expected no leader, got: " + str( newLeader ) )
2883 correctCandidateResult = main.FALSE
2884 elif newLeader != oldCandidates[ 2 ]:
2885 correctCandidateResult = main.FALSE
2886 main.log.error( "Candidate " + newLeader + " was elected. " +
2887 oldCandidates[ 2 ] + " should have had priority." )
2888
2889 utilities.assert_equals(
2890 expect=main.TRUE,
2891 actual=correctCandidateResult,
2892 onpass="Correct Candidate Elected",
2893 onfail="Incorrect Candidate Elected" )
2894
Jon Hall5cf14d52015-07-16 12:15:19 -07002895 main.step( "Run for election on old leader( just so everyone " +
2896 "is in the hat )" )
acsmars71adceb2015-08-31 15:09:26 -07002897 if oldLeaderCLI is not None:
2898 runResult = oldLeaderCLI.electionTestRun()
Jon Hall5cf14d52015-07-16 12:15:19 -07002899 else:
acsmars71adceb2015-08-31 15:09:26 -07002900 main.log.error( "No old leader to re-elect" )
Jon Hall5cf14d52015-07-16 12:15:19 -07002901 runResult = main.FALSE
2902 utilities.assert_equals(
2903 expect=main.TRUE,
2904 actual=runResult,
2905 onpass="App re-ran for election",
2906 onfail="App failed to run for election" )
acsmars71adceb2015-08-31 15:09:26 -07002907 main.step(
2908 "Check that oldLeader is a candidate, and leader if only 1 node" )
Jon Hall5cf14d52015-07-16 12:15:19 -07002909 # verify leader didn't just change
acsmars71adceb2015-08-31 15:09:26 -07002910 positionResult = main.TRUE
2911 # Get new leaders and candidates, wait if oldLeader is not a candidate yet
2912
2913 # Reset and reuse the new candidate and leaders lists
2914 newAllCandidates = []
2915 newCandidates = []
2916 newLeaders = []
2917 for cli in main.CLIs:
2918 node = cli.specificLeaderCandidate( 'org.onosproject.election' )
2919 if oldLeader not in node: # election might no have finished yet
2920 main.log.info( "Old Leader not elected, waiting 5 seconds to " +
2921 "be sure elections are complete" )
2922 time.sleep(5)
2923 node = cli.specificLeaderCandidate( 'org.onosproject.election' )
2924 if oldLeader not in node: # election still isn't done, errors
2925 main.log.error(
2926 "Old leader was not elected on at least one node" )
2927 positionResult = main.FALSE
2928 newAllCandidates.append( node )
2929 newLeaders.append( node[ 0 ] )
2930 newCandidates = newAllCandidates[ 0 ]
2931
2932 # Check that each node has the same leader. Defines newLeader
2933 if len( set( newLeaders ) ) != 1:
2934 positionResult = main.FALSE
2935 main.log.error( "Nodes have different leaders: " +
2936 str( newLeaders ) )
2937 newLeader = None
Jon Hall5cf14d52015-07-16 12:15:19 -07002938 else:
acsmars71adceb2015-08-31 15:09:26 -07002939 newLeader = newLeaders[ 0 ]
2940
2941 # Check that each node's candidate list is the same
2942 for candidates in newAllCandidates:
2943 if set( candidates ) != set( newCandidates ):
2944 newLeaderResult = main.FALSE
2945 main.error.log( "Discrepancy in candidate lists detected" )
2946
2947 # Check that the re-elected node is last on the candidate List
2948 if oldLeader != newCandidates[ -1 ]:
2949 main.log.error( "Old Leader (" + oldLeader + ") not in the proper position " +
2950 str( newCandidates ) )
2951 positionResult = main.FALSE
Jon Hall5cf14d52015-07-16 12:15:19 -07002952
2953 utilities.assert_equals(
2954 expect=main.TRUE,
acsmars71adceb2015-08-31 15:09:26 -07002955 actual=positionResult,
Jon Hall5cf14d52015-07-16 12:15:19 -07002956 onpass="Old leader successfully re-ran for election",
2957 onfail="Something went wrong with Leadership election after " +
2958 "the old leader re-ran for election" )
2959
2960 def CASE16( self, main ):
2961 """
2962 Install Distributed Primitives app
2963 """
2964 import time
Jon Halle1a3b752015-07-22 13:02:46 -07002965 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002966 assert main, "main not defined"
2967 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07002968 assert main.CLIs, "main.CLIs not defined"
2969 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07002970
2971 # Variables for the distributed primitives tests
2972 global pCounterName
2973 global iCounterName
2974 global pCounterValue
2975 global iCounterValue
2976 global onosSet
2977 global onosSetName
2978 pCounterName = "TestON-Partitions"
2979 iCounterName = "TestON-inMemory"
2980 pCounterValue = 0
2981 iCounterValue = 0
2982 onosSet = set([])
2983 onosSetName = "TestON-set"
2984
2985 description = "Install Primitives app"
2986 main.case( description )
2987 main.step( "Install Primitives app" )
2988 appName = "org.onosproject.distributedprimitives"
Jon Halle1a3b752015-07-22 13:02:46 -07002989 appResults = main.CLIs[0].activateApp( appName )
Jon Hall5cf14d52015-07-16 12:15:19 -07002990 utilities.assert_equals( expect=main.TRUE,
2991 actual=appResults,
2992 onpass="Primitives app activated",
2993 onfail="Primitives app not activated" )
2994 time.sleep( 5 ) # To allow all nodes to activate
2995
2996 def CASE17( self, main ):
2997 """
2998 Check for basic functionality with distributed primitives
2999 """
Jon Hall5cf14d52015-07-16 12:15:19 -07003000 # Make sure variables are defined/set
Jon Halle1a3b752015-07-22 13:02:46 -07003001 assert main.numCtrls, "main.numCtrls not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07003002 assert main, "main not defined"
3003 assert utilities.assert_equals, "utilities.assert_equals not defined"
Jon Halle1a3b752015-07-22 13:02:46 -07003004 assert main.CLIs, "main.CLIs not defined"
3005 assert main.nodes, "main.nodes not defined"
Jon Hall5cf14d52015-07-16 12:15:19 -07003006 assert pCounterName, "pCounterName not defined"
3007 assert iCounterName, "iCounterName not defined"
3008 assert onosSetName, "onosSetName not defined"
3009 # NOTE: assert fails if value is 0/None/Empty/False
3010 try:
3011 pCounterValue
3012 except NameError:
3013 main.log.error( "pCounterValue not defined, setting to 0" )
3014 pCounterValue = 0
3015 try:
3016 iCounterValue
3017 except NameError:
3018 main.log.error( "iCounterValue not defined, setting to 0" )
3019 iCounterValue = 0
3020 try:
3021 onosSet
3022 except NameError:
3023 main.log.error( "onosSet not defined, setting to empty Set" )
3024 onosSet = set([])
3025 # Variables for the distributed primitives tests. These are local only
3026 addValue = "a"
3027 addAllValue = "a b c d e f"
3028 retainValue = "c d e f"
3029
3030 description = "Check for basic functionality with distributed " +\
3031 "primitives"
3032 main.case( description )
Jon Halle1a3b752015-07-22 13:02:46 -07003033 main.caseExplanation = "Test the methods of the distributed " +\
3034 "primitives (counters and sets) throught the cli"
Jon Hall5cf14d52015-07-16 12:15:19 -07003035 # DISTRIBUTED ATOMIC COUNTERS
Jon Halle1a3b752015-07-22 13:02:46 -07003036 # Partitioned counters
3037 main.step( "Increment then get a default counter on each node" )
Jon Hall5cf14d52015-07-16 12:15:19 -07003038 pCounters = []
3039 threads = []
3040 addedPValues = []
Jon Halle1a3b752015-07-22 13:02:46 -07003041 for i in range( main.numCtrls ):
3042 t = main.Thread( target=main.CLIs[i].counterTestAddAndGet,
3043 name="counterAddAndGet-" + str( i ),
Jon Hall5cf14d52015-07-16 12:15:19 -07003044 args=[ pCounterName ] )
3045 pCounterValue += 1
3046 addedPValues.append( pCounterValue )
3047 threads.append( t )
3048 t.start()
3049
3050 for t in threads:
3051 t.join()
3052 pCounters.append( t.result )
3053 # Check that counter incremented numController times
3054 pCounterResults = True
3055 for i in addedPValues:
3056 tmpResult = i in pCounters
3057 pCounterResults = pCounterResults and tmpResult
3058 if not tmpResult:
3059 main.log.error( str( i ) + " is not in partitioned "
3060 "counter incremented results" )
3061 utilities.assert_equals( expect=True,
3062 actual=pCounterResults,
3063 onpass="Default counter incremented",
3064 onfail="Error incrementing default" +
3065 " counter" )
3066
Jon Halle1a3b752015-07-22 13:02:46 -07003067 main.step( "Get then Increment a default counter on each node" )
3068 pCounters = []
3069 threads = []
3070 addedPValues = []
3071 for i in range( main.numCtrls ):
3072 t = main.Thread( target=main.CLIs[i].counterTestGetAndAdd,
3073 name="counterGetAndAdd-" + str( i ),
3074 args=[ pCounterName ] )
3075 addedPValues.append( pCounterValue )
3076 pCounterValue += 1
3077 threads.append( t )
3078 t.start()
3079
3080 for t in threads:
3081 t.join()
3082 pCounters.append( t.result )
3083 # Check that counter incremented numController times
3084 pCounterResults = True
3085 for i in addedPValues:
3086 tmpResult = i in pCounters
3087 pCounterResults = pCounterResults and tmpResult
3088 if not tmpResult:
3089 main.log.error( str( i ) + " is not in partitioned "
3090 "counter incremented results" )
3091 utilities.assert_equals( expect=True,
3092 actual=pCounterResults,
3093 onpass="Default counter incremented",
3094 onfail="Error incrementing default" +
3095 " counter" )
3096
3097 main.step( "Counters we added have the correct values" )
3098 incrementCheck = main.Counters.counterCheck( pCounterName, pCounterValue )
3099 utilities.assert_equals( expect=main.TRUE,
3100 actual=incrementCheck,
3101 onpass="Added counters are correct",
3102 onfail="Added counters are incorrect" )
3103
3104 main.step( "Add -8 to then get a default counter on each node" )
3105 pCounters = []
3106 threads = []
3107 addedPValues = []
3108 for i in range( main.numCtrls ):
3109 t = main.Thread( target=main.CLIs[i].counterTestAddAndGet,
3110 name="counterIncrement-" + str( i ),
3111 args=[ pCounterName ],
3112 kwargs={ "delta": -8 } )
3113 pCounterValue += -8
3114 addedPValues.append( pCounterValue )
3115 threads.append( t )
3116 t.start()
3117
3118 for t in threads:
3119 t.join()
3120 pCounters.append( t.result )
3121 # Check that counter incremented numController times
3122 pCounterResults = True
3123 for i in addedPValues:
3124 tmpResult = i in pCounters
3125 pCounterResults = pCounterResults and tmpResult
3126 if not tmpResult:
3127 main.log.error( str( i ) + " is not in partitioned "
3128 "counter incremented results" )
3129 utilities.assert_equals( expect=True,
3130 actual=pCounterResults,
3131 onpass="Default counter incremented",
3132 onfail="Error incrementing default" +
3133 " counter" )
3134
3135 main.step( "Add 5 to then get a default counter on each node" )
3136 pCounters = []
3137 threads = []
3138 addedPValues = []
3139 for i in range( main.numCtrls ):
3140 t = main.Thread( target=main.CLIs[i].counterTestAddAndGet,
3141 name="counterIncrement-" + str( i ),
3142 args=[ pCounterName ],
3143 kwargs={ "delta": 5 } )
3144 pCounterValue += 5
3145 addedPValues.append( pCounterValue )
3146 threads.append( t )
3147 t.start()
3148
3149 for t in threads:
3150 t.join()
3151 pCounters.append( t.result )
3152 # Check that counter incremented numController times
3153 pCounterResults = True
3154 for i in addedPValues:
3155 tmpResult = i in pCounters
3156 pCounterResults = pCounterResults and tmpResult
3157 if not tmpResult:
3158 main.log.error( str( i ) + " is not in partitioned "
3159 "counter incremented results" )
3160 utilities.assert_equals( expect=True,
3161 actual=pCounterResults,
3162 onpass="Default counter incremented",
3163 onfail="Error incrementing default" +
3164 " counter" )
3165
3166 main.step( "Get then add 5 to a default counter on each node" )
3167 pCounters = []
3168 threads = []
3169 addedPValues = []
3170 for i in range( main.numCtrls ):
3171 t = main.Thread( target=main.CLIs[i].counterTestGetAndAdd,
3172 name="counterIncrement-" + str( i ),
3173 args=[ pCounterName ],
3174 kwargs={ "delta": 5 } )
3175 addedPValues.append( pCounterValue )
3176 pCounterValue += 5
3177 threads.append( t )
3178 t.start()
3179
3180 for t in threads:
3181 t.join()
3182 pCounters.append( t.result )
3183 # Check that counter incremented numController times
3184 pCounterResults = True
3185 for i in addedPValues:
3186 tmpResult = i in pCounters
3187 pCounterResults = pCounterResults and tmpResult
3188 if not tmpResult:
3189 main.log.error( str( i ) + " is not in partitioned "
3190 "counter incremented results" )
3191 utilities.assert_equals( expect=True,
3192 actual=pCounterResults,
3193 onpass="Default counter incremented",
3194 onfail="Error incrementing default" +
3195 " counter" )
3196
3197 main.step( "Counters we added have the correct values" )
3198 incrementCheck = main.Counters.counterCheck( pCounterName, pCounterValue )
3199 utilities.assert_equals( expect=main.TRUE,
3200 actual=incrementCheck,
3201 onpass="Added counters are correct",
3202 onfail="Added counters are incorrect" )
3203
3204 # In-Memory counters
3205 main.step( "Increment and get an in-memory counter on each node" )
Jon Hall5cf14d52015-07-16 12:15:19 -07003206 iCounters = []
3207 addedIValues = []
3208 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003209 for i in range( main.numCtrls ):
3210 t = main.Thread( target=main.CLIs[i].counterTestAddAndGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07003211 name="icounterIncrement-" + str( i ),
3212 args=[ iCounterName ],
3213 kwargs={ "inMemory": True } )
3214 iCounterValue += 1
3215 addedIValues.append( iCounterValue )
3216 threads.append( t )
3217 t.start()
3218
3219 for t in threads:
3220 t.join()
3221 iCounters.append( t.result )
3222 # Check that counter incremented numController times
3223 iCounterResults = True
3224 for i in addedIValues:
3225 tmpResult = i in iCounters
3226 iCounterResults = iCounterResults and tmpResult
3227 if not tmpResult:
3228 main.log.error( str( i ) + " is not in the in-memory "
3229 "counter incremented results" )
3230 utilities.assert_equals( expect=True,
3231 actual=iCounterResults,
Jon Halle1a3b752015-07-22 13:02:46 -07003232 onpass="In-memory counter incremented",
3233 onfail="Error incrementing in-memory" +
Jon Hall5cf14d52015-07-16 12:15:19 -07003234 " counter" )
3235
Jon Halle1a3b752015-07-22 13:02:46 -07003236 main.step( "Get then Increment a in-memory counter on each node" )
3237 iCounters = []
3238 threads = []
3239 addedIValues = []
3240 for i in range( main.numCtrls ):
3241 t = main.Thread( target=main.CLIs[i].counterTestGetAndAdd,
3242 name="counterGetAndAdd-" + str( i ),
3243 args=[ iCounterName ],
3244 kwargs={ "inMemory": True } )
3245 addedIValues.append( iCounterValue )
3246 iCounterValue += 1
3247 threads.append( t )
3248 t.start()
3249
3250 for t in threads:
3251 t.join()
3252 iCounters.append( t.result )
3253 # Check that counter incremented numController times
3254 iCounterResults = True
3255 for i in addedIValues:
3256 tmpResult = i in iCounters
3257 iCounterResults = iCounterResults and tmpResult
3258 if not tmpResult:
3259 main.log.error( str( i ) + " is not in in-memory "
3260 "counter incremented results" )
3261 utilities.assert_equals( expect=True,
3262 actual=iCounterResults,
3263 onpass="In-memory counter incremented",
3264 onfail="Error incrementing in-memory" +
3265 " counter" )
3266
3267 main.step( "Counters we added have the correct values" )
3268 incrementCheck = main.Counters.counterCheck( iCounterName, iCounterValue )
3269 utilities.assert_equals( expect=main.TRUE,
3270 actual=incrementCheck,
3271 onpass="Added counters are correct",
3272 onfail="Added counters are incorrect" )
3273
3274 main.step( "Add -8 to then get a in-memory counter on each node" )
3275 iCounters = []
3276 threads = []
3277 addedIValues = []
3278 for i in range( main.numCtrls ):
3279 t = main.Thread( target=main.CLIs[i].counterTestAddAndGet,
3280 name="counterIncrement-" + str( i ),
3281 args=[ iCounterName ],
3282 kwargs={ "delta": -8, "inMemory": True } )
3283 iCounterValue += -8
3284 addedIValues.append( iCounterValue )
3285 threads.append( t )
3286 t.start()
3287
3288 for t in threads:
3289 t.join()
3290 iCounters.append( t.result )
3291 # Check that counter incremented numController times
3292 iCounterResults = True
3293 for i in addedIValues:
3294 tmpResult = i in iCounters
3295 iCounterResults = iCounterResults and tmpResult
3296 if not tmpResult:
3297 main.log.error( str( i ) + " is not in in-memory "
3298 "counter incremented results" )
3299 utilities.assert_equals( expect=True,
3300 actual=pCounterResults,
3301 onpass="In-memory counter incremented",
3302 onfail="Error incrementing in-memory" +
3303 " counter" )
3304
3305 main.step( "Add 5 to then get a in-memory counter on each node" )
3306 iCounters = []
3307 threads = []
3308 addedIValues = []
3309 for i in range( main.numCtrls ):
3310 t = main.Thread( target=main.CLIs[i].counterTestAddAndGet,
3311 name="counterIncrement-" + str( i ),
3312 args=[ iCounterName ],
3313 kwargs={ "delta": 5, "inMemory": True } )
3314 iCounterValue += 5
3315 addedIValues.append( iCounterValue )
3316 threads.append( t )
3317 t.start()
3318
3319 for t in threads:
3320 t.join()
3321 iCounters.append( t.result )
3322 # Check that counter incremented numController times
3323 iCounterResults = True
3324 for i in addedIValues:
3325 tmpResult = i in iCounters
3326 iCounterResults = iCounterResults and tmpResult
3327 if not tmpResult:
3328 main.log.error( str( i ) + " is not in in-memory "
3329 "counter incremented results" )
3330 utilities.assert_equals( expect=True,
3331 actual=pCounterResults,
3332 onpass="In-memory counter incremented",
3333 onfail="Error incrementing in-memory" +
3334 " counter" )
3335
3336 main.step( "Get then add 5 to a in-memory counter on each node" )
3337 iCounters = []
3338 threads = []
3339 addedIValues = []
3340 for i in range( main.numCtrls ):
3341 t = main.Thread( target=main.CLIs[i].counterTestGetAndAdd,
3342 name="counterIncrement-" + str( i ),
3343 args=[ iCounterName ],
3344 kwargs={ "delta": 5, "inMemory": True } )
3345 addedIValues.append( iCounterValue )
3346 iCounterValue += 5
3347 threads.append( t )
3348 t.start()
3349
3350 for t in threads:
3351 t.join()
3352 iCounters.append( t.result )
3353 # Check that counter incremented numController times
3354 iCounterResults = True
3355 for i in addedIValues:
3356 tmpResult = i in iCounters
3357 iCounterResults = iCounterResults and tmpResult
3358 if not tmpResult:
3359 main.log.error( str( i ) + " is not in in-memory "
3360 "counter incremented results" )
3361 utilities.assert_equals( expect=True,
3362 actual=iCounterResults,
3363 onpass="In-memory counter incremented",
3364 onfail="Error incrementing in-memory" +
3365 " counter" )
3366
3367 main.step( "Counters we added have the correct values" )
3368 incrementCheck = main.Counters.counterCheck( iCounterName, iCounterValue )
3369 utilities.assert_equals( expect=main.TRUE,
3370 actual=incrementCheck,
3371 onpass="Added counters are correct",
3372 onfail="Added counters are incorrect" )
3373
Jon Hall5cf14d52015-07-16 12:15:19 -07003374 main.step( "Check counters are consistant across nodes" )
3375 onosCounters = []
3376 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003377 for i in range( main.numCtrls ):
3378 t = main.Thread( target=main.CLIs[i].counters,
Jon Hall5cf14d52015-07-16 12:15:19 -07003379 name="counters-" + str( i ) )
3380 threads.append( t )
3381 t.start()
3382 for t in threads:
3383 t.join()
3384 onosCounters.append( t.result )
3385 tmp = [ i == onosCounters[ 0 ] for i in onosCounters ]
3386 if all( tmp ):
3387 main.log.info( "Counters are consistent across all nodes" )
3388 consistentCounterResults = main.TRUE
3389 else:
3390 main.log.error( "Counters are not consistent across all nodes" )
3391 consistentCounterResults = main.FALSE
3392 utilities.assert_equals( expect=main.TRUE,
3393 actual=consistentCounterResults,
3394 onpass="ONOS counters are consistent " +
3395 "across nodes",
3396 onfail="ONOS Counters are inconsistent " +
3397 "across nodes" )
3398
3399 main.step( "Counters we added have the correct values" )
Jon Halle1a3b752015-07-22 13:02:46 -07003400 incrementCheck = main.Counters.counterCheck( iCounterName, iCounterValue )
3401 incrementCheck = incrementCheck and \
3402 main.Counters.counterCheck( iCounterName, iCounterValue )
Jon Hall5cf14d52015-07-16 12:15:19 -07003403 utilities.assert_equals( expect=main.TRUE,
Jon Halle1a3b752015-07-22 13:02:46 -07003404 actual=incrementCheck,
Jon Hall5cf14d52015-07-16 12:15:19 -07003405 onpass="Added counters are correct",
3406 onfail="Added counters are incorrect" )
Jon Halle1a3b752015-07-22 13:02:46 -07003407
Jon Hall5cf14d52015-07-16 12:15:19 -07003408 # DISTRIBUTED SETS
3409 main.step( "Distributed Set get" )
3410 size = len( onosSet )
3411 getResponses = []
3412 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003413 for i in range( main.numCtrls ):
3414 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07003415 name="setTestGet-" + str( i ),
3416 args=[ onosSetName ] )
3417 threads.append( t )
3418 t.start()
3419 for t in threads:
3420 t.join()
3421 getResponses.append( t.result )
3422
3423 getResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003424 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003425 if isinstance( getResponses[ i ], list):
3426 current = set( getResponses[ i ] )
3427 if len( current ) == len( getResponses[ i ] ):
3428 # no repeats
3429 if onosSet != current:
3430 main.log.error( "ONOS" + str( i + 1 ) +
3431 " has incorrect view" +
3432 " of set " + onosSetName + ":\n" +
3433 str( getResponses[ i ] ) )
3434 main.log.debug( "Expected: " + str( onosSet ) )
3435 main.log.debug( "Actual: " + str( current ) )
3436 getResults = main.FALSE
3437 else:
3438 # error, set is not a set
3439 main.log.error( "ONOS" + str( i + 1 ) +
3440 " has repeat elements in" +
3441 " set " + onosSetName + ":\n" +
3442 str( getResponses[ i ] ) )
3443 getResults = main.FALSE
3444 elif getResponses[ i ] == main.ERROR:
3445 getResults = main.FALSE
3446 utilities.assert_equals( expect=main.TRUE,
3447 actual=getResults,
3448 onpass="Set elements are correct",
3449 onfail="Set elements are incorrect" )
3450
3451 main.step( "Distributed Set size" )
3452 sizeResponses = []
3453 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003454 for i in range( main.numCtrls ):
3455 t = main.Thread( target=main.CLIs[i].setTestSize,
Jon Hall5cf14d52015-07-16 12:15:19 -07003456 name="setTestSize-" + str( i ),
3457 args=[ onosSetName ] )
3458 threads.append( t )
3459 t.start()
3460 for t in threads:
3461 t.join()
3462 sizeResponses.append( t.result )
3463
3464 sizeResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003465 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003466 if size != sizeResponses[ i ]:
3467 sizeResults = main.FALSE
3468 main.log.error( "ONOS" + str( i + 1 ) +
3469 " expected a size of " + str( size ) +
3470 " for set " + onosSetName +
3471 " but got " + str( sizeResponses[ i ] ) )
3472 utilities.assert_equals( expect=main.TRUE,
3473 actual=sizeResults,
3474 onpass="Set sizes are correct",
3475 onfail="Set sizes are incorrect" )
3476
3477 main.step( "Distributed Set add()" )
3478 onosSet.add( addValue )
3479 addResponses = []
3480 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003481 for i in range( main.numCtrls ):
3482 t = main.Thread( target=main.CLIs[i].setTestAdd,
Jon Hall5cf14d52015-07-16 12:15:19 -07003483 name="setTestAdd-" + str( i ),
3484 args=[ onosSetName, addValue ] )
3485 threads.append( t )
3486 t.start()
3487 for t in threads:
3488 t.join()
3489 addResponses.append( t.result )
3490
3491 # main.TRUE = successfully changed the set
3492 # main.FALSE = action resulted in no change in set
3493 # main.ERROR - Some error in executing the function
3494 addResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003495 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003496 if addResponses[ i ] == main.TRUE:
3497 # All is well
3498 pass
3499 elif addResponses[ i ] == main.FALSE:
3500 # Already in set, probably fine
3501 pass
3502 elif addResponses[ i ] == main.ERROR:
3503 # Error in execution
3504 addResults = main.FALSE
3505 else:
3506 # unexpected result
3507 addResults = main.FALSE
3508 if addResults != main.TRUE:
3509 main.log.error( "Error executing set add" )
3510
3511 # Check if set is still correct
3512 size = len( onosSet )
3513 getResponses = []
3514 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003515 for i in range( main.numCtrls ):
3516 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07003517 name="setTestGet-" + str( i ),
3518 args=[ onosSetName ] )
3519 threads.append( t )
3520 t.start()
3521 for t in threads:
3522 t.join()
3523 getResponses.append( t.result )
3524 getResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003525 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003526 if isinstance( getResponses[ i ], list):
3527 current = set( getResponses[ i ] )
3528 if len( current ) == len( getResponses[ i ] ):
3529 # no repeats
3530 if onosSet != current:
3531 main.log.error( "ONOS" + str( i + 1 ) +
3532 " has incorrect view" +
3533 " of set " + onosSetName + ":\n" +
3534 str( getResponses[ i ] ) )
3535 main.log.debug( "Expected: " + str( onosSet ) )
3536 main.log.debug( "Actual: " + str( current ) )
3537 getResults = main.FALSE
3538 else:
3539 # error, set is not a set
3540 main.log.error( "ONOS" + str( i + 1 ) +
3541 " has repeat elements in" +
3542 " set " + onosSetName + ":\n" +
3543 str( getResponses[ i ] ) )
3544 getResults = main.FALSE
3545 elif getResponses[ i ] == main.ERROR:
3546 getResults = main.FALSE
3547 sizeResponses = []
3548 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003549 for i in range( main.numCtrls ):
3550 t = main.Thread( target=main.CLIs[i].setTestSize,
Jon Hall5cf14d52015-07-16 12:15:19 -07003551 name="setTestSize-" + str( i ),
3552 args=[ onosSetName ] )
3553 threads.append( t )
3554 t.start()
3555 for t in threads:
3556 t.join()
3557 sizeResponses.append( t.result )
3558 sizeResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003559 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003560 if size != sizeResponses[ i ]:
3561 sizeResults = main.FALSE
3562 main.log.error( "ONOS" + str( i + 1 ) +
3563 " expected a size of " + str( size ) +
3564 " for set " + onosSetName +
3565 " but got " + str( sizeResponses[ i ] ) )
3566 addResults = addResults and getResults and sizeResults
3567 utilities.assert_equals( expect=main.TRUE,
3568 actual=addResults,
3569 onpass="Set add correct",
3570 onfail="Set add was incorrect" )
3571
3572 main.step( "Distributed Set addAll()" )
3573 onosSet.update( addAllValue.split() )
3574 addResponses = []
3575 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003576 for i in range( main.numCtrls ):
3577 t = main.Thread( target=main.CLIs[i].setTestAdd,
Jon Hall5cf14d52015-07-16 12:15:19 -07003578 name="setTestAddAll-" + str( i ),
3579 args=[ onosSetName, addAllValue ] )
3580 threads.append( t )
3581 t.start()
3582 for t in threads:
3583 t.join()
3584 addResponses.append( t.result )
3585
3586 # main.TRUE = successfully changed the set
3587 # main.FALSE = action resulted in no change in set
3588 # main.ERROR - Some error in executing the function
3589 addAllResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003590 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003591 if addResponses[ i ] == main.TRUE:
3592 # All is well
3593 pass
3594 elif addResponses[ i ] == main.FALSE:
3595 # Already in set, probably fine
3596 pass
3597 elif addResponses[ i ] == main.ERROR:
3598 # Error in execution
3599 addAllResults = main.FALSE
3600 else:
3601 # unexpected result
3602 addAllResults = main.FALSE
3603 if addAllResults != main.TRUE:
3604 main.log.error( "Error executing set addAll" )
3605
3606 # Check if set is still correct
3607 size = len( onosSet )
3608 getResponses = []
3609 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003610 for i in range( main.numCtrls ):
3611 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07003612 name="setTestGet-" + str( i ),
3613 args=[ onosSetName ] )
3614 threads.append( t )
3615 t.start()
3616 for t in threads:
3617 t.join()
3618 getResponses.append( t.result )
3619 getResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003620 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003621 if isinstance( getResponses[ i ], list):
3622 current = set( getResponses[ i ] )
3623 if len( current ) == len( getResponses[ i ] ):
3624 # no repeats
3625 if onosSet != current:
3626 main.log.error( "ONOS" + str( i + 1 ) +
3627 " has incorrect view" +
3628 " of set " + onosSetName + ":\n" +
3629 str( getResponses[ i ] ) )
3630 main.log.debug( "Expected: " + str( onosSet ) )
3631 main.log.debug( "Actual: " + str( current ) )
3632 getResults = main.FALSE
3633 else:
3634 # error, set is not a set
3635 main.log.error( "ONOS" + str( i + 1 ) +
3636 " has repeat elements in" +
3637 " set " + onosSetName + ":\n" +
3638 str( getResponses[ i ] ) )
3639 getResults = main.FALSE
3640 elif getResponses[ i ] == main.ERROR:
3641 getResults = main.FALSE
3642 sizeResponses = []
3643 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003644 for i in range( main.numCtrls ):
3645 t = main.Thread( target=main.CLIs[i].setTestSize,
Jon Hall5cf14d52015-07-16 12:15:19 -07003646 name="setTestSize-" + str( i ),
3647 args=[ onosSetName ] )
3648 threads.append( t )
3649 t.start()
3650 for t in threads:
3651 t.join()
3652 sizeResponses.append( t.result )
3653 sizeResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003654 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003655 if size != sizeResponses[ i ]:
3656 sizeResults = main.FALSE
3657 main.log.error( "ONOS" + str( i + 1 ) +
3658 " expected a size of " + str( size ) +
3659 " for set " + onosSetName +
3660 " but got " + str( sizeResponses[ i ] ) )
3661 addAllResults = addAllResults and getResults and sizeResults
3662 utilities.assert_equals( expect=main.TRUE,
3663 actual=addAllResults,
3664 onpass="Set addAll correct",
3665 onfail="Set addAll was incorrect" )
3666
3667 main.step( "Distributed Set contains()" )
3668 containsResponses = []
3669 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003670 for i in range( main.numCtrls ):
3671 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07003672 name="setContains-" + str( i ),
3673 args=[ onosSetName ],
3674 kwargs={ "values": addValue } )
3675 threads.append( t )
3676 t.start()
3677 for t in threads:
3678 t.join()
3679 # NOTE: This is the tuple
3680 containsResponses.append( t.result )
3681
3682 containsResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003683 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003684 if containsResponses[ i ] == main.ERROR:
3685 containsResults = main.FALSE
3686 else:
3687 containsResults = containsResults and\
3688 containsResponses[ i ][ 1 ]
3689 utilities.assert_equals( expect=main.TRUE,
3690 actual=containsResults,
3691 onpass="Set contains is functional",
3692 onfail="Set contains failed" )
3693
3694 main.step( "Distributed Set containsAll()" )
3695 containsAllResponses = []
3696 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003697 for i in range( main.numCtrls ):
3698 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07003699 name="setContainsAll-" + str( i ),
3700 args=[ onosSetName ],
3701 kwargs={ "values": addAllValue } )
3702 threads.append( t )
3703 t.start()
3704 for t in threads:
3705 t.join()
3706 # NOTE: This is the tuple
3707 containsAllResponses.append( t.result )
3708
3709 containsAllResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003710 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003711 if containsResponses[ i ] == main.ERROR:
3712 containsResults = main.FALSE
3713 else:
3714 containsResults = containsResults and\
3715 containsResponses[ i ][ 1 ]
3716 utilities.assert_equals( expect=main.TRUE,
3717 actual=containsAllResults,
3718 onpass="Set containsAll is functional",
3719 onfail="Set containsAll failed" )
3720
3721 main.step( "Distributed Set remove()" )
3722 onosSet.remove( addValue )
3723 removeResponses = []
3724 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003725 for i in range( main.numCtrls ):
3726 t = main.Thread( target=main.CLIs[i].setTestRemove,
Jon Hall5cf14d52015-07-16 12:15:19 -07003727 name="setTestRemove-" + str( i ),
3728 args=[ onosSetName, addValue ] )
3729 threads.append( t )
3730 t.start()
3731 for t in threads:
3732 t.join()
3733 removeResponses.append( t.result )
3734
3735 # main.TRUE = successfully changed the set
3736 # main.FALSE = action resulted in no change in set
3737 # main.ERROR - Some error in executing the function
3738 removeResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003739 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003740 if removeResponses[ i ] == main.TRUE:
3741 # All is well
3742 pass
3743 elif removeResponses[ i ] == main.FALSE:
3744 # not in set, probably fine
3745 pass
3746 elif removeResponses[ i ] == main.ERROR:
3747 # Error in execution
3748 removeResults = main.FALSE
3749 else:
3750 # unexpected result
3751 removeResults = main.FALSE
3752 if removeResults != main.TRUE:
3753 main.log.error( "Error executing set remove" )
3754
3755 # Check if set is still correct
3756 size = len( onosSet )
3757 getResponses = []
3758 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003759 for i in range( main.numCtrls ):
3760 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07003761 name="setTestGet-" + str( i ),
3762 args=[ onosSetName ] )
3763 threads.append( t )
3764 t.start()
3765 for t in threads:
3766 t.join()
3767 getResponses.append( t.result )
3768 getResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003769 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003770 if isinstance( getResponses[ i ], list):
3771 current = set( getResponses[ i ] )
3772 if len( current ) == len( getResponses[ i ] ):
3773 # no repeats
3774 if onosSet != current:
3775 main.log.error( "ONOS" + str( i + 1 ) +
3776 " has incorrect view" +
3777 " of set " + onosSetName + ":\n" +
3778 str( getResponses[ i ] ) )
3779 main.log.debug( "Expected: " + str( onosSet ) )
3780 main.log.debug( "Actual: " + str( current ) )
3781 getResults = main.FALSE
3782 else:
3783 # error, set is not a set
3784 main.log.error( "ONOS" + str( i + 1 ) +
3785 " has repeat elements in" +
3786 " set " + onosSetName + ":\n" +
3787 str( getResponses[ i ] ) )
3788 getResults = main.FALSE
3789 elif getResponses[ i ] == main.ERROR:
3790 getResults = main.FALSE
3791 sizeResponses = []
3792 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003793 for i in range( main.numCtrls ):
3794 t = main.Thread( target=main.CLIs[i].setTestSize,
Jon Hall5cf14d52015-07-16 12:15:19 -07003795 name="setTestSize-" + str( i ),
3796 args=[ onosSetName ] )
3797 threads.append( t )
3798 t.start()
3799 for t in threads:
3800 t.join()
3801 sizeResponses.append( t.result )
3802 sizeResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003803 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003804 if size != sizeResponses[ i ]:
3805 sizeResults = main.FALSE
3806 main.log.error( "ONOS" + str( i + 1 ) +
3807 " expected a size of " + str( size ) +
3808 " for set " + onosSetName +
3809 " but got " + str( sizeResponses[ i ] ) )
3810 removeResults = removeResults and getResults and sizeResults
3811 utilities.assert_equals( expect=main.TRUE,
3812 actual=removeResults,
3813 onpass="Set remove correct",
3814 onfail="Set remove was incorrect" )
3815
3816 main.step( "Distributed Set removeAll()" )
3817 onosSet.difference_update( addAllValue.split() )
3818 removeAllResponses = []
3819 threads = []
3820 try:
Jon Halle1a3b752015-07-22 13:02:46 -07003821 for i in range( main.numCtrls ):
3822 t = main.Thread( target=main.CLIs[i].setTestRemove,
Jon Hall5cf14d52015-07-16 12:15:19 -07003823 name="setTestRemoveAll-" + str( i ),
3824 args=[ onosSetName, addAllValue ] )
3825 threads.append( t )
3826 t.start()
3827 for t in threads:
3828 t.join()
3829 removeAllResponses.append( t.result )
3830 except Exception, e:
3831 main.log.exception(e)
3832
3833 # main.TRUE = successfully changed the set
3834 # main.FALSE = action resulted in no change in set
3835 # main.ERROR - Some error in executing the function
3836 removeAllResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003837 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003838 if removeAllResponses[ i ] == main.TRUE:
3839 # All is well
3840 pass
3841 elif removeAllResponses[ i ] == main.FALSE:
3842 # not in set, probably fine
3843 pass
3844 elif removeAllResponses[ i ] == main.ERROR:
3845 # Error in execution
3846 removeAllResults = main.FALSE
3847 else:
3848 # unexpected result
3849 removeAllResults = main.FALSE
3850 if removeAllResults != main.TRUE:
3851 main.log.error( "Error executing set removeAll" )
3852
3853 # Check if set is still correct
3854 size = len( onosSet )
3855 getResponses = []
3856 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003857 for i in range( main.numCtrls ):
3858 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07003859 name="setTestGet-" + str( i ),
3860 args=[ onosSetName ] )
3861 threads.append( t )
3862 t.start()
3863 for t in threads:
3864 t.join()
3865 getResponses.append( t.result )
3866 getResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003867 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003868 if isinstance( getResponses[ i ], list):
3869 current = set( getResponses[ i ] )
3870 if len( current ) == len( getResponses[ i ] ):
3871 # no repeats
3872 if onosSet != current:
3873 main.log.error( "ONOS" + str( i + 1 ) +
3874 " has incorrect view" +
3875 " of set " + onosSetName + ":\n" +
3876 str( getResponses[ i ] ) )
3877 main.log.debug( "Expected: " + str( onosSet ) )
3878 main.log.debug( "Actual: " + str( current ) )
3879 getResults = main.FALSE
3880 else:
3881 # error, set is not a set
3882 main.log.error( "ONOS" + str( i + 1 ) +
3883 " has repeat elements in" +
3884 " set " + onosSetName + ":\n" +
3885 str( getResponses[ i ] ) )
3886 getResults = main.FALSE
3887 elif getResponses[ i ] == main.ERROR:
3888 getResults = main.FALSE
3889 sizeResponses = []
3890 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003891 for i in range( main.numCtrls ):
3892 t = main.Thread( target=main.CLIs[i].setTestSize,
Jon Hall5cf14d52015-07-16 12:15:19 -07003893 name="setTestSize-" + str( i ),
3894 args=[ onosSetName ] )
3895 threads.append( t )
3896 t.start()
3897 for t in threads:
3898 t.join()
3899 sizeResponses.append( t.result )
3900 sizeResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003901 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003902 if size != sizeResponses[ i ]:
3903 sizeResults = main.FALSE
3904 main.log.error( "ONOS" + str( i + 1 ) +
3905 " expected a size of " + str( size ) +
3906 " for set " + onosSetName +
3907 " but got " + str( sizeResponses[ i ] ) )
3908 removeAllResults = removeAllResults and getResults and sizeResults
3909 utilities.assert_equals( expect=main.TRUE,
3910 actual=removeAllResults,
3911 onpass="Set removeAll correct",
3912 onfail="Set removeAll was incorrect" )
3913
3914 main.step( "Distributed Set addAll()" )
3915 onosSet.update( addAllValue.split() )
3916 addResponses = []
3917 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003918 for i in range( main.numCtrls ):
3919 t = main.Thread( target=main.CLIs[i].setTestAdd,
Jon Hall5cf14d52015-07-16 12:15:19 -07003920 name="setTestAddAll-" + str( i ),
3921 args=[ onosSetName, addAllValue ] )
3922 threads.append( t )
3923 t.start()
3924 for t in threads:
3925 t.join()
3926 addResponses.append( t.result )
3927
3928 # main.TRUE = successfully changed the set
3929 # main.FALSE = action resulted in no change in set
3930 # main.ERROR - Some error in executing the function
3931 addAllResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003932 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003933 if addResponses[ i ] == main.TRUE:
3934 # All is well
3935 pass
3936 elif addResponses[ i ] == main.FALSE:
3937 # Already in set, probably fine
3938 pass
3939 elif addResponses[ i ] == main.ERROR:
3940 # Error in execution
3941 addAllResults = main.FALSE
3942 else:
3943 # unexpected result
3944 addAllResults = main.FALSE
3945 if addAllResults != main.TRUE:
3946 main.log.error( "Error executing set addAll" )
3947
3948 # Check if set is still correct
3949 size = len( onosSet )
3950 getResponses = []
3951 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003952 for i in range( main.numCtrls ):
3953 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07003954 name="setTestGet-" + str( i ),
3955 args=[ onosSetName ] )
3956 threads.append( t )
3957 t.start()
3958 for t in threads:
3959 t.join()
3960 getResponses.append( t.result )
3961 getResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003962 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003963 if isinstance( getResponses[ i ], list):
3964 current = set( getResponses[ i ] )
3965 if len( current ) == len( getResponses[ i ] ):
3966 # no repeats
3967 if onosSet != current:
3968 main.log.error( "ONOS" + str( i + 1 ) +
3969 " has incorrect view" +
3970 " of set " + onosSetName + ":\n" +
3971 str( getResponses[ i ] ) )
3972 main.log.debug( "Expected: " + str( onosSet ) )
3973 main.log.debug( "Actual: " + str( current ) )
3974 getResults = main.FALSE
3975 else:
3976 # error, set is not a set
3977 main.log.error( "ONOS" + str( i + 1 ) +
3978 " has repeat elements in" +
3979 " set " + onosSetName + ":\n" +
3980 str( getResponses[ i ] ) )
3981 getResults = main.FALSE
3982 elif getResponses[ i ] == main.ERROR:
3983 getResults = main.FALSE
3984 sizeResponses = []
3985 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07003986 for i in range( main.numCtrls ):
3987 t = main.Thread( target=main.CLIs[i].setTestSize,
Jon Hall5cf14d52015-07-16 12:15:19 -07003988 name="setTestSize-" + str( i ),
3989 args=[ onosSetName ] )
3990 threads.append( t )
3991 t.start()
3992 for t in threads:
3993 t.join()
3994 sizeResponses.append( t.result )
3995 sizeResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07003996 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07003997 if size != sizeResponses[ i ]:
3998 sizeResults = main.FALSE
3999 main.log.error( "ONOS" + str( i + 1 ) +
4000 " expected a size of " + str( size ) +
4001 " for set " + onosSetName +
4002 " but got " + str( sizeResponses[ i ] ) )
4003 addAllResults = addAllResults and getResults and sizeResults
4004 utilities.assert_equals( expect=main.TRUE,
4005 actual=addAllResults,
4006 onpass="Set addAll correct",
4007 onfail="Set addAll was incorrect" )
4008
4009 main.step( "Distributed Set clear()" )
4010 onosSet.clear()
4011 clearResponses = []
4012 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07004013 for i in range( main.numCtrls ):
4014 t = main.Thread( target=main.CLIs[i].setTestRemove,
Jon Hall5cf14d52015-07-16 12:15:19 -07004015 name="setTestClear-" + str( i ),
4016 args=[ onosSetName, " "], # Values doesn't matter
4017 kwargs={ "clear": True } )
4018 threads.append( t )
4019 t.start()
4020 for t in threads:
4021 t.join()
4022 clearResponses.append( t.result )
4023
4024 # main.TRUE = successfully changed the set
4025 # main.FALSE = action resulted in no change in set
4026 # main.ERROR - Some error in executing the function
4027 clearResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07004028 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07004029 if clearResponses[ i ] == main.TRUE:
4030 # All is well
4031 pass
4032 elif clearResponses[ i ] == main.FALSE:
4033 # Nothing set, probably fine
4034 pass
4035 elif clearResponses[ i ] == main.ERROR:
4036 # Error in execution
4037 clearResults = main.FALSE
4038 else:
4039 # unexpected result
4040 clearResults = main.FALSE
4041 if clearResults != main.TRUE:
4042 main.log.error( "Error executing set clear" )
4043
4044 # Check if set is still correct
4045 size = len( onosSet )
4046 getResponses = []
4047 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07004048 for i in range( main.numCtrls ):
4049 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07004050 name="setTestGet-" + str( i ),
4051 args=[ onosSetName ] )
4052 threads.append( t )
4053 t.start()
4054 for t in threads:
4055 t.join()
4056 getResponses.append( t.result )
4057 getResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07004058 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07004059 if isinstance( getResponses[ i ], list):
4060 current = set( getResponses[ i ] )
4061 if len( current ) == len( getResponses[ i ] ):
4062 # no repeats
4063 if onosSet != current:
4064 main.log.error( "ONOS" + str( i + 1 ) +
4065 " has incorrect view" +
4066 " of set " + onosSetName + ":\n" +
4067 str( getResponses[ i ] ) )
4068 main.log.debug( "Expected: " + str( onosSet ) )
4069 main.log.debug( "Actual: " + str( current ) )
4070 getResults = main.FALSE
4071 else:
4072 # error, set is not a set
4073 main.log.error( "ONOS" + str( i + 1 ) +
4074 " has repeat elements in" +
4075 " set " + onosSetName + ":\n" +
4076 str( getResponses[ i ] ) )
4077 getResults = main.FALSE
4078 elif getResponses[ i ] == main.ERROR:
4079 getResults = main.FALSE
4080 sizeResponses = []
4081 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07004082 for i in range( main.numCtrls ):
4083 t = main.Thread( target=main.CLIs[i].setTestSize,
Jon Hall5cf14d52015-07-16 12:15:19 -07004084 name="setTestSize-" + str( i ),
4085 args=[ onosSetName ] )
4086 threads.append( t )
4087 t.start()
4088 for t in threads:
4089 t.join()
4090 sizeResponses.append( t.result )
4091 sizeResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07004092 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07004093 if size != sizeResponses[ i ]:
4094 sizeResults = main.FALSE
4095 main.log.error( "ONOS" + str( i + 1 ) +
4096 " expected a size of " + str( size ) +
4097 " for set " + onosSetName +
4098 " but got " + str( sizeResponses[ i ] ) )
4099 clearResults = clearResults and getResults and sizeResults
4100 utilities.assert_equals( expect=main.TRUE,
4101 actual=clearResults,
4102 onpass="Set clear correct",
4103 onfail="Set clear was incorrect" )
4104
4105 main.step( "Distributed Set addAll()" )
4106 onosSet.update( addAllValue.split() )
4107 addResponses = []
4108 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07004109 for i in range( main.numCtrls ):
4110 t = main.Thread( target=main.CLIs[i].setTestAdd,
Jon Hall5cf14d52015-07-16 12:15:19 -07004111 name="setTestAddAll-" + str( i ),
4112 args=[ onosSetName, addAllValue ] )
4113 threads.append( t )
4114 t.start()
4115 for t in threads:
4116 t.join()
4117 addResponses.append( t.result )
4118
4119 # main.TRUE = successfully changed the set
4120 # main.FALSE = action resulted in no change in set
4121 # main.ERROR - Some error in executing the function
4122 addAllResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07004123 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07004124 if addResponses[ i ] == main.TRUE:
4125 # All is well
4126 pass
4127 elif addResponses[ i ] == main.FALSE:
4128 # Already in set, probably fine
4129 pass
4130 elif addResponses[ i ] == main.ERROR:
4131 # Error in execution
4132 addAllResults = main.FALSE
4133 else:
4134 # unexpected result
4135 addAllResults = main.FALSE
4136 if addAllResults != main.TRUE:
4137 main.log.error( "Error executing set addAll" )
4138
4139 # Check if set is still correct
4140 size = len( onosSet )
4141 getResponses = []
4142 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07004143 for i in range( main.numCtrls ):
4144 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07004145 name="setTestGet-" + str( i ),
4146 args=[ onosSetName ] )
4147 threads.append( t )
4148 t.start()
4149 for t in threads:
4150 t.join()
4151 getResponses.append( t.result )
4152 getResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07004153 for i in range( main.numCtrls ):
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:
4159 main.log.error( "ONOS" + str( i + 1 ) +
4160 " 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
4168 main.log.error( "ONOS" + str( i + 1 ) +
4169 " 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 Halle1a3b752015-07-22 13:02:46 -07004177 for i in range( main.numCtrls ):
4178 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 Halle1a3b752015-07-22 13:02:46 -07004187 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07004188 if size != sizeResponses[ i ]:
4189 sizeResults = main.FALSE
4190 main.log.error( "ONOS" + str( i + 1 ) +
4191 " expected a size of " + str( size ) +
4192 " for set " + onosSetName +
4193 " but got " + str( sizeResponses[ i ] ) )
4194 addAllResults = addAllResults and getResults and sizeResults
4195 utilities.assert_equals( expect=main.TRUE,
4196 actual=addAllResults,
4197 onpass="Set addAll correct",
4198 onfail="Set addAll was incorrect" )
4199
4200 main.step( "Distributed Set retain()" )
4201 onosSet.intersection_update( retainValue.split() )
4202 retainResponses = []
4203 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07004204 for i in range( main.numCtrls ):
4205 t = main.Thread( target=main.CLIs[i].setTestRemove,
Jon Hall5cf14d52015-07-16 12:15:19 -07004206 name="setTestRetain-" + str( i ),
4207 args=[ onosSetName, retainValue ],
4208 kwargs={ "retain": True } )
4209 threads.append( t )
4210 t.start()
4211 for t in threads:
4212 t.join()
4213 retainResponses.append( t.result )
4214
4215 # main.TRUE = successfully changed the set
4216 # main.FALSE = action resulted in no change in set
4217 # main.ERROR - Some error in executing the function
4218 retainResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07004219 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07004220 if retainResponses[ i ] == main.TRUE:
4221 # All is well
4222 pass
4223 elif retainResponses[ i ] == main.FALSE:
4224 # Already in set, probably fine
4225 pass
4226 elif retainResponses[ i ] == main.ERROR:
4227 # Error in execution
4228 retainResults = main.FALSE
4229 else:
4230 # unexpected result
4231 retainResults = main.FALSE
4232 if retainResults != main.TRUE:
4233 main.log.error( "Error executing set retain" )
4234
4235 # Check if set is still correct
4236 size = len( onosSet )
4237 getResponses = []
4238 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07004239 for i in range( main.numCtrls ):
4240 t = main.Thread( target=main.CLIs[i].setTestGet,
Jon Hall5cf14d52015-07-16 12:15:19 -07004241 name="setTestGet-" + str( i ),
4242 args=[ onosSetName ] )
4243 threads.append( t )
4244 t.start()
4245 for t in threads:
4246 t.join()
4247 getResponses.append( t.result )
4248 getResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07004249 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07004250 if isinstance( getResponses[ i ], list):
4251 current = set( getResponses[ i ] )
4252 if len( current ) == len( getResponses[ i ] ):
4253 # no repeats
4254 if onosSet != current:
4255 main.log.error( "ONOS" + str( i + 1 ) +
4256 " has incorrect view" +
4257 " of set " + onosSetName + ":\n" +
4258 str( getResponses[ i ] ) )
4259 main.log.debug( "Expected: " + str( onosSet ) )
4260 main.log.debug( "Actual: " + str( current ) )
4261 getResults = main.FALSE
4262 else:
4263 # error, set is not a set
4264 main.log.error( "ONOS" + str( i + 1 ) +
4265 " has repeat elements in" +
4266 " set " + onosSetName + ":\n" +
4267 str( getResponses[ i ] ) )
4268 getResults = main.FALSE
4269 elif getResponses[ i ] == main.ERROR:
4270 getResults = main.FALSE
4271 sizeResponses = []
4272 threads = []
Jon Halle1a3b752015-07-22 13:02:46 -07004273 for i in range( main.numCtrls ):
4274 t = main.Thread( target=main.CLIs[i].setTestSize,
Jon Hall5cf14d52015-07-16 12:15:19 -07004275 name="setTestSize-" + str( i ),
4276 args=[ onosSetName ] )
4277 threads.append( t )
4278 t.start()
4279 for t in threads:
4280 t.join()
4281 sizeResponses.append( t.result )
4282 sizeResults = main.TRUE
Jon Halle1a3b752015-07-22 13:02:46 -07004283 for i in range( main.numCtrls ):
Jon Hall5cf14d52015-07-16 12:15:19 -07004284 if size != sizeResponses[ i ]:
4285 sizeResults = main.FALSE
4286 main.log.error( "ONOS" + str( i + 1 ) +
4287 " expected a size of " +
4288 str( size ) + " for set " + onosSetName +
4289 " but got " + str( sizeResponses[ i ] ) )
4290 retainResults = retainResults and getResults and sizeResults
4291 utilities.assert_equals( expect=main.TRUE,
4292 actual=retainResults,
4293 onpass="Set retain correct",
4294 onfail="Set retain was incorrect" )
4295
Jon Hall2a5002c2015-08-21 16:49:11 -07004296 # Transactional maps
4297 main.step( "Partitioned Transactional maps put" )
4298 tMapValue = "Testing"
4299 numKeys = 100
4300 putResult = True
4301 putResponses = main.CLIs[ 0 ].transactionalMapPut( numKeys, tMapValue )
4302 if len( putResponses ) == 100:
4303 for i in putResponses:
4304 if putResponses[ i ][ 'value' ] != tMapValue:
4305 putResult = False
4306 else:
4307 putResult = False
4308 if not putResult:
4309 main.log.debug( "Put response values: " + str( putResponses ) )
4310 utilities.assert_equals( expect=True,
4311 actual=putResult,
4312 onpass="Partitioned Transactional Map put successful",
4313 onfail="Partitioned Transactional Map put values are incorrect" )
4314
4315 main.step( "Partitioned Transactional maps get" )
4316 getCheck = True
4317 for n in range( 1, numKeys + 1 ):
4318 getResponses = []
4319 threads = []
4320 valueCheck = True
4321 for i in range( main.numCtrls ):
4322 t = main.Thread( target=main.CLIs[i].transactionalMapGet,
4323 name="TMap-get-" + str( i ),
4324 args=[ "Key" + str ( n ) ] )
4325 threads.append( t )
4326 t.start()
4327 for t in threads:
4328 t.join()
4329 getResponses.append( t.result )
4330 for node in getResponses:
4331 if node != tMapValue:
4332 valueCheck = False
4333 if not valueCheck:
4334 main.log.warn( "Values for key 'Key" + str( n ) + "' do not match:" )
4335 main.log.warn( getResponses )
4336 getCheck = getCheck and valueCheck
4337 utilities.assert_equals( expect=True,
4338 actual=getCheck,
4339 onpass="Partitioned Transactional Map get values were correct",
4340 onfail="Partitioned Transactional Map values incorrect" )
4341
4342 main.step( "In-memory Transactional maps put" )
4343 tMapValue = "Testing"
4344 numKeys = 100
4345 putResult = True
4346 putResponses = main.CLIs[ 0 ].transactionalMapPut( numKeys, tMapValue, inMemory=True )
4347 if len( putResponses ) == 100:
4348 for i in putResponses:
4349 if putResponses[ i ][ 'value' ] != tMapValue:
4350 putResult = False
4351 else:
4352 putResult = False
4353 if not putResult:
4354 main.log.debug( "Put response values: " + str( putResponses ) )
4355 utilities.assert_equals( expect=True,
4356 actual=putResult,
4357 onpass="In-Memory Transactional Map put successful",
4358 onfail="In-Memory Transactional Map put values are incorrect" )
4359
4360 main.step( "In-Memory Transactional maps get" )
4361 getCheck = True
4362 for n in range( 1, numKeys + 1 ):
4363 getResponses = []
4364 threads = []
4365 valueCheck = True
4366 for i in range( main.numCtrls ):
4367 t = main.Thread( target=main.CLIs[i].transactionalMapGet,
4368 name="TMap-get-" + str( i ),
4369 args=[ "Key" + str ( n ) ],
4370 kwargs={ "inMemory": True } )
4371 threads.append( t )
4372 t.start()
4373 for t in threads:
4374 t.join()
4375 getResponses.append( t.result )
4376 for node in getResponses:
4377 if node != tMapValue:
4378 valueCheck = False
4379 if not valueCheck:
4380 main.log.warn( "Values for key 'Key" + str( n ) + "' do not match:" )
4381 main.log.warn( getResponses )
4382 getCheck = getCheck and valueCheck
4383 utilities.assert_equals( expect=True,
4384 actual=getCheck,
4385 onpass="In-Memory Transactional Map get values were correct",
4386 onfail="In-Memory Transactional Map values incorrect" )