Skip to content

Commit 9c7fab4

Browse files
committedAug 31, 2015
[JENKINS-30206] WorkflowParameterDefinitionBranchProperty working fine from a test at least.
Originally-Committed-As: b19985d062703304ba317a8f82743187469a4f27
1 parent 4e0f7f6 commit 9c7fab4

File tree

1 file changed

+37
-1
lines changed

1 file changed

+37
-1
lines changed
 

‎multibranch/src/test/java/org/jenkinsci/plugins/workflow/multibranch/WorkflowParameterDefinitionBranchPropertyTest.java

+37-1
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,38 @@
2525
package org.jenkinsci.plugins.workflow.multibranch;
2626

2727
import hudson.model.DescriptorVisibilityFilter;
28+
import hudson.model.ParameterDefinition;
29+
import hudson.model.ParametersAction;
30+
import hudson.model.StringParameterDefinition;
31+
import hudson.model.StringParameterValue;
2832
import java.util.Arrays;
33+
import java.util.Collections;
2934
import java.util.HashSet;
3035
import java.util.Set;
3136
import jenkins.branch.BranchProperty;
3237
import jenkins.branch.BranchPropertyDescriptor;
38+
import jenkins.branch.BranchSource;
3339
import jenkins.branch.BuildRetentionBranchProperty;
40+
import jenkins.branch.DefaultBranchPropertyStrategy;
3441
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;
3547
import org.junit.Test;
3648
import static org.junit.Assert.*;
49+
import org.junit.ClassRule;
3750
import org.junit.Rule;
51+
import org.jvnet.hudson.test.BuildWatcher;
52+
import org.jvnet.hudson.test.Issue;
3853
import org.jvnet.hudson.test.JenkinsRule;
3954

4055
public class WorkflowParameterDefinitionBranchPropertyTest {
4156

57+
@ClassRule public static BuildWatcher buildWatcher = new BuildWatcher();
4258
@Rule public JenkinsRule r = new JenkinsRule();
59+
@Rule public GitSampleRepoRule sampleRepo = new GitSampleRepoRule();
4360

4461
@Test public void propertyVisible() throws Exception {
4562
WorkflowMultiBranchProject p = r.jenkins.createProject(WorkflowMultiBranchProject.class, "p");
@@ -56,6 +73,25 @@ public class WorkflowParameterDefinitionBranchPropertyTest {
5673
assertEquals(expected, clazzes);
5774
}
5875

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+
}
6096

6197
}

0 commit comments

Comments
 (0)