blob: f6dbf03efaaf6682933f86d5cce89731247561a8 [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
Devin Lim57221b02018-02-14 15:45:36 -080049 main.case( '%s, ONOS instance%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():
106 run.killSwitch( main, switch, expected['switches_after_failure'], expected['links_after_failure'] )
You Wang86abda12018-03-09 18:10:54 -0800107 SRRoutingTest.runChecks( main, test_idx, countFlowsGroups )
108
You Wang27317572018-03-06 12:13:11 -0800109 run.recoverSwitch( main, switch, expected['switches_before_failure'], expected['links_before_failure'] )
You Wang86abda12018-03-09 18:10:54 -0800110 SRRoutingTest.runChecks( main, test_idx, countFlowsGroups )
You Wang27317572018-03-06 12:13:11 -0800111
Andreas Pantelopoulosfab6bf32018-03-06 18:56:35 -0800112 # Test link failures
113 if linkFailure:
114 for link_batch_name, info in main.linkFailureChart.items():
115
116 linksToRemove = info['links'].values()
117 linksBefore = info['links_before']
118 linksAfter = info['links_after']
119
120 run.killLinkBatch( main, linksToRemove, linksAfter )
You Wang86abda12018-03-09 18:10:54 -0800121 SRRoutingTest.runChecks( main, test_idx, countFlowsGroups )
Andreas Pantelopoulosfab6bf32018-03-06 18:56:35 -0800122
123 run.restoreLinkBatch( main, linksToRemove, linksBefore )
You Wang86abda12018-03-09 18:10:54 -0800124 SRRoutingTest.runChecks( main, test_idx, countFlowsGroups )
Andreas Pantelopoulosfab6bf32018-03-06 18:56:35 -0800125
Jon Hall3c910162018-03-07 14:42:16 -0800126 # Test node failures
127 if nodeFailure:
128 numCtrls = len( main.Cluster.runningNodes )
129 links = len( json.loads( main.Cluster.next().links() ) )
130 switches = len( json.loads( main.Cluster.next().devices() ) )
131 for ctrl in xrange( numCtrls ):
Jon Halldd246642018-03-08 15:02:59 -0800132 # Kill node
Jon Hall3c910162018-03-07 14:42:16 -0800133 run.killOnos( main, [ ctrl ], switches, links, ( numCtrls - 1 ) )
Jon Halldd246642018-03-08 15:02:59 -0800134 time.sleep( float( main.params[ 'timers' ][ 'SwitchDiscovery' ] ) )
Jon Hall3c910162018-03-07 14:42:16 -0800135 main.Cluster.active(0).CLI.balanceMasters()
Jon Halldd246642018-03-08 15:02:59 -0800136 time.sleep( float( main.params[ 'timers' ][ 'SwitchDiscovery' ] ) )
You Wang86abda12018-03-09 18:10:54 -0800137 SRRoutingTest.runChecks( main, test_idx, countFlowsGroups )
Jon Hall3c910162018-03-07 14:42:16 -0800138
Jon Halldd246642018-03-08 15:02:59 -0800139 # Recover node
Jon Hall3c910162018-03-07 14:42:16 -0800140 run.recoverOnos( main, [ ctrl ], switches, links, numCtrls )
Jon Halldd246642018-03-08 15:02:59 -0800141 time.sleep( float( main.params[ 'timers' ][ 'SwitchDiscovery' ] ) )
Jon Hall3c910162018-03-07 14:42:16 -0800142 main.Cluster.active(0).CLI.balanceMasters()
Jon Halldd246642018-03-08 15:02:59 -0800143 time.sleep( float( main.params[ 'timers' ][ 'SwitchDiscovery' ] ) )
You Wang86abda12018-03-09 18:10:54 -0800144 SRRoutingTest.runChecks( main, test_idx, countFlowsGroups )
Jon Hall3c910162018-03-07 14:42:16 -0800145
146 # Cleanup
Devin Lim57221b02018-02-14 15:45:36 -0800147 if hasattr( main, 'Mininet1' ):
148 run.cleanup( main )
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -0800149 else:
150 # TODO: disconnect TestON from the physical network
151 pass
You Wang86abda12018-03-09 18:10:54 -0800152
153 @staticmethod
154 def runChecks( main, test_idx, countFlowsGroups ):
155 # Verify host IP assignment
156 run.verifyOnosHostIp( main )
157 run.verifyNetworkHostIp( main )
158 # check flows / groups numbers
159 if countFlowsGroups:
160 run.checkFlowsGroupsFromFile( main )
161 # ping hosts
162 run.pingAll( main, 'CASE%03d' % test_idx, acceptableFailed=5, basedOnIp=True )