Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 1 | """ |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 2 | Copyright 2015 Open Networking Foundation ( ONF ) |
Jeremy Ronquillo | b27ce4c | 2017-07-17 12:41:28 -0700 | [diff] [blame] | 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 |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 11 | ( at your option ) any later version. |
Jeremy Ronquillo | b27ce4c | 2017-07-17 12:41:28 -0700 | [diff] [blame] | 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 | """ |
Jeremy Ronquillo | b27ce4c | 2017-07-17 12:41:28 -0700 | [diff] [blame] | 21 | """ |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 22 | Description: This test is to determine if ONOS can handle |
| 23 | a minority of it's nodes restarting |
| 24 | |
| 25 | List of test cases: |
| 26 | CASE1: Compile ONOS and push it to the test machines |
| 27 | CASE2: Assign devices to controllers |
| 28 | CASE21: Assign mastership to controllers |
| 29 | CASE3: Assign intents |
| 30 | CASE4: Ping across added host intents |
| 31 | CASE5: Reading state of ONOS |
Jon Hall | b3ed8ed | 2015-10-28 16:43:55 -0700 | [diff] [blame] | 32 | CASE61: The Failure inducing case. |
| 33 | CASE62: The Failure recovery case. |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 34 | CASE7: Check state after control plane failure |
| 35 | CASE8: Compare topo |
| 36 | CASE9: Link s3-s28 down |
| 37 | CASE10: Link s3-s28 up |
| 38 | CASE11: Switch down |
| 39 | CASE12: Switch up |
| 40 | CASE13: Clean up |
| 41 | CASE14: start election app on all onos nodes |
| 42 | CASE15: Check that Leadership Election is still functional |
| 43 | CASE16: Install Distributed Primitives app |
| 44 | CASE17: Check for basic functionality with distributed primitives |
| 45 | """ |
Jon Hall | b3ed8ed | 2015-10-28 16:43:55 -0700 | [diff] [blame] | 46 | class HAstopNodes: |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 47 | |
| 48 | def __init__( self ): |
| 49 | self.default = '' |
| 50 | |
| 51 | def CASE1( self, main ): |
| 52 | """ |
| 53 | CASE1 is to compile ONOS and push it to the test machines |
| 54 | |
| 55 | Startup sequence: |
| 56 | cell <name> |
| 57 | onos-verify-cell |
| 58 | NOTE: temporary - onos-remove-raft-logs |
| 59 | onos-uninstall |
| 60 | start mininet |
| 61 | git pull |
| 62 | mvn clean install |
| 63 | onos-package |
| 64 | onos-install -f |
| 65 | onos-wait-for-start |
| 66 | start cli sessions |
| 67 | start tcpdump |
| 68 | """ |
Jon Hall | b3ed8ed | 2015-10-28 16:43:55 -0700 | [diff] [blame] | 69 | main.log.info( "ONOS HA test: Stop a minority of ONOS nodes - " + |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 70 | "initialization" ) |
Jon Hall | a440e87 | 2016-03-31 15:15:50 -0700 | [diff] [blame] | 71 | # These are for csv plotting in jenkins |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 72 | main.HAlabels = [] |
| 73 | main.HAdata = [] |
| 74 | try: |
| 75 | from tests.dependencies.ONOSSetup import ONOSSetup |
| 76 | main.testSetUp = ONOSSetup() |
| 77 | except ImportError: |
| 78 | main.log.error( "ONOSSetup not found. exiting the test" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 79 | main.cleanAndExit() |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 80 | main.testSetUp.envSetupDescription() |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 81 | try: |
Jon Hall | 53c5e66 | 2016-04-13 16:06:56 -0700 | [diff] [blame] | 82 | from tests.HA.dependencies.HA import HA |
Jon Hall | 41d39f1 | 2016-04-11 22:54:35 -0700 | [diff] [blame] | 83 | main.HA = HA() |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 84 | cellName = main.params[ 'ENV' ][ 'cellName' ] |
| 85 | main.apps = main.params[ 'ENV' ][ 'appString' ] |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 86 | stepResult = main.testSetUp.envSetup( includeCaseDesc=False ) |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 87 | except Exception as e: |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 88 | main.testSetUp.envSetupException( e ) |
| 89 | main.testSetUp.evnSetupConclusion( stepResult ) |
Jon Hall | e1a3b75 | 2015-07-22 13:02:46 -0700 | [diff] [blame] | 90 | |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 91 | applyFuncs = [ main.HA.customizeOnosGenPartitions, main.HA.copyBackupConfig ] |
| 92 | applyArgs = [ None, None ] |
| 93 | try: |
| 94 | if main.params[ 'topology' ][ 'topoFile' ]: |
| 95 | main.log.info( 'Skipping start of Mininet in this case, make sure you start it elsewhere' ) |
| 96 | else: |
| 97 | applyFuncs.append( main.HA.startingMininet ) |
| 98 | applyArgs.append( None ) |
| 99 | except (KeyError, IndexError): |
| 100 | applyFuncs.append( main.HA.startingMininet ) |
| 101 | applyArgs.append( None ) |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 102 | |
Jon Hall | 3e6edb3 | 2018-08-21 16:20:30 -0700 | [diff] [blame] | 103 | main.testSetUp.ONOSSetUp( main.Cluster, cellName=cellName, |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 104 | extraApply=applyFuncs, |
| 105 | applyArgs=applyArgs, |
| 106 | extraClean=main.HA.cleanUpGenPartition, |
| 107 | includeCaseDesc=False ) |
Jon Hall | 4f360bc | 2017-09-07 10:19:52 -0700 | [diff] [blame] | 108 | main.HA.initialSetUp( serviceClean=True ) |
Jon Hall | 9d2dcad | 2016-04-08 10:15:20 -0700 | [diff] [blame] | 109 | |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 110 | main.step( 'Set logging levels' ) |
| 111 | logging = True |
| 112 | try: |
| 113 | logs = main.params.get( 'ONOS_Logging', False ) |
| 114 | if logs: |
| 115 | for namespace, level in logs.items(): |
| 116 | for ctrl in main.Cluster.active(): |
| 117 | ctrl.CLI.logSet( level, namespace ) |
| 118 | except AttributeError: |
| 119 | logging = False |
| 120 | utilities.assert_equals( expect=True, actual=logging, |
| 121 | onpass="Set log levels", |
| 122 | onfail="Failed to set log levels" ) |
| 123 | |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 124 | def CASE2( self, main ): |
| 125 | """ |
| 126 | Assign devices to controllers |
| 127 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 128 | main.HA.assignDevices( main ) |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 129 | |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 130 | def CASE102( self, main ): |
| 131 | """ |
| 132 | Set up Spine-Leaf fabric topology in Mininet |
| 133 | """ |
| 134 | main.HA.startTopology( main ) |
| 135 | |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 136 | def CASE21( self, main ): |
| 137 | """ |
| 138 | Assign mastership to controllers |
| 139 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 140 | main.HA.assignMastership( main ) |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 141 | |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 142 | def CASE3( self, main ): |
| 143 | """ |
| 144 | Assign intents |
| 145 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 146 | main.HA.assignIntents( main ) |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 147 | |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 148 | def CASE4( self, main ): |
| 149 | """ |
| 150 | Ping across added host intents |
| 151 | """ |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 152 | main.HA.pingAcrossHostIntent( main ) |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 153 | |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 154 | def CASE104( self, main ): |
| 155 | """ |
| 156 | Ping Hosts |
| 157 | """ |
| 158 | main.case( "Check connectivity" ) |
| 159 | main.step( "Ping between all hosts" ) |
| 160 | pingResult = main.Mininet1.pingall() |
| 161 | utilities.assert_equals( expect=main.TRUE, actual=pingResult, |
| 162 | onpass="All Pings Passed", |
| 163 | onfail="Failed to ping between all hosts" ) |
| 164 | |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 165 | def CASE5( self, main ): |
| 166 | """ |
| 167 | Reading state of ONOS |
| 168 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 169 | main.HA.readingState( main ) |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 170 | |
Jon Hall | b3ed8ed | 2015-10-28 16:43:55 -0700 | [diff] [blame] | 171 | def CASE61( self, main ): |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 172 | """ |
| 173 | The Failure case. |
| 174 | """ |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 175 | assert main, "main not defined" |
| 176 | assert utilities.assert_equals, "utilities.assert_equals not defined" |
Jon Hall | b3ed8ed | 2015-10-28 16:43:55 -0700 | [diff] [blame] | 177 | main.case( "Stop minority of ONOS nodes" ) |
Jon Hall | 96091e6 | 2015-09-21 17:34:17 -0700 | [diff] [blame] | 178 | |
| 179 | main.step( "Checking ONOS Logs for errors" ) |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 180 | for ctrl in main.Cluster.active(): |
| 181 | main.log.debug( "Checking logs for errors on " + ctrl.name + ":" ) |
| 182 | main.log.warn( ctrl.checkLogs( ctrl.ipAddress ) ) |
Jon Hall | 96091e6 | 2015-09-21 17:34:17 -0700 | [diff] [blame] | 183 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 184 | n = len( main.Cluster.runningNodes ) # Number of nodes |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 185 | p = ( ( n + 1 ) / 2 ) + 1 # Number of partitions |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 186 | main.kill = [ main.Cluster.runningNodes[ 0 ] ] # ONOS node to kill, listed by index in main.nodes |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 187 | if n > 3: |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 188 | main.kill.append( main.Cluster.runningNodes[ p - 1 ] ) |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 189 | # NOTE: This only works for cluster sizes of 3,5, or 7. |
| 190 | |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 191 | # NOTE: This is to fix an issue with wiki formating |
Jon Hall | 4f360bc | 2017-09-07 10:19:52 -0700 | [diff] [blame] | 192 | nodeNames = [ node.name for node in main.kill ] |
| 193 | main.step( "Stopping nodes: " + str( nodeNames ) ) |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 194 | killResults = main.TRUE |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 195 | for ctrl in main.kill: |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 196 | killResults = killResults and\ |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 197 | ctrl.onosStop( ctrl.ipAddress ) |
| 198 | ctrl.active = False |
Jon Hall | a1e8e51 | 2018-05-11 13:30:57 -0700 | [diff] [blame] | 199 | main.Cluster.reset() |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 200 | utilities.assert_equals( expect=main.TRUE, actual=killResults, |
Jon Hall | b3ed8ed | 2015-10-28 16:43:55 -0700 | [diff] [blame] | 201 | onpass="ONOS nodes stopped successfully", |
| 202 | onfail="ONOS nodes NOT successfully stopped" ) |
| 203 | |
Jon Hall | d2871c2 | 2016-07-26 11:01:14 -0700 | [diff] [blame] | 204 | main.step( "Checking ONOS nodes" ) |
Devin Lim | 3ebd5e7 | 2017-11-14 10:38:00 -0800 | [diff] [blame] | 205 | nodeResults = utilities.retry( main.Cluster.nodesCheck, |
Jon Hall | d2871c2 | 2016-07-26 11:01:14 -0700 | [diff] [blame] | 206 | False, |
Jon Hall | d2871c2 | 2016-07-26 11:01:14 -0700 | [diff] [blame] | 207 | sleep=15, |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 208 | attempts=50 ) |
Jon Hall | d2871c2 | 2016-07-26 11:01:14 -0700 | [diff] [blame] | 209 | |
| 210 | utilities.assert_equals( expect=True, actual=nodeResults, |
| 211 | onpass="Nodes check successful", |
| 212 | onfail="Nodes check NOT successful" ) |
| 213 | |
| 214 | if not nodeResults: |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 215 | for ctrl in main.Cluster.active(): |
Jon Hall | d2871c2 | 2016-07-26 11:01:14 -0700 | [diff] [blame] | 216 | main.log.debug( "{} components not ACTIVE: \n{}".format( |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 217 | ctrl.name, |
Jon Hall | 6c9e2da | 2018-11-06 12:01:23 -0800 | [diff] [blame] | 218 | ctrl.CLI.sendline( "onos:scr-list | grep -v ACTIVE" ) ) ) |
Jon Hall | d2871c2 | 2016-07-26 11:01:14 -0700 | [diff] [blame] | 219 | main.log.error( "Failed to start ONOS, stopping test" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 220 | main.cleanAndExit() |
Jon Hall | d2871c2 | 2016-07-26 11:01:14 -0700 | [diff] [blame] | 221 | |
Jon Hall | b3ed8ed | 2015-10-28 16:43:55 -0700 | [diff] [blame] | 222 | def CASE62( self, main ): |
| 223 | """ |
| 224 | The bring up stopped nodes |
| 225 | """ |
Jon Hall | 5d5876e | 2017-11-30 09:33:16 -0800 | [diff] [blame] | 226 | main.HA.bringUpStoppedNodes( main ) |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 227 | main.step( "Checking ONOS nodes" ) |
| 228 | nodeResults = utilities.retry( main.Cluster.nodesCheck, |
| 229 | False, |
| 230 | sleep=15, |
| 231 | attempts=50 ) |
Jon Hall | a440e87 | 2016-03-31 15:15:50 -0700 | [diff] [blame] | 232 | |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 233 | def CASE7( self, main ): |
| 234 | """ |
| 235 | Check state after ONOS failure |
| 236 | """ |
Jon Hall | b3ed8ed | 2015-10-28 16:43:55 -0700 | [diff] [blame] | 237 | try: |
| 238 | main.kill |
| 239 | except AttributeError: |
| 240 | main.kill = [] |
| 241 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 242 | main.HA.checkStateAfterEvent( main, afterWhich=0 ) |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 243 | main.step( "Leadership Election is still functional" ) |
| 244 | # Test of LeadershipElection |
| 245 | leaderList = [] |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 246 | |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 247 | restarted = [] |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 248 | for ctrl in main.kill: |
| 249 | restarted.append( ctrl.ipAddress ) |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 250 | leaderResult = main.TRUE |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 251 | |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 252 | for ctrl in main.Cluster.active(): |
| 253 | leaderN = ctrl.electionTestLeader() |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 254 | leaderList.append( leaderN ) |
| 255 | if leaderN == main.FALSE: |
| 256 | # error in response |
| 257 | main.log.error( "Something is wrong with " + |
| 258 | "electionTestLeader function, check the" + |
| 259 | " error logs" ) |
| 260 | leaderResult = main.FALSE |
| 261 | elif leaderN is None: |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 262 | main.log.error( ctrl.name + |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 263 | " shows no leader for the election-app was" + |
| 264 | " elected after the old one died" ) |
| 265 | leaderResult = main.FALSE |
| 266 | elif leaderN in restarted: |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 267 | main.log.error( ctrl.name + " shows " + str( leaderN ) + |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 268 | " as leader for the election-app, but it " + |
| 269 | "was restarted" ) |
| 270 | leaderResult = main.FALSE |
| 271 | if len( set( leaderList ) ) != 1: |
| 272 | leaderResult = main.FALSE |
| 273 | main.log.error( |
| 274 | "Inconsistent view of leader for the election test app" ) |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 275 | main.log.debug( leaderList ) |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 276 | utilities.assert_equals( |
| 277 | expect=main.TRUE, |
| 278 | actual=leaderResult, |
| 279 | onpass="Leadership election passed", |
| 280 | onfail="Something went wrong with Leadership election" ) |
| 281 | |
| 282 | def CASE8( self, main ): |
| 283 | """ |
| 284 | Compare topo |
| 285 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 286 | main.HA.compareTopo( main ) |
Jon Hall | d2871c2 | 2016-07-26 11:01:14 -0700 | [diff] [blame] | 287 | |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 288 | def CASE9( self, main ): |
| 289 | """ |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 290 | Link down |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 291 | """ |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 292 | src = main.params['kill']['linkSrc'] |
| 293 | dst = main.params['kill']['linkDst'] |
| 294 | main.HA.linkDown( main, src, dst ) |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 295 | |
| 296 | def CASE10( self, main ): |
| 297 | """ |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 298 | Link up |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 299 | """ |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 300 | src = main.params['kill']['linkSrc'] |
| 301 | dst = main.params['kill']['linkDst'] |
| 302 | main.HA.linkUp( main, src, dst ) |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 303 | |
| 304 | def CASE11( self, main ): |
| 305 | """ |
| 306 | Switch Down |
| 307 | """ |
| 308 | # NOTE: You should probably run a topology check after this |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 309 | main.HA.switchDown( main ) |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 310 | |
| 311 | def CASE12( self, main ): |
| 312 | """ |
| 313 | Switch Up |
| 314 | """ |
| 315 | # NOTE: You should probably run a topology check after this |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 316 | main.HA.switchUp( main ) |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 317 | |
| 318 | def CASE13( self, main ): |
| 319 | """ |
| 320 | Clean up |
| 321 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 322 | main.HA.cleanUp( main ) |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 323 | |
| 324 | def CASE14( self, main ): |
| 325 | """ |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 326 | Start election app on all onos nodes |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 327 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 328 | main.HA.startElectionApp( main ) |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 329 | |
| 330 | def CASE15( self, main ): |
| 331 | """ |
| 332 | Check that Leadership Election is still functional |
acsmars | 71adceb | 2015-08-31 15:09:26 -0700 | [diff] [blame] | 333 | 15.1 Run election on each node |
| 334 | 15.2 Check that each node has the same leaders and candidates |
| 335 | 15.3 Find current leader and withdraw |
| 336 | 15.4 Check that a new node was elected leader |
| 337 | 15.5 Check that that new leader was the candidate of old leader |
| 338 | 15.6 Run for election on old leader |
| 339 | 15.7 Check that oldLeader is a candidate, and leader if only 1 node |
| 340 | 15.8 Make sure that the old leader was added to the candidate list |
| 341 | |
| 342 | old and new variable prefixes refer to data from before vs after |
| 343 | withdrawl and later before withdrawl vs after re-election |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 344 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 345 | main.HA.isElectionFunctional( main ) |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 346 | |
| 347 | def CASE16( self, main ): |
| 348 | """ |
| 349 | Install Distributed Primitives app |
| 350 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 351 | main.HA.installDistributedPrimitiveApp( main ) |
Jon Hall | 5cf14d5 | 2015-07-16 12:15:19 -0700 | [diff] [blame] | 352 | |
| 353 | def CASE17( self, main ): |
| 354 | """ |
| 355 | Check for basic functionality with distributed primitives |
| 356 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 357 | main.HA.checkDistPrimitivesFunc( main ) |