Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 1 | """ |
| 2 | Copyright 2016 Open Networking Foundation (ONF) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 3 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 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 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 21 | import time |
| 22 | import re |
| 23 | import imp |
| 24 | |
| 25 | class ONOSSetup: |
| 26 | main = None |
| 27 | def __init__( self ): |
| 28 | self.default = '' |
| 29 | def envSetupDescription ( self ): |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 30 | """ |
| 31 | Introduction part of the test. It will initialize some basic vairables. |
| 32 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 33 | main.case( "Constructing test variables and building ONOS package" ) |
| 34 | main.step( "Constructing test variables" ) |
| 35 | main.caseExplanation = "For loading from params file, and pull" + \ |
| 36 | " and build the latest ONOS package" |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 37 | try: |
| 38 | from tests.dependencies.Cluster import Cluster |
| 39 | except ImportError: |
| 40 | main.log.error( "Cluster not found. exiting the test" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 41 | main.cleanAndExit() |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 42 | try: |
| 43 | main.Cluster |
| 44 | except ( NameError, AttributeError ): |
| 45 | main.Cluster = Cluster( main.ONOScell.nodes ) |
| 46 | main.ONOSbench = main.Cluster.controllers[ 0 ].Bench |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 47 | main.testOnDirectory = re.sub( "(/tests)$", "", main.testDir ) |
| 48 | |
| 49 | def gitPulling( self ): |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 50 | """ |
| 51 | it will do git checkout or pull if they are enabled from the params file. |
| 52 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 53 | main.case( "Pull onos branch and build onos on Teststation." ) |
| 54 | gitPull = main.params[ 'GIT' ][ 'pull' ] |
| 55 | gitBranch = main.params[ 'GIT' ][ 'branch' ] |
| 56 | if gitPull == 'True': |
| 57 | main.step( "Git Checkout ONOS branch: " + gitBranch ) |
| 58 | stepResult = main.ONOSbench.gitCheckout( branch=gitBranch ) |
| 59 | utilities.assert_equals( expect=main.TRUE, |
| 60 | actual=stepResult, |
| 61 | onpass="Successfully checkout onos branch.", |
| 62 | onfail="Failed to checkout onos branch. Exiting test..." ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 63 | if not stepResult: main.cleanAndExit() |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 64 | |
| 65 | main.step( "Git Pull on ONOS branch:" + gitBranch ) |
| 66 | stepResult = main.ONOSbench.gitPull() |
| 67 | utilities.assert_equals( expect=main.TRUE, |
| 68 | actual=stepResult, |
| 69 | onpass="Successfully pull onos. ", |
| 70 | onfail="Failed to pull onos. Exiting test ..." ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 71 | if not stepResult: main.cleanAndExit() |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 72 | |
| 73 | else: |
| 74 | main.log.info( "Skipped git checkout and pull as they are disabled in params file" ) |
| 75 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 76 | def envSetup( self, includeGitPull=True ): |
| 77 | """ |
| 78 | Description: |
| 79 | some environment setup for the test. |
| 80 | Required: |
| 81 | * includeGitPull - if wish to git pulling function to be executed. |
| 82 | Returns: |
| 83 | Returns main.TRUE |
| 84 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 85 | if includeGitPull : |
| 86 | self.gitPulling() |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 87 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 88 | try: |
| 89 | from tests.dependencies.Cluster import Cluster |
| 90 | except ImportError: |
| 91 | main.log.error( "Cluster not found. exiting the test" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 92 | main.cleanAndExit() |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 93 | try: |
| 94 | main.Cluster |
| 95 | except ( NameError, AttributeError ): |
| 96 | main.Cluster = Cluster( main.ONOScell.nodes ) |
| 97 | |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 98 | main.cellData = {} # For creating cell file |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 99 | |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 100 | return main.TRUE |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 101 | |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 102 | def envSetupException( self, e ): |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 103 | """ |
| 104 | Description: |
| 105 | handles the exception that might occur from the environment setup. |
| 106 | Required: |
| 107 | * includeGitPull - exceeption code e. |
| 108 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 109 | main.log.exception( e ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 110 | main.cleanAndExit() |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 111 | |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 112 | def evnSetupConclusion( self, stepResult ): |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 113 | """ |
| 114 | Description: |
| 115 | compare the result of the envSetup of the test. |
| 116 | Required: |
| 117 | * stepResult - Result of the envSetup. |
| 118 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 119 | utilities.assert_equals( expect=main.TRUE, |
| 120 | actual=stepResult, |
| 121 | onpass="Successfully construct " + |
| 122 | "test variables ", |
| 123 | onfail="Failed to construct test variables" ) |
| 124 | |
| 125 | main.commit = main.ONOSbench.getVersion( report=True ) |
| 126 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 127 | def setNumCtrls( self, hasMultiNodeRounds ): |
| 128 | """ |
| 129 | Description: |
| 130 | Set new number of controls if it uses different number of nodes. |
| 131 | different number of nodes should be pre-defined in main.scale. |
| 132 | Required: |
| 133 | * hasMultiNodeRouds - if the test is testing different number of nodes. |
| 134 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 135 | if hasMultiNodeRounds: |
| 136 | try: |
| 137 | main.cycle |
| 138 | except Exception: |
| 139 | main.cycle = 0 |
| 140 | main.cycle += 1 |
| 141 | # main.scale[ 0 ] determines the current number of ONOS controller |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 142 | main.Cluster.setRunningNode( int( main.scale.pop( 0 ) ) ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 143 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 144 | def killingAllOnos( self, cluster, killRemoveMax, stopOnos ): |
| 145 | """ |
| 146 | Description: |
| 147 | killing the onos. It will either kill the current runningnodes or |
| 148 | max number of the nodes. |
| 149 | Required: |
| 150 | * cluster - the cluster driver that will be used. |
| 151 | * killRemoveMax - The boolean that will decide either to kill |
| 152 | only running nodes (False) or max number of nodes (True). |
| 153 | * stopOnos - If wish to stop onos before killing it. True for |
| 154 | enable stop , False for disable stop. |
| 155 | Returns: |
| 156 | Returns main.TRUE if successfully killing it. |
| 157 | """ |
| 158 | main.log.info( "Safety check, killing all ONOS processes" ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 159 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 160 | return cluster.kill( killRemoveMax, stopOnos ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 161 | |
Devin Lim | e9f0ccf | 2017-08-11 17:25:12 -0700 | [diff] [blame] | 162 | def createApplyCell( self, cluster, newCell, cellName, |
| 163 | Mininet, useSSH, ips, installMax=False ): |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 164 | """ |
| 165 | Description: |
| 166 | create new cell ( optional ) and apply it. It will also verify the |
| 167 | cell. |
| 168 | Required: |
| 169 | * cluster - the cluster driver that will be used. |
| 170 | * newCell - True for making a new cell and False for not making it. |
| 171 | * cellName - The name of the cell. |
| 172 | * Mininet - a mininet driver that will be used. |
| 173 | * useSSH - True for using ssh when creating a cell |
| 174 | * ips - ip(s) of the node(s). |
| 175 | Returns: |
| 176 | Returns main.TRUE if it successfully executed. |
| 177 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 178 | if newCell: |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 179 | cluster.createCell( cellName, Mininet, useSSH, ips ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 180 | main.step( "Apply cell to environment" ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 181 | stepResult = cluster.applyCell( cellName ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 182 | utilities.assert_equals( expect=main.TRUE, |
| 183 | actual=stepResult, |
| 184 | onpass="Successfully applied cell to " + |
| 185 | "environment", |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 186 | onfail="Failed to apply cell to environment" ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 187 | return stepResult |
| 188 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 189 | def uninstallOnos( self, cluster, uninstallMax ): |
| 190 | """ |
| 191 | Description: |
| 192 | uninstalling onos and verify the result. |
| 193 | Required: |
| 194 | * cluster - a cluster driver that will be used. |
| 195 | * uninstallMax - True for uninstalling max number of nodes |
| 196 | False for uninstalling the current running nodes. |
| 197 | Returns: |
| 198 | Returns main.TRUE if it successfully uninstalled. |
| 199 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 200 | main.step( "Uninstalling ONOS package" ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 201 | onosUninstallResult = cluster.uninstall( uninstallMax ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 202 | utilities.assert_equals( expect=main.TRUE, |
| 203 | actual=onosUninstallResult, |
| 204 | onpass="Successfully uninstalled ONOS package", |
| 205 | onfail="Failed to uninstall ONOS package" ) |
| 206 | return onosUninstallResult |
| 207 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 208 | def buildOnos( self, cluster ): |
| 209 | """ |
| 210 | Description: |
| 211 | build the onos using buck build onos and verify the result |
| 212 | Required: |
| 213 | * cluster - the cluster driver that will be used. |
| 214 | Returns: |
| 215 | Returns main.TRUE if it successfully built. |
| 216 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 217 | main.step( "Creating ONOS package" ) |
| 218 | packageResult = main.ONOSbench.buckBuild() |
| 219 | utilities.assert_equals( expect=main.TRUE, |
| 220 | actual=packageResult, |
| 221 | onpass="Successfully created ONOS package", |
| 222 | onfail="Failed to create ONOS package" ) |
| 223 | return packageResult |
| 224 | |
Devin Lim | e9f0ccf | 2017-08-11 17:25:12 -0700 | [diff] [blame] | 225 | def installOnos( self, cluster, installMax, parallel=True ): |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 226 | """ |
| 227 | Description: |
| 228 | Installing onos and verify the result |
| 229 | Required: |
| 230 | * cluster - the cluster driver that will be used. |
| 231 | * installMax - True for installing max number of nodes |
| 232 | False for installing current running nodes only. |
| 233 | Returns: |
| 234 | Returns main.TRUE if it successfully installed |
| 235 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 236 | main.step( "Installing ONOS package" ) |
| 237 | onosInstallResult = main.TRUE |
| 238 | |
Devin Lim | e9f0ccf | 2017-08-11 17:25:12 -0700 | [diff] [blame] | 239 | cluster.install( installMax, parallel ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 240 | utilities.assert_equals( expect=main.TRUE, |
| 241 | actual=onosInstallResult, |
| 242 | onpass="Successfully installed ONOS package", |
| 243 | onfail="Failed to install ONOS package" ) |
| 244 | if not onosInstallResult: |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 245 | main.cleanAndExit() |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 246 | return onosInstallResult |
| 247 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 248 | def setupSsh( self, cluster ): |
| 249 | """ |
| 250 | Description: |
| 251 | set up ssh to the onos and verify the result |
| 252 | Required: |
| 253 | * cluster - the cluster driver that will be used. |
| 254 | Returns: |
| 255 | Returns main.TRUE if it successfully setup the ssh to |
| 256 | the onos. |
| 257 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 258 | main.step( "Set up ONOS secure SSH" ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 259 | secureSshResult = cluster.ssh() |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 260 | utilities.assert_equals( expect=main.TRUE, |
| 261 | actual=secureSshResult, |
| 262 | onpass="Test step PASS", |
| 263 | onfail="Test step FAIL" ) |
| 264 | return secureSshResult |
| 265 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 266 | def checkOnosService( self, cluster ): |
| 267 | """ |
| 268 | Description: |
| 269 | Checking if the onos service is up and verify the result |
| 270 | Required: |
| 271 | * cluster - the cluster driver that will be used. |
| 272 | Returns: |
| 273 | Returns main.TRUE if it successfully checked |
| 274 | """ |
| 275 | main.step( "Checking ONOS service" ) |
| 276 | stepResult = cluster.checkService() |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 277 | utilities.assert_equals( expect=main.TRUE, |
| 278 | actual=stepResult, |
| 279 | onpass="ONOS service is ready on all nodes", |
| 280 | onfail="ONOS service did not start properly on all nodes" ) |
| 281 | return stepResult |
| 282 | |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 283 | def startOnosClis( self, cluster ): |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 284 | """ |
| 285 | Description: |
| 286 | starting Onos using onosCli driver and verify the result |
| 287 | Required: |
| 288 | * cluster - the cluster driver that will be used. |
| 289 | Returns: |
| 290 | Returns main.TRUE if it successfully started. It will exit |
| 291 | the test if not started properly. |
| 292 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 293 | main.step( "Starting ONOS CLI sessions" ) |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 294 | startCliResult = cluster.startCLIs() |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 295 | if not startCliResult: |
| 296 | main.log.info( "ONOS CLI did not start up properly" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 297 | main.cleanAndExit() |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 298 | else: |
| 299 | main.log.info( "Successful CLI startup" ) |
| 300 | utilities.assert_equals( expect=main.TRUE, |
| 301 | actual=startCliResult, |
| 302 | onpass="Successfully start ONOS cli", |
| 303 | onfail="Failed to start ONOS cli" ) |
| 304 | return startCliResult |
| 305 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 306 | def ONOSSetUp( self, Mininet, cluster, hasMultiNodeRounds=False, startOnos=True, newCell=True, |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 307 | cellName="temp", removeLog=False, extraApply=None, arg=None, extraClean=None, |
| 308 | skipPack=False, installMax=False, useSSH=True, killRemoveMax=True, |
Devin Lim | e9f0ccf | 2017-08-11 17:25:12 -0700 | [diff] [blame] | 309 | stopOnos=False, installParallel=True ): |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 310 | """ |
| 311 | Description: |
| 312 | Initial ONOS setting up of the tests. It will also verify the result of each steps. |
| 313 | The procedures will be: |
| 314 | killing onos |
| 315 | creating (optional) /applying cell |
| 316 | removing raft logs (optional) |
| 317 | uninstalling onos |
| 318 | extra procedure to be applied( optional ) |
| 319 | building onos |
| 320 | installing onos |
| 321 | extra cleanup to be applied ( optional ) |
| 322 | setting up ssh to the onos |
| 323 | checking the onos service |
| 324 | starting onos |
| 325 | Required: |
| 326 | * Mininet - the mininet driver that will be used |
| 327 | * cluster - the cluster driver that will be used. |
| 328 | * hasMultiNodeRouds - True if the test is testing different set of nodes |
| 329 | * startOnos - True if wish to start onos. |
| 330 | * newCell - True for making a new cell and False for not making it. |
| 331 | * cellName - Name of the cell that will be used. |
| 332 | * removeLog - True if wish to remove raft logs |
| 333 | * extraApply - Function(s) that will be applied. Default to None. |
| 334 | * arg - argument of the functon(s) of the extraApply. Should be in list. |
| 335 | * extraClean - extra Clean up process. Function(s) will be passed. |
| 336 | * skipPack - True if wish to skip some packing. |
| 337 | * installMax - True if wish to install onos max number of nodes |
| 338 | False if wish to install onos of running nodes only |
| 339 | * useSSH - True for using ssh when creating a cell |
| 340 | * killRemoveMax - True for removing/killing max number of nodes. False for |
| 341 | removing/killing running nodes only. |
| 342 | * stopOnos - True if wish to stop onos before killing it. |
| 343 | Returns: |
| 344 | Returns main.TRUE if it everything successfully proceeded. |
| 345 | """ |
| 346 | self.setNumCtrls( hasMultiNodeRounds ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 347 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 348 | main.case( "Starting up " + str( cluster.numCtrls ) + |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 349 | " node(s) ONOS cluster" ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 350 | main.caseExplanation = "Set up ONOS with " + str( cluster.numCtrls ) + \ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 351 | " node(s) ONOS cluster" |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 352 | killResult = self.killingAllOnos( cluster, killRemoveMax, stopOnos ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 353 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 354 | main.log.info( "NODE COUNT = " + str( cluster.numCtrls ) ) |
| 355 | cellResult = main.TRUE |
| 356 | packageResult = main.TRUE |
| 357 | onosUninstallResult = main.TRUE |
| 358 | onosCliResult = main.TRUE |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 359 | if not skipPack: |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 360 | tempOnosIp = [] |
| 361 | for ctrl in cluster.runningNodes: |
| 362 | tempOnosIp.append( ctrl.ipAddress ) |
| 363 | cellResult = self.createApplyCell( cluster, newCell, |
| 364 | cellName, Mininet, |
Devin Lim | e9f0ccf | 2017-08-11 17:25:12 -0700 | [diff] [blame] | 365 | useSSH, tempOnosIp, |
| 366 | installMax ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 367 | if removeLog: |
| 368 | main.log.info("Removing raft logs") |
| 369 | main.ONOSbench.onosRemoveRaftLogs() |
| 370 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 371 | onosUninstallResult = self.uninstallOnos( cluster, killRemoveMax ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 372 | |
| 373 | if extraApply is not None: |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 374 | if isinstance( extraApply, list ): |
| 375 | i = 0 |
| 376 | for apply in extraApply: |
| 377 | apply( *(arg[ i ]) ) if arg is not None \ |
| 378 | and arg[ i ] is not None else apply() |
| 379 | i += 1 |
| 380 | else: |
| 381 | extraApply( *arg ) if arg is not None else extraApply() |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 382 | |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 383 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 384 | packageResult = self.buildOnos( cluster ) |
| 385 | |
Devin Lim | e9f0ccf | 2017-08-11 17:25:12 -0700 | [diff] [blame] | 386 | onosInstallResult = self.installOnos( cluster, installMax, installParallel ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 387 | |
| 388 | if extraClean is not None: |
| 389 | extraClean() |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 390 | secureSshResult = self.setupSsh( cluster ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 391 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 392 | onosServiceResult = self.checkOnosService( cluster ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 393 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 394 | if startOnos: |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 395 | onosCliResult = self.startOnosClis( cluster ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 396 | |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 397 | return killResult and cellResult and packageResult and onosUninstallResult and \ |
Devin Lim | e9f0ccf | 2017-08-11 17:25:12 -0700 | [diff] [blame] | 398 | onosInstallResult and secureSshResult and onosServiceResult and onosCliResult |