Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [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 | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 22 | Description: This test is to determine if ONOS can handle |
| 23 | dynamic swapping of cluster nodes. |
| 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 | CASE6: Swap nodes |
| 33 | CASE7: Check state after control plane failure |
| 34 | CASE8: Compare topo |
| 35 | CASE9: Link s3-s28 down |
| 36 | CASE10: Link s3-s28 up |
| 37 | CASE11: Switch down |
| 38 | CASE12: Switch up |
| 39 | CASE13: Clean up |
| 40 | CASE14: start election app on all onos nodes |
| 41 | CASE15: Check that Leadership Election is still functional |
| 42 | CASE16: Install Distributed Primitives app |
| 43 | CASE17: Check for basic functionality with distributed primitives |
| 44 | """ |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 45 | class HAswapNodes: |
| 46 | |
| 47 | def __init__( self ): |
| 48 | self.default = '' |
| 49 | |
| 50 | def CASE1( self, main ): |
| 51 | """ |
| 52 | CASE1 is to compile ONOS and push it to the test machines |
| 53 | |
| 54 | Startup sequence: |
| 55 | cell <name> |
| 56 | onos-verify-cell |
| 57 | NOTE: temporary - onos-remove-raft-logs |
| 58 | onos-uninstall |
| 59 | start mininet |
| 60 | git pull |
| 61 | mvn clean install |
| 62 | onos-package |
| 63 | onos-install -f |
| 64 | onos-wait-for-start |
| 65 | start cli sessions |
| 66 | start tcpdump |
| 67 | """ |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 68 | main.log.info( "ONOS HA test: Restart all ONOS nodes - " + |
| 69 | "initialization" ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 70 | # set global variables |
| 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 | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 81 | try: |
| 82 | from tests.HA.dependencies.HA import HA |
| 83 | main.HA = HA() |
| 84 | from tests.HA.HAswapNodes.dependencies.Server import Server |
| 85 | main.Server = Server() |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 86 | # load some variables from the params file |
| 87 | cellName = main.params[ 'ENV' ][ 'cellName' ] |
| 88 | main.apps = main.params[ 'ENV' ][ 'appString' ] |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 89 | stepResult = main.testSetUp.envSetup() |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 90 | except Exception as e: |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 91 | main.testSetUp.envSetupException( e ) |
| 92 | main.testSetUp.evnSetupConclusion( stepResult ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 93 | |
You Wang | a0f6ff6 | 2018-01-11 15:46:30 -0800 | [diff] [blame] | 94 | main.testSetUp.ONOSSetUp( main.Cluster, cellName=cellName, removeLog=True, |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 95 | extraApply=[ main.HA.setServerForCluster, |
| 96 | main.HA.swapNodeMetadata, |
| 97 | main.HA.startingMininet, |
| 98 | main.HA.copyBackupConfig, |
| 99 | main.HA.setMetadataUrl ], |
| 100 | extraClean=main.HA.cleanUpOnosService, |
| 101 | installMax=True ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 102 | main.HA.initialSetUp() |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 103 | |
| 104 | def CASE2( self, main ): |
| 105 | """ |
| 106 | Assign devices to controllers |
| 107 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 108 | main.HA.assignDevices( main ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 109 | |
| 110 | def CASE21( self, main ): |
| 111 | """ |
| 112 | Assign mastership to controllers |
| 113 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 114 | main.HA.assignMastership( main ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 115 | |
| 116 | def CASE3( self, main ): |
| 117 | """ |
| 118 | Assign intents |
| 119 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 120 | main.HA.assignIntents( main ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 121 | |
| 122 | def CASE4( self, main ): |
| 123 | """ |
| 124 | Ping across added host intents |
| 125 | """ |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 126 | main.HA.pingAcrossHostIntent( main ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 127 | |
| 128 | def CASE5( self, main ): |
| 129 | """ |
| 130 | Reading state of ONOS |
| 131 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 132 | main.HA.readingState( main ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 133 | |
| 134 | def CASE6( self, main ): |
| 135 | """ |
| 136 | The Scaling case. |
| 137 | """ |
| 138 | import time |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 139 | assert main, "main not defined" |
| 140 | assert utilities.assert_equals, "utilities.assert_equals not defined" |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 141 | try: |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 142 | main.HAlabels |
| 143 | except ( NameError, AttributeError ): |
| 144 | main.log.error( "main.HAlabels not defined, setting to []" ) |
| 145 | main.HAlabels = [] |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 146 | try: |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 147 | main.HAdata |
| 148 | except ( NameError, AttributeError ): |
| 149 | main.log.error( "main.HAdata not defined, setting to []" ) |
| 150 | main.HAdata = [] |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 151 | |
| 152 | main.case( "Swap some of the ONOS nodes" ) |
| 153 | |
| 154 | main.step( "Checking ONOS Logs for errors" ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 155 | for ctrl in main.Cluster.active(): |
| 156 | main.log.debug( "Checking logs for errors on " + ctrl.name + ":" ) |
| 157 | main.log.warn( main.ONOSbench.checkLogs( ctrl.ipAddress ) ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 158 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 159 | activeNodes = main.Cluster.getRunningPos() |
| 160 | # Todo : this could be wrong. need to double check. |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 161 | main.step( "Generate new metadata file" ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 162 | old = [ activeNodes[ 1 ], activeNodes[ -2 ] ] |
| 163 | new = range( main.Cluster.maxCtrls )[ -2: ] |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 164 | assert len( old ) == len( new ), "Length of nodes to swap don't match" |
| 165 | handle = main.ONOSbench.handle |
| 166 | for x, y in zip( old, new ): |
| 167 | handle.sendline( "export OC{}=$OC{}".format( x + 1, y + 1 ) ) |
| 168 | handle.expect( "\$" ) # from the variable |
| 169 | ret = handle.before |
| 170 | handle.expect( "\$" ) # From the prompt |
| 171 | ret += handle.before |
| 172 | main.log.debug( ret ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 173 | activeNodes.remove( x ) |
| 174 | activeNodes.append( y ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 175 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 176 | genResult = main.Server.generateFile( main.Cluster.numCtrls ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 177 | utilities.assert_equals( expect=main.TRUE, actual=genResult, |
| 178 | onpass="New cluster metadata file generated", |
| 179 | onfail="Failled to generate new metadata file" ) |
| 180 | time.sleep( 5 ) # Give time for nodes to read new file |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 181 | main.Cluster.resetActive() |
| 182 | # Note : done up to this point. |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 183 | main.step( "Start new nodes" ) # OR stop old nodes? |
| 184 | started = main.TRUE |
| 185 | for i in new: |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 186 | started = main.ONOSbench.onosStart( main.Cluster.controllers[ i ].ipAddress ) and main.TRUE |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 187 | utilities.assert_equals( expect=main.TRUE, actual=started, |
| 188 | onpass="ONOS started", |
| 189 | onfail="ONOS start NOT successful" ) |
| 190 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 191 | main.Cluster.setRunningNode( activeNodes ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 192 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 193 | main.testSetUp.setupSsh( main.Cluster ) |
| 194 | main.testSetUp.checkOnosService( main.Cluster ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 195 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 196 | main.testSetUp.startOnosClis( main.Cluster ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 197 | |
| 198 | main.step( "Checking ONOS nodes" ) |
Devin Lim | 3ebd5e7 | 2017-11-14 10:38:00 -0800 | [diff] [blame] | 199 | nodeResults = utilities.retry( main.Cluster.nodesCheck, |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 200 | False, |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 201 | attempts=5 ) |
| 202 | utilities.assert_equals( expect=True, actual=nodeResults, |
| 203 | onpass="Nodes check successful", |
| 204 | onfail="Nodes check NOT successful" ) |
| 205 | |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 206 | ready = utilities.retry( main.Cluster.command, |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 207 | False, |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 208 | kwargs={ "function": "summary", "contentCheck": True }, |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 209 | sleep=30, |
| 210 | attempts=10 ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 211 | utilities.assert_equals( expect=True, actual=ready, |
| 212 | onpass="ONOS summary command succeded", |
| 213 | onfail="ONOS summary command failed" ) |
| 214 | if not ready: |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 215 | main.cleanAndExit() |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 216 | |
| 217 | # Rerun for election on new nodes |
| 218 | runResults = main.TRUE |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 219 | for ctrl in main.Cluster.active(): |
| 220 | run = ctrl.CLI.electionTestRun() |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 221 | if run != main.TRUE: |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 222 | main.log.error( "Error running for election on " + ctrl.name ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 223 | runResults = runResults and run |
| 224 | utilities.assert_equals( expect=main.TRUE, actual=runResults, |
| 225 | onpass="Reran for election", |
| 226 | onfail="Failed to rerun for election" ) |
| 227 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 228 | main.HA.commonChecks() |
| 229 | |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 230 | def CASE7( self, main ): |
| 231 | """ |
| 232 | Check state after ONOS scaling |
| 233 | """ |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 234 | main.HA.checkStateAfterEvent( main, afterWhich=1 ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 235 | |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 236 | main.step( "Leadership Election is still functional" ) |
| 237 | # Test of LeadershipElection |
| 238 | leaderList = [] |
| 239 | leaderResult = main.TRUE |
| 240 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 241 | for ctrl in main.Cluster.active(): |
| 242 | leaderN = ctrl.CLI.electionTestLeader() |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 243 | leaderList.append( leaderN ) |
| 244 | if leaderN == main.FALSE: |
| 245 | # error in response |
| 246 | main.log.error( "Something is wrong with " + |
| 247 | "electionTestLeader function, check the" + |
| 248 | " error logs" ) |
| 249 | leaderResult = main.FALSE |
| 250 | elif leaderN is None: |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 251 | main.log.error( ctrl.name + |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 252 | " shows no leader for the election-app." ) |
| 253 | leaderResult = main.FALSE |
| 254 | if len( set( leaderList ) ) != 1: |
| 255 | leaderResult = main.FALSE |
| 256 | main.log.error( |
| 257 | "Inconsistent view of leader for the election test app" ) |
| 258 | # TODO: print the list |
| 259 | utilities.assert_equals( |
| 260 | expect=main.TRUE, |
| 261 | actual=leaderResult, |
| 262 | onpass="Leadership election passed", |
| 263 | onfail="Something went wrong with Leadership election" ) |
| 264 | |
| 265 | def CASE8( self, main ): |
| 266 | """ |
| 267 | Compare topo |
| 268 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 269 | main.HA.compareTopo( main ) |
Jon Hall | d2871c2 | 2016-07-26 11:01:14 -0700 | [diff] [blame] | 270 | |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 271 | def CASE9( self, main ): |
| 272 | """ |
| 273 | Link s3-s28 down |
| 274 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 275 | main.HA.linkDown( main ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 276 | |
| 277 | def CASE10( self, main ): |
| 278 | """ |
| 279 | Link s3-s28 up |
| 280 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 281 | main.HA.linkUp( main ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 282 | |
| 283 | def CASE11( self, main ): |
| 284 | """ |
| 285 | Switch Down |
| 286 | """ |
| 287 | # NOTE: You should probably run a topology check after this |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 288 | main.HA.switchDown( main ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 289 | |
| 290 | def CASE12( self, main ): |
| 291 | """ |
| 292 | Switch Up |
| 293 | """ |
| 294 | # NOTE: You should probably run a topology check after this |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 295 | main.HA.switchUp( main ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 296 | |
| 297 | def CASE13( self, main ): |
| 298 | """ |
| 299 | Clean up |
| 300 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 301 | main.HA.cleanUp( main ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 302 | |
| 303 | main.step( "Stopping webserver" ) |
Jon Hall | f37d44d | 2017-05-24 10:37:30 -0700 | [diff] [blame] | 304 | status = main.Server.stop() |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 305 | utilities.assert_equals( expect=main.TRUE, actual=status, |
| 306 | onpass="Stop Server", |
| 307 | onfail="Failled to stop SimpleHTTPServer" ) |
| 308 | del main.Server |
| 309 | |
| 310 | def CASE14( self, main ): |
| 311 | """ |
| 312 | start election app on all onos nodes |
| 313 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 314 | main.HA.startElectionApp( main ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 315 | |
| 316 | def CASE15( self, main ): |
| 317 | """ |
| 318 | Check that Leadership Election is still functional |
| 319 | 15.1 Run election on each node |
| 320 | 15.2 Check that each node has the same leaders and candidates |
| 321 | 15.3 Find current leader and withdraw |
| 322 | 15.4 Check that a new node was elected leader |
| 323 | 15.5 Check that that new leader was the candidate of old leader |
| 324 | 15.6 Run for election on old leader |
| 325 | 15.7 Check that oldLeader is a candidate, and leader if only 1 node |
| 326 | 15.8 Make sure that the old leader was added to the candidate list |
| 327 | |
| 328 | old and new variable prefixes refer to data from before vs after |
| 329 | withdrawl and later before withdrawl vs after re-election |
| 330 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 331 | main.HA.isElectionFunctional( main ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 332 | |
| 333 | def CASE16( self, main ): |
| 334 | """ |
| 335 | Install Distributed Primitives app |
| 336 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 337 | main.HA.installDistributedPrimitiveApp( main ) |
Jon Hall | 69b2b98 | 2016-05-11 12:04:59 -0700 | [diff] [blame] | 338 | |
| 339 | def CASE17( self, main ): |
| 340 | """ |
| 341 | Check for basic functionality with distributed primitives |
| 342 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 343 | main.HA.checkDistPrimitivesFunc( main ) |