blob: 1cd34ba03eb1d7f7a8d54789b13f6baab6438df7 [file] [log] [blame]
Devin Lime1346f42018-05-15 15:41:36 -07001#!groovy
Devin Limf5175192018-05-14 19:13:22 -07002// Copyright 2017 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 manual-graph-generator-trend
22
Devin Limf5175192018-05-14 19:13:22 -070023// read the dependency functions
Devin Limb734ea52018-05-14 14:13:05 -070024funcs = evaluate readTrusted( 'TestON/JenkinsFile/dependencies/JenkinsCommonFuncs.groovy' )
25fileRelated = evaluate readTrusted( 'TestON/JenkinsFile/dependencies/JenkinsPathAndFiles.groovy' )
Devin Limfe9a4cb2018-05-11 17:06:21 -070026
27fileRelated.init()
Devin Limf5175192018-05-14 19:13:22 -070028
29// read the node cluster ( VM or BM or Fabrics ) from the Jenkins job.
Devin Lim61643762017-12-07 15:55:38 -080030nodeCluster = params.NodeCluster
31
Devin Lim61643762017-12-07 15:55:38 -080032funcs.initializeTrend( nodeCluster );
Devin Limf5175192018-05-14 19:13:22 -070033
34// do additional check for Fabric since it will be different depends on which branch it is running on.
Devin Lim981f80b2018-04-09 11:25:59 -070035if( nodeCluster == "Fabric" )
36 funcs.additionalInitForSR( params.ONOSbranch )
Devin Lim61643762017-12-07 15:55:38 -080037def prop = null
38prop = funcs.getProperties()
39
Devin Limf5175192018-05-14 19:13:22 -070040// get the list of the tests from the parameters.
Devin Lim61643762017-12-07 15:55:38 -080041def Tests = params.Test
42prop[ "ONOSBranch" ] = params.ONOSbranch
43
Devin Limf5175192018-05-14 19:13:22 -070044// set some of the paths of the file and directory
Devin Limfe9a4cb2018-05-11 17:06:21 -070045graph_generator_file = fileRelated.trendIndividual
46graph_saved_directory = fileRelated.jenkinsWorkspace + "postjob-" + nodeCluster + ( nodeCluster == "Fabric" ? funcs.fabricOn( prop[ "ONOSBranch" ] ) : "" ) + "/"
Devin Lim86e40532018-04-06 12:44:06 -070047
Devin Lim61643762017-12-07 15:55:38 -080048def testsToRun = null
49testsToRun = funcs.getTestsToRun( Tests )
50
Devin Limf5175192018-05-14 19:13:22 -070051// set functions into the dictionary.
Devin Lim61643762017-12-07 15:55:38 -080052def tests = [:]
53for( String test : testsToRun ){
54 println test
55 tests[ test ] = funcs.runTest( test, true, prop, test, true, [], graph_generator_file, graph_saved_directory )
56}
57
Devin Limf5175192018-05-14 19:13:22 -070058parallel tests
59//for ( test in tests.keySet() ){
60// tests[ test ].call()
61//}