Devin Lim | f517519 | 2018-05-14 19:13:22 -0700 | [diff] [blame] | 1 | // 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 SR-pipeline-<branch> |
| 21 | |
Devin Lim | d1fb8e9 | 2018-02-28 16:29:33 -0800 | [diff] [blame] | 22 | #!groovy |
Devin Lim | f517519 | 2018-05-14 19:13:22 -0700 | [diff] [blame] | 23 | |
| 24 | // read dependencies. |
Devin Lim | b734ea5 | 2018-05-14 14:13:05 -0700 | [diff] [blame] | 25 | funcs = evaluate readTrusted( 'TestON/JenkinsFile/dependencies/JenkinsCommonFuncs.groovy' ) |
| 26 | test_lists = evaluate readTrusted( 'TestON/JenkinsFile/dependencies/JenkinsTestONTests.groovy' ) |
| 27 | fileRelated = evaluate readTrusted( 'TestON/JenkinsFile/dependencies/JenkinsPathAndFiles.groovy' ) |
Jeremy Ronquillo | 14ecc17 | 2018-03-05 09:57:17 -0800 | [diff] [blame] | 28 | |
Devin Lim | f517519 | 2018-05-14 19:13:22 -0700 | [diff] [blame] | 29 | // init configuratin to be SR |
Devin Lim | fe9a4cb | 2018-05-11 17:06:21 -0700 | [diff] [blame] | 30 | fileRelated.init() |
Devin Lim | d1fb8e9 | 2018-02-28 16:29:33 -0800 | [diff] [blame] | 31 | funcs.initialize( "SR" ); |
Devin Lim | f517519 | 2018-05-14 19:13:22 -0700 | [diff] [blame] | 32 | |
| 33 | // get the name of the Jenkins job. |
Devin Lim | 35df4e6 | 2018-04-06 17:58:58 -0700 | [diff] [blame] | 34 | jobName = env.JOB_NAME |
Devin Lim | f517519 | 2018-05-14 19:13:22 -0700 | [diff] [blame] | 35 | |
| 36 | // additional setup for Segment routing because it is running multiple branch concurrently on different machines. |
Devin Lim | c4054d5 | 2018-04-13 18:58:33 -0700 | [diff] [blame] | 37 | funcs.additionalInitForSR( jobName ) |
Devin Lim | f517519 | 2018-05-14 19:13:22 -0700 | [diff] [blame] | 38 | |
| 39 | // read the TestON.property depends on which branch it is running. ( currently 1.13 and master on Fabric2, 1.12 on Fabric3 ) |
Devin Lim | d1fb8e9 | 2018-02-28 16:29:33 -0800 | [diff] [blame] | 40 | def prop = null |
| 41 | prop = funcs.getProperties() |
Jeremy Ronquillo | 14ecc17 | 2018-03-05 09:57:17 -0800 | [diff] [blame] | 42 | SR = test_lists.getAllTheTests( prop[ "WikiPrefix" ] )[ "SR" ] |
| 43 | |
Devin Lim | f517519 | 2018-05-14 19:13:22 -0700 | [diff] [blame] | 44 | // set the file paths and directory |
Devin Lim | fe9a4cb | 2018-05-11 17:06:21 -0700 | [diff] [blame] | 45 | graph_generator_file = fileRelated.trendIndividual |
| 46 | graph_saved_directory = fileRelated.jenkinsWorkspace + "postjob-Fabric" + funcs.fabricOn( prop[ "ONOSBranch" ] ) + "/" |
Jeremy Ronquillo | 14ecc17 | 2018-03-05 09:57:17 -0800 | [diff] [blame] | 47 | |
Devin Lim | f517519 | 2018-05-14 19:13:22 -0700 | [diff] [blame] | 48 | // get the list of the tests. |
Devin Lim | d1fb8e9 | 2018-02-28 16:29:33 -0800 | [diff] [blame] | 49 | echo( "Testcases:" ) |
| 50 | def testsToRun = null |
| 51 | testsToRun = funcs.getTestsToRun( prop[ "Tests" ] ) |
| 52 | funcs.printTestToRun( testsToRun ) |
| 53 | |
Devin Lim | f517519 | 2018-05-14 19:13:22 -0700 | [diff] [blame] | 54 | // save the functions to run test in the dictionary. |
Devin Lim | d1fb8e9 | 2018-02-28 16:29:33 -0800 | [diff] [blame] | 55 | def tests = [:] |
| 56 | for( String test : SR.keySet() ){ |
| 57 | toBeRun = testsToRun.contains( test ) |
| 58 | def stepName = ( toBeRun ? "" : "Not " ) + "Running $test" |
| 59 | tests[stepName] = funcs.runTest( test, toBeRun, prop, test, false, SR, graph_generator_file, graph_saved_directory ) |
| 60 | } |
| 61 | |
Devin Lim | f517519 | 2018-05-14 19:13:22 -0700 | [diff] [blame] | 62 | // get start time |
Devin Lim | d1fb8e9 | 2018-02-28 16:29:33 -0800 | [diff] [blame] | 63 | start = funcs.getCurrentTime() |
Devin Lim | f517519 | 2018-05-14 19:13:22 -0700 | [diff] [blame] | 64 | |
| 65 | // run the tests sequentially |
Devin Lim | d1fb8e9 | 2018-02-28 16:29:33 -0800 | [diff] [blame] | 66 | for ( test in tests.keySet() ){ |
| 67 | tests[ test ].call() |
| 68 | } |
| 69 | //funcs.generateOverallGraph( prop, SR, graph_saved_directory ) |
Devin Lim | f517519 | 2018-05-14 19:13:22 -0700 | [diff] [blame] | 70 | // send the notification of ending test after SR tests is done. |
Devin Lim | c4054d5 | 2018-04-13 18:58:33 -0700 | [diff] [blame] | 71 | funcs.sendResultToSlack( start, prop[ "manualRun" ], prop[ "WikiPrefix" ] ) |