blob: 9c901f7e6e66e8a27a9ecd430c895c3ec59fd8b4 [file] [log] [blame]
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -07001"""
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -07002Copyright 2015 Open Networking Foundation ( ONF )
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -07003
4Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>,
5the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>,
6or 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 Ronquillo23fb2162017-09-15 14:59:57 -070011 ( at your option ) any later version.
Jeremy Ronquillob27ce4c2017-07-17 12:41:28 -070012
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 zhang116647a2016-05-06 16:30:09 -070021# 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 Ronquillo23fb2162017-09-15 14:59:57 -070024
alison12f34c32016-06-10 14:39:21 -070025class SAMPstartTemplate_1node:
suibin zhang116647a2016-05-06 16:30:09 -070026
27 def __init__( self ):
28 self.default = ''
29
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -070030 def CASE0( self, main ):
31 """
alison12f34c32016-06-10 14:39:21 -070032 Pull specific ONOS branch, then Build ONOS on ONOS Bench.
suibin zhang116647a2016-05-06 16:30:09 -070033 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 Ronquillo23fb2162017-09-15 14:59:57 -070036 """
You Wang09b596b2018-01-10 10:42:38 -080037 from tests.dependencies.ONOSSetup import ONOSSetup
38 main.testSetUp = ONOSSetup()
Devin Lim58046fa2017-07-05 16:55:00 -070039 main.testSetUp.gitPulling()
You Wanga0f6ff62018-01-11 15:46:30 -080040 from tests.dependencies.Network import Network
41 main.Network = Network()
suibin zhang116647a2016-05-06 16:30:09 -070042
43 def CASE1( self, main ):
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -070044 """
suibin zhang116647a2016-05-06 16:30:09 -070045 Set up global test variables;
46 Uninstall all running cells in test env defined in .topo file
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -070047 """
Devin Lim58046fa2017-07-05 16:55:00 -070048 main.testSetUp.envSetupDescription()
49 stepResult = main.FALSE
50 try:
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -070051 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 Lim58046fa2017-07-05 16:55:00 -070055 stepResult = main.testSetUp.envSetup( includeGitPull=False )
56 except Exception as e:
57 main.testSetUp.envSetupException( e )
Jon Hallaa1d9b82020-07-30 13:49:42 -070058 main.testSetUp.envSetupConclusion( stepResult )
suibin zhang116647a2016-05-06 16:30:09 -070059
suibin zhang116647a2016-05-06 16:30:09 -070060 def CASE2( self, main ):
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -070061 """
suibin zhang116647a2016-05-06 16:30:09 -070062 Report errors/warnings/exceptions
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -070063 """
64 main.log.info( "Error report: \n" )
Devin Lim142b5342017-07-20 15:22:39 -070065 main.ONOSbench.logReport( main.Cluster.active( 0 ).ipAddress,
suibin zhang116647a2016-05-06 16:30:09 -070066 [ "INFO",
67 "FOLLOWER",
68 "WARN",
69 "flow",
70 "ERROR",
71 "Except" ],
72 "s" )
73
74 def CASE10( self, main ):
75 """
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -070076 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 zhang116647a2016-05-06 16:30:09 -070080 """
suibin zhang116647a2016-05-06 16:30:09 -070081 import time
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -070082 main.case( "Start up " + str( main.Cluster.numCtrls ) + "-node onos cluster." )
83 main.step( "Start ONOS cluster with basic (drivers) app." )
You Wangdbb95d62018-09-05 15:58:08 -070084 main.restartCluster = True if main.params[ 'CASE10' ][ 'restartCluster' ] == 'True' else False
85 stepResult = main.testSetUp.ONOSSetUp( main.Cluster, restartCluster=main.restartCluster )
suibin zhang116647a2016-05-06 16:30:09 -070086 utilities.assert_equals( expect=main.TRUE,
87 actual=stepResult,
88 onpass="Successfully started basic ONOS cluster ",
89 onfail="Failed to start basic ONOS Cluster " )
90
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -070091 main.step( "Activate onos apps." )
92 main.apps = main.params[ 'CASE10' ].get( 'Apps' )
Devin Lim58046fa2017-07-05 16:55:00 -070093 if main.apps:
94 main.log.info( "Apps to activate: " + main.apps )
suibin zhang116647a2016-05-06 16:30:09 -070095 activateResult = main.TRUE
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -070096 for a in main.apps.split( "," ):
Devin Lim142b5342017-07-20 15:22:39 -070097 activateResult = activateResult & main.Cluster.active( 0 ).CLI.activateApp( a )
suibin zhang116647a2016-05-06 16:30:09 -070098 # TODO: check this worked
99 time.sleep( main.onosCfgSleep ) # wait for apps to activate
100 else:
101 main.log.warn( "No configurations were specified to be changed after startup" )
102 utilities.assert_equals( expect=main.TRUE,
Devin Lim142b5342017-07-20 15:22:39 -0700103 actual=activateResult,
104 onpass="Successfully set config",
105 onfail="Failed to set config" )
suibin zhang116647a2016-05-06 16:30:09 -0700106
107 main.step( "Set ONOS configurations" )
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700108 config = main.params[ 'CASE10' ].get( 'ONOS_Configuration' )
suibin zhang116647a2016-05-06 16:30:09 -0700109 if config:
110 main.log.debug( config )
111 checkResult = main.TRUE
112 for component in config:
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700113 for setting in config[ component ]:
114 value = config[ component ][ setting ]
Devin Lim142b5342017-07-20 15:22:39 -0700115 check = main.Cluster.active( 0 ).CLI.setCfg( component, setting, value )
suibin zhang116647a2016-05-06 16:30:09 -0700116 main.log.info( "Value was changed? {}".format( main.TRUE == check ) )
117 checkResult = check and checkResult
118 utilities.assert_equals( expect=main.TRUE,
119 actual=checkResult,
120 onpass="Successfully set config",
121 onfail="Failed to set config" )
122 else:
123 main.log.warn( "No configurations were specified to be changed after startup" )
124
125 def CASE11( self, main ):
126 """
127 Start mininet and assign controllers
128 """
129 import time
130
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700131 topology = main.params[ 'CASE11' ][ 'topo' ]
suibin zhang116647a2016-05-06 16:30:09 -0700132 main.log.report( "Start Mininet topology" )
Jon Hall6509dbf2016-06-21 17:01:17 -0700133 main.case( "Start Mininet topology" )
suibin zhang116647a2016-05-06 16:30:09 -0700134
135 main.step( "Starting Mininet Topology" )
You Wanga0f6ff62018-01-11 15:46:30 -0800136 topoResult = main.Network.startNet( mnCmd=topology )
suibin zhang116647a2016-05-06 16:30:09 -0700137 stepResult = topoResult
138 utilities.assert_equals( expect=main.TRUE,
139 actual=stepResult,
140 onpass="Successfully loaded topology",
141 onfail="Failed to load topology" )
142 # Exit if topology did not load properly
143 if not topoResult:
Devin Lim44075962017-08-11 10:56:37 -0700144 main.cleanAndExit()
suibin zhang116647a2016-05-06 16:30:09 -0700145
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700146 main.step( "Assign switches to controllers." )
suibin zhang116647a2016-05-06 16:30:09 -0700147 assignResult = main.TRUE
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700148 for i in range( 1, 8 ):
Devin Lim142b5342017-07-20 15:22:39 -0700149 assignResult = assignResult & \
You Wanga0f6ff62018-01-11 15:46:30 -0800150 main.Network.assignSwController( sw="s" + str( i ),
Devin Lim142b5342017-07-20 15:22:39 -0700151 ip=main.Cluster.getIps(),
152 port='6653' )
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700153 time.sleep( main.mnCfgSleep )
suibin zhang116647a2016-05-06 16:30:09 -0700154 utilities.assert_equals( expect=main.TRUE,
155 actual=stepResult,
156 onpass="Successfully assign switches to controllers",
157 onfail="Failed to assign switches to controllers" )
158
suibin zhang116647a2016-05-06 16:30:09 -0700159 def CASE12( self, main ):
160 """
161 Tests using through ONOS CLI handles
162 """
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700163 main.case( "Test some onos commands through CLI. " )
164 main.log.debug( main.Cluster.active( 0 ).CLI.sendline( "summary" ) )
165 main.log.debug( main.Cluster.active( 0 ).CLI.sendline( "devices" ) )
suibin zhang116647a2016-05-06 16:30:09 -0700166
167 def CASE22( self, main ):
168 """
169 Tests using ONOS REST API handles
170 """
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700171 main.case( " Sample tests using ONOS REST API handles. " )
172 main.log.debug( main.Cluster.active( 0 ).REST.send( "/devices" ) )
Devin Lim142b5342017-07-20 15:22:39 -0700173 main.log.debug( main.Cluster.active( 0 ).REST.apps() )
alison12f34c32016-06-10 14:39:21 -0700174
175 def CASE32( self, main ):
176 """
177 Configure fwd app from .param json string with parameter configured.
178 Check if configuration successful
179 Run pingall to check connectivity
180 Check ONOS log for warning/error/exceptions
181 """
182 main.case( "Configure onos-app-fwd and check if configuration successful. " )
183 main.step( "Install reactive forwarding app." )
Devin Lim142b5342017-07-20 15:22:39 -0700184 installResults = main.Cluster.active( 0 ).CLI.activateApp( "org.onosproject.fwd" )
185 utilities.assert_equals( expect=main.TRUE,
186 actual=installResults,
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700187 onpass="Configure fwd successful",
Devin Lim142b5342017-07-20 15:22:39 -0700188 onfail="Configure fwd failed" )
alison12f34c32016-06-10 14:39:21 -0700189 main.step( "Run pingall to check connectivity. " )
190 pingResult = main.FALSE
191 passMsg = "Reactive Pingall test passed"
You Wanga0f6ff62018-01-11 15:46:30 -0800192 pingResult = main.Network.pingall()
alison12f34c32016-06-10 14:39:21 -0700193 if not pingResult:
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700194 main.log.warn( "First pingall failed. Trying again..." )
You Wanga0f6ff62018-01-11 15:46:30 -0800195 pingResult = main.Network.pingall()
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700196 passMsg += "on the second try"
Devin Lim142b5342017-07-20 15:22:39 -0700197 utilities.assert_equals( expect=main.TRUE,
198 actual=pingResult,
199 onpass=passMsg,
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700200 onfail="Reactive Pingall failed, " + "one or more ping pairs failed." )