1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
/* Copyright (c) 2013 Timothy Wall, All Rights Reserved
*
* The contents of this file is dual-licensed under 2
* alternative Open Source/Free licenses: LGPL 2.1 or later and
* Apache License 2.0. (starting with JNA version 4.0.0).
*
* You can freely decide which license you want to apply to
* the project.
*
* You may obtain a copy of the LGPL License at:
*
* http://www.gnu.org/licenses/licenses.html
*
* A copy is also included in the downloadable source code package
* containing JNA, in file "LGPL2.1".
*
* You may obtain a copy of the Apache License at:
*
* http://www.apache.org/licenses/
*
* A copy is also included in the downloadable source code package
* containing JNA, in file "AL2.0".
*/
package com.sun.jna;
import junit.framework.TestCase;
//@SuppressWarnings("unused")
public class PlatformTest extends TestCase {
public void testOSPrefix() {
assertEquals("Wrong resource path", "win32-x86",
Platform.getNativeLibraryResourcePrefix(Platform.WINDOWS,
"x86", "Windows"));
assertEquals("Wrong resource path Windows/i386", "win32-x86",
Platform.getNativeLibraryResourcePrefix(Platform.WINDOWS,
"i386", "Windows"));
assertEquals("Wrong resource path Windows CE/arm", "w32ce-arm",
Platform.getNativeLibraryResourcePrefix(Platform.WINDOWSCE,
"arm", "Windows CE"));
assertEquals("Wrong resource path Mac/x86", "darwin-x86",
Platform.getNativeLibraryResourcePrefix(Platform.MAC,
"x86", "Darwin"));
assertEquals("Wrong resource path Mac/x86", "darwin-x86",
Platform.getNativeLibraryResourcePrefix(Platform.MAC,
"i386", "Darwin"));
assertEquals("Wrong resource path Mac/x86_64", "darwin-x86-64",
Platform.getNativeLibraryResourcePrefix(Platform.MAC,
"x86_64", "Mac"));
assertEquals("Wrong resource path Mac/aarch64", "darwin-aarch64",
Platform.getNativeLibraryResourcePrefix(Platform.MAC,
"aarch64", "Mac"));
assertEquals("Wrong resource path Solaris/sparc", "sunos-sparc",
Platform.getNativeLibraryResourcePrefix(Platform.SOLARIS,
"sparc", "Solaris"));
assertEquals("Wrong resource path SunOS/sparcv9", "sunos-sparcv9",
Platform.getNativeLibraryResourcePrefix(Platform.SOLARIS,
"sparcv9", "SunOS"));
assertEquals("Wrong resource path Linux/i386", "linux-x86",
Platform.getNativeLibraryResourcePrefix(Platform.LINUX,
"i386", "Linux/Gnu"));
assertEquals("Wrong resource path Linux/x86", "linux-x86",
Platform.getNativeLibraryResourcePrefix(Platform.LINUX,
"x86", "Linux"));
assertEquals("Wrong resource path Linux/x86", "linux-x86-64",
Platform.getNativeLibraryResourcePrefix(Platform.LINUX,
"x86_64", "Linux"));
assertEquals("Wrong resource path Linux/x86", "linux-x86-64",
Platform.getNativeLibraryResourcePrefix(Platform.LINUX,
"amd64", "Linux"));
assertEquals("Wrong resource path Linux/ppc", "linux-ppc",
Platform.getNativeLibraryResourcePrefix(Platform.LINUX,
"powerpc", "Linux"));
assertEquals("Wrong resource path Linux/sparcv9", "linux-sparcv9",
Platform.getNativeLibraryResourcePrefix(Platform.LINUX,
"sparcv9", "Linux"));
if (Platform.isSoftFloat()) {
assertEquals("Wrong resource path Linux/arm (softfloat)", "linux-armel",
Platform.getNativeLibraryResourcePrefix(Platform.LINUX,
"arm", "Linux/Gnu"));
} else {
assertEquals("Wrong resource path Linux/arm (hardfloat)", "linux-arm",
Platform.getNativeLibraryResourcePrefix(Platform.LINUX,
"arm", "Linux/Gnu"));
}
assertEquals("Wrong resource path DragonFlyBSD/x86-64", "dragonflybsd-x86-64",
Platform.getNativeLibraryResourcePrefix(Platform.DRAGONFLYBSD,
"x86-64", "DragonFlyBSD"));
assertEquals("Wrong resource path OpenBSD/x86", "openbsd-x86",
Platform.getNativeLibraryResourcePrefix(Platform.OPENBSD,
"x86", "OpenBSD"));
assertEquals("Wrong resource path FreeBSD/x86", "freebsd-x86",
Platform.getNativeLibraryResourcePrefix(Platform.FREEBSD,
"x86", "FreeBSD"));
assertEquals("Wrong resource path GNU/kFreeBSD/x86", "kfreebsd-x86",
Platform.getNativeLibraryResourcePrefix(Platform.KFREEBSD,
"x86", "GNU/kFreeBSD"));
assertEquals("Wrong resource path NetBSD/x86", "netbsd-x86",
Platform.getNativeLibraryResourcePrefix(Platform.NETBSD,
"x86", "NetBSD"));
assertEquals("Wrong resource path Linux/armv7l (android)", "android-arm",
Platform.getNativeLibraryResourcePrefix(Platform.ANDROID,
"armv7l", "Linux"));
assertEquals("Wrong resource path other/other", "name-ppc",
Platform.getNativeLibraryResourcePrefix(Platform.UNSPECIFIED,
"PowerPC", "Name Of System"));
}
public void testSystemProperty() {
String demoOverride = "demoOverride";
assertFalse(demoOverride.equals(Platform.getNativeLibraryResourcePrefix()));
System.setProperty("jna.prefix", demoOverride);
assertTrue(demoOverride.equals(Platform.getNativeLibraryResourcePrefix()));
System.clearProperty("jna.prefix");
}
public static void main(String[] args) {
junit.textui.TestRunner.run(PlatformTest.class);
}
}
|