Skip to content

Commit 257ae6b

Browse files
authored
Merge pull request #302 from duemir/JENKINS-61474
JENKINS-61474 Improve null safety of the tool step
2 parents 2e7111a + 936b400 commit 257ae6b

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

src/main/java/org/jenkinsci/plugins/workflow/steps/ToolStep.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public static final class Execution extends SynchronousNonBlockingStepExecution<
152152
continue;
153153
}
154154
for (ToolInstallation tool : desc.getInstallations()) {
155-
if (tool.getName().equals(name)) {
155+
if (name.equals(tool.getName())) {
156156
if (tool instanceof NodeSpecific) {
157157
tool = (ToolInstallation) ((NodeSpecific<?>) tool).forNode(getContext().get(Node.class), getContext().get(TaskListener.class));
158158
}

src/test/java/org/jenkinsci/plugins/workflow/steps/ToolStepTest.java

+16
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
import org.junit.Test;
4949
import org.junit.rules.TemporaryFolder;
5050
import org.jvnet.hudson.test.BuildWatcher;
51+
import org.jvnet.hudson.test.Issue;
5152
import org.jvnet.hudson.test.JenkinsRule;
5253
import org.jvnet.hudson.test.TestExtension;
5354
import org.jvnet.hudson.test.ToolInstallations;
@@ -120,6 +121,21 @@ public class ToolStepTest {
120121
r.assertBuildStatusSuccess(p.scheduleBuild2(0)));
121122
}
122123

124+
@Issue("JENKINS-61474") @Test public void toolWithoutName() throws Exception {
125+
File toolHome = folder.newFolder("mockTools");
126+
MockToolWithSymbol misconfiguredTool = new MockToolWithSymbol(null, toolHome.getAbsolutePath(), JenkinsRule.NO_PROPERTIES);
127+
MockToolWithSymbol tool = new MockToolWithSymbol("mock-tool-with-symbol", toolHome.getAbsolutePath(), JenkinsRule.NO_PROPERTIES);
128+
r.jenkins.getDescriptorByType(MockToolWithSymbol.MockToolWithSymbolDescriptor.class).setInstallations(misconfiguredTool, tool);
129+
130+
WorkflowJob p = r.jenkins.createProject(WorkflowJob.class, "p");
131+
p.setDefinition(new CpsFlowDefinition("node {def home = tool \"" + tool.getName() + "\"\n"
132+
+"echo \"${home}\"}",
133+
true));
134+
135+
r.assertLogContains(toolHome.getAbsolutePath(),
136+
r.assertBuildStatusSuccess(p.scheduleBuild2(0)));
137+
}
138+
123139
public static class MockToolWithSymbol extends ToolInstallation {
124140
public MockToolWithSymbol(String name, String home, List<? extends ToolProperty<?>> properties) {
125141
super(name, home, properties);

0 commit comments

Comments
 (0)