Devin Lim | 57221b0 | 2018-02-14 15:45:36 -0800 | [diff] [blame] | 1 | """ |
| 2 | Copyright 2017 Open Networking Foundation ( ONF ) |
| 3 | |
| 4 | Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>, |
| 5 | the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>, |
| 6 | or 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 | |
| 22 | from tests.USECASE.SegmentRouting.dependencies.Testcaselib import Testcaselib as run |
| 23 | |
| 24 | class SRClusterRestartFuncs(): |
| 25 | |
| 26 | def __init__( self ): |
| 27 | self.default = '' |
Siddesh | 167bc88 | 2021-03-23 21:03:43 +0000 | [diff] [blame] | 28 | self.topo = run.getTopo() |
Devin Lim | 57221b0 | 2018-02-14 15:45:36 -0800 | [diff] [blame] | 29 | |
Siddesh | 167bc88 | 2021-03-23 21:03:43 +0000 | [diff] [blame] | 30 | def runTest( self, main, caseNum, numNodes, topology, minFlow, testing, killList=[ 0, 1, 2 ] ): |
Jon Hall | 9b0de1f | 2020-08-24 15:38:04 -0700 | [diff] [blame] | 31 | try: |
Siddesh | 167bc88 | 2021-03-23 21:03:43 +0000 | [diff] [blame] | 32 | description = "Cluster Restart test with " + self.topo[ topology ][ 'description' ] |
Jon Hall | 9b0de1f | 2020-08-24 15:38:04 -0700 | [diff] [blame] | 33 | caseTitle = 'CASE{}_'.format( caseNum ) + testing |
| 34 | main.case( description ) |
| 35 | if not hasattr( main, 'apps' ): |
| 36 | run.initTest( main ) |
Siddesh | 167bc88 | 2021-03-23 21:03:43 +0000 | [diff] [blame] | 37 | main.cfgName = topology |
Jon Hall | 9b0de1f | 2020-08-24 15:38:04 -0700 | [diff] [blame] | 38 | main.Cluster.setRunningNode( numNodes ) |
| 39 | run.installOnos( main ) |
Jon Hall | 06fd0df | 2021-01-25 15:50:06 -0800 | [diff] [blame] | 40 | if not main.persistentSetup: |
| 41 | run.loadJson( main ) |
Jon Hall | 9b0de1f | 2020-08-24 15:38:04 -0700 | [diff] [blame] | 42 | run.loadChart( main ) |
| 43 | if hasattr( main, 'Mininet1' ): |
Siddesh | 167bc88 | 2021-03-23 21:03:43 +0000 | [diff] [blame] | 44 | run.startMininet( main, 'cord_fabric.py', args=self.topo[ topology ][ 'mininetArgs' ] ) |
Jon Hall | 9b0de1f | 2020-08-24 15:38:04 -0700 | [diff] [blame] | 45 | else: |
| 46 | # Run the test with physical devices |
| 47 | # TODO: connect TestON to the physical network |
| 48 | pass |
Jon Hall | 10e2ab8 | 2020-09-15 17:14:54 -0700 | [diff] [blame] | 49 | # xconnects need to be loaded after topology |
| 50 | run.loadXconnects( main ) |
Jon Hall | 9b0de1f | 2020-08-24 15:38:04 -0700 | [diff] [blame] | 51 | # pre-configured routing and bridging test |
| 52 | run.checkFlows( main, minFlowCount=minFlow ) |
| 53 | run.pingAll( main ) |
Siddesh | 167bc88 | 2021-03-23 21:03:43 +0000 | [diff] [blame] | 54 | switch = '{}'.format( self.topo[ topology ][ 'spines' ] + self.topo[ topology ][ 'leaves' ] ) |
| 55 | link = '{}'.format( ( self.topo[ topology ][ 'spines' ] + self.topo[ topology ][ 'leaves' ] ) * self.topo[ topology ][ 'spines' ] ) |
Jon Hall | 9b0de1f | 2020-08-24 15:38:04 -0700 | [diff] [blame] | 56 | run.killOnos( main, killList, switch, link, '0' ) |
| 57 | run.pingAll( main, caseTitle, dumpflows=False ) |
| 58 | run.recoverOnos( main, killList, switch, link, '{}'.format( numNodes ) ) |
| 59 | run.checkFlows( main, minFlowCount=minFlow, tag=caseTitle ) |
| 60 | run.pingAll( main, caseTitle ) |
| 61 | # TODO Dynamic config of hosts in subnet |
| 62 | # TODO Dynamic config of host not in subnet |
| 63 | # TODO Dynamic config of vlan xconnect |
| 64 | # TODO Vrouter integration |
| 65 | # TODO Mcast integration |
| 66 | |
| 67 | except Exception as e: |
| 68 | main.log.exception( "Error in runTest" ) |
| 69 | main.skipCase( result="FAIL", msg=e ) |
Jon Hall | f69e316 | 2020-09-01 09:08:44 -0700 | [diff] [blame] | 70 | finally: |
Devin Lim | 57221b0 | 2018-02-14 15:45:36 -0800 | [diff] [blame] | 71 | run.cleanup( main ) |