blob: 3673622dbf8c2182e5740e56bdcf64bcd7ad1b7b [file] [log] [blame]
suibin zhang116647a2016-05-06 16:30:09 -07001
2# This is a sample template that starts up ONOS cluster, this template
3# can be use as a base script for ONOS System Testing.
4
alison12f34c32016-06-10 14:39:21 -07005class SAMPstartTemplate_3node:
suibin zhang116647a2016-05-06 16:30:09 -07006
7 def __init__( self ):
8 self.default = ''
9
10
11 def CASE0(self, main):
12 '''
alison12f34c32016-06-10 14:39:21 -070013 Pull specific ONOS branch, then Build ONOS on ONOS Bench.
suibin zhang116647a2016-05-06 16:30:09 -070014 This step is usually skipped. Because in a Jenkins driven automated
15 test env. We want Jenkins jobs to pull&build for flexibility to handle
16 different versions of ONOS.
17 '''
18 gitPull = main.params['CASE0']['gitPull']
19 gitBranch = main.params['CASE0']['gitBranch']
20
21 main.case("Pull onos branch and build onos on Teststation.")
22
23 if gitPull == 'True':
24 main.step( "Git Checkout ONOS branch: " + gitBranch)
25 stepResult = main.ONOSbench.gitCheckout( branch = gitBranch )
26 utilities.assert_equals( expect=main.TRUE,
27 actual=stepResult,
28 onpass="Successfully checkout onos branch.",
29 onfail="Failed to checkout onos branch. Exiting test..." )
30 if not stepResult: main.exit()
31
32 main.step( "Git Pull on ONOS branch:" + gitBranch)
33 stepResult = main.ONOSbench.gitPull( )
34 utilities.assert_equals( expect=main.TRUE,
35 actual=stepResult,
36 onpass="Successfully pull onos. ",
37 onfail="Failed to pull onos. Exiting test ..." )
38 if not stepResult: main.exit()
39
40 main.step( "Building ONOS branch: " + gitBranch )
41 stepResult = main.ONOSbench.cleanInstall( skipTest = True )
42 utilities.assert_equals( expect=main.TRUE,
43 actual=stepResult,
44 onpass="Successfully build onos.",
45 onfail="Failed to build onos. Exiting test..." )
46 if not stepResult: main.exit()
47
48 else:
49 main.log.warn( "Skipped pulling onos and Skipped building ONOS" )
50
51
52 def CASE1( self, main ):
53 '''
54 Set up global test variables;
55 Uninstall all running cells in test env defined in .topo file
56
57 '''
58
59 main.case( "Constructing global test variables and clean cluster env." )
60
61 main.step( "Constructing test variables" )
62 main.branch = main.ONOSbench.getBranchName()
63 main.log.info( "Running onos branch: " + main.branch )
64 main.commitNum = main.ONOSbench.getVersion().split(' ')[1]
65 main.log.info( "Running onos commit Number: " + main.commitNum)
66 main.nodeList = main.params['CASE1']['NodeList'].split(",")
67 main.onosStartupSleep = float( main.params['CASE1']['SleepTimers']['onosStartup'] )
68 main.onosCfgSleep = float( main.params['CASE1']['SleepTimers']['onosCfg'] )
69 main.mnStartupSleep = float( main.params['CASE1']['SleepTimers']['mnStartup'] )
70 main.mnCfgSleep = float( main.params['CASE1']['SleepTimers']['mnCfg'] )
You Wangc669d212017-01-25 11:09:48 -080071 main.numCtrls = int( main.params['CASE10']['numNodes'] )
72 main.AllONOSip = main.ONOSbench.getOnosIps()
73 main.ONOSip = []
74 for i in range( main.numCtrls ):
75 main.ONOSip.append( main.AllONOSip[i] )
suibin zhang116647a2016-05-06 16:30:09 -070076 utilities.assert_equals( expect=main.TRUE,
77 actual=main.TRUE,
78 onpass="Successfully construct " +
79 "test variables ",
80 onfail="Failed to construct test variables" )
81
suibin zhang116647a2016-05-06 16:30:09 -070082 def CASE2( self, main ):
83 '''
84 Report errors/warnings/exceptions
85 '''
86 main.log.info("Error report: \n" )
You Wangc669d212017-01-25 11:09:48 -080087 main.ONOSbench.logReport( main.ONOSip[0],
suibin zhang116647a2016-05-06 16:30:09 -070088 [ "INFO",
89 "FOLLOWER",
90 "WARN",
91 "flow",
92 "ERROR",
93 "Except" ],
94 "s" )
95
96 def CASE10( self, main ):
97 """
98 Start ONOS cluster (3 nodes in this example) in three steps:
99 1) start a basic cluster with drivers app via ONOSDriver;
100 2) activate apps via ONOSCliDriver;
101 3) configure onos via ONOSCliDriver;
102 """
103
104 import time
105
You Wangc669d212017-01-25 11:09:48 -0800106 main.case( "Start up " + str( main.numCtrls ) + "-node onos cluster.")
suibin zhang116647a2016-05-06 16:30:09 -0700107 main.step( "Start ONOS cluster with basic (drivers) app.")
You Wangc669d212017-01-25 11:09:48 -0800108 stepResult = main.ONOSbench.startBasicONOS( nodeList=main.ONOSip, opSleep=200 )
suibin zhang116647a2016-05-06 16:30:09 -0700109 utilities.assert_equals( expect=main.TRUE,
110 actual=stepResult,
111 onpass="Successfully started basic ONOS cluster ",
112 onfail="Failed to start basic ONOS Cluster " )
113
114 main.step( "Establishing Handles on ONOS CLIs.")
115 cliResult = main.TRUE
You Wangc669d212017-01-25 11:09:48 -0800116 for n in range( 1, main.numCtrls + 1 ):
suibin zhang116647a2016-05-06 16:30:09 -0700117 handle = "main.ONOScli" + str( n )
You Wangc669d212017-01-25 11:09:48 -0800118 cliResult = cliResult & ( eval( handle ).startOnosCli( main.ONOSip[ n-1 ] ) )
suibin zhang116647a2016-05-06 16:30:09 -0700119 utilities.assert_equals( expect=main.TRUE,
120 actual=cliResult,
121 onpass="Successfully started onos cli's ",
122 onfail="Failed to start onos cli's " )
123
124 main.step( "Activate onos apps.")
125 apps = main.params['CASE10'].get( 'Apps' )
126 if apps:
127 main.log.info( "Apps to activate: " + apps )
128 activateResult = main.TRUE
129 for a in apps.split(","):
130 activateResult = activateResult & main.ONOScli1.activateApp(a)
131 # TODO: check this worked
132 time.sleep( main.onosCfgSleep ) # wait for apps to activate
133 else:
134 main.log.warn( "No configurations were specified to be changed after startup" )
135 utilities.assert_equals( expect=main.TRUE,
136 actual=activateResult,
137 onpass="Successfully set config",
138 onfail="Failed to set config" )
139
140 main.step( "Set ONOS configurations" )
141 config = main.params['CASE10'].get( 'ONOS_Configuration' )
142 if config:
143 main.log.debug( config )
144 checkResult = main.TRUE
145 for component in config:
146 for setting in config[component]:
147 value = config[component][setting]
148 check = main.ONOScli1.setCfg( component, setting, value )
149 main.log.info( "Value was changed? {}".format( main.TRUE == check ) )
150 checkResult = check and checkResult
151 utilities.assert_equals( expect=main.TRUE,
152 actual=checkResult,
153 onpass="Successfully set config",
154 onfail="Failed to set config" )
155 else:
156 main.log.warn( "No configurations were specified to be changed after startup" )
157
158 def CASE11( self, main ):
159 """
160 Start mininet and assign controllers
161 """
162 import time
163
suibin zhang116647a2016-05-06 16:30:09 -0700164 topology = main.params['CASE11']['topo']
165 main.log.report( "Start Mininet topology" )
Jon Hall6509dbf2016-06-21 17:01:17 -0700166 main.case( "Start Mininet topology" )
suibin zhang116647a2016-05-06 16:30:09 -0700167
168 main.step( "Starting Mininet Topology" )
alison12f34c32016-06-10 14:39:21 -0700169 topoResult = main.Mininet1.startNet(mnCmd=topology )
suibin zhang116647a2016-05-06 16:30:09 -0700170 stepResult = topoResult
171 utilities.assert_equals( expect=main.TRUE,
172 actual=stepResult,
173 onpass="Successfully loaded topology",
174 onfail="Failed to load topology" )
175 # Exit if topology did not load properly
176 if not topoResult:
177 main.cleanup()
178 main.exit()
179
180 main.step( "Assign switches to controllers.")
181 assignResult = main.TRUE
suibin zhang116647a2016-05-06 16:30:09 -0700182 for i in range(1, 8):
183 assignResult = assignResult & main.Mininet1.assignSwController( sw="s" + str( i ),
You Wangc669d212017-01-25 11:09:48 -0800184 ip=main.ONOSip,
suibin zhang116647a2016-05-06 16:30:09 -0700185 port='6653' )
186 time.sleep(main.mnCfgSleep)
187 utilities.assert_equals( expect=main.TRUE,
188 actual=stepResult,
189 onpass="Successfully assign switches to controllers",
190 onfail="Failed to assign switches to controllers" )
191
192
193 def CASE12( self, main ):
194 """
195 Tests using through ONOS CLI handles
196 """
197
Jon Hall6509dbf2016-06-21 17:01:17 -0700198 main.case( "Test some onos commands through CLI. ")
suibin zhang116647a2016-05-06 16:30:09 -0700199 main.log.debug( main.ONOScli1.sendline("summary") )
200 main.log.debug( main.ONOScli3.sendline("devices") )
201
202 def CASE22( self, main ):
203 """
204 Tests using ONOS REST API handles
205 """
206
207 main.case( " Sample tests using ONOS REST API handles. ")
208 main.log.debug( main.ONOSrest1.send("/devices") )
suibin zhangc969ddd2016-05-23 12:01:52 -0700209 main.log.debug( main.ONOSrest2.apps() )
alison12f34c32016-06-10 14:39:21 -0700210
211 def CASE32( self, main ):
212 """
213 Configure fwd app from .params json string with parameter configured
214 Check if configuration successful
215 Run pingall to check connectivity
216 Check ONOS log for warning/error/exceptions
217 """
218 main.case( "Configure onos-app-fwd and check if configuration successful. " )
219 main.step( "Install reactive forwarding app." )
220 installResults = main.ONOScli1.activateApp( "org.onosproject.fwd" )
221 utilities.assert_equals( expect=main.TRUE, actual=installResults,
222 onpass= "Configure fwd successful", onfail= "Configure fwd failed" )
223 main.step( "Run pingall to check connectivity. " )
224 pingResult = main.FALSE
225 passMsg = "Reactive Pingall test passed"
226 pingResult = main.Mininet1.pingall()
227 if not pingResult:
228 main.log.warn("First pingall failed. Trying again...")
229 pingResult = main.Mininet1.pingall()
230 passMsg += "on the second try"
231 utilities.assert_equals( expect=main.TRUE, actual=pingResult, onpass=passMsg, onfail= "Reactive Pingall failed, " + "one or more ping pairs failed" )