Move JavaVersion to a reusable location.
parent
2c2b9be4be
commit
0ccd57285f
@ -0,0 +1,73 @@
|
||||
/*
|
||||
* Copyright 2012-2017 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.boot.system;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
import org.springframework.util.ClassUtils;
|
||||
|
||||
/**
|
||||
* Supported Java versions.
|
||||
*
|
||||
* @author Oliver Gierke
|
||||
* @author Phillip Webb
|
||||
* @since 2.0.0
|
||||
*/
|
||||
public enum JavaVersion {
|
||||
|
||||
/**
|
||||
* Java 1.8.
|
||||
*/
|
||||
EIGHT("1.8", "java.util.function.Function"),
|
||||
|
||||
/**
|
||||
* Java 1.9.
|
||||
*/
|
||||
NINE("1.9", "java.security.cert.URICertStoreParameters");
|
||||
|
||||
private final String name;
|
||||
|
||||
private final boolean available;
|
||||
|
||||
JavaVersion(String name, String className) {
|
||||
this.name = name;
|
||||
this.available = ClassUtils.isPresent(className, getClass().getClassLoader());
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the {@link JavaVersion} of the current runtime.
|
||||
* @return the {@link JavaVersion}
|
||||
*/
|
||||
public static JavaVersion getJavaVersion() {
|
||||
List<JavaVersion> candidates = Arrays.asList(JavaVersion.values());
|
||||
Collections.reverse(candidates);
|
||||
for (JavaVersion candidate : candidates) {
|
||||
if (candidate.available) {
|
||||
return candidate;
|
||||
}
|
||||
}
|
||||
return EIGHT;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,50 @@
|
||||
/*
|
||||
* Copyright 2012-2017 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.boot.system;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
/**
|
||||
* Tests for {@link JavaVersion}.
|
||||
*
|
||||
* @author Stephane Nicoll
|
||||
*/
|
||||
public class JavaVersionTests {
|
||||
|
||||
@Test
|
||||
public void currentVersionIsAvailable() {
|
||||
assertThat(JavaVersion.getJavaVersion()).isNotNull();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void java8IsOlderThanJava9() {
|
||||
assertThat(JavaVersion.EIGHT.compareTo(JavaVersion.NINE)).isLessThan(0);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void java9IsNewerThanJava8() {
|
||||
assertThat(JavaVersion.NINE.compareTo(JavaVersion.EIGHT)).isGreaterThan(0);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void comparisonOfSameVersion() {
|
||||
assertThat(JavaVersion.EIGHT.compareTo(JavaVersion.EIGHT)).isEqualTo(0);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue