25
25
package org .jenkinsci .plugins .workflow .multibranch ;
26
26
27
27
import hudson .model .DescriptorVisibilityFilter ;
28
+ import hudson .model .ParameterDefinition ;
29
+ import hudson .model .ParametersAction ;
30
+ import hudson .model .StringParameterDefinition ;
31
+ import hudson .model .StringParameterValue ;
28
32
import java .util .Arrays ;
33
+ import java .util .Collections ;
29
34
import java .util .HashSet ;
30
35
import java .util .Set ;
31
36
import jenkins .branch .BranchProperty ;
32
37
import jenkins .branch .BranchPropertyDescriptor ;
38
+ import jenkins .branch .BranchSource ;
33
39
import jenkins .branch .BuildRetentionBranchProperty ;
40
+ import jenkins .branch .DefaultBranchPropertyStrategy ;
34
41
import jenkins .branch .RateLimitBranchProperty ;
42
+ import jenkins .plugins .git .GitSCMSource ;
43
+ import org .jenkinsci .plugins .workflow .job .WorkflowJob ;
44
+ import org .jenkinsci .plugins .workflow .job .WorkflowRun ;
45
+ import static org .jenkinsci .plugins .workflow .multibranch .WorkflowMultiBranchProjectTest .findBranchProject ;
46
+ import org .jenkinsci .plugins .workflow .steps .scm .GitSampleRepoRule ;
35
47
import org .junit .Test ;
36
48
import static org .junit .Assert .*;
49
+ import org .junit .ClassRule ;
37
50
import org .junit .Rule ;
51
+ import org .jvnet .hudson .test .BuildWatcher ;
52
+ import org .jvnet .hudson .test .Issue ;
38
53
import org .jvnet .hudson .test .JenkinsRule ;
39
54
40
55
public class WorkflowParameterDefinitionBranchPropertyTest {
41
56
57
+ @ ClassRule public static BuildWatcher buildWatcher = new BuildWatcher ();
42
58
@ Rule public JenkinsRule r = new JenkinsRule ();
59
+ @ Rule public GitSampleRepoRule sampleRepo = new GitSampleRepoRule ();
43
60
44
61
@ Test public void propertyVisible () throws Exception {
45
62
WorkflowMultiBranchProject p = r .jenkins .createProject (WorkflowMultiBranchProject .class , "p" );
@@ -56,6 +73,25 @@ public class WorkflowParameterDefinitionBranchPropertyTest {
56
73
assertEquals (expected , clazzes );
57
74
}
58
75
59
- // TODO can configure property and pass parameters to branch projects
76
+ @ Issue ("JENKINS-30206" )
77
+ @ Test public void useParameter () throws Exception {
78
+ sampleRepo .init ();
79
+ sampleRepo .write ("Jenkinsfile" , "echo \" received ${myparam}\" " );
80
+ sampleRepo .git ("add" , "Jenkinsfile" );
81
+ sampleRepo .git ("commit" , "--all" , "--message=flow" );
82
+ WorkflowMultiBranchProject mp = r .jenkins .createProject (WorkflowMultiBranchProject .class , "p" );
83
+ WorkflowParameterDefinitionBranchProperty prop = new WorkflowParameterDefinitionBranchProperty ();
84
+ prop .setParameterDefinitions (Collections .<ParameterDefinition >singletonList (new StringParameterDefinition ("myparam" , "default value" )));
85
+ mp .getSourcesList ().add (new BranchSource (new GitSCMSource (null , sampleRepo .toString (), "" , "*" , "" , false ), new DefaultBranchPropertyStrategy (new BranchProperty [] {prop })));
86
+ WorkflowJob p = findBranchProject (mp , "master" );
87
+ assertEquals (1 , mp .getItems ().size ());
88
+ r .waitUntilNoActivity ();
89
+ WorkflowRun b1 = p .getLastBuild ();
90
+ assertEquals (1 , b1 .getNumber ());
91
+ r .assertLogContains ("received default value" , b1 );
92
+ WorkflowRun b2 = r .assertBuildStatusSuccess (p .scheduleBuild2 (0 , new ParametersAction (new StringParameterValue ("myparam" , "special value" ))));
93
+ assertEquals (2 , b2 .getNumber ());
94
+ r .assertLogContains ("received special value" , b2 );
95
+ }
60
96
61
97
}
0 commit comments