blob: a44efd9bcbae3424b0803fe3718c987c0305bd6b [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
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080024
25class SRRoutingTest ():
26
27 topo = {}
28
29 def __init__( self ):
30 self.default = ''
31
32 @staticmethod
Andreas Pantelopoulos2eae3242018-03-06 13:47:20 -080033 def runTest( main, test_idx, onosNodes, dhcp, routers, ipv4, ipv6,
34 description, countFlowsGroups=False, checkExternalHost=False,
35 staticRouteConfigure=False):
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080036
37 skipPackage = False
38 init = False
39 if not hasattr( main, 'apps' ):
40 init = True
41 run.initTest( main )
42
43 # Skip onos packaging if the cluster size stays the same
44 if not init and onosNodes == main.Cluster.numCtrls:
45 skipPackage = True
46
Devin Lim57221b02018-02-14 15:45:36 -080047 main.case( '%s, ONOS instance%s' % ( description, onosNodes ) )
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080048
49 main.cfgName = 'COMCAST_CONFIG_ipv4=%d_ipv6=%d_dhcp=%d_routers=%d' % \
Devin Lim57221b02018-02-14 15:45:36 -080050 ( ipv4, ipv6, dhcp, routers )
You Wangba231e72018-03-01 13:18:21 -080051 if checkExternalHost:
52 main.cfgName += '_external=1'
Andreas Pantelopoulos2eae3242018-03-06 13:47:20 -080053 if staticRouteConfigure:
54 main.cfgName += '_static=1'
55
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080056 main.resultFileName = 'CASE%02d' % test_idx
Devin Lim57221b02018-02-14 15:45:36 -080057 main.Cluster.setRunningNode( onosNodes )
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080058
Devin Lim57221b02018-02-14 15:45:36 -080059 run.installOnos( main, skipPackage=skipPackage, cliSleep=5,
60 parallel=False )
61 run.loadJson( main )
62 run.loadChart( main )
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080063
Andreas Pantelopoulos2eae3242018-03-06 13:47:20 -080064 # if static route flag add routes
65 # these routes are topology specific
66 if (staticRouteConfigure):
67 if (ipv4):
68 run.addStaticOnosRoute( main, "10.0.88.0/24", "10.0.1.1")
69 if (ipv6):
70 run.addStaticOnosRoute( main, "2000::8700/120", "2000::101")
71
Andreas Pantelopoulos9173d442018-03-01 17:07:37 -080072 if (countFlowsGroups):
73 run.loadCount( main )
74
Andreas Pantelopoulosf6ed5012018-02-08 21:26:01 -080075 # wait some
Devin Lim57221b02018-02-14 15:45:36 -080076 time.sleep( 5 )
Andreas Pantelopoulosf6ed5012018-02-08 21:26:01 -080077
Devin Lim57221b02018-02-14 15:45:36 -080078 if hasattr( main, 'Mininet1' ):
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080079 # Run the test with Mininet
Devin Lim57221b02018-02-14 15:45:36 -080080 mininet_args = ' --dhcp=%s --routers=%s --ipv6=%s --ipv4=%s' % ( dhcp, routers, ipv6, ipv4 )
81 run.startMininet( main, 'comcast_fabric.py', args=mininet_args )
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080082 else:
83 # Run the test with physical devices
84 # TODO: connect TestON to the physical network
85 pass
86
Andreas Pantelopoulosf6ed5012018-02-08 21:26:01 -080087 # wait some time for onos to install the rules!
Devin Lim57221b02018-02-14 15:45:36 -080088 time.sleep( 25 )
Andreas Pantelopoulos971c91d2018-02-12 11:28:10 -080089
Devin Lim57221b02018-02-14 15:45:36 -080090 if ( dhcp ):
91 time.sleep( 60 )
Andreas Pantelopoulosf6ed5012018-02-08 21:26:01 -080092
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080093 # ping hosts
You Wangba231e72018-03-01 13:18:21 -080094 run.pingAll( main, 'CASE%02d' % test_idx, acceptableFailed=5, basedOnIp=True )
Andreas Pantelopoulos9173d442018-03-01 17:07:37 -080095
96 # check flows / groups numbers
97 if (countFlowsGroups):
98 run.checkFlowsGroupsFromFile(main)
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080099
Devin Lim57221b02018-02-14 15:45:36 -0800100 if hasattr( main, 'Mininet1' ):
101 run.cleanup( main )
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -0800102 else:
103 # TODO: disconnect TestON from the physical network
104 pass