blob: 3ca8810980e26c5b12d95efb69264e574af32384 [file] [log] [blame]
Jon Hall2ee92f82018-06-07 13:07:33 -07001#!groovy
2// Copyright 2018 Open Networking Foundation (ONF)
3//
4// Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>,
5// the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>,
6// or 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
11// (at your option) any later version.
12//
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
21// This is the Jenkins script for SRHA-pipeline-<branch>
22
23// read dependencies.
24funcs = evaluate readTrusted( 'TestON/JenkinsFile/dependencies/JenkinsCommonFuncs.groovy' )
Jeremy Ronquillo64eeeb12019-05-13 11:19:46 -070025test_list = evaluate readTrusted( 'TestON/JenkinsFile/dependencies/JenkinsTestONTests.groovy' )
Jon Hall2ee92f82018-06-07 13:07:33 -070026fileRelated = evaluate readTrusted( 'TestON/JenkinsFile/dependencies/JenkinsPathAndFiles.groovy' )
27
28// init configuration to be SR
29fileRelated.init()
Jeremy Ronquillo64eeeb12019-05-13 11:19:46 -070030test_list.init()
Jon Hall2ee92f82018-06-07 13:07:33 -070031funcs.initialize( "SR" )
32
33// Allow to run with --params-file argument
34hasArgs = true
35
36// get the name of the Jenkins job.
37jobName = env.JOB_NAME
38
Jon Hall2ee92f82018-06-07 13:07:33 -070039// read the TestON.property depends on which branch it is running.
You Wangf043d0a2019-04-22 16:30:40 -070040// ( currently master on Fabric4, 2.1 on Fabric3 and 1.15 on Fabric2 )
Jon Hall2ee92f82018-06-07 13:07:33 -070041def prop = null
42prop = funcs.getProperties()
Jeremy Ronquillo64eeeb12019-05-13 11:19:46 -070043SRHA_tests = test_list.getTestsFromCategory( "SRHA" )
Jon Hall2ee92f82018-06-07 13:07:33 -070044
45// set the file paths and directory
46graph_generator_file = fileRelated.trendIndividual
47graph_saved_directory = fileRelated.jenkinsWorkspace + "postjob-Fabric" + "/"
48
49// get the list of the tests.
50echo( "Testcases:" )
51def testsToRun = null
52testsToRun = funcs.getTestsToRun( prop[ "Tests" ] )
53funcs.printTestToRun( testsToRun )
54
55// save the functions to run test in the dictionary.
56def tests = [ : ]
Jeremy Ronquillo64eeeb12019-05-13 11:19:46 -070057for ( String test : SRHA_tests.keySet() ){
Jon Hall2ee92f82018-06-07 13:07:33 -070058 toBeRun = testsToRun.contains( test )
59 def stepName = ( toBeRun ? "" : "Not " ) + "Running $test"
Jeremy Ronquillo64eeeb12019-05-13 11:19:46 -070060 def pureTestName = ( SRHA_tests[ test ].containsKey( "test" ) ? SRHA_tests[ test ][ "test" ].split().head() : test )
Jon Hall8b1e92c2018-06-13 14:07:22 -070061 tests[ stepName ] = funcs.runTest( test, toBeRun, prop, pureTestName, false,
Jeremy Ronquillo64eeeb12019-05-13 11:19:46 -070062 SRHA_tests, graph_generator_file, graph_saved_directory )
Jon Hall2ee92f82018-06-07 13:07:33 -070063}
64
65// get start time
66start = funcs.getCurrentTime()
67
68// run the tests sequentially
69for ( test in tests.keySet() ){
70 tests[ test ].call()
71}
72//funcs.generateOverallGraph( prop, SR, graph_saved_directory )
73// send the notification of ending test after SRHA tests are done.
74funcs.sendResultToSlack( start, prop[ "manualRun" ], prop[ "WikiPrefix" ] )