|
48 | 48 | import org.junit.Test;
|
49 | 49 | import org.junit.rules.TemporaryFolder;
|
50 | 50 | import org.jvnet.hudson.test.BuildWatcher;
|
| 51 | +import org.jvnet.hudson.test.Issue; |
51 | 52 | import org.jvnet.hudson.test.JenkinsRule;
|
52 | 53 | import org.jvnet.hudson.test.TestExtension;
|
53 | 54 | import org.jvnet.hudson.test.ToolInstallations;
|
@@ -120,6 +121,21 @@ public class ToolStepTest {
|
120 | 121 | r.assertBuildStatusSuccess(p.scheduleBuild2(0)));
|
121 | 122 | }
|
122 | 123 |
|
| 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 | + |
123 | 139 | public static class MockToolWithSymbol extends ToolInstallation {
|
124 | 140 | public MockToolWithSymbol(String name, String home, List<? extends ToolProperty<?>> properties) {
|
125 | 141 | super(name, home, properties);
|
|
0 commit comments