Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 1 | """ |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 2 | Copyright 2016 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 | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 22 | Description: This test is to determine if ONOS can handle |
| 23 | a full network partion |
| 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 |
| 32 | CASE61: The Failure inducing case. |
| 33 | CASE62: The Failure recovery case. |
| 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 | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 46 | class HAfullNetPartition: |
| 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 | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 69 | main.log.info( "ONOS HA test: Partition ONOS nodes into two sub-clusters - " + |
| 70 | "initialization" ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 71 | # set global variables |
Jon Hall | a440e87 | 2016-03-31 15:15:50 -0700 | [diff] [blame] | 72 | # These are for csv plotting in jenkins |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 73 | main.HAlabels = [] |
| 74 | main.HAdata = [] |
| 75 | try: |
| 76 | from tests.dependencies.ONOSSetup import ONOSSetup |
| 77 | main.testSetUp = ONOSSetup() |
| 78 | except ImportError: |
| 79 | main.log.error( "ONOSSetup not found. exiting the test" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 80 | main.cleanAndExit() |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 81 | main.testSetUp.envSetupDescription() |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 82 | try: |
Jon Hall | 53c5e66 | 2016-04-13 16:06:56 -0700 | [diff] [blame] | 83 | from tests.HA.dependencies.HA import HA |
Jon Hall | 41d39f1 | 2016-04-11 22:54:35 -0700 | [diff] [blame] | 84 | main.HA = HA() |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 85 | # load some variables from the params file |
| 86 | cellName = main.params[ 'ENV' ][ 'cellName' ] |
| 87 | main.apps = main.params[ 'ENV' ][ 'appString' ] |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 88 | stepResult = main.testSetUp.envSetup( includeCaseDesc=False ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 89 | except Exception as e: |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 90 | main.testSetUp.envSetupException( e ) |
| 91 | main.testSetUp.evnSetupConclusion( stepResult ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 92 | |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 93 | applyFuncs = [ main.HA.customizeOnosGenPartitions ] |
| 94 | applyArgs = [ None ] |
| 95 | try: |
| 96 | if main.params[ 'topology' ][ 'topoFile' ]: |
| 97 | main.log.info( 'Skipping start of Mininet in this case, make sure you start it elsewhere' ) |
| 98 | else: |
| 99 | applyFuncs.append( main.HA.startingMininet ) |
| 100 | applyArgs.append( None ) |
| 101 | except (KeyError, IndexError): |
| 102 | applyFuncs.append( main.HA.startingMininet ) |
| 103 | applyArgs.append( None ) |
| 104 | |
You Wang | a0f6ff6 | 2018-01-11 15:46:30 -0800 | [diff] [blame] | 105 | main.testSetUp.ONOSSetUp( main.Cluster, cellName=cellName, removeLog=True, |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 106 | extraApply=applyFuncs, |
| 107 | applyArgs=applyArgs, |
| 108 | extraClean=main.HA.cleanUpGenPartition, |
| 109 | includeCaseDesc=False ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 110 | main.HA.initialSetUp() |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 111 | |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 112 | main.step( 'Set logging levels' ) |
| 113 | logging = True |
| 114 | try: |
| 115 | logs = main.params.get( 'ONOS_Logging', False ) |
| 116 | if logs: |
| 117 | for namespace, level in logs.items(): |
| 118 | for ctrl in main.Cluster.active(): |
| 119 | ctrl.CLI.logSet( level, namespace ) |
| 120 | except AttributeError: |
| 121 | logging = False |
| 122 | utilities.assert_equals( expect=True, actual=logging, |
| 123 | onpass="Set log levels", |
| 124 | onfail="Failed to set log levels" ) |
| 125 | |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 126 | def CASE2( self, main ): |
| 127 | """ |
| 128 | Assign devices to controllers |
| 129 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 130 | main.HA.assignDevices( main ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 131 | |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 132 | def CASE102( self, main ): |
| 133 | """ |
| 134 | Set up Spine-Leaf fabric topology in Mininet |
| 135 | """ |
| 136 | main.HA.startTopology( main ) |
| 137 | |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 138 | def CASE21( self, main ): |
| 139 | """ |
| 140 | Assign mastership to controllers |
| 141 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 142 | main.HA.assignMastership( main ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 143 | |
| 144 | def CASE3( self, main ): |
| 145 | """ |
| 146 | Assign intents |
| 147 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 148 | main.HA.assignIntents( main ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 149 | |
| 150 | def CASE4( self, main ): |
| 151 | """ |
| 152 | Ping across added host intents |
| 153 | """ |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 154 | main.HA.pingAcrossHostIntent( main ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 155 | |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 156 | def CASE104( self, main ): |
| 157 | """ |
| 158 | Ping Hosts |
| 159 | """ |
| 160 | main.case( "Check connectivity" ) |
| 161 | main.step( "Ping between all hosts" ) |
| 162 | pingResult = main.Mininet1.pingall() |
| 163 | utilities.assert_equals( expect=main.TRUE, actual=pingResult, |
| 164 | onpass="All Pings Passed", |
| 165 | onfail="Failed to ping between all hosts" ) |
| 166 | |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 167 | def CASE5( self, main ): |
| 168 | """ |
| 169 | Reading state of ONOS |
| 170 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 171 | main.HA.readingState( main ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 172 | |
| 173 | def CASE61( self, main ): |
| 174 | """ |
| 175 | The Failure case. |
| 176 | """ |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 177 | import pexpect |
| 178 | import time |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 179 | assert main, "main not defined" |
| 180 | assert utilities.assert_equals, "utilities.assert_equals not defined" |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 181 | main.case( "Partition ONOS nodes into two distinct partitions" ) |
| 182 | |
| 183 | main.step( "Checking ONOS Logs for errors" ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 184 | for ctrl in main.Cluster.runningNodes: |
| 185 | main.log.debug( "Checking logs for errors on " + ctrl.name + ":" ) |
| 186 | main.log.warn( main.ONOSbench.checkLogs( ctrl.ipAddress ) ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 187 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 188 | main.log.debug( main.Cluster.next().CLI.roles( jsonFormat=False ) ) |
Jon Hall | d2871c2 | 2016-07-26 11:01:14 -0700 | [diff] [blame] | 189 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 190 | n = len( main.Cluster.runningNodes ) # Number of nodes |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 191 | p = ( ( n + 1 ) / 2 ) + 1 # Number of partitions |
| 192 | main.partition = [ 0 ] # ONOS node to partition, listed by index in main.nodes |
| 193 | if n > 3: |
| 194 | main.partition.append( p - 1 ) |
| 195 | # NOTE: This only works for cluster sizes of 3,5, or 7. |
| 196 | |
| 197 | main.step( "Partitioning ONOS nodes" ) |
| 198 | nodeList = [ str( i + 1 ) for i in main.partition ] |
| 199 | main.log.info( "Nodes to be partitioned: " + str( nodeList ) ) |
| 200 | partitionResults = main.TRUE |
| 201 | for i in range( 0, n ): |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 202 | iCtrl = main.Cluster.runningNodes[ i ] |
| 203 | this = iCtrl.Bench.sshToNode( iCtrl.ipAddress ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 204 | if i not in main.partition: |
| 205 | for j in main.partition: |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 206 | foe = main.Cluster.runningNodes[ j ] |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 207 | main.log.warn( "Setting IP Tables rule from {} to {}. ".format( iCtrl.ipAddress, |
| 208 | foe.ipAddress ) ) |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 209 | # CMD HERE |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 210 | try: |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 211 | cmdStr = "sudo iptables -A {} -d {} -s {} -j DROP".format( "INPUT", |
| 212 | iCtrl.ipAddress, |
| 213 | foe.ipAddress ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 214 | this.sendline( cmdStr ) |
| 215 | this.expect( "\$" ) |
| 216 | main.log.debug( this.before ) |
| 217 | except pexpect.EOF: |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 218 | main.log.error( iCtrl.name + ": EOF exception found" ) |
| 219 | main.log.error( iCtrl.name + ": " + this.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 220 | main.cleanAndExit() |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 221 | except Exception: |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 222 | main.log.exception( iCtrl.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 223 | main.cleanAndExit() |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 224 | else: |
| 225 | for j in range( 0, n ): |
| 226 | if j not in main.partition: |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 227 | foe = main.Cluster.runningNodes[ j ] |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 228 | main.log.warn( "Setting IP Tables rule from {} to {}. ".format( iCtrl.ipAddress, |
| 229 | foe.ipAddress ) ) |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 230 | # CMD HERE |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 231 | cmdStr = "sudo iptables -A {} -d {} -s {} -j DROP".format( "INPUT", |
| 232 | iCtrl.ipAddress, |
| 233 | foe.ipAddress ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 234 | try: |
| 235 | this.sendline( cmdStr ) |
| 236 | this.expect( "\$" ) |
| 237 | main.log.debug( this.before ) |
| 238 | except pexpect.EOF: |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 239 | main.log.error( iCtrl.name + ": EOF exception found" ) |
| 240 | main.log.error( iCtrl.name + ": " + this.before ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 241 | main.cleanAndExit() |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 242 | except Exception: |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 243 | main.log.exception( iCtrl.name + ": Uncaught exception!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 244 | main.cleanAndExit() |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 245 | main.Cluster.runningNodes[ i ].active = False |
| 246 | iCtrl.Bench.exitFromSsh( this, iCtrl.ipAddress ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 247 | # NOTE: When dynamic clustering is finished, we need to start checking |
| 248 | # main.partion nodes still work when partitioned |
| 249 | utilities.assert_equals( expect=main.TRUE, actual=partitionResults, |
| 250 | onpass="Firewall rules set successfully", |
| 251 | onfail="Error setting firewall rules" ) |
Jon Hall | a1e8e51 | 2018-05-11 13:30:57 -0700 | [diff] [blame] | 252 | main.Cluster.reset() |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 253 | |
Jon Hall | 6509dbf | 2016-06-21 17:01:17 -0700 | [diff] [blame] | 254 | main.step( "Sleeping 60 seconds" ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 255 | time.sleep( 60 ) |
| 256 | |
| 257 | def CASE62( self, main ): |
| 258 | """ |
| 259 | Healing Partition |
| 260 | """ |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 261 | assert main, "main not defined" |
| 262 | assert utilities.assert_equals, "utilities.assert_equals not defined" |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 263 | assert main.partition, "main.partition not defined" |
| 264 | main.case( "Healing Partition" ) |
| 265 | |
| 266 | main.step( "Deleteing firewall rules" ) |
| 267 | healResults = main.TRUE |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 268 | for ctrl in main.Cluster.runningNodes: |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 269 | cmdStr = "sudo iptables -F" |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 270 | handle = ctrl.Bench.sshToNode( ctrl.ipAddress ) |
| 271 | handle.sendline( cmdStr ) |
| 272 | handle.expect( "\$" ) |
| 273 | main.log.debug( handle.before ) |
| 274 | ctrl.Bench.exitFromSsh( handle, ctrl.ipAddress ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 275 | utilities.assert_equals( expect=main.TRUE, actual=healResults, |
| 276 | onpass="Firewall rules removed", |
| 277 | onfail="Error removing firewall rules" ) |
| 278 | |
| 279 | for node in main.partition: |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 280 | main.Cluster.runningNodes[ node ].active = True |
Jon Hall | a1e8e51 | 2018-05-11 13:30:57 -0700 | [diff] [blame] | 281 | main.Cluster.reset() |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 282 | |
Jon Hall | d2871c2 | 2016-07-26 11:01:14 -0700 | [diff] [blame] | 283 | main.step( "Checking ONOS nodes" ) |
Devin Lim | 3ebd5e7 | 2017-11-14 10:38:00 -0800 | [diff] [blame] | 284 | nodeResults = utilities.retry( main.Cluster.nodesCheck, |
Jon Hall | d2871c2 | 2016-07-26 11:01:14 -0700 | [diff] [blame] | 285 | False, |
Jon Hall | d2871c2 | 2016-07-26 11:01:14 -0700 | [diff] [blame] | 286 | sleep=15, |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 287 | attempts=50 ) |
Jon Hall | d2871c2 | 2016-07-26 11:01:14 -0700 | [diff] [blame] | 288 | |
| 289 | utilities.assert_equals( expect=True, actual=nodeResults, |
| 290 | onpass="Nodes check successful", |
| 291 | onfail="Nodes check NOT successful" ) |
| 292 | |
| 293 | if not nodeResults: |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 294 | for ctrl in main.Cluster.active(): |
Jon Hall | d2871c2 | 2016-07-26 11:01:14 -0700 | [diff] [blame] | 295 | main.log.debug( "{} components not ACTIVE: \n{}".format( |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 296 | ctrl.name, |
| 297 | ctrl.CLI.sendline( "scr:list | grep -v ACTIVE" ) ) ) |
Jon Hall | d2871c2 | 2016-07-26 11:01:14 -0700 | [diff] [blame] | 298 | main.log.error( "Failed to start ONOS, stopping test" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 299 | main.cleanAndExit() |
Jon Hall | d2871c2 | 2016-07-26 11:01:14 -0700 | [diff] [blame] | 300 | |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 301 | def CASE7( self, main ): |
| 302 | """ |
| 303 | Check state after ONOS failure |
| 304 | """ |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 305 | main.HA.checkStateAfterEvent( main, afterWhich=0 ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 306 | |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 307 | main.step( "Leadership Election is still functional" ) |
| 308 | # Test of LeadershipElection |
| 309 | leaderList = [] |
| 310 | |
| 311 | partitioned = [] |
| 312 | for i in main.partition: |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 313 | partitioned.append( main.Cluster.runningNodes[ i ].ipAddress ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 314 | leaderResult = main.TRUE |
| 315 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 316 | for ctrl in main.Cluster.active(): |
| 317 | leaderN = ctrl.CLI.electionTestLeader() |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 318 | leaderList.append( leaderN ) |
| 319 | if leaderN == main.FALSE: |
| 320 | # error in response |
| 321 | main.log.error( "Something is wrong with " + |
| 322 | "electionTestLeader function, check the" + |
| 323 | " error logs" ) |
| 324 | leaderResult = main.FALSE |
| 325 | elif leaderN is None: |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 326 | main.log.error( ctrl.name + |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 327 | " shows no leader for the election-app was" + |
| 328 | " elected after the old one died" ) |
| 329 | leaderResult = main.FALSE |
| 330 | elif leaderN in partitioned: |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 331 | main.log.error( ctrl.name + " shows " + str( leaderN ) + |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 332 | " as leader for the election-app, but it " + |
| 333 | "was partitioned" ) |
| 334 | leaderResult = main.FALSE |
| 335 | if len( set( leaderList ) ) != 1: |
| 336 | leaderResult = main.FALSE |
| 337 | main.log.error( |
| 338 | "Inconsistent view of leader for the election test app" ) |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 339 | main.log.debug( leaderList ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 340 | utilities.assert_equals( |
| 341 | expect=main.TRUE, |
| 342 | actual=leaderResult, |
| 343 | onpass="Leadership election passed", |
| 344 | onfail="Something went wrong with Leadership election" ) |
| 345 | |
| 346 | def CASE8( self, main ): |
| 347 | """ |
| 348 | Compare topo |
| 349 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 350 | main.HA.compareTopo( main ) |
Jon Hall | d2871c2 | 2016-07-26 11:01:14 -0700 | [diff] [blame] | 351 | |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 352 | def CASE9( self, main ): |
| 353 | """ |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 354 | Link down |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 355 | """ |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 356 | src = main.params['kill']['linkSrc'] |
| 357 | dst = main.params['kill']['linkDst'] |
| 358 | main.HA.linkDown( main, src, dst ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 359 | |
| 360 | def CASE10( self, main ): |
| 361 | """ |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 362 | Link up |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 363 | """ |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 364 | src = main.params['kill']['linkSrc'] |
| 365 | dst = main.params['kill']['linkDst'] |
| 366 | main.HA.linkUp( main, src, dst ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 367 | |
| 368 | def CASE11( self, main ): |
| 369 | """ |
| 370 | Switch Down |
| 371 | """ |
| 372 | # NOTE: You should probably run a topology check after this |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 373 | main.HA.switchDown( main ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 374 | |
| 375 | def CASE12( self, main ): |
| 376 | """ |
| 377 | Switch Up |
| 378 | """ |
| 379 | # NOTE: You should probably run a topology check after this |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 380 | main.HA.switchUp( main ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 381 | |
| 382 | def CASE13( self, main ): |
| 383 | """ |
| 384 | Clean up |
| 385 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 386 | main.HA.cleanUp( main ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 387 | |
| 388 | def CASE14( self, main ): |
| 389 | """ |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 390 | Start election app on all onos nodes |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 391 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 392 | main.HA.startElectionApp( main ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 393 | |
| 394 | def CASE15( self, main ): |
| 395 | """ |
| 396 | Check that Leadership Election is still functional |
| 397 | 15.1 Run election on each node |
| 398 | 15.2 Check that each node has the same leaders and candidates |
| 399 | 15.3 Find current leader and withdraw |
| 400 | 15.4 Check that a new node was elected leader |
| 401 | 15.5 Check that that new leader was the candidate of old leader |
| 402 | 15.6 Run for election on old leader |
| 403 | 15.7 Check that oldLeader is a candidate, and leader if only 1 node |
| 404 | 15.8 Make sure that the old leader was added to the candidate list |
| 405 | |
| 406 | old and new variable prefixes refer to data from before vs after |
| 407 | withdrawl and later before withdrawl vs after re-election |
| 408 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 409 | main.HA.isElectionFunctional( main ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 410 | |
| 411 | def CASE16( self, main ): |
| 412 | """ |
| 413 | Install Distributed Primitives app |
| 414 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 415 | main.HA.installDistributedPrimitiveApp( main ) |
Jon Hall | 6e70975 | 2016-02-01 13:38:46 -0800 | [diff] [blame] | 416 | |
| 417 | def CASE17( self, main ): |
| 418 | """ |
| 419 | Check for basic functionality with distributed primitives |
| 420 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 421 | main.HA.checkDistPrimitivesFunc( main ) |