[JVM-Packages] Add support for detecting musl-based Linux (#7624)

Co-authored-by: Marc Philipp <marc@gradle.com>
This commit is contained in:
Daniel Clausen
2022-03-13 17:37:27 +01:00
committed by GitHub
parent 04fc575c0e
commit 4dafb5fac8
5 changed files with 296 additions and 10 deletions

View File

@@ -0,0 +1,98 @@
/*
Copyright (c) 2014 by Contributors
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 ml.dmlc.xgboost4j.java;
import org.junit.Test;
import org.junit.experimental.runners.Enclosed;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
import java.util.Collection;
import static java.util.Arrays.asList;
import static junit.framework.TestCase.assertSame;
import static ml.dmlc.xgboost4j.java.NativeLibLoader.Arch.X86_64;
import static ml.dmlc.xgboost4j.java.NativeLibLoader.Arch.AARCH64;
import static ml.dmlc.xgboost4j.java.NativeLibLoader.Arch.SPARC;
import static ml.dmlc.xgboost4j.java.NativeLibLoader.Arch.detectArch;
import static org.junit.Assert.assertThrows;
/**
* Test cases for {@link NativeLibLoader.Arch}.
*/
@RunWith(Enclosed.class)
public class ArchDetectionTest {
private static final String OS_ARCH_PROPERTY = "os.arch";
@RunWith(Parameterized.class)
public static class ParameterizedArchDetectionTest {
private final String osArchValue;
private final NativeLibLoader.Arch expectedArch;
public ParameterizedArchDetectionTest(String osArchValue, NativeLibLoader.Arch expectedArch) {
this.osArchValue = osArchValue;
this.expectedArch = expectedArch;
}
@Parameters
public static Collection<Object[]> data() {
return asList(new Object[][]{
{"x86_64", X86_64},
{"amd64", X86_64},
{"aarch64", AARCH64},
{"arm64", AARCH64},
{"sparc64", SPARC}
});
}
@Test
public void testArch() {
executeAndRestoreProperty(() -> {
System.setProperty(OS_ARCH_PROPERTY, osArchValue);
assertSame(detectArch(), expectedArch);
});
}
}
public static class UnsupportedArchDetectionTest {
@Test
public void testUnsupportedArch() {
executeAndRestoreProperty(() -> {
System.setProperty(OS_ARCH_PROPERTY, "unsupported");
assertThrows(IllegalStateException.class, NativeLibLoader.Arch::detectArch);
});
}
}
private static void executeAndRestoreProperty(Runnable action) {
String oldValue = System.getProperty(OS_ARCH_PROPERTY);
try {
action.run();
} finally {
if (oldValue != null) {
System.setProperty(OS_ARCH_PROPERTY, oldValue);
} else {
System.clearProperty(OS_ARCH_PROPERTY);
}
}
}
}

View File

@@ -0,0 +1,123 @@
/*
Copyright (c) 2014 by Contributors
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 ml.dmlc.xgboost4j.java;
import ml.dmlc.xgboost4j.java.NativeLibLoader.OS;
import org.junit.Rule;
import org.junit.Test;
import org.junit.experimental.runners.Enclosed;
import org.junit.rules.TemporaryFolder;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
import java.util.Collection;
import static java.util.Arrays.asList;
import static junit.framework.TestCase.assertSame;
import static ml.dmlc.xgboost4j.java.NativeLibLoader.OS.*;
import static org.junit.Assert.assertThrows;
/**
* Test cases for {@link OS}.
*/
@RunWith(Enclosed.class)
public class OsDetectionTest {
private static final String OS_NAME_PROPERTY = "os.name";
@RunWith(Parameterized.class)
public static class ParameterizedOSDetectionTest {
private final String osNameValue;
private final OS expectedOS;
public ParameterizedOSDetectionTest(String osNameValue, OS expectedOS) {
this.osNameValue = osNameValue;
this.expectedOS = expectedOS;
}
@Parameters
public static Collection<Object[]> data() {
return asList(new Object[][]{
{"windows", WINDOWS},
{"mac", MACOS},
{"darwin", MACOS},
{"linux", LINUX},
{"sunos", SOLARIS}
});
}
@Test
public void getOS() {
executeAndRestoreProperty(() -> {
System.setProperty(OS_NAME_PROPERTY, osNameValue);
assertSame(detectOS(), expectedOS);
});
}
}
public static class NonParameterizedOSDetectionTest {
@Rule
public TemporaryFolder folder = new TemporaryFolder();
@Test
public void testForRegularLinux() throws Exception {
setMappedFilesBaseDir(folder.getRoot().toPath());
folder.newFile("ld-2.23.so");
executeAndRestoreProperty(() -> {
System.setProperty(OS_NAME_PROPERTY, "linux");
assertSame(detectOS(), LINUX);
});
}
@Test
public void testForMuslBasedLinux() throws Exception {
setMappedFilesBaseDir(folder.getRoot().toPath());
folder.newFile("ld-musl-x86_64.so.1");
executeAndRestoreProperty(() -> {
System.setProperty(OS_NAME_PROPERTY, "linux");
assertSame(detectOS(), LINUX_MUSL);
});
}
@Test
public void testUnsupportedOs() {
executeAndRestoreProperty(() -> {
System.setProperty(OS_NAME_PROPERTY, "unsupported");
assertThrows(IllegalStateException.class, OS::detectOS);
});
}
}
private static void executeAndRestoreProperty(Runnable action) {
String oldValue = System.getProperty(OS_NAME_PROPERTY);
try {
action.run();
} finally {
if (oldValue != null) {
System.setProperty(OS_NAME_PROPERTY, oldValue);
} else {
System.clearProperty(OS_NAME_PROPERTY);
}
}
}
}