blob: 24c5f71b72bfe298f7fa2a553f9b15ea74e0d8d6 [file] [log] [blame]
Devin Limf5175192018-05-14 19:13:22 -07001// Copyright 2017 Open Networking Foundation (ONF)
2//
3// Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>,
4// the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>,
5// or the System Testing Guide page at <https://wiki.onosproject.org/x/WYQg>
6//
7// TestON is free software: you can redistribute it and/or modify
8// it under the terms of the GNU General Public License as published by
9// the Free Software Foundation, either version 2 of the License, or
10// (at your option) any later version.
11//
12// TestON is distributed in the hope that it will be useful,
13// but WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16//
17// You should have received a copy of the GNU General Public License
18// along with TestON. If not, see <http://www.gnu.org/licenses/>.
19
20// This is the Jenkins script for FUNC-pipeline-<branch>
21
Devin Lim90803a82017-08-29 13:41:44 -070022#!groovy
Devin Limf5175192018-05-14 19:13:22 -070023
24// read the dependency files
Devin Limb734ea52018-05-14 14:13:05 -070025funcs = evaluate readTrusted( 'TestON/JenkinsFile/dependencies/JenkinsCommonFuncs.groovy' )
26test_lists = evaluate readTrusted( 'TestON/JenkinsFile/dependencies/JenkinsTestONTests.groovy' )
27fileRelated = evaluate readTrusted( 'TestON/JenkinsFile/dependencies/JenkinsPathAndFiles.groovy' )
Jeremy Ronquillo14ecc172018-03-05 09:57:17 -080028
Devin Limfe9a4cb2018-05-11 17:06:21 -070029fileRelated.init()
Devin Limf5175192018-05-14 19:13:22 -070030
31// initialize the funcs with category of FUNC
Devin Lim61643762017-12-07 15:55:38 -080032funcs.initialize( "FUNC" );
Devin Limfe9a4cb2018-05-11 17:06:21 -070033
Devin Lim90803a82017-08-29 13:41:44 -070034// This is a Jenkinsfile for a scripted pipeline for the FUNC tests
35def prop = null
Devin Limf5175192018-05-14 19:13:22 -070036
37// Read the TestONOS.property from the VM
Devin Lim61643762017-12-07 15:55:38 -080038prop = funcs.getProperties()
Devin Limf5175192018-05-14 19:13:22 -070039
40// get the list of the test and init branch to it.
Jeremy Ronquillo14ecc172018-03-05 09:57:17 -080041FUNC = test_lists.getAllTheTests( prop[ "WikiPrefix" ] )[ "FUNC" ]
42
Devin Limf5175192018-05-14 19:13:22 -070043// init some directories
Devin Limfe9a4cb2018-05-11 17:06:21 -070044graph_generator_file = fileRelated.trendIndividual
45graph_saved_directory = fileRelated.jenkinsWorkspace + "postjob-VM/"
Jeremy Ronquillo14ecc172018-03-05 09:57:17 -080046
Devin Limf5175192018-05-14 19:13:22 -070047// get the list of the test to run
Devin Lim61643762017-12-07 15:55:38 -080048echo( "Testcases:" )
Devin Lim90803a82017-08-29 13:41:44 -070049def testsToRun = null
Devin Lim61643762017-12-07 15:55:38 -080050testsToRun = funcs.getTestsToRun( prop[ "Tests" ] )
51funcs.printTestToRun( testsToRun )
Devin Lim90803a82017-08-29 13:41:44 -070052
Devin Limf5175192018-05-14 19:13:22 -070053// run the test sequentially and save the function into the dictionary.
Devin Lim90803a82017-08-29 13:41:44 -070054def tests = [:]
55for( String test : FUNC.keySet() ){
56 toBeRun = testsToRun.contains( test )
57 def stepName = ( toBeRun ? "" : "Not " ) + "Running $test"
Devin Lim61643762017-12-07 15:55:38 -080058 tests[stepName] = funcs.runTest( test, toBeRun, prop, test, false, FUNC, graph_generator_file, graph_saved_directory )
Devin Lim90803a82017-08-29 13:41:44 -070059}
60
Devin Limf5175192018-05-14 19:13:22 -070061// get the start time of the test.
Devin Lim61643762017-12-07 15:55:38 -080062start = funcs.getCurrentTime()
Devin Limf5175192018-05-14 19:13:22 -070063
64// run the tests sequentially.
Devin Lim90803a82017-08-29 13:41:44 -070065for ( test in tests.keySet() ){
Devin Lim61643762017-12-07 15:55:38 -080066 tests[ test ].call()
Devin Lim90803a82017-08-29 13:41:44 -070067}
Devin Limf5175192018-05-14 19:13:22 -070068
69// generate the overall graph of the FUNC tests.
Devin Lim61643762017-12-07 15:55:38 -080070funcs.generateOverallGraph( prop, FUNC, graph_saved_directory )
Devin Limf5175192018-05-14 19:13:22 -070071
72// send the notification to Slack that running FUNC tests was ended.
Devin Limfe9a4cb2018-05-11 17:06:21 -070073funcs.sendResultToSlack( start, prop[ "manualRun" ], prop[ "WikiPrefix" ] )