blob: 4b58d10d6070ebaad650048904491f1c9923434d [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,
Andreas Pantelopoulosfab6bf32018-03-06 18:56:35 -080035 staticRouteConfigure=False, switchFailure=False, linkFailure=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 )
You Wang27317572018-03-06 12:13:11 -080061
62 # Load configuration files
Devin Lim57221b02018-02-14 15:45:36 -080063 run.loadJson( main )
64 run.loadChart( main )
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080065
Andreas Pantelopoulos2eae3242018-03-06 13:47:20 -080066 # if static route flag add routes
67 # these routes are topology specific
68 if (staticRouteConfigure):
69 if (ipv4):
70 run.addStaticOnosRoute( main, "10.0.88.0/24", "10.0.1.1")
71 if (ipv6):
72 run.addStaticOnosRoute( main, "2000::8700/120", "2000::101")
73
You Wang27317572018-03-06 12:13:11 -080074 if countFlowsGroups:
Andreas Pantelopoulos9173d442018-03-01 17:07:37 -080075 run.loadCount( main )
You Wang27317572018-03-06 12:13:11 -080076 if switchFailure:
77 run.loadSwitchFailureChart( main )
Andreas Pantelopoulosfab6bf32018-03-06 18:56:35 -080078 if linkFailure:
79 run.loadLinkFailureChart( main )
Andreas Pantelopoulos9173d442018-03-01 17:07:37 -080080
You Wang27317572018-03-06 12:13:11 -080081 # wait some time
Devin Lim57221b02018-02-14 15:45:36 -080082 time.sleep( 5 )
Andreas Pantelopoulosf6ed5012018-02-08 21:26:01 -080083
Devin Lim57221b02018-02-14 15:45:36 -080084 if hasattr( main, 'Mininet1' ):
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080085 # Run the test with Mininet
Devin Lim57221b02018-02-14 15:45:36 -080086 mininet_args = ' --dhcp=%s --routers=%s --ipv6=%s --ipv4=%s' % ( dhcp, routers, ipv6, ipv4 )
87 run.startMininet( main, 'comcast_fabric.py', args=mininet_args )
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080088 else:
89 # Run the test with physical devices
90 # TODO: connect TestON to the physical network
91 pass
92
Andreas Pantelopoulosf6ed5012018-02-08 21:26:01 -080093 # wait some time for onos to install the rules!
Devin Lim57221b02018-02-14 15:45:36 -080094 time.sleep( 25 )
Andreas Pantelopoulos971c91d2018-02-12 11:28:10 -080095
Devin Lim57221b02018-02-14 15:45:36 -080096 if ( dhcp ):
97 time.sleep( 60 )
Andreas Pantelopoulosf6ed5012018-02-08 21:26:01 -080098
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -080099 # ping hosts
You Wangba231e72018-03-01 13:18:21 -0800100 run.pingAll( main, 'CASE%02d' % test_idx, acceptableFailed=5, basedOnIp=True )
Andreas Pantelopoulos9173d442018-03-01 17:07:37 -0800101
102 # check flows / groups numbers
You Wang27317572018-03-06 12:13:11 -0800103 if countFlowsGroups:
Andreas Pantelopoulos9173d442018-03-01 17:07:37 -0800104 run.checkFlowsGroupsFromFile(main)
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -0800105
You Wang27317572018-03-06 12:13:11 -0800106 # Test switch failures
107 if switchFailure:
108 for switch, expected in main.switchFailureChart.items():
109 run.killSwitch( main, switch, expected['switches_after_failure'], expected['links_after_failure'] )
110 run.pingAll( main, 'CASE%02d' % test_idx, acceptableFailed=5, basedOnIp=True )
111 if countFlowsGroups:
112 run.checkFlowsGroupsFromFile(main)
113 run.recoverSwitch( main, switch, expected['switches_before_failure'], expected['links_before_failure'] )
114 run.pingAll( main, 'CASE%02d' % test_idx, acceptableFailed=5, basedOnIp=True )
115 if countFlowsGroups:
116 run.checkFlowsGroupsFromFile(main)
117
Andreas Pantelopoulosfab6bf32018-03-06 18:56:35 -0800118 # Test link failures
119 if linkFailure:
120 for link_batch_name, info in main.linkFailureChart.items():
121
122 linksToRemove = info['links'].values()
123 linksBefore = info['links_before']
124 linksAfter = info['links_after']
125
126 run.killLinkBatch( main, linksToRemove, linksAfter )
127 run.pingAll( main, 'CASE%02d' % test_idx, acceptableFailed=5, basedOnIp=True )
128
129 run.restoreLinkBatch( main, linksToRemove, linksBefore )
130 run.pingAll( main, 'CASE%02d' % test_idx, acceptableFailed=5, basedOnIp=True )
131 if countFlowsGroups:
132 run.checkFlowsGroupsFromFile(main)
133
Devin Lim57221b02018-02-14 15:45:36 -0800134 if hasattr( main, 'Mininet1' ):
135 run.cleanup( main )
Andreas Pantelopoulos90f0b102018-02-01 13:21:45 -0800136 else:
137 # TODO: disconnect TestON from the physical network
138 pass