Andreas Pantelopoulos | 90f0b10 | 2018-02-01 13:21:45 -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 | |
Jon Hall | a604fd4 | 2018-05-04 14:27:27 -0700 | [diff] [blame] | 22 | def setupTest( main, test_idx, onosNodes=-1, ipv4=True, ipv6=True, |
| 23 | external=True, static=False, countFlowsGroups=False ): |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 24 | """ |
| 25 | SRRouting test setup |
| 26 | """ |
| 27 | from tests.USECASE.SegmentRouting.dependencies.Testcaselib import Testcaselib as lib |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 28 | import time |
| 29 | |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 30 | skipPackage = False |
| 31 | init = False |
| 32 | if not hasattr( main, 'apps' ): |
| 33 | init = True |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 34 | lib.initTest( main ) |
Jon Hall | a604fd4 | 2018-05-04 14:27:27 -0700 | [diff] [blame] | 35 | if onosNodes < 0: |
| 36 | onosNodes = main.Cluster.numCtrls |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 37 | # Skip onos packaging if the cluster size stays the same |
| 38 | if not init and onosNodes == main.Cluster.numCtrls: |
| 39 | skipPackage = True |
| 40 | |
| 41 | main.internalIpv4Hosts = main.params[ 'TOPO' ][ 'internalIpv4Hosts' ].split( ',' ) |
| 42 | main.internalIpv6Hosts = main.params[ 'TOPO' ][ 'internalIpv6Hosts' ].split( ',' ) |
You Wang | 0fc2170 | 2018-11-02 17:49:18 -0700 | [diff] [blame] | 43 | main.externalIpv4Hosts = main.params[ 'TOPO' ][ 'externalIpv4Hosts' ].split( ',' ) if main.params[ 'TOPO' ].get('externalIpv4Hosts') else [] |
| 44 | main.externalIpv6Hosts = main.params[ 'TOPO' ][ 'externalIpv6Hosts' ].split( ',' ) if main.params[ 'TOPO' ].get('externalIpv6Hosts') else [] |
| 45 | main.staticIpv4Hosts = main.params[ 'TOPO' ][ 'staticIpv4Hosts' ].split( ',' ) if main.params[ 'TOPO' ].get('staticIpv4Hosts') else [] |
| 46 | main.staticIpv6Hosts = main.params[ 'TOPO' ][ 'staticIpv6Hosts' ].split( ',' ) if main.params[ 'TOPO' ].get('staticIpv6Hosts') else [] |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 47 | main.disconnectedIpv4Hosts = [] |
| 48 | main.disconnectedIpv6Hosts = [] |
You Wang | 4efd66b | 2018-06-12 14:47:26 -0700 | [diff] [blame] | 49 | main.disconnectedExternalIpv4Hosts = [] |
| 50 | main.disconnectedExternalIpv6Hosts = [] |
| 51 | main.disconnectedStaticIpv4Hosts = [] |
| 52 | main.disconnectedStaticIpv6Hosts = [] |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 53 | main.resultFileName = 'CASE%03d' % test_idx |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 54 | main.Cluster.setRunningNode( onosNodes ) |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 55 | |
You Wang | 2a1a335 | 2018-07-31 14:35:01 -0700 | [diff] [blame] | 56 | lib.installOnos( main, skipPackage=skipPackage, cliSleep=5 ) |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 57 | |
| 58 | # Load configuration files |
You Wang | 0fc2170 | 2018-11-02 17:49:18 -0700 | [diff] [blame] | 59 | if hasattr( main, "Mininet1" ): |
| 60 | main.cfgName = 'TEST_CONFIG_ipv4={}_ipv6={}'.format( 1 if ipv4 else 0, |
| 61 | 1 if ipv6 else 0) |
| 62 | else: |
| 63 | main.cfgName = main.params[ "DEPENDENCY" ][ "confName" ] |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 64 | lib.loadJson( main ) |
| 65 | time.sleep( float( main.params[ 'timers' ][ 'loadNetcfgSleep' ] ) ) |
| 66 | lib.loadHost( main ) |
| 67 | |
| 68 | # if static route flag add routes |
| 69 | # these routes are topology specific |
| 70 | if static: |
| 71 | if ipv4: |
| 72 | lib.addStaticOnosRoute( main, "10.0.88.0/24", "10.0.1.1") |
You Wang | 0f745de | 2018-07-27 15:49:22 -0700 | [diff] [blame] | 73 | lib.addStaticOnosRoute( main, "10.0.88.0/24", "10.0.5.1") |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 74 | if ipv6: |
| 75 | lib.addStaticOnosRoute( main, "2000::8700/120", "2000::101") |
You Wang | 0f745de | 2018-07-27 15:49:22 -0700 | [diff] [blame] | 76 | lib.addStaticOnosRoute( main, "2000::8700/120", "2000::501") |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 77 | if countFlowsGroups: |
| 78 | lib.loadCount( main ) |
| 79 | |
| 80 | if hasattr( main, 'Mininet1' ): |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 81 | # Run the test with Mininet |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 82 | mininet_args = ' --dhcp=1 --routers=1 --ipv6={} --ipv4={}'.format( 1 if ipv6 else 0, |
| 83 | 1 if ipv4 else 0 ) |
| 84 | lib.startMininet( main, main.params[ 'DEPENDENCY' ][ 'topology' ], args=mininet_args ) |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 85 | time.sleep( float( main.params[ "timers" ][ "startMininetSleep" ] ) ) |
| 86 | else: |
| 87 | # Run the test with physical devices |
You Wang | 0fc2170 | 2018-11-02 17:49:18 -0700 | [diff] [blame] | 88 | lib.connectToPhysicalNetwork( main ) |
| 89 | |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 90 | # wait some time for onos to install the rules! |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 91 | time.sleep( float( main.params[ 'timers' ][ 'dhcpSleep' ] ) ) |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 92 | |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 93 | def verifyPingInternal( main, ipv4=True, ipv6=True, disconnected=True ): |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 94 | """ |
| 95 | Verify all connected internal hosts are able to reach each other, |
| 96 | and disconnected internal hosts cannot reach any other internal host |
| 97 | """ |
| 98 | from tests.USECASE.SegmentRouting.dependencies.Testcaselib import Testcaselib as lib |
| 99 | # Verify connected hosts |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 100 | if ipv4: |
| 101 | lib.verifyPing( main, |
| 102 | [ h for h in main.internalIpv4Hosts if h not in main.disconnectedIpv4Hosts ], |
You Wang | 8574776 | 2018-05-11 15:51:50 -0700 | [diff] [blame] | 103 | [ h for h in main.internalIpv4Hosts if h not in main.disconnectedIpv4Hosts ], |
| 104 | stepMsg="Verify reachability of connected internal IPv4 hosts" ) |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 105 | if ipv6: |
| 106 | lib.verifyPing( main, |
| 107 | [ h for h in main.internalIpv6Hosts if h not in main.disconnectedIpv6Hosts ], |
| 108 | [ h for h in main.internalIpv6Hosts if h not in main.disconnectedIpv6Hosts ], |
You Wang | 42f9e8a | 2018-07-11 13:25:11 -0700 | [diff] [blame] | 109 | ipv6=True, |
You Wang | 8574776 | 2018-05-11 15:51:50 -0700 | [diff] [blame] | 110 | stepMsg="Verify reachability of connected internal IPv6 hosts" ) |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 111 | # Verify disconnected hosts |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 112 | if disconnected: |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 113 | if main.disconnectedIpv4Hosts: |
You Wang | 8574776 | 2018-05-11 15:51:50 -0700 | [diff] [blame] | 114 | lib.verifyPing( main, main.internalIpv4Hosts, main.disconnectedIpv4Hosts, expect=False, |
| 115 | stepMsg="Verify unreachability of disconnected internal IPv4 hosts" ) |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 116 | if main.disconnectedIpv6Hosts: |
You Wang | 8574776 | 2018-05-11 15:51:50 -0700 | [diff] [blame] | 117 | lib.verifyPing( main, main.internalIpv6Hosts, main.disconnectedIpv6Hosts, ipv6=True, expect=False, |
| 118 | stepMsg="Verify unreachability of disconnected internal IPv6 hosts" ) |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 119 | |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 120 | def verifyPingExternal( main, ipv4=True, ipv6=True, disconnected=True ): |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 121 | """ |
| 122 | Verify all connected internal hosts are able to reach external hosts, |
| 123 | and disconnected internal hosts cannot reach any external host |
| 124 | """ |
| 125 | from tests.USECASE.SegmentRouting.dependencies.Testcaselib import Testcaselib as lib |
| 126 | # Verify connected hosts |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 127 | if ipv4: |
| 128 | lib.verifyPing( main, |
| 129 | [ h for h in main.internalIpv4Hosts if h not in main.disconnectedIpv4Hosts ], |
You Wang | 8574776 | 2018-05-11 15:51:50 -0700 | [diff] [blame] | 130 | [ h for h in main.externalIpv4Hosts if h not in main.disconnectedExternalIpv4Hosts ], |
You Wang | 54b1d67 | 2018-06-11 16:44:13 -0700 | [diff] [blame] | 131 | stepMsg="Verify reachability from connected internal IPv4 hosts to external IPv4 hosts", |
| 132 | t3Simple=False ) |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 133 | if ipv6: |
| 134 | lib.verifyPing( main, |
| 135 | [ h for h in main.internalIpv6Hosts if h not in main.disconnectedIpv6Hosts ], |
Jonghwan Hyun | 3759e47 | 2018-05-01 15:40:08 -0700 | [diff] [blame] | 136 | [ h for h in main.externalIpv6Hosts if h not in main.disconnectedExternalIpv6Hosts ], |
You Wang | 42f9e8a | 2018-07-11 13:25:11 -0700 | [diff] [blame] | 137 | ipv6=True, |
You Wang | 54b1d67 | 2018-06-11 16:44:13 -0700 | [diff] [blame] | 138 | stepMsg="Verify reachability from connected internal IPv6 hosts to external IPv6 hosts", |
| 139 | t3Simple=False ) |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 140 | # Verify disconnected hosts |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 141 | if disconnected: |
Jonghwan Hyun | 3759e47 | 2018-05-01 15:40:08 -0700 | [diff] [blame] | 142 | # Disconnected internal to connected external |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 143 | if main.disconnectedIpv4Hosts: |
Jonghwan Hyun | 3759e47 | 2018-05-01 15:40:08 -0700 | [diff] [blame] | 144 | lib.verifyPing( main, main.disconnectedIpv4Hosts, |
| 145 | [ h for h in main.externalIpv4Hosts if h not in main.disconnectedExternalIpv4Hosts ], |
You Wang | 8574776 | 2018-05-11 15:51:50 -0700 | [diff] [blame] | 146 | expect=False, |
You Wang | 54b1d67 | 2018-06-11 16:44:13 -0700 | [diff] [blame] | 147 | stepMsg="Verify unreachability of disconnected internal IPv4 hosts to connected external IPv4 hosts", |
| 148 | t3Simple=False ) |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 149 | if main.disconnectedIpv6Hosts: |
Jonghwan Hyun | 3759e47 | 2018-05-01 15:40:08 -0700 | [diff] [blame] | 150 | lib.verifyPing( main, main.disconnectedIpv6Hosts, |
| 151 | [ h for h in main.externalIpv6Hosts if h not in main.disconnectedExternalIpv6Hosts ], |
You Wang | 8574776 | 2018-05-11 15:51:50 -0700 | [diff] [blame] | 152 | ipv6=True, expect=False, |
You Wang | 54b1d67 | 2018-06-11 16:44:13 -0700 | [diff] [blame] | 153 | stepMsg="Verify unreachability of disconnected internal IPv6 hosts to connected external IPv6 hosts", |
| 154 | t3Simple=False ) |
Jonghwan Hyun | 3759e47 | 2018-05-01 15:40:08 -0700 | [diff] [blame] | 155 | # Connected internal to disconnected external |
| 156 | if main.disconnectedExternalIpv4Hosts: |
| 157 | lib.verifyPing( main, |
| 158 | [ h for h in main.internalIpv4Hosts if h not in main.disconnectedIpv4Hosts ], |
| 159 | main.disconnectedExternalIpv4Hosts, |
You Wang | 8574776 | 2018-05-11 15:51:50 -0700 | [diff] [blame] | 160 | expect=False, |
You Wang | 54b1d67 | 2018-06-11 16:44:13 -0700 | [diff] [blame] | 161 | stepMsg="Verify unreachability of connected internal IPv4 hosts to disconnected external IPv4 hosts", |
| 162 | t3Simple=False ) |
Jonghwan Hyun | 3759e47 | 2018-05-01 15:40:08 -0700 | [diff] [blame] | 163 | if main.disconnectedExternalIpv6Hosts: |
| 164 | lib.verifyPing( main, |
| 165 | [ h for h in main.internalIpv6Hosts if h not in main.disconnectedIpv6Hosts ], |
| 166 | main.disconnectedExternalIpv6Hosts, |
You Wang | 8574776 | 2018-05-11 15:51:50 -0700 | [diff] [blame] | 167 | ipv6=True, expect=False, |
You Wang | 54b1d67 | 2018-06-11 16:44:13 -0700 | [diff] [blame] | 168 | stepMsg="Verify unreachability of connected internal IPv6 hosts to disconnected external IPv6 hosts", |
| 169 | t3Simple=False ) |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 170 | |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 171 | def verifyPing( main, ipv4=True, ipv6=True, disconnected=False, internal=True, external=True ): |
You Wang | 5da39c8 | 2018-04-26 22:55:08 -0700 | [diff] [blame] | 172 | """ |
| 173 | Verify reachability and unreachability of connected/disconnected hosts |
| 174 | """ |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 175 | if internal: |
| 176 | verifyPingInternal( main, ipv4, ipv6, disconnected ) |
| 177 | if external: |
| 178 | verifyPingExternal( main, ipv4, ipv6, disconnected ) |
| 179 | |
Jon Hall | a604fd4 | 2018-05-04 14:27:27 -0700 | [diff] [blame] | 180 | def verifyLinkFailure( main, ipv4=True, ipv6=True, disconnected=False, |
| 181 | internal=True, external=True, countFlowsGroups=False ): |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 182 | """ |
| 183 | Kill and recover all links to spine101 and 102 sequencially and run verifications |
| 184 | """ |
| 185 | from tests.USECASE.SegmentRouting.dependencies.Testcaselib import Testcaselib as lib |
| 186 | linksToRemove = [ ["spine103", "spine101"], |
| 187 | ["leaf2", "spine101"], |
| 188 | ["leaf3", "spine101"], |
| 189 | ["leaf4", "spine101"], |
| 190 | ["leaf5", "spine101"] ] |
| 191 | lib.killLinkBatch( main, linksToRemove, 30, 10 ) |
| 192 | verify( main, ipv4, ipv6, disconnected, internal, external, countFlowsGroups ) |
| 193 | lib.restoreLinkBatch( main, linksToRemove, 48, 10 ) |
| 194 | verify( main, ipv4, ipv6, disconnected, internal, external, countFlowsGroups ) |
| 195 | linksToRemove = [ ["spine104", "spine102"], |
| 196 | ["leaf2", "spine102"], |
| 197 | ["leaf3", "spine102"], |
| 198 | ["leaf4", "spine102"], |
| 199 | ["leaf5", "spine102"] ] |
| 200 | lib.killLinkBatch( main, linksToRemove, 30, 10 ) |
| 201 | verify( main, ipv4, ipv6, disconnected, internal, external, countFlowsGroups ) |
| 202 | lib.restoreLinkBatch( main, linksToRemove, 48, 10 ) |
| 203 | verify( main, ipv4, ipv6, disconnected, internal, external, countFlowsGroups ) |
| 204 | |
Jon Hall | a604fd4 | 2018-05-04 14:27:27 -0700 | [diff] [blame] | 205 | def verifySwitchFailure( main, ipv4=True, ipv6=True, disconnected=False, |
| 206 | internal=True, external=True, countFlowsGroups=False ): |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 207 | """ |
| 208 | Kill and recover spine101 and 102 sequencially and run verifications |
| 209 | """ |
| 210 | from tests.USECASE.SegmentRouting.dependencies.Testcaselib import Testcaselib as lib |
| 211 | for switchToKill in [ "spine101", "spine102" ]: |
| 212 | lib.killSwitch( main, switchToKill, 9, 30 ) |
| 213 | verify( main, ipv4, ipv6, disconnected, internal, external, countFlowsGroups ) |
| 214 | lib.recoverSwitch( main, switchToKill, 10, 48 ) |
| 215 | verify( main, ipv4, ipv6, disconnected, internal, external, countFlowsGroups ) |
| 216 | |
Jon Hall | a604fd4 | 2018-05-04 14:27:27 -0700 | [diff] [blame] | 217 | def verifyOnosFailure( main, ipv4=True, ipv6=True, disconnected=False, |
| 218 | internal=True, external=True, countFlowsGroups=False ): |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 219 | """ |
| 220 | Kill and recover onos nodes sequencially and run verifications |
| 221 | """ |
| 222 | from tests.USECASE.SegmentRouting.dependencies.Testcaselib import Testcaselib as lib |
| 223 | import json |
| 224 | import time |
| 225 | |
| 226 | numCtrls = len( main.Cluster.runningNodes ) |
| 227 | links = len( json.loads( main.Cluster.next().links() ) ) |
| 228 | switches = len( json.loads( main.Cluster.next().devices() ) ) |
Jon Hall | a604fd4 | 2018-05-04 14:27:27 -0700 | [diff] [blame] | 229 | mastershipSleep = float( main.params[ 'timers' ][ 'balanceMasterSleep' ] ) |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 230 | for ctrl in xrange( numCtrls ): |
| 231 | # Kill node |
| 232 | lib.killOnos( main, [ ctrl ], switches, links, ( numCtrls - 1 ) ) |
| 233 | main.Cluster.active(0).CLI.balanceMasters() |
Jon Hall | a604fd4 | 2018-05-04 14:27:27 -0700 | [diff] [blame] | 234 | time.sleep( mastershipSleep ) |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 235 | verify( main, ipv4, ipv6, disconnected, internal, external, countFlowsGroups ) |
| 236 | # Recover node |
| 237 | lib.recoverOnos( main, [ ctrl ], switches, links, numCtrls ) |
| 238 | main.Cluster.active(0).CLI.balanceMasters() |
Jon Hall | a604fd4 | 2018-05-04 14:27:27 -0700 | [diff] [blame] | 239 | time.sleep( mastershipSleep ) |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 240 | verify( main, ipv4, ipv6, disconnected, internal, external, countFlowsGroups ) |
| 241 | |
| 242 | def verify( main, ipv4=True, ipv6=True, disconnected=True, internal=True, external=True, countFlowsGroups=False ): |
| 243 | """ |
| 244 | Verify host IP assignment, flow/group number and pings |
| 245 | """ |
| 246 | from tests.USECASE.SegmentRouting.dependencies.Testcaselib import Testcaselib as lib |
| 247 | # Verify host IP assignment |
| 248 | lib.verifyOnosHostIp( main ) |
| 249 | lib.verifyNetworkHostIp( main ) |
| 250 | # check flows / groups numbers |
| 251 | if countFlowsGroups: |
Jon Hall | a604fd4 | 2018-05-04 14:27:27 -0700 | [diff] [blame] | 252 | lib.checkFlowsGroupsFromFile( main ) |
You Wang | d66de19 | 2018-04-30 17:30:12 -0700 | [diff] [blame] | 253 | # ping hosts |
| 254 | verifyPing( main, ipv4, ipv6, disconnected, internal, external ) |
You Wang | 0f745de | 2018-07-27 15:49:22 -0700 | [diff] [blame] | 255 | |
| 256 | def verifyRouterFailure( main, routerToKill, affectedIpv4Hosts=[], affectedIpv6Hosts=[], |
| 257 | ipv4=True, ipv6=True, countFlowsGroups=False ): |
| 258 | """ |
| 259 | Kill and recover a quagga router and verify connectivities to external hosts |
| 260 | """ |
| 261 | from tests.USECASE.SegmentRouting.dependencies.Testcaselib import Testcaselib as lib |
| 262 | lib.killRouter( main, routerToKill, 5 ) |
| 263 | main.disconnectedExternalIpv4Hosts = affectedIpv4Hosts |
| 264 | main.disconnectedExternalIpv6Hosts = affectedIpv6Hosts |
| 265 | verify( main, ipv4, ipv6, True if (affectedIpv4Hosts or affectedIpv6Hosts) else False, False, True, countFlowsGroups ) |
| 266 | lib.recoverRouter( main, routerToKill, 5 ) |
| 267 | main.disconnectedExternalIpv4Hosts = [] |
| 268 | main.disconnectedExternalIpv6Hosts = [] |
| 269 | verify( main, ipv4, ipv6, False, False, True, countFlowsGroups ) |