Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 1 | """ |
| 2 | Copyright 2015 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 | """ |
| 23 | Description: This test is to determine if ONOS can handle |
| 24 | a minority of it's nodes restarting |
| 25 | |
| 26 | List of test cases: |
| 27 | CASE1: Compile ONOS and push it to the test machines |
| 28 | CASE2: Assign devices to controllers |
| 29 | CASE21: Assign mastership to controllers |
| 30 | CASE3: Assign intents |
| 31 | CASE4: Ping across added host intents |
| 32 | CASE5: Reading state of ONOS |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 33 | CASE60: Initialize the upgrade. |
| 34 | CASE61: Upgrade a minority of nodes PHASE 1 |
| 35 | CASE62: Transfer to new version. PHASE 2 |
| 36 | CASE63: Upgrade the rest of the nodes |
| 37 | CASE64: Commit to the upgrade. |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 38 | CASE7: Check state after control plane failure |
| 39 | CASE8: Compare topo |
| 40 | CASE9: Link s3-s28 down |
| 41 | CASE10: Link s3-s28 up |
| 42 | CASE11: Switch down |
| 43 | CASE12: Switch up |
| 44 | CASE13: Clean up |
| 45 | CASE14: start election app on all onos nodes |
| 46 | CASE15: Check that Leadership Election is still functional |
| 47 | CASE16: Install Distributed Primitives app |
| 48 | CASE17: Check for basic functionality with distributed primitives |
| 49 | """ |
| 50 | class HAupgrade: |
| 51 | |
| 52 | def __init__( self ): |
| 53 | self.default = '' |
| 54 | |
| 55 | def CASE1( self, main ): |
| 56 | """ |
| 57 | CASE1 is to compile ONOS and push it to the test machines |
| 58 | |
| 59 | Startup sequence: |
| 60 | cell <name> |
| 61 | onos-verify-cell |
| 62 | NOTE: temporary - onos-remove-raft-logs |
| 63 | onos-uninstall |
| 64 | start mininet |
| 65 | git pull |
| 66 | mvn clean install |
| 67 | onos-package |
| 68 | onos-install -f |
| 69 | onos-wait-for-start |
| 70 | start cli sessions |
| 71 | start tcpdump |
| 72 | """ |
| 73 | main.log.info( "ONOS HA test: Stop a minority of ONOS nodes - " + |
| 74 | "initialization" ) |
| 75 | # These are for csv plotting in jenkins |
| 76 | main.HAlabels = [] |
| 77 | main.HAdata = [] |
| 78 | try: |
| 79 | from tests.dependencies.ONOSSetup import ONOSSetup |
| 80 | main.testSetUp = ONOSSetup() |
| 81 | except ImportError: |
| 82 | main.log.error( "ONOSSetup not found. exiting the test" ) |
| 83 | main.cleanAndExit() |
| 84 | main.testSetUp.envSetupDescription() |
| 85 | try: |
| 86 | from tests.HA.dependencies.HA import HA |
| 87 | main.HA = HA() |
| 88 | cellName = main.params[ 'ENV' ][ 'cellName' ] |
| 89 | main.apps = main.params[ 'ENV' ][ 'appString' ] |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 90 | stepResult = main.testSetUp.envSetup( includeCaseDesc=False ) |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 91 | except Exception as e: |
| 92 | main.testSetUp.envSetupException( e ) |
| 93 | main.testSetUp.evnSetupConclusion( stepResult ) |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 94 | |
| 95 | applyFuncs = [ main.HA.copyBackupConfig ] |
| 96 | applyArgs = [ None ] |
| 97 | try: |
| 98 | if main.params[ 'topology' ][ 'topoFile' ]: |
| 99 | main.log.info( 'Skipping start of Mininet in this case, make sure you start it elsewhere' ) |
| 100 | else: |
| 101 | applyFuncs.append( main.HA.startingMininet ) |
| 102 | applyArgs.append( None ) |
| 103 | except (KeyError, IndexError): |
| 104 | applyFuncs.append( main.HA.startingMininet ) |
| 105 | applyArgs.append( None ) |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 106 | |
Jon Hall | 3e6edb3 | 2018-08-21 16:20:30 -0700 | [diff] [blame] | 107 | main.testSetUp.ONOSSetUp( main.Cluster, cellName=cellName, |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 108 | extraApply=applyFuncs, |
| 109 | applyArgs=applyArgs, |
| 110 | extraClean=main.HA.cleanUpGenPartition, |
| 111 | includeCaseDesc=False ) |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 112 | |
| 113 | main.HA.initialSetUp( serviceClean=True ) |
| 114 | |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 115 | main.step( 'Set logging levels' ) |
| 116 | logging = True |
| 117 | try: |
| 118 | logs = main.params.get( 'ONOS_Logging', False ) |
| 119 | if logs: |
| 120 | for namespace, level in logs.items(): |
| 121 | for ctrl in main.Cluster.active(): |
| 122 | ctrl.CLI.logSet( level, namespace ) |
| 123 | except AttributeError: |
| 124 | logging = False |
| 125 | utilities.assert_equals( expect=True, actual=logging, |
| 126 | onpass="Set log levels", |
| 127 | onfail="Failed to set log levels" ) |
| 128 | |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 129 | def CASE2( self, main ): |
| 130 | """ |
| 131 | Assign devices to controllers |
| 132 | """ |
| 133 | main.HA.assignDevices( main ) |
| 134 | |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 135 | def CASE102( self, main ): |
| 136 | """ |
| 137 | Set up Spine-Leaf fabric topology in Mininet |
| 138 | """ |
| 139 | main.HA.startTopology( main ) |
| 140 | |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 141 | def CASE21( self, main ): |
| 142 | """ |
| 143 | Assign mastership to controllers |
| 144 | """ |
| 145 | main.HA.assignMastership( main ) |
| 146 | |
| 147 | def CASE3( self, main ): |
| 148 | """ |
| 149 | Assign intents |
| 150 | """ |
| 151 | main.HA.assignIntents( main ) |
| 152 | |
| 153 | def CASE4( self, main ): |
| 154 | """ |
| 155 | Ping across added host intents |
| 156 | """ |
| 157 | main.HA.pingAcrossHostIntent( main ) |
| 158 | |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 159 | def CASE104( self, main ): |
| 160 | """ |
| 161 | Ping Hosts |
| 162 | """ |
| 163 | main.case( "Check connectivity" ) |
| 164 | main.step( "Ping between all hosts" ) |
| 165 | pingResult = main.Mininet1.pingall() |
| 166 | utilities.assert_equals( expect=main.TRUE, actual=pingResult, |
| 167 | onpass="All Pings Passed", |
| 168 | onfail="Failed to ping between all hosts" ) |
| 169 | |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 170 | def CASE5( self, main ): |
| 171 | """ |
| 172 | Reading state of ONOS |
| 173 | """ |
| 174 | main.HA.readingState( main ) |
| 175 | |
| 176 | def CASE60( self, main ): |
| 177 | """ |
| 178 | Initialize the upgrade. |
| 179 | """ |
| 180 | assert main, "main not defined" |
| 181 | assert utilities.assert_equals, "utilities.assert_equals not defined" |
| 182 | main.case( "Initialize upgrade" ) |
| 183 | main.HA.upgradeInit( main ) |
| 184 | |
| 185 | def CASE61( self, main ): |
| 186 | """ |
| 187 | Upgrade a minority of nodes PHASE 1 |
| 188 | """ |
| 189 | assert main, "main not defined" |
| 190 | assert utilities.assert_equals, "utilities.assert_equals not defined" |
| 191 | main.case( "Upgrade minority of ONOS nodes" ) |
| 192 | |
| 193 | main.step( "Checking ONOS Logs for errors" ) |
| 194 | for ctrl in main.Cluster.active(): |
| 195 | main.log.debug( "Checking logs for errors on " + ctrl.name + ":" ) |
| 196 | main.log.warn( ctrl.checkLogs( ctrl.ipAddress ) ) |
| 197 | |
| 198 | main.kill = [] |
| 199 | n = len( main.Cluster.runningNodes ) # Number of nodes |
| 200 | p = n / 2 # Number of nodes in the minority |
| 201 | for i in range( p ): |
| 202 | main.kill.append( main.Cluster.runningNodes[ i ] ) # ONOS node to kill, listed by index in main.nodes |
| 203 | main.HA.upgradeNodes( main ) |
| 204 | |
| 205 | main.step( "Checking ONOS nodes" ) |
| 206 | nodeResults = utilities.retry( main.Cluster.nodesCheck, |
| 207 | False, |
| 208 | sleep=15, |
| 209 | attempts=5 ) |
| 210 | utilities.assert_equals( expect=True, actual=nodeResults, |
| 211 | onpass="Nodes check successful", |
| 212 | onfail="Nodes check NOT successful" ) |
| 213 | |
| 214 | if not nodeResults: |
| 215 | for ctrl in main.Cluster.active(): |
| 216 | main.log.debug( "{} components not ACTIVE: \n{}".format( |
| 217 | ctrl.name, |
| 218 | ctrl.CLI.sendline( "scr:list | grep -v ACTIVE" ) ) ) |
| 219 | main.log.error( "Failed to start ONOS, stopping test" ) |
| 220 | main.cleanAndExit() |
| 221 | |
| 222 | def CASE62( self, main ): |
| 223 | """ |
| 224 | Transfer to new version. PHASE 2 |
| 225 | """ |
| 226 | assert main, "main not defined" |
| 227 | assert utilities.assert_equals, "utilities.assert_equals not defined" |
| 228 | main.case( "Start the upgrade" ) |
| 229 | |
| 230 | main.step( "Send the command to switch to new version" ) |
| 231 | ctrl = main.Cluster.next().CLI |
| 232 | upgraded = ctrl.issuUpgrade() |
| 233 | utilities.assert_equals( expect=main.TRUE, actual=upgraded, |
| 234 | onpass="Cluster has moved to the upgraded nodes", |
| 235 | onfail="Error transitioning to the upgraded nodes" ) |
| 236 | |
| 237 | main.step( "Check the status of the upgrade" ) |
| 238 | ctrl = main.Cluster.next().CLI |
| 239 | status = ctrl.issu() |
| 240 | main.log.debug( status ) |
| 241 | # TODO: check things here? |
| 242 | |
| 243 | main.step( "Checking ONOS nodes" ) |
| 244 | nodeResults = utilities.retry( main.Cluster.nodesCheck, |
| 245 | False, |
| 246 | sleep=15, |
| 247 | attempts=5 ) |
| 248 | utilities.assert_equals( expect=True, actual=nodeResults, |
| 249 | onpass="Nodes check successful", |
| 250 | onfail="Nodes check NOT successful" ) |
| 251 | |
| 252 | def CASE63( self, main ): |
| 253 | """ |
| 254 | Upgrade the rest of the nodes |
| 255 | """ |
| 256 | main.case( "Upgrade remaining nodes" ) |
| 257 | upgraded = main.kill |
| 258 | main.kill = [] |
| 259 | for node in main.Cluster.runningNodes: |
| 260 | if node not in upgraded: |
| 261 | main.kill.append( node ) |
| 262 | |
| 263 | main.HA.upgradeNodes( main ) |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 264 | main.step( "Checking ONOS nodes" ) |
| 265 | |
| 266 | nodeResults = utilities.retry( main.Cluster.nodesCheck, |
| 267 | False, |
| 268 | sleep=15, |
| 269 | attempts=5 ) |
| 270 | utilities.assert_equals( expect=True, actual=nodeResults, |
| 271 | onpass="Nodes check successful", |
| 272 | onfail="Nodes check NOT successful" ) |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 273 | |
| 274 | def CASE64( self, main ): |
| 275 | """ |
| 276 | Commit to the upgrade. |
| 277 | """ |
| 278 | assert main, "main not defined" |
| 279 | assert utilities.assert_equals, "utilities.assert_equals not defined" |
| 280 | main.case( "Commit upgrade" ) |
| 281 | |
| 282 | main.step( "Send the command to commit the upgrade" ) |
Jon Hall | 0e24037 | 2018-05-02 11:21:57 -0700 | [diff] [blame] | 283 | for ctrl in main.Cluster.active(): |
| 284 | status = ctrl.issu() |
| 285 | main.log.debug( status ) |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 286 | ctrl = main.Cluster.next().CLI |
| 287 | committed = ctrl.issuCommit() |
| 288 | utilities.assert_equals( expect=main.TRUE, actual=committed, |
| 289 | onpass="Upgrade has been committed", |
| 290 | onfail="Error committing the upgrade" ) |
Jon Hall | 0e24037 | 2018-05-02 11:21:57 -0700 | [diff] [blame] | 291 | for ctrl in main.Cluster.active(): |
| 292 | status = ctrl.issu() |
| 293 | main.log.debug( status ) |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 294 | |
| 295 | main.step( "Check the status of the upgrade" ) |
| 296 | ctrl = main.Cluster.next().CLI |
| 297 | status = ctrl.issu() |
| 298 | main.log.debug( status ) |
| 299 | # TODO: check things here? |
| 300 | |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 301 | nodeResults = utilities.retry( main.Cluster.nodesCheck, |
| 302 | False, |
| 303 | sleep=15, |
| 304 | attempts=5 ) |
| 305 | utilities.assert_equals( expect=True, actual=nodeResults, |
| 306 | onpass="Nodes check successful", |
| 307 | onfail="Nodes check NOT successful" ) |
| 308 | |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 309 | def CASE7( self, main ): |
| 310 | """ |
| 311 | Check state after ONOS failure |
| 312 | """ |
| 313 | try: |
| 314 | main.kill |
| 315 | except AttributeError: |
| 316 | main.kill = [] |
| 317 | |
| 318 | main.HA.checkStateAfterEvent( main, afterWhich=0 ) |
| 319 | main.step( "Leadership Election is still functional" ) |
| 320 | # Test of LeadershipElection |
| 321 | leaderList = [] |
| 322 | |
| 323 | restarted = [] |
| 324 | for ctrl in main.kill: |
| 325 | restarted.append( ctrl.ipAddress ) |
| 326 | leaderResult = main.TRUE |
| 327 | |
| 328 | for ctrl in main.Cluster.active(): |
| 329 | leaderN = ctrl.electionTestLeader() |
| 330 | leaderList.append( leaderN ) |
| 331 | if leaderN == main.FALSE: |
| 332 | # error in response |
| 333 | main.log.error( "Something is wrong with " + |
| 334 | "electionTestLeader function, check the" + |
| 335 | " error logs" ) |
| 336 | leaderResult = main.FALSE |
| 337 | elif leaderN is None: |
| 338 | main.log.error( ctrl.name + |
| 339 | " shows no leader for the election-app was" + |
| 340 | " elected after the old one died" ) |
| 341 | leaderResult = main.FALSE |
| 342 | elif leaderN in restarted: |
| 343 | main.log.error( ctrl.name + " shows " + str( leaderN ) + |
| 344 | " as leader for the election-app, but it " + |
| 345 | "was restarted" ) |
| 346 | leaderResult = main.FALSE |
| 347 | if len( set( leaderList ) ) != 1: |
| 348 | leaderResult = main.FALSE |
| 349 | main.log.error( |
| 350 | "Inconsistent view of leader for the election test app" ) |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 351 | main.log.debug( leaderList ) |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 352 | utilities.assert_equals( |
| 353 | expect=main.TRUE, |
| 354 | actual=leaderResult, |
| 355 | onpass="Leadership election passed", |
| 356 | onfail="Something went wrong with Leadership election" ) |
| 357 | |
| 358 | def CASE8( self, main ): |
| 359 | """ |
| 360 | Compare topo |
| 361 | """ |
| 362 | main.HA.compareTopo( main ) |
| 363 | |
| 364 | def CASE9( self, main ): |
| 365 | """ |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 366 | Link down |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 367 | """ |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 368 | src = main.params['kill']['linkSrc'] |
| 369 | dst = main.params['kill']['linkDst'] |
| 370 | main.HA.linkDown( main, src, dst ) |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 371 | |
| 372 | def CASE10( self, main ): |
| 373 | """ |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 374 | Link up |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 375 | """ |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 376 | src = main.params['kill']['linkSrc'] |
| 377 | dst = main.params['kill']['linkDst'] |
| 378 | main.HA.linkUp( main, src, dst ) |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 379 | |
| 380 | def CASE11( self, main ): |
| 381 | """ |
| 382 | Switch Down |
| 383 | """ |
| 384 | # NOTE: You should probably run a topology check after this |
| 385 | main.HA.switchDown( main ) |
| 386 | |
| 387 | def CASE12( self, main ): |
| 388 | """ |
| 389 | Switch Up |
| 390 | """ |
| 391 | # NOTE: You should probably run a topology check after this |
| 392 | main.HA.switchUp( main ) |
| 393 | |
| 394 | def CASE13( self, main ): |
| 395 | """ |
| 396 | Clean up |
| 397 | """ |
| 398 | main.HAlabels.append( "Restart" ) |
| 399 | main.HAdata.append( str( main.restartTime ) ) |
| 400 | main.HA.cleanUp( main ) |
| 401 | |
| 402 | def CASE14( self, main ): |
| 403 | """ |
Jon Hall | ab61137 | 2018-02-21 15:26:05 -0800 | [diff] [blame] | 404 | Start election app on all onos nodes |
Jon Hall | a478b85 | 2017-12-04 15:00:15 -0800 | [diff] [blame] | 405 | """ |
| 406 | main.HA.startElectionApp( main ) |
| 407 | |
| 408 | def CASE15( self, main ): |
| 409 | """ |
| 410 | Check that Leadership Election is still functional |
| 411 | 15.1 Run election on each node |
| 412 | 15.2 Check that each node has the same leaders and candidates |
| 413 | 15.3 Find current leader and withdraw |
| 414 | 15.4 Check that a new node was elected leader |
| 415 | 15.5 Check that that new leader was the candidate of old leader |
| 416 | 15.6 Run for election on old leader |
| 417 | 15.7 Check that oldLeader is a candidate, and leader if only 1 node |
| 418 | 15.8 Make sure that the old leader was added to the candidate list |
| 419 | |
| 420 | old and new variable prefixes refer to data from before vs after |
| 421 | withdrawl and later before withdrawl vs after re-election |
| 422 | """ |
| 423 | main.HA.isElectionFunctional( main ) |
| 424 | |
| 425 | def CASE16( self, main ): |
| 426 | """ |
| 427 | Install Distributed Primitives app |
| 428 | """ |
| 429 | main.HA.installDistributedPrimitiveApp( main ) |
| 430 | |
| 431 | def CASE17( self, main ): |
| 432 | """ |
| 433 | Check for basic functionality with distributed primitives |
| 434 | """ |
| 435 | main.HA.checkDistPrimitivesFunc( main ) |