Jeremy Ronquillo | b27ce4c | 2017-07-17 12:41:28 -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 | """ |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 21 | # This is a sample template that starts up ONOS cluster, this template |
| 22 | # can be use as a base script for ONOS System Testing. |
| 23 | |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 24 | |
alison | 12f34c3 | 2016-06-10 14:39:21 -0700 | [diff] [blame] | 25 | class SAMPstartTemplate_1node: |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 26 | |
| 27 | def __init__( self ): |
| 28 | self.default = '' |
| 29 | |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 30 | def CASE0( self, main ): |
| 31 | """ |
alison | 12f34c3 | 2016-06-10 14:39:21 -0700 | [diff] [blame] | 32 | Pull specific ONOS branch, then Build ONOS on ONOS Bench. |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 33 | This step is usually skipped. Because in a Jenkins driven automated |
| 34 | test env. We want Jenkins jobs to pull&build for flexibility to handle |
| 35 | different versions of ONOS. |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 36 | """ |
You Wang | 09b596b | 2018-01-10 10:42:38 -0800 | [diff] [blame] | 37 | from tests.dependencies.ONOSSetup import ONOSSetup |
| 38 | main.testSetUp = ONOSSetup() |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 39 | main.testSetUp.gitPulling() |
You Wang | a0f6ff6 | 2018-01-11 15:46:30 -0800 | [diff] [blame] | 40 | from tests.dependencies.Network import Network |
| 41 | main.Network = Network() |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 42 | |
| 43 | def CASE1( self, main ): |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 44 | """ |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 45 | Set up global test variables; |
| 46 | Uninstall all running cells in test env defined in .topo file |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 47 | """ |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 48 | main.testSetUp.envSetupDescription() |
| 49 | stepResult = main.FALSE |
| 50 | try: |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 51 | main.onosStartupSleep = float( main.params[ 'CASE1' ][ 'SleepTimers' ][ 'onosStartup' ] ) |
| 52 | main.onosCfgSleep = float( main.params[ 'CASE1' ][ 'SleepTimers' ][ 'onosCfg' ] ) |
| 53 | main.mnStartupSleep = float( main.params[ 'CASE1' ][ 'SleepTimers' ][ 'mnStartup' ] ) |
| 54 | main.mnCfgSleep = float( main.params[ 'CASE1' ][ 'SleepTimers' ][ 'mnCfg' ] ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 55 | stepResult = main.testSetUp.envSetup( includeGitPull=False ) |
| 56 | except Exception as e: |
| 57 | main.testSetUp.envSetupException( e ) |
| 58 | main.testSetUp.evnSetupConclusion( stepResult ) |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 59 | |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 60 | def CASE2( self, main ): |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 61 | """ |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 62 | Report errors/warnings/exceptions |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 63 | """ |
| 64 | main.log.info( "Error report: \n" ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 65 | main.ONOSbench.logReport( main.Cluster.active( 0 ).ipAddress, |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 66 | [ "INFO", |
| 67 | "FOLLOWER", |
| 68 | "WARN", |
| 69 | "flow", |
| 70 | "ERROR", |
| 71 | "Except" ], |
| 72 | "s" ) |
| 73 | |
| 74 | def CASE10( self, main ): |
| 75 | """ |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 76 | Start ONOS cluster ( 1 node in this example ) in three steps: |
| 77 | 1 ) start a basic cluster with drivers app via ONOSDriver; |
| 78 | 2 ) activate apps via ONOSCliDriver; |
| 79 | 3 ) configure onos via ONOSCliDriver; |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 80 | """ |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 81 | import time |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 82 | main.case( "Start up " + str( main.Cluster.numCtrls ) + "-node onos cluster." ) |
| 83 | main.step( "Start ONOS cluster with basic (drivers) app." ) |
You Wang | a0f6ff6 | 2018-01-11 15:46:30 -0800 | [diff] [blame] | 84 | stepResult = main.testSetUp.ONOSSetUp( main.Cluster ) |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 85 | utilities.assert_equals( expect=main.TRUE, |
| 86 | actual=stepResult, |
| 87 | onpass="Successfully started basic ONOS cluster ", |
| 88 | onfail="Failed to start basic ONOS Cluster " ) |
| 89 | |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 90 | main.step( "Activate onos apps." ) |
| 91 | main.apps = main.params[ 'CASE10' ].get( 'Apps' ) |
Devin Lim | 58046fa | 2017-07-05 16:55:00 -0700 | [diff] [blame] | 92 | if main.apps: |
| 93 | main.log.info( "Apps to activate: " + main.apps ) |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 94 | activateResult = main.TRUE |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 95 | for a in main.apps.split( "," ): |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 96 | activateResult = activateResult & main.Cluster.active( 0 ).CLI.activateApp( a ) |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 97 | # TODO: check this worked |
| 98 | time.sleep( main.onosCfgSleep ) # wait for apps to activate |
| 99 | else: |
| 100 | main.log.warn( "No configurations were specified to be changed after startup" ) |
| 101 | utilities.assert_equals( expect=main.TRUE, |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 102 | actual=activateResult, |
| 103 | onpass="Successfully set config", |
| 104 | onfail="Failed to set config" ) |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 105 | |
| 106 | main.step( "Set ONOS configurations" ) |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 107 | config = main.params[ 'CASE10' ].get( 'ONOS_Configuration' ) |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 108 | if config: |
| 109 | main.log.debug( config ) |
| 110 | checkResult = main.TRUE |
| 111 | for component in config: |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 112 | for setting in config[ component ]: |
| 113 | value = config[ component ][ setting ] |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 114 | check = main.Cluster.active( 0 ).CLI.setCfg( component, setting, value ) |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 115 | main.log.info( "Value was changed? {}".format( main.TRUE == check ) ) |
| 116 | checkResult = check and checkResult |
| 117 | utilities.assert_equals( expect=main.TRUE, |
| 118 | actual=checkResult, |
| 119 | onpass="Successfully set config", |
| 120 | onfail="Failed to set config" ) |
| 121 | else: |
| 122 | main.log.warn( "No configurations were specified to be changed after startup" ) |
| 123 | |
| 124 | def CASE11( self, main ): |
| 125 | """ |
| 126 | Start mininet and assign controllers |
| 127 | """ |
| 128 | import time |
| 129 | |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 130 | topology = main.params[ 'CASE11' ][ 'topo' ] |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 131 | main.log.report( "Start Mininet topology" ) |
Jon Hall | 6509dbf | 2016-06-21 17:01:17 -0700 | [diff] [blame] | 132 | main.case( "Start Mininet topology" ) |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 133 | |
| 134 | main.step( "Starting Mininet Topology" ) |
You Wang | a0f6ff6 | 2018-01-11 15:46:30 -0800 | [diff] [blame] | 135 | topoResult = main.Network.startNet( mnCmd=topology ) |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 136 | stepResult = topoResult |
| 137 | utilities.assert_equals( expect=main.TRUE, |
| 138 | actual=stepResult, |
| 139 | onpass="Successfully loaded topology", |
| 140 | onfail="Failed to load topology" ) |
| 141 | # Exit if topology did not load properly |
| 142 | if not topoResult: |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 143 | main.cleanAndExit() |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 144 | |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 145 | main.step( "Assign switches to controllers." ) |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 146 | assignResult = main.TRUE |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 147 | for i in range( 1, 8 ): |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 148 | assignResult = assignResult & \ |
You Wang | a0f6ff6 | 2018-01-11 15:46:30 -0800 | [diff] [blame] | 149 | main.Network.assignSwController( sw="s" + str( i ), |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 150 | ip=main.Cluster.getIps(), |
| 151 | port='6653' ) |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 152 | time.sleep( main.mnCfgSleep ) |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 153 | utilities.assert_equals( expect=main.TRUE, |
| 154 | actual=stepResult, |
| 155 | onpass="Successfully assign switches to controllers", |
| 156 | onfail="Failed to assign switches to controllers" ) |
| 157 | |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 158 | def CASE12( self, main ): |
| 159 | """ |
| 160 | Tests using through ONOS CLI handles |
| 161 | """ |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 162 | main.case( "Test some onos commands through CLI. " ) |
| 163 | main.log.debug( main.Cluster.active( 0 ).CLI.sendline( "summary" ) ) |
| 164 | main.log.debug( main.Cluster.active( 0 ).CLI.sendline( "devices" ) ) |
suibin zhang | 116647a | 2016-05-06 16:30:09 -0700 | [diff] [blame] | 165 | |
| 166 | def CASE22( self, main ): |
| 167 | """ |
| 168 | Tests using ONOS REST API handles |
| 169 | """ |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 170 | main.case( " Sample tests using ONOS REST API handles. " ) |
| 171 | main.log.debug( main.Cluster.active( 0 ).REST.send( "/devices" ) ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 172 | main.log.debug( main.Cluster.active( 0 ).REST.apps() ) |
alison | 12f34c3 | 2016-06-10 14:39:21 -0700 | [diff] [blame] | 173 | |
| 174 | def CASE32( self, main ): |
| 175 | """ |
| 176 | Configure fwd app from .param json string with parameter configured. |
| 177 | Check if configuration successful |
| 178 | Run pingall to check connectivity |
| 179 | Check ONOS log for warning/error/exceptions |
| 180 | """ |
| 181 | main.case( "Configure onos-app-fwd and check if configuration successful. " ) |
| 182 | main.step( "Install reactive forwarding app." ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 183 | installResults = main.Cluster.active( 0 ).CLI.activateApp( "org.onosproject.fwd" ) |
| 184 | utilities.assert_equals( expect=main.TRUE, |
| 185 | actual=installResults, |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 186 | onpass="Configure fwd successful", |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 187 | onfail="Configure fwd failed" ) |
alison | 12f34c3 | 2016-06-10 14:39:21 -0700 | [diff] [blame] | 188 | main.step( "Run pingall to check connectivity. " ) |
| 189 | pingResult = main.FALSE |
| 190 | passMsg = "Reactive Pingall test passed" |
You Wang | a0f6ff6 | 2018-01-11 15:46:30 -0800 | [diff] [blame] | 191 | pingResult = main.Network.pingall() |
alison | 12f34c3 | 2016-06-10 14:39:21 -0700 | [diff] [blame] | 192 | if not pingResult: |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 193 | main.log.warn( "First pingall failed. Trying again..." ) |
You Wang | a0f6ff6 | 2018-01-11 15:46:30 -0800 | [diff] [blame] | 194 | pingResult = main.Network.pingall() |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 195 | passMsg += "on the second try" |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 196 | utilities.assert_equals( expect=main.TRUE, |
| 197 | actual=pingResult, |
| 198 | onpass=passMsg, |
Jeremy Ronquillo | 23fb216 | 2017-09-15 14:59:57 -0700 | [diff] [blame] | 199 | onfail="Reactive Pingall failed, " + "one or more ping pairs failed." ) |