blob: 84fa15e62fbb86b94a4644a1cf681169876523fa [file] [log] [blame]
Devin Lim90803a82017-08-29 13:41:44 -07001#!groovy
Devin Lim61643762017-12-07 15:55:38 -08002
Devin Lim81ab48b2018-02-09 14:24:57 -08003funcs = evaluate readTrusted( 'TestON/JenkinsFile/JenkinsCommonFuncs.groovy' )
Jeremy Ronquillo14ecc172018-03-05 09:57:17 -08004test_lists = evaluate readTrusted( 'TestON/JenkinsFile/JenkinsTestONTests.groovy' )
5
Devin Lim61643762017-12-07 15:55:38 -08006previous_version = "1.12"
7before_previous_version = "1.11"
Jeremy Ronquillo14ecc172018-03-05 09:57:17 -08008funcs.initializeTrend( "VM" );
9
Devin Lim90803a82017-08-29 13:41:44 -070010testcases = [
Devin Lim61643762017-12-07 15:55:38 -080011 "FUNC" : [ tests : "" , nodeName : "VM" ],
12 "HA" : [ tests : "" , nodeName : "VM" ],
13 "SR" : [ tests : "", nodeName : "VM" ],
14 "SCPF" : [ tests : "" , nodeName : "BM" ],
15 "USECASE" : [ tests : "" , nodeName : "BM" ]
Devin Lim90803a82017-08-29 13:41:44 -070016]
17Prefix_organizer = [
18 "FU" : "FUNC",
19 "HA" : "HA",
20 "PL" : "USECASE",
21 "SA" : "USECASE",
22 "SC" : "SCPF",
Devin Lim61643762017-12-07 15:55:38 -080023 "SR" : "SR",
Devin Lim90803a82017-08-29 13:41:44 -070024 "US" : "USECASE",
25 "VP" : "USECASE"
26]
27
Jeremy Ronquillocdd177d2018-03-09 16:55:44 -080028manually_run = params.manual_run
Devin Lim61643762017-12-07 15:55:38 -080029onos_b = "master"
Devin Lim0e967162017-11-03 15:59:53 -070030test_branch = ""
Devin Lima0e52eb2017-09-13 18:35:12 -070031onos_tag = params.ONOSTag
Devin Lim61643762017-12-07 15:55:38 -080032isOldFlow = true
Jeremy Ronquillo14ecc172018-03-05 09:57:17 -080033
Devin Lim90803a82017-08-29 13:41:44 -070034// Set tests based on day of week
Devin Limd1fb8e92018-02-28 16:29:33 -080035def now = funcs.getCurrentTime()
36print now.toString()
Devin Lim61643762017-12-07 15:55:38 -080037today = now[ Calendar.DAY_OF_WEEK ]
Jeremy Ronquillo14ecc172018-03-05 09:57:17 -080038
Jeremy Ronquillocdd177d2018-03-09 16:55:44 -080039if ( manually_run ){
40 onos_b = params.ONOSVersion
41} else {
42 if ( today == Calendar.SATURDAY ){
43 onos_b = previous_version
44 } else if( today == Calendar.SUNDAY ){
45 onos_b = before_previous_version
46 }
Jeremy Ronquillo14ecc172018-03-05 09:57:17 -080047}
48AllTheTests = test_lists.getAllTheTests( onos_b )
49
Devin Lim90803a82017-08-29 13:41:44 -070050day = ""
Devin Lim61657e42017-10-09 17:24:40 -070051SCPF_choices = ""
Devin Lim90803a82017-08-29 13:41:44 -070052USECASE_choices = ""
Devin Lim61657e42017-10-09 17:24:40 -070053FUNC_choices = ""
54HA_choices = ""
Devin Lim61643762017-12-07 15:55:38 -080055SR_choices = ""
56stat_graph_generator_file = "testCategoryBuildStats.R"
57pie_graph_generator_file = "testCategoryPiePassFail.R"
58graph_saved_directory = "/var/jenkins/workspace/postjob-VM/"
Devin Lim90803a82017-08-29 13:41:44 -070059
Devin Lim90803a82017-08-29 13:41:44 -070060post_result = params.PostResult
Devin Lim61657e42017-10-09 17:24:40 -070061if( !manually_run ){
Devin Lim61643762017-12-07 15:55:38 -080062 slackSend( color:'#03CD9F',
63 message:":sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles:\n"
64 + "Starting tests on : " + now.toString()
65 + "\n:sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles::sparkles:" )
Devin Lim61657e42017-10-09 17:24:40 -070066 testDivider( today )
67 FUNC_choices = lastCommaRemover( FUNC_choices )
68 HA_choices = lastCommaRemover( HA_choices )
69 SCPF_choices = lastCommaRemover( SCPF_choices )
70 USECASE_choices = lastCommaRemover( USECASE_choices )
Devin Lim61643762017-12-07 15:55:38 -080071 SR_choices = lastCommaRemover( SR_choices )
Devin Lim61657e42017-10-09 17:24:40 -070072}
73
Devin Lim90803a82017-08-29 13:41:44 -070074if ( manually_run ){
75 organize_tests( params.Tests )
Jeremy Ronquillocdd177d2018-03-09 16:55:44 -080076
Devin Lim0e967162017-11-03 15:59:53 -070077 isOldFlow = params.isOldFlow
Devin Lim90803a82017-08-29 13:41:44 -070078 println "Tests to be run manually : "
79}else{
Devin Lim61643762017-12-07 15:55:38 -080080 testcases[ "SCPF" ][ "tests" ] = SCPF_choices
81 testcases[ "USECASE" ][ "tests" ] = USECASE_choices
82 testcases[ "FUNC" ][ "tests" ] = FUNC_choices
83 testcases[ "HA" ][ "tests" ] = HA_choices
84 testcases[ "SR" ][ "tests" ] = SR_choices
Devin Lim90803a82017-08-29 13:41:44 -070085 println "Defaulting to " + day + " tests:"
86}
Jeremy Ronquillo14ecc172018-03-05 09:57:17 -080087
Devin Lim90803a82017-08-29 13:41:44 -070088print_tests( testcases )
Jeremy Ronquillo14ecc172018-03-05 09:57:17 -080089
Devin Lim37a83792017-10-26 16:38:21 -070090def runTest = [
91 "VM" : [:],
92 "BM" : [:]
93]
94for( String test in testcases.keySet() ){
95 println test
Devin Lim61643762017-12-07 15:55:38 -080096 if ( testcases[ test ][ "tests" ] != "" ){
97 runTest[ testcases[ test ][ "nodeName" ] ][ test ] = trigger_pipeline( onos_b, testcases[ test ][ "tests" ], testcases[ test ][ "nodeName" ], test, manually_run, onos_tag )
Devin Lim37a83792017-10-26 16:38:21 -070098 }
99}
100def finalList = [:]
Devin Lim61643762017-12-07 15:55:38 -0800101finalList[ "VM" ] = runTestSeq( runTest[ "VM" ] )
102finalList[ "BM" ] = runTestSeq( runTest[ "BM" ] )
Devin Lim37a83792017-10-26 16:38:21 -0700103parallel finalList
Devin Lim61643762017-12-07 15:55:38 -0800104//finalList[ "BM" ].call()
Jeremy Ronquillo14ecc172018-03-05 09:57:17 -0800105
106if ( !manually_run ){
107 funcs.generateStatGraph( onos_b, AllTheTests, stat_graph_generator_file, pie_graph_generator_file, graph_saved_directory )
108}
Devin Lim90803a82017-08-29 13:41:44 -0700109
Devin Lim61657e42017-10-09 17:24:40 -0700110def testDivider( today ){
Devin Lim61643762017-12-07 15:55:38 -0800111 switch ( today ) {
Devin Lim61657e42017-10-09 17:24:40 -0700112 case Calendar.MONDAY:
113 monday( true )
114 tuesday( true, false )
115 wednesday( true, false )
116 thursday( true, false )
117 friday( true, false )
118 day = "Monday"
Devin Lim61643762017-12-07 15:55:38 -0800119 slackSend( color:'#FFD988', message:"Tests to be run this weekdays : \n" + printDaysForTest() )
Devin Lim61657e42017-10-09 17:24:40 -0700120 break
121 case Calendar.TUESDAY:
122 tuesday( true, true )
123 day = "Tuesday"
124 break
125 case Calendar.WEDNESDAY:
126 wednesday( true, true )
127 day = "Wednesday"
128 break
129 case Calendar.THURSDAY:
Devin Lim0e967162017-11-03 15:59:53 -0700130 thursday( true, true )
Devin Lim61657e42017-10-09 17:24:40 -0700131 day = "Thursday"
Devin Lim61643762017-12-07 15:55:38 -0800132 isOldFlow = false
Devin Lim61657e42017-10-09 17:24:40 -0700133 break
134 case Calendar.FRIDAY:
Devin Lim0e967162017-11-03 15:59:53 -0700135 friday( true, true )
Devin Lim61657e42017-10-09 17:24:40 -0700136 day = "Friday"
Devin Lim61643762017-12-07 15:55:38 -0800137 isOldFlow = false
Devin Lim61657e42017-10-09 17:24:40 -0700138 break
139 case Calendar.SATURDAY:
140 saturday()
Devin Lim61657e42017-10-09 17:24:40 -0700141 day = "Saturday"
142 break
143 case Calendar.SUNDAY:
144 sunday()
Devin Lim61657e42017-10-09 17:24:40 -0700145 day = "Sunday"
Devin Lim61643762017-12-07 15:55:38 -0800146 isOldFlow = false
Devin Lim61657e42017-10-09 17:24:40 -0700147 break
148 }
149}
150def printDaysForTest(){
151 result = ""
152 for ( String test in AllTheTests.keySet() ){
153 result += test + " : \n"
154 for( String each in AllTheTests[ test ].keySet() ){
155 AllTheTests[ test ][ each ][ "day" ] = lastCommaRemover( AllTheTests[ test ][ each ][ "day" ] )
156 result += " " + each + ":[" + AllTheTests[ test ][ each ][ "day" ] + "]\n"
157 }
158 result += "\n"
159 }
160 return result
161}
162def lastCommaRemover( str ){
163 if ( str.size() > 0 && str[ str.size() - 1 ] == ',' ){
164 str = str.substring( 0,str.size() - 1 )
165 }
166 return str
167}
168def monday( getResult ){
169 FUNC_choices += adder( "FUNC", "basic", true, "M", getResult )
Devin Lim3ebd5e72017-11-14 10:38:00 -0800170 FUNC_choices += adder( "FUNC", "new_Test", true, "M", getResult )
Devin Lim61657e42017-10-09 17:24:40 -0700171 FUNC_choices += adder( "FUNC", "extra_A", true, "M", getResult )
172 HA_choices += adder( "HA", "basic", true, "M", getResult )
173 HA_choices += adder( "HA", "extra_A", true, "M", getResult )
Devin Lim61643762017-12-07 15:55:38 -0800174 //HA_choices += adder( "HA", "new_Test", true, "M", getResult )
175 SR_choices += adder( "SR", "basic", true, "M", getResult )
Devin Lim61657e42017-10-09 17:24:40 -0700176 SCPF_choices += adder( "SCPF", "basic", true, "M", getResult )
177 SCPF_choices += adder( "SCPF", "extra_B", true, "M", getResult )
178}
179def tuesday( getDay, getResult ){
180 FUNC_choices += adder( "FUNC", "basic", getDay, "T", getResult )
Devin Lim3ebd5e72017-11-14 10:38:00 -0800181 FUNC_choices += adder( "FUNC", "new_Test", getDay, "T", getResult )
Devin Lim61657e42017-10-09 17:24:40 -0700182 FUNC_choices += adder( "FUNC", "extra_B", getDay, "T", getResult )
183 HA_choices += adder( "HA", "basic", getDay, "T", getResult )
184 HA_choices += adder( "HA", "extra_B", getDay, "T", getResult )
Devin Lim61643762017-12-07 15:55:38 -0800185 HA_choices += adder( "HA", "new_Test", getDay, "T", getResult )
186 SR_choices += adder( "SR", "basic", getDay, "T", getResult )
Devin Lim61657e42017-10-09 17:24:40 -0700187 SCPF_choices += adder( "SCPF", "basic", getDay, "T", getResult )
188 SCPF_choices += adder( "SCPF", "extra_C", getDay, "T", getResult )
189 USECASE_choices += adder( "USECASE", "basic", getDay, "T", getResult )
190 USECASE_choices += adder( "USECASE", "extra_A", getDay, "T", getResult )
191 USECASE_choices += adder( "USECASE", "new_Test", getDay, "T", getResult )
192}
193def wednesday( getDay, getResult ){
194 FUNC_choices += adder( "FUNC", "basic", getDay, "W", getResult )
Devin Lim3ebd5e72017-11-14 10:38:00 -0800195 FUNC_choices += adder( "FUNC", "new_Test", getDay, "W", getResult )
Devin Lim61657e42017-10-09 17:24:40 -0700196 FUNC_choices += adder( "FUNC", "extra_A", getDay, "W", getResult )
197 HA_choices += adder( "HA", "basic", getDay, "W", getResult )
198 HA_choices += adder( "HA", "extra_A", getDay, "W", getResult )
Devin Lim61643762017-12-07 15:55:38 -0800199 //HA_choices += adder( "HA", "new_Test", getDay, "W", getResult )
200 SR_choices += adder( "SR", "basic", getDay, "W", getResult )
Devin Lim61657e42017-10-09 17:24:40 -0700201 SCPF_choices += adder( "SCPF", "basic", getDay, "W", getResult )
202 SCPF_choices += adder( "SCPF", "extra_A", getDay, "W", getResult )
203 SCPF_choices += adder( "SCPF", "new_Test", getDay, "W", getResult )
204}
205def thursday( getDay, getResult ){
206 FUNC_choices += adder( "FUNC", "basic", getDay, "Th", getResult )
Devin Lim3ebd5e72017-11-14 10:38:00 -0800207 FUNC_choices += adder( "FUNC", "new_Test", getDay, "Th", getResult )
Devin Lim61657e42017-10-09 17:24:40 -0700208 FUNC_choices += adder( "FUNC", "extra_B", getDay, "Th", getResult )
209 HA_choices += adder( "HA", "basic", getDay, "Th", getResult )
210 HA_choices += adder( "HA", "extra_B", getDay, "Th", getResult )
Devin Lim61643762017-12-07 15:55:38 -0800211 HA_choices += adder( "HA", "new_Test", getDay, "Th", getResult )
212 SR_choices += adder( "SR", "basic", getDay, "Th", getResult )
Devin Lim61657e42017-10-09 17:24:40 -0700213 SCPF_choices += adder( "SCPF", "basic", getDay, "Th", getResult )
214 SCPF_choices += adder( "SCPF", "extra_B", getDay, "Th", getResult )
215}
216def friday( getDay, getResult ){
217 FUNC_choices += adder( "FUNC", "basic", getDay, "F", getResult )
Devin Lim3ebd5e72017-11-14 10:38:00 -0800218 FUNC_choices += adder( "FUNC", "new_Test", getDay, "F", getResult )
Devin Lim61657e42017-10-09 17:24:40 -0700219 FUNC_choices += adder( "FUNC", "extra_A", getDay, "F", getResult )
220 HA_choices += adder( "HA", "basic", getDay, "F", getResult )
221 HA_choices += adder( "HA", "extra_A", getDay, "F", getResult )
Devin Lim61643762017-12-07 15:55:38 -0800222 //HA_choices += adder( "HA", "new_Test", getDay, "F", getResult )
223 SR_choices += adder( "SR", "basic", getDay, "F", getResult )
Devin Lim61657e42017-10-09 17:24:40 -0700224 SCPF_choices += adder( "SCPF", "basic", getDay, "F", getResult )
225 SCPF_choices += adder( "SCPF", "extra_A", getDay, "F", getResult )
226 SCPF_choices += adder( "SCPF", "extra_D", getDay, "F", getResult )
227}
228def saturday(){
229 FUNC_choices += adder( "FUNC", "basic", false, "Sa", true )
230 FUNC_choices += adder( "FUNC", "extra_A", false, "Sa", true )
231 FUNC_choices += adder( "FUNC", "extra_B", false, "Sa", true )
Devin Lim61643762017-12-07 15:55:38 -0800232 FUNC_choices += adder( "FUNC", "new_Test", true, "Sa", true )
Devin Lim61657e42017-10-09 17:24:40 -0700233 HA_choices += adder( "HA", "basic", false, "Sa", true )
234 HA_choices += adder( "HA", "extra_A", false, "Sa", true )
235 HA_choices += adder( "HA", "extra_B", false, "Sa", true )
Devin Lim61643762017-12-07 15:55:38 -0800236 HA_choices += adder( "HA", "new_Test", false, "Sa", true )
237 SR_choices += adder( "SR", "basic", false, "Sa", true )
Devin Lim61657e42017-10-09 17:24:40 -0700238 SCPF_choices += adder( "SCPF", "basic", false, "Sa", true )
239 SCPF_choices += adder( "SCPF", "extra_A", false, "Sa", true )
240 SCPF_choices += adder( "SCPF", "extra_B", false, "Sa", true )
241 SCPF_choices += adder( "SCPF", "extra_C", false, "Sa", true )
242 SCPF_choices += adder( "SCPF", "extra_D", false, "Sa", true )
243 SCPF_choices += adder( "SCPF", "new_Test", false, "Sa", true )
244 USECASE_choices += adder( "USECASE", "basic", false, "Sa", true )
Devin Lim61657e42017-10-09 17:24:40 -0700245}
246def sunday(){
247 FUNC_choices += adder( "FUNC", "basic", false, "S", true )
248 FUNC_choices += adder( "FUNC", "extra_A", false, "S", true )
249 FUNC_choices += adder( "FUNC", "extra_B", false, "S", true )
250 HA_choices += adder( "HA", "basic", false, "S", true )
251 HA_choices += adder( "HA", "extra_A", false, "S", true )
252 HA_choices += adder( "HA", "extra_B", false, "S", true )
Devin Lim61643762017-12-07 15:55:38 -0800253 SR_choices += adder( "SR", "basic", false, "S", true )
Devin Lim61657e42017-10-09 17:24:40 -0700254 SCPF_choices += adder( "SCPF", "basic", false, "S", true )
255 USECASE_choices += adder( "USECASE", "basic", false, "S", true )
256}
257def adder( testCat, set, dayAdding, day, getResult ){
258 result = ""
259 for( String test in AllTheTests[ testCat ].keySet() ){
260 if( AllTheTests[ testCat ][ test ][ set ] ){
261 if( getResult )
262 result += test + ","
263 if( dayAdding )
264 dayAdder( testCat, test, day )
265 }
266 }
267 return result
268}
269def dayAdder( testCat, testName, dayOfWeek ){
270 AllTheTests[ testCat ][ testName ][ "day" ] += dayOfWeek + ","
271}
Devin Lim90803a82017-08-29 13:41:44 -0700272def runTestSeq( testList ){
273 return{
274 for ( test in testList.keySet() ){
Devin Lim61643762017-12-07 15:55:38 -0800275 testList[ test ].call()
Devin Lim90803a82017-08-29 13:41:44 -0700276 }
277 }
278}
279
280def print_tests( tests ){
281 for( String test in tests.keySet() ){
Devin Lim61643762017-12-07 15:55:38 -0800282 if( tests[ test ][ "tests" ] != "" ){
Devin Lim90803a82017-08-29 13:41:44 -0700283 println test + ":"
Devin Lim61643762017-12-07 15:55:38 -0800284 println tests[ test ][ "tests" ]
Devin Lim90803a82017-08-29 13:41:44 -0700285 }
286 }
287}
288def organize_tests( tests ){
Devin Lim61643762017-12-07 15:55:38 -0800289 testList = tests.tokenize( "\n;, " )
Devin Lim90803a82017-08-29 13:41:44 -0700290 for( String test in testList )
291 testcases [ Prefix_organizer[ ( test == "FUNCbgpls" || test == "FUNCvirNetNB" ? "US" : ( test[ 0 ] + test[ 1 ] ) ) ] ][ "tests" ] += test + ","
292}
Devin Lim61643762017-12-07 15:55:38 -0800293def borrow_mn( jobOn ){
294 result = ""
295 if( jobOn == "SR" ){
296 result = "~/cell_borrow.sh"
297 }
298 return result
299}
300def trigger( branch, tests, nodeName, jobOn, manuallyRun, onosTag ){
301 println jobOn + "-pipeline-" + manuallyRun ? "manually" : branch
302 wiki = branch
303 if ( branch != "master" ){
304 branch = "onos-" + branch
305 }
306 test_branch = "master"
307 node( "TestStation-" + nodeName + "s" ){
308 envSetup( branch, test_branch, onosTag, jobOn, manuallyRun )
309
310 exportEnvProperty( branch, test_branch, wiki, tests, post_result, manuallyRun, onosTag, isOldFlow )
311 }
312
313 jobToRun = jobOn + "-pipeline-" + ( manuallyRun ? "manually" : wiki )
314 build job: jobToRun, propagate: false
315}
Devin Lima0e52eb2017-09-13 18:35:12 -0700316def trigger_pipeline( branch, tests, nodeName, jobOn, manuallyRun, onosTag ){
Devin Lim90803a82017-08-29 13:41:44 -0700317// nodeName : "BM" or "VM"
318// jobOn : "SCPF" or "USECASE" or "FUNC" or "HA"
319 return{
Devin Lim61643762017-12-07 15:55:38 -0800320 if( jobOn == "SR" ){
Devin Limf5bf9b52018-02-28 18:16:21 -0800321 trigger( "1.11", tests, nodeName, jobOn, manuallyRun, onosTag )
322 trigger( "1.12", tests, nodeName, jobOn, manuallyRun, onosTag )
323 trigger( "master", tests, nodeName, jobOn, manuallyRun, onosTag )
Devin Limd1fb8e92018-02-28 16:29:33 -0800324 // returnCell( nodeName )
Devin Lim61643762017-12-07 15:55:38 -0800325 }else{
326 trigger( branch, tests, nodeName, jobOn, manuallyRun, onosTag )
Devin Lim90803a82017-08-29 13:41:44 -0700327 }
Devin Lim90803a82017-08-29 13:41:44 -0700328 }
329}
330
331// export Environment properties.
Devin Lim0e967162017-11-03 15:59:53 -0700332def exportEnvProperty( onos_branch, test_branch, wiki, tests, postResult, manually_run, onosTag, isOldFlow ){
Devin Lim61643762017-12-07 15:55:38 -0800333 stage( "export Property" ){
Devin Lim90803a82017-08-29 13:41:44 -0700334 sh '''
335 echo "ONOSBranch=''' + onos_branch +'''" > /var/jenkins/TestONOS.property
336 echo "TestONBranch=''' + test_branch +'''" >> /var/jenkins/TestONOS.property
Devin Lima0e52eb2017-09-13 18:35:12 -0700337 echo "ONOSTag='''+ onosTag +'''" >> /var/jenkins/TestONOS.property
Devin Lim90803a82017-08-29 13:41:44 -0700338 echo "WikiPrefix=''' + wiki +'''" >> /var/jenkins/TestONOS.property
339 echo "ONOSJVMHeap='''+ env.ONOSJVMHeap +'''" >> /var/jenkins/TestONOS.property
340 echo "Tests=''' + tests +'''" >> /var/jenkins/TestONOS.property
341 echo "postResult=''' + postResult +'''" >> /var/jenkins/TestONOS.property
342 echo "manualRun=''' + manually_run +'''" >> /var/jenkins/TestONOS.property
Devin Lim0e967162017-11-03 15:59:53 -0700343 echo "isOldFlow=''' + isOldFlow +'''" >> /var/jenkins/TestONOS.property
344
Devin Lim90803a82017-08-29 13:41:44 -0700345 '''
346 }
347}
348// Initialize the environment Setup for the onos and OnosSystemTest
Devin Lim0e967162017-11-03 15:59:53 -0700349def envSetup( onos_branch, test_branch, onos_tag, jobOn, manuallyRun ){
Devin Lim61643762017-12-07 15:55:38 -0800350 stage( "envSetup" ) {
Devin Limf5bf9b52018-02-28 18:16:21 -0800351 // after env: ''' + borrow_mn( jobOn ) + '''
Devin Lima0e52eb2017-09-13 18:35:12 -0700352 sh '''#!/bin/bash -l
Devin Lim90803a82017-08-29 13:41:44 -0700353 set +e
354 . ~/.bashrc
355 env
Devin Lim0e967162017-11-03 15:59:53 -0700356 ''' + preSetup( onos_branch, test_branch, onos_tag, manuallyRun ) + '''
Devin Limcbba0852017-11-13 10:31:32 -0800357 ''' + oldFlowCheck( jobOn, onos_branch ) + '''
Devin Lim0e967162017-11-03 15:59:53 -0700358 ''' + postSetup( onos_branch, test_branch, onos_tag, manuallyRun )
359 }
360}
Devin Lim61643762017-12-07 15:55:38 -0800361def tagCheck( onos_tag, onos_branch ){
Devin Lim0e967162017-11-03 15:59:53 -0700362 result = "git checkout "
Devin Lim61643762017-12-07 15:55:38 -0800363 if ( onos_tag == "" )
Devin Lim0e967162017-11-03 15:59:53 -0700364 result += onos_branch //create new local branch
365 else
366 result += onos_tag //checkout the tag
367 return result
368}
369def preSetup( onos_branch, test_branch, onos_tag, isManual ){
370 result = ""
371 if( !isManual ){
372 result = '''echo -e "\n##### Set TestON Branch #####"
Devin Lima0e52eb2017-09-13 18:35:12 -0700373 echo "TestON Branch is set on: ''' + test_branch + '''"
Devin Lim90803a82017-08-29 13:41:44 -0700374
375 cd ~/OnosSystemTest/
376 git checkout HEAD~1 # Make sure you aren't pn a branch
377 git branch | grep -v "detached from" | xargs git branch -d # delete all local branches merged with remote
Devin Lima0e52eb2017-09-13 18:35:12 -0700378 git branch -D ''' + test_branch + ''' # just incase there are local changes. This will normally result in a branch not found error
Devin Lim90803a82017-08-29 13:41:44 -0700379 git clean -df # clean any local files
380 git fetch --all # update all caches from remotes
Devin Lima0e52eb2017-09-13 18:35:12 -0700381 git reset --hard origin/''' + test_branch +''' # force local index to match remote branch
Devin Lim90803a82017-08-29 13:41:44 -0700382 git clean -df # clean any local files
Devin Lima0e52eb2017-09-13 18:35:12 -0700383 git checkout ''' + test_branch + ''' #create new local branch
Devin Lim90803a82017-08-29 13:41:44 -0700384 git branch
385 git log -1 --decorate
386
387
388 echo -e "\n##### Set ONOS Branch #####"
Devin Lima0e52eb2017-09-13 18:35:12 -0700389 echo "ONOS Branch is set on: ''' + onos_branch + '''"
Devin Lim90803a82017-08-29 13:41:44 -0700390
391 echo -e "\n #### check karaf version ######"
392 env |grep karaf
393
394 cd ~/onos
395 rm -rf buck-out/*
396 ~/onos/tools/build/onos-buck clean
397 git checkout HEAD~1 # Make sure you aren't pn a branch
398 git branch | grep -v "detached from" | xargs git branch -d # delete all local branches merged with remote
Devin Lima0e52eb2017-09-13 18:35:12 -0700399 git branch -D ''' + onos_branch + ''' # just incase there are local changes. This will normally result in a branch not found error
Devin Lim90803a82017-08-29 13:41:44 -0700400 git clean -df # clean any local files
401 git fetch --all # update all caches from remotes
Devin Lima0e52eb2017-09-13 18:35:12 -0700402 git reset --hard origin/''' + onos_branch + ''' # force local index to match remote branch
Devin Lim90803a82017-08-29 13:41:44 -0700403 git clean -df # clean any local files
Devin Lim61643762017-12-07 15:55:38 -0800404 ''' + tagCheck( onos_tag, onos_branch ) + '''
Devin Lim90803a82017-08-29 13:41:44 -0700405 git branch
406 git log -1 --decorate
407
408
409 echo -e "\n##### set jvm heap size to 8G #####"
410 echo ${ONOSJVMHeap}
411
Devin Lima0e52eb2017-09-13 18:35:12 -0700412 inserted_line="export JAVA_OPTS=\"\${ONOSJVMHeap}\""
413 sed -i "s/bash/bash\\n$inserted_line/" ~/onos/tools/package/bin/onos-service
Devin Lim90803a82017-08-29 13:41:44 -0700414
415 echo "##### Check onos-service setting..... #####"
416 cat ~/onos/tools/package/bin/onos-service
417
Devin Lim0e967162017-11-03 15:59:53 -0700418 export JAVA_HOME=/usr/lib/jvm/java-8-oracle'''
419 }
420 return result
421}
Devin Limcbba0852017-11-13 10:31:32 -0800422def oldFlowCheck( jobOn, onos_branch ){
Devin Lim0e967162017-11-03 15:59:53 -0700423 result = ""
Devin Lim61643762017-12-07 15:55:38 -0800424 if( jobOn == "SCPF" && ( onos_branch== "master" || onos_branch=="onos-1.12" ) )
425 result = '''sed -i -e 's/@Component(immediate = true)/@Component(enabled = false)/g' ~/onos/core/store/dist/src/main/java/org/onosproject/store/flow/impl/''' + ( isOldFlow ? "DistributedFlowRuleStore" : "ECFlowRuleStore" ) + '''.java
426 sed -i -e 's/@Component(enabled = false)/@Component(immediate = true)/g' ~/onos/core/store/dist/src/main/java/org/onosproject/store/flow/impl/''' + ( isOldFlow ? "ECFlowRuleStore" : "DistributedFlowRuleStore" ) + ".java"
Devin Lim0e967162017-11-03 15:59:53 -0700427 return result
428}
429def postSetup( onos_branch, test_branch, onos_tag, isManual ){
430 result = ""
431 if( !isManual ){
432 result = '''echo -e "\n##### build ONOS skip unit tests ######"
Devin Lim90803a82017-08-29 13:41:44 -0700433 #mvn clean install -DskipTests
434 # Force buck update
435 rm -f ~/onos/bin/buck
436 ~/onos/tools/build/onos-buck build onos
437
Devin Lima0e52eb2017-09-13 18:35:12 -0700438 sleep 30
439 echo -e "\n##### Stop all running instances of Karaf #####"
440 kill $(ps -efw | grep karaf | grep -v grep | awk '{print $2}')
441 sleep 30
442
Devin Lim90803a82017-08-29 13:41:44 -0700443 git branch'''
444 }
Devin Lim37a83792017-10-26 16:38:21 -0700445 return result
Devin Lim61643762017-12-07 15:55:38 -0800446}
447def returnCell( nodeName ){
448 node( "TestStation-" + nodeName + "s" ){
449 sh '''#!/bin/bash -l
450 set +e
451 . ~/.bashrc
452 env
453 ~/./return_cell.sh
454 '''
455 }
Devin Lim90803a82017-08-29 13:41:44 -0700456}