blob: 45e8c1b9397ad703e953ff906eccb7cc58a08bfe [file] [log] [blame]
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -08001"""
2Copyright 2017 Open Networking Foundation ( ONF )
3
4Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>,
5the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>,
6or the System Testing Guide page at <https://wiki.onosproject.org/x/WYQg>
7
8 TestON is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 2 of the License, or
11 ( at your option ) any later version.
12
13 TestON is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with TestON. If not, see <http://www.gnu.org/licenses/>.
20"""
21
22from tests.USECASE.SegmentRouting.dependencies.Testcaselib import Testcaselib as run
Andreas Pantelopoulosf6ed5012018-02-08 21:26:01 -080023import time
Jon Hall3c910162018-03-07 14:42:16 -080024import json
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080025
26class SRRoutingTest ():
27
28 topo = {}
29
30 def __init__( self ):
31 self.default = ''
32
33 @staticmethod
Andreas Pantelopoulos2eae3242018-03-06 13:47:20 -080034 def runTest( main, test_idx, onosNodes, dhcp, routers, ipv4, ipv6,
35 description, countFlowsGroups=False, checkExternalHost=False,
Jon Hall3c910162018-03-07 14:42:16 -080036 staticRouteConfigure=False, switchFailure=False, linkFailure=False,
37 nodeFailure=False ):
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080038
39 skipPackage = False
40 init = False
41 if not hasattr( main, 'apps' ):
42 init = True
43 run.initTest( main )
44
45 # Skip onos packaging if the cluster size stays the same
46 if not init and onosNodes == main.Cluster.numCtrls:
47 skipPackage = True
48
Jon Hall098c0bf2018-03-23 14:15:04 -070049 main.case( '%s, ONOS cluster size: %s' % ( description, onosNodes ) )
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080050
51 main.cfgName = 'COMCAST_CONFIG_ipv4=%d_ipv6=%d_dhcp=%d_routers=%d' % \
Devin Lim57221b02018-02-14 15:45:36 -080052 ( ipv4, ipv6, dhcp, routers )
You Wangba231e72018-03-01 13:18:21 -080053 if checkExternalHost:
54 main.cfgName += '_external=1'
Andreas Pantelopoulos2eae3242018-03-06 13:47:20 -080055 if staticRouteConfigure:
56 main.cfgName += '_static=1'
57
Jon Hall3c910162018-03-07 14:42:16 -080058 main.resultFileName = 'CASE%03d' % test_idx
Devin Lim57221b02018-02-14 15:45:36 -080059 main.Cluster.setRunningNode( onosNodes )
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080060
Devin Lim57221b02018-02-14 15:45:36 -080061 run.installOnos( main, skipPackage=skipPackage, cliSleep=5,
62 parallel=False )
You Wang27317572018-03-06 12:13:11 -080063
64 # Load configuration files
Devin Lim57221b02018-02-14 15:45:36 -080065 run.loadJson( main )
66 run.loadChart( main )
You Wang86abda12018-03-09 18:10:54 -080067 run.loadHost( main )
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080068
Andreas Pantelopoulos2eae3242018-03-06 13:47:20 -080069 # if static route flag add routes
70 # these routes are topology specific
71 if (staticRouteConfigure):
72 if (ipv4):
73 run.addStaticOnosRoute( main, "10.0.88.0/24", "10.0.1.1")
74 if (ipv6):
75 run.addStaticOnosRoute( main, "2000::8700/120", "2000::101")
76
You Wang27317572018-03-06 12:13:11 -080077 if countFlowsGroups:
Andreas Pantelopoulos9173d442018-03-01 17:07:37 -080078 run.loadCount( main )
You Wang27317572018-03-06 12:13:11 -080079 if switchFailure:
80 run.loadSwitchFailureChart( main )
Andreas Pantelopoulosfab6bf32018-03-06 18:56:35 -080081 if linkFailure:
82 run.loadLinkFailureChart( main )
Andreas Pantelopoulos9173d442018-03-01 17:07:37 -080083
You Wang27317572018-03-06 12:13:11 -080084 # wait some time
Devin Lim57221b02018-02-14 15:45:36 -080085 time.sleep( 5 )
Andreas Pantelopoulosf6ed5012018-02-08 21:26:01 -080086
Devin Lim57221b02018-02-14 15:45:36 -080087 if hasattr( main, 'Mininet1' ):
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080088 # Run the test with Mininet
Devin Lim57221b02018-02-14 15:45:36 -080089 mininet_args = ' --dhcp=%s --routers=%s --ipv6=%s --ipv4=%s' % ( dhcp, routers, ipv6, ipv4 )
90 run.startMininet( main, 'comcast_fabric.py', args=mininet_args )
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080091 else:
92 # Run the test with physical devices
93 # TODO: connect TestON to the physical network
94 pass
95
Andreas Pantelopoulosf6ed5012018-02-08 21:26:01 -080096 # wait some time for onos to install the rules!
Devin Lim57221b02018-02-14 15:45:36 -080097 time.sleep( 25 )
Devin Lim57221b02018-02-14 15:45:36 -080098 if ( dhcp ):
99 time.sleep( 60 )
Andreas Pantelopoulosf6ed5012018-02-08 21:26:01 -0800100
You Wang86abda12018-03-09 18:10:54 -0800101 SRRoutingTest.runChecks( main, test_idx, countFlowsGroups )
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -0800102
You Wang27317572018-03-06 12:13:11 -0800103 # Test switch failures
104 if switchFailure:
105 for switch, expected in main.switchFailureChart.items():
Jon Hall098c0bf2018-03-23 14:15:04 -0700106 main.step( "Killing switch {}" % switch )
You Wang27317572018-03-06 12:13:11 -0800107 run.killSwitch( main, switch, expected['switches_after_failure'], expected['links_after_failure'] )
You Wang86abda12018-03-09 18:10:54 -0800108 SRRoutingTest.runChecks( main, test_idx, countFlowsGroups )
109
Jon Hall098c0bf2018-03-23 14:15:04 -0700110 main.step( "Restoring switch {}" % switch )
You Wang27317572018-03-06 12:13:11 -0800111 run.recoverSwitch( main, switch, expected['switches_before_failure'], expected['links_before_failure'] )
You Wang86abda12018-03-09 18:10:54 -0800112 SRRoutingTest.runChecks( main, test_idx, countFlowsGroups )
You Wang27317572018-03-06 12:13:11 -0800113
Andreas Pantelopoulosfab6bf32018-03-06 18:56:35 -0800114 # Test link failures
115 if linkFailure:
116 for link_batch_name, info in main.linkFailureChart.items():
117
118 linksToRemove = info['links'].values()
119 linksBefore = info['links_before']
120 linksAfter = info['links_after']
121
Jon Hall098c0bf2018-03-23 14:15:04 -0700122 main.step( "Killing links {}" % linksToRemove )
Andreas Pantelopoulosfab6bf32018-03-06 18:56:35 -0800123 run.killLinkBatch( main, linksToRemove, linksAfter )
You Wang86abda12018-03-09 18:10:54 -0800124 SRRoutingTest.runChecks( main, test_idx, countFlowsGroups )
Andreas Pantelopoulosfab6bf32018-03-06 18:56:35 -0800125
Jon Hall098c0bf2018-03-23 14:15:04 -0700126 main.step( "Restoring links {}" % linksToRemove )
Andreas Pantelopoulosfab6bf32018-03-06 18:56:35 -0800127 run.restoreLinkBatch( main, linksToRemove, linksBefore )
You Wang86abda12018-03-09 18:10:54 -0800128 SRRoutingTest.runChecks( main, test_idx, countFlowsGroups )
Andreas Pantelopoulosfab6bf32018-03-06 18:56:35 -0800129
Jon Hall3c910162018-03-07 14:42:16 -0800130 # Test node failures
131 if nodeFailure:
132 numCtrls = len( main.Cluster.runningNodes )
133 links = len( json.loads( main.Cluster.next().links() ) )
134 switches = len( json.loads( main.Cluster.next().devices() ) )
135 for ctrl in xrange( numCtrls ):
Jon Halldd246642018-03-08 15:02:59 -0800136 # Kill node
Jon Hall3c910162018-03-07 14:42:16 -0800137 run.killOnos( main, [ ctrl ], switches, links, ( numCtrls - 1 ) )
Jon Halldd246642018-03-08 15:02:59 -0800138 time.sleep( float( main.params[ 'timers' ][ 'SwitchDiscovery' ] ) )
Jon Hall3c910162018-03-07 14:42:16 -0800139 main.Cluster.active(0).CLI.balanceMasters()
Jon Halldd246642018-03-08 15:02:59 -0800140 time.sleep( float( main.params[ 'timers' ][ 'SwitchDiscovery' ] ) )
You Wang86abda12018-03-09 18:10:54 -0800141 SRRoutingTest.runChecks( main, test_idx, countFlowsGroups )
Jon Hall3c910162018-03-07 14:42:16 -0800142
Jon Halldd246642018-03-08 15:02:59 -0800143 # Recover node
Jon Hall3c910162018-03-07 14:42:16 -0800144 run.recoverOnos( main, [ ctrl ], switches, links, numCtrls )
Jon Halldd246642018-03-08 15:02:59 -0800145 time.sleep( float( main.params[ 'timers' ][ 'SwitchDiscovery' ] ) )
Jon Hall3c910162018-03-07 14:42:16 -0800146 main.Cluster.active(0).CLI.balanceMasters()
Jon Halldd246642018-03-08 15:02:59 -0800147 time.sleep( float( main.params[ 'timers' ][ 'SwitchDiscovery' ] ) )
You Wang86abda12018-03-09 18:10:54 -0800148 SRRoutingTest.runChecks( main, test_idx, countFlowsGroups )
Jon Hall3c910162018-03-07 14:42:16 -0800149
150 # Cleanup
Devin Lim57221b02018-02-14 15:45:36 -0800151 if hasattr( main, 'Mininet1' ):
152 run.cleanup( main )
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -0800153 else:
154 # TODO: disconnect TestON from the physical network
155 pass
You Wang86abda12018-03-09 18:10:54 -0800156
157 @staticmethod
158 def runChecks( main, test_idx, countFlowsGroups ):
159 # Verify host IP assignment
160 run.verifyOnosHostIp( main )
161 run.verifyNetworkHostIp( main )
162 # check flows / groups numbers
163 if countFlowsGroups:
164 run.checkFlowsGroupsFromFile( main )
165 # ping hosts
166 run.pingAll( main, 'CASE%03d' % test_idx, acceptableFailed=5, basedOnIp=True )