blob: 4e5e5fb483b886a8c2b364d934595973c45201ca [file] [log] [blame]
Jonghwan Hyun3731d6a2017-10-19 11:59:31 -07001"""
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
You Wangac02b142018-01-26 14:57:28 -080022from tests.USECASE.SegmentRouting.dependencies.Testcaselib import Testcaselib as run
You Wang68568b12019-03-04 11:49:57 -080023import tests.USECASE.SegmentRouting.dependencies.cfgtranslator as translator
Jonghwan Hyun3731d6a2017-10-19 11:59:31 -070024
25class SRBridgingTest ():
26
27 def __init__( self ):
28 self.default = ''
Siddesh167bc882021-03-23 21:03:43 +000029 self.topo = run.getTopo()
Jonghwan Hyun3731d6a2017-10-19 11:59:31 -070030 # TODO: Implement 2x3 topology
Jonghwan Hyun98fb40a2018-01-04 16:16:28 -080031 # topo[ '2x3' ] = ( 2, 3, True, '2x3 leaf-spine topology with dual ToR and single ToR', 28 )
Devin Lim57221b02018-02-14 15:45:36 -080032 self.switchNames = {}
Jon Hall43060f62020-06-23 13:13:33 -070033 self.switchNames[ '0x1' ] = [ "leaf1" ]
Devin Lim57221b02018-02-14 15:45:36 -080034 self.switchNames[ '2x2' ] = [ "leaf1", "leaf2", "spine101", "spine102" ]
Jon Hall43060f62020-06-23 13:13:33 -070035 main.switchType = "ovs"
Jonghwan Hyun3731d6a2017-10-19 11:59:31 -070036
Devin Lim57221b02018-02-14 15:45:36 -080037 def runTest( self, main, test_idx, topology, onosNodes, description, vlan = [] ):
Jon Hall9b0de1f2020-08-24 15:38:04 -070038 try:
39 skipPackage = False
40 init = False
41 if not hasattr( main, 'apps' ):
42 init = True
43 run.initTest( main )
Jon Hall214f88b2020-09-21 10:21:42 -070044 # Skip onos packaging if the cluster size stays the same
Jon Hall9b0de1f2020-08-24 15:38:04 -070045 if not init and onosNodes == main.Cluster.numCtrls:
46 skipPackage = True
Jonghwan Hyun3731d6a2017-10-19 11:59:31 -070047
Siddesh167bc882021-03-23 21:03:43 +000048 main.case( '%s, with %s, %s switches and %d ONOS instance%s' %( description, self.topo[ topology ][ 'description' ], main.switchType, onosNodes, 's' if onosNodes > 1 else '' ) )
49 spines = self.topo[ topology ][ 'spines' ]
50 leaves = self.topo[ topology ][ 'leaves' ]
Jon Hall39570262020-11-17 12:18:19 -080051 switches = spines + leaves
52 links = ( spines * leaves ) * 2
Siddesh167bc882021-03-23 21:03:43 +000053 if self.topo[ topology ][ 'dual-linked' ]:
Jon Hall39570262020-11-17 12:18:19 -080054 links += links
Siddesh167bc882021-03-23 21:03:43 +000055 if self.topo[ topology ][ 'dual-homed' ]:
Jon Hall39570262020-11-17 12:18:19 -080056 links += ( leaves - 1 ) * 2
Jonghwan Hyun3731d6a2017-10-19 11:59:31 -070057
Siddesha19e3c82021-06-09 22:45:27 +000058 main.cfgName = 'CASE%01d%01d' % ( test_idx / 10, test_idx % 10 )
59 print (main.cfgName, "Testcase : CASE 09")
Jon Hall9b0de1f2020-08-24 15:38:04 -070060 main.Cluster.setRunningNode( onosNodes )
61 run.installOnos( main, skipPackage=skipPackage, cliSleep=5 )
Jon Hall06fd0df2021-01-25 15:50:06 -080062 if not main.persistentSetup:
Siddesha19e3c82021-06-09 22:45:27 +000063 if main.useBmv2:
64 switchPrefix = main.params[ 'DEPENDENCY' ].get( 'switchPrefix', '' )
65 if switchPrefix is None or "None":
66 switchPrefix = ''
67 # Translate configuration file from OVS-OFDPA to BMv2 driver
68 translator.bmv2ToOfdpa( main ) # Try to cleanup if switching between switch types
69 translator.ofdpaToBmv2( main, switchPrefix=switchPrefix )
70 else:
71 translator.bmv2ToOfdpa( main )
Jon Hall06fd0df2021-01-25 15:50:06 -080072 suf = main.params.get( 'jsonFileSuffix', None)
73 if suf:
74 run.loadJson( main, suffix=suf )
75 else:
76 run.loadJson( main )
77 run.loadChart( main ) # stores hosts to ping and expected results
Jon Hall9b0de1f2020-08-24 15:38:04 -070078 if hasattr( main, 'Mininet1' ):
79 run.mnDockerSetup( main ) # optionally create and setup docker image
Jonghwan Hyun3731d6a2017-10-19 11:59:31 -070080
Jon Hall9b0de1f2020-08-24 15:38:04 -070081 # Run the test with Mininet
Siddesh167bc882021-03-23 21:03:43 +000082 mininet_args = ' --spine=%d --leaf=%d' % ( self.topo[ topology ][ 'spines' ], self.topo[ topology ][ 'leaves' ] )
83 if self.topo[ topology ][ 'dual-homed' ]:
Jon Hall9b0de1f2020-08-24 15:38:04 -070084 mininet_args += ' --dual-homed'
85 if len( vlan ) > 0 :
86 mininet_args += ' --vlan=%s' % ( ','.join( ['%d' % vlanId for vlanId in vlan ] ) )
87 if main.useBmv2:
88 mininet_args += ' --switch %s' % main.switchType
89 main.log.info( "Using %s switch" % main.switchType )
Jon Halldac3eae2020-06-05 12:04:06 -070090
Jon Hall9b0de1f2020-08-24 15:38:04 -070091 run.startMininet( main, 'trellis_fabric.py', args=mininet_args )
You Wangd5873482018-01-24 12:30:00 -080092
Jon Hall9b0de1f2020-08-24 15:38:04 -070093 else:
94 # Run the test with physical devices
Jon Hall06fd0df2021-01-25 15:50:06 -080095 run.connectToPhysicalNetwork( main, hostDiscovery=False ) # We don't want to do host discovery in the pod
Jon Hall9b0de1f2020-08-24 15:38:04 -070096
Siddesh167bc882021-03-23 21:03:43 +000097 run.checkFlows( main, minFlowCount=self.topo[ topology ][ 'minFlow-Stratum' if main.useBmv2 else 'minFlow-OvS' ] * self.topo[ topology ][ 'leaves' ], sleep=5 )
Jon Hall9b0de1f2020-08-24 15:38:04 -070098 if main.useBmv2:
Jon Hall06fd0df2021-01-25 15:50:06 -080099 switchPrefix = main.params[ 'DEPENDENCY' ].get( 'switchPrefix', '' )
Jon Hallbe3a2ac2021-03-15 12:28:06 -0700100 if switchPrefix is None or "None":
101 switchPrefix = ''
Jon Hall06fd0df2021-01-25 15:50:06 -0800102 if switchPrefix is not '' and switchPrefix is not None:
103 switchPrefix += ':'
Siddesh167bc882021-03-23 21:03:43 +0000104 leaf_dpid = [ "device:%sleaf%d" % ( switchPrefix, ls + 1 ) for ls in range( self.topo[ topology ][ 'leaves' ]) ]
Jon Hall9b0de1f2020-08-24 15:38:04 -0700105 else:
Siddesh167bc882021-03-23 21:03:43 +0000106 leaf_dpid = [ "of:%016d" % ( ls + 1 ) for ls in range( self.topo[ topology ][ 'leaves' ] ) ]
Jon Hall9b0de1f2020-08-24 15:38:04 -0700107 for dpid in leaf_dpid:
Siddesh167bc882021-03-23 21:03:43 +0000108 run.checkFlowsByDpid( main, dpid, self.topo[ topology ][ 'minFlow-Stratum' if main.useBmv2 else 'minFlow-OvS' ], sleep=5 )
Jon Hall39570262020-11-17 12:18:19 -0800109 run.verifyTopology( main, switches, links, onosNodes )
Jon Hall9b0de1f2020-08-24 15:38:04 -0700110 run.pingAll( main )
111 except Exception as e:
112 main.log.exception( "Error in runTest" )
113 main.skipCase( result="FAIL", msg=e )
Jon Hallf69e3162020-09-01 09:08:44 -0700114 finally:
115 run.cleanup( main )