blob: 4fb94c9ffc5e2083b25cc7788120646887707718 [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 )
58 main.testSetUp.evnSetupConclusion( 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 Wanga0f6ff62018-01-11 15:46:30 -080084 stepResult = main.testSetUp.ONOSSetUp( main.Cluster )
suibin zhang116647a2016-05-06 16:30:09 -070085 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 Ronquillo23fb2162017-09-15 14:59:57 -070090 main.step( "Activate onos apps." )
91 main.apps = main.params[ 'CASE10' ].get( 'Apps' )
Devin Lim58046fa2017-07-05 16:55:00 -070092 if main.apps:
93 main.log.info( "Apps to activate: " + main.apps )
suibin zhang116647a2016-05-06 16:30:09 -070094 activateResult = main.TRUE
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -070095 for a in main.apps.split( "," ):
Devin Lim142b5342017-07-20 15:22:39 -070096 activateResult = activateResult & main.Cluster.active( 0 ).CLI.activateApp( a )
suibin zhang116647a2016-05-06 16:30:09 -070097 # 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 Lim142b5342017-07-20 15:22:39 -0700102 actual=activateResult,
103 onpass="Successfully set config",
104 onfail="Failed to set config" )
suibin zhang116647a2016-05-06 16:30:09 -0700105
106 main.step( "Set ONOS configurations" )
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700107 config = main.params[ 'CASE10' ].get( 'ONOS_Configuration' )
suibin zhang116647a2016-05-06 16:30:09 -0700108 if config:
109 main.log.debug( config )
110 checkResult = main.TRUE
111 for component in config:
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700112 for setting in config[ component ]:
113 value = config[ component ][ setting ]
Devin Lim142b5342017-07-20 15:22:39 -0700114 check = main.Cluster.active( 0 ).CLI.setCfg( component, setting, value )
suibin zhang116647a2016-05-06 16:30:09 -0700115 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 Ronquillo23fb2162017-09-15 14:59:57 -0700130 topology = main.params[ 'CASE11' ][ 'topo' ]
suibin zhang116647a2016-05-06 16:30:09 -0700131 main.log.report( "Start Mininet topology" )
Jon Hall6509dbf2016-06-21 17:01:17 -0700132 main.case( "Start Mininet topology" )
suibin zhang116647a2016-05-06 16:30:09 -0700133
134 main.step( "Starting Mininet Topology" )
You Wanga0f6ff62018-01-11 15:46:30 -0800135 topoResult = main.Network.startNet( mnCmd=topology )
suibin zhang116647a2016-05-06 16:30:09 -0700136 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 Lim44075962017-08-11 10:56:37 -0700143 main.cleanAndExit()
suibin zhang116647a2016-05-06 16:30:09 -0700144
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700145 main.step( "Assign switches to controllers." )
suibin zhang116647a2016-05-06 16:30:09 -0700146 assignResult = main.TRUE
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700147 for i in range( 1, 8 ):
Devin Lim142b5342017-07-20 15:22:39 -0700148 assignResult = assignResult & \
You Wanga0f6ff62018-01-11 15:46:30 -0800149 main.Network.assignSwController( sw="s" + str( i ),
Devin Lim142b5342017-07-20 15:22:39 -0700150 ip=main.Cluster.getIps(),
151 port='6653' )
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700152 time.sleep( main.mnCfgSleep )
suibin zhang116647a2016-05-06 16:30:09 -0700153 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 zhang116647a2016-05-06 16:30:09 -0700158 def CASE12( self, main ):
159 """
160 Tests using through ONOS CLI handles
161 """
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700162 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 zhang116647a2016-05-06 16:30:09 -0700165
166 def CASE22( self, main ):
167 """
168 Tests using ONOS REST API handles
169 """
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700170 main.case( " Sample tests using ONOS REST API handles. " )
171 main.log.debug( main.Cluster.active( 0 ).REST.send( "/devices" ) )
Devin Lim142b5342017-07-20 15:22:39 -0700172 main.log.debug( main.Cluster.active( 0 ).REST.apps() )
alison12f34c32016-06-10 14:39:21 -0700173
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 Lim142b5342017-07-20 15:22:39 -0700183 installResults = main.Cluster.active( 0 ).CLI.activateApp( "org.onosproject.fwd" )
184 utilities.assert_equals( expect=main.TRUE,
185 actual=installResults,
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700186 onpass="Configure fwd successful",
Devin Lim142b5342017-07-20 15:22:39 -0700187 onfail="Configure fwd failed" )
alison12f34c32016-06-10 14:39:21 -0700188 main.step( "Run pingall to check connectivity. " )
189 pingResult = main.FALSE
190 passMsg = "Reactive Pingall test passed"
You Wanga0f6ff62018-01-11 15:46:30 -0800191 pingResult = main.Network.pingall()
alison12f34c32016-06-10 14:39:21 -0700192 if not pingResult:
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700193 main.log.warn( "First pingall failed. Trying again..." )
You Wanga0f6ff62018-01-11 15:46:30 -0800194 pingResult = main.Network.pingall()
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700195 passMsg += "on the second try"
Devin Lim142b5342017-07-20 15:22:39 -0700196 utilities.assert_equals( expect=main.TRUE,
197 actual=pingResult,
198 onpass=passMsg,
Jeremy Ronquillo23fb2162017-09-15 14:59:57 -0700199 onfail="Reactive Pingall failed, " + "one or more ping pairs failed." )