Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #1528 from Wilfred/better_default_text
Browse files Browse the repository at this point in the history
[JENKINS-755] Describe the built-in JDK as '(System)'.
  • Loading branch information
oleg-nenashev committed Oct 24, 2015
2 parents 6a7b898 + 19511a1 commit 730d6ec
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/model/AbstractProject.java
Expand Up @@ -358,7 +358,7 @@ public EnvVars getEnvironment(Node node, TaskListener listener) throws IOExcepti
jdkTool = jdkTool.forNode(node, listener);
}
jdkTool.buildEnvVars(env);
} else if (jdk != null && !jdk.equals(JDK.DEFAULT_NAME)) {
} else if (!JDK.isDefaultName(jdk)) {
listener.getLogger().println("No JDK named ‘" + jdk + "’ found");
}

Expand Down
15 changes: 13 additions & 2 deletions core/src/main/java/hudson/model/JDK.java
Expand Up @@ -45,6 +45,8 @@

import jenkins.model.Jenkins;
import org.kohsuke.stapler.DataBoundConstructor;
import org.kohsuke.accmod.Restricted;
import org.kohsuke.accmod.restrictions.NoExternalUse;

/**
* Information about JDK installation.
Expand All @@ -54,10 +56,19 @@
public final class JDK extends ToolInstallation implements NodeSpecific<JDK>, EnvironmentSpecific<JDK> {

/**
* Name of the “default JDK”, meaning no specific JDK selected.
* Name of the “System JDK”, which is just the JDK on Jenkins' $PATH.
* @since 1.577
*/
public static final String DEFAULT_NAME = "(Default)";
public static final String DEFAULT_NAME = "(System)";

@Restricted(NoExternalUse.class)
public static boolean isDefaultName(String name) {
if ("(Default)".equals(name)) {
// DEFAULT_NAME took this value prior to 1.598.
return true;
}
return DEFAULT_NAME.equals(name);
}

/**
* @deprecated since 2009-02-25
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/jenkins/model/Jenkins.java
Expand Up @@ -3670,7 +3670,7 @@ public void doWorkspaceCleanup(StaplerResponse rsp) throws IOException {
* If the user chose the default JDK, make sure we got 'java' in PATH.
*/
public FormValidation doDefaultJDKCheck(StaplerRequest request, @QueryParameter String value) {
if(!value.equals(JDK.DEFAULT_NAME))
if(!JDK.isDefaultName(value))
// assume the user configured named ones properly in system config ---
// or else system config should have reported form field validation errors.
return FormValidation.ok();
Expand Down
59 changes: 59 additions & 0 deletions core/src/test/java/jenkins/model/JDKNameTest.java
@@ -0,0 +1,59 @@
/*
* The MIT License
*
* Copyright (c) 2014
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package jenkins.model;

import static org.hamcrest.CoreMatchers.equalTo;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
import hudson.model.JDK;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.jvnet.hudson.test.Issue;
import org.powermock.modules.junit4.PowerMockRunner;

@RunWith(PowerMockRunner.class)
public class JDKNameTest {
@Test
public void nullIsNotDefaultName() {
assertThat(JDK.isDefaultName(null), is(false));
}

@Test
public void recognizeOldDefaultName() {
// DEFAULT_NAME took this value prior to 1.598.
assertThat(JDK.isDefaultName("(Default)"), is(true));
}

@Test
public void recognizeDefaultName() {
assertThat(JDK.isDefaultName(JDK.DEFAULT_NAME), is(true));
}

@Test
public void othernameNotDefault() {
assertThat(JDK.isDefaultName("I'm a customized name"), is(false));
}

}

0 comments on commit 730d6ec

Please sign in to comment.