aboutsummaryrefslogtreecommitdiffstats
path: root/test/java/org/jau/util/TestVersionInfo.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2021-01-25 07:31:26 +0100
committerSven Gothel <[email protected]>2021-01-25 07:31:26 +0100
commitf88eea315f7d4045155e3313d39d38a203ad564a (patch)
tree0fbd9e57da5697cafa7de06330b7356936ffb0b3 /test/java/org/jau/util/TestVersionInfo.java
parent18f7012edf0125f0c4ebfc8f14abb77a00f69f36 (diff)
Java import and modularization: Complete jaulib_fat and full JNI lib bootstraping via PlatformRuntime via PlatformProps (if available)
Diffstat (limited to 'test/java/org/jau/util/TestVersionInfo.java')
-rw-r--r--test/java/org/jau/util/TestVersionInfo.java79
1 files changed, 79 insertions, 0 deletions
diff --git a/test/java/org/jau/util/TestVersionInfo.java b/test/java/org/jau/util/TestVersionInfo.java
new file mode 100644
index 0000000..79a4d5c
--- /dev/null
+++ b/test/java/org/jau/util/TestVersionInfo.java
@@ -0,0 +1,79 @@
+/**
+ * Copyright 2010 JogAmp Community. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without modification, are
+ * permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice, this list of
+ * conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ * of conditions and the following disclaimer in the documentation and/or other materials
+ * provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY JogAmp Community ``AS IS'' AND ANY EXPRESS OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JogAmp Community OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * The views and conclusions contained in the software and documentation are those of the
+ * authors and should not be interpreted as representing official policies, either expressed
+ * or implied, of JogAmp Community.
+ */
+
+package org.jau.util;
+
+import java.io.IOException;
+import java.net.URISyntaxException;
+import java.security.NoSuchAlgorithmException;
+
+import org.jau.base.JaulibVersion;
+import org.jau.junit.util.SingletonJunitCase;
+import org.jau.pkg.JaulibJarSHASum;
+import org.jau.sec.SHASum;
+import org.junit.Assert;
+import org.junit.FixMethodOrder;
+import org.junit.Test;
+import org.junit.runners.MethodSorters;
+
+@FixMethodOrder(MethodSorters.NAME_ASCENDING)
+public class TestVersionInfo extends SingletonJunitCase {
+ static boolean VERBOSE = false;
+
+ @Test
+ public void test01Info() {
+ System.err.println(VersionUtil.getPlatformInfo());
+ System.err.println("Version Info:");
+ System.err.println(JaulibVersion.getInstance());
+ System.err.println("");
+ System.err.println("Full Manifest:");
+ System.err.println(JaulibVersion.getInstance().getFullManifestInfo(null));
+ }
+
+ @Test
+ public void test02ValidateSHA()
+ throws IllegalArgumentException, IOException, URISyntaxException, SecurityException, NoSuchAlgorithmException
+ {
+ final JaulibVersion info = JaulibVersion.getInstance();
+ final String shaClassesThis = info.getImplementationSHAClassesThis();
+ System.err.println("SHA CLASSES.this (build-time): "+shaClassesThis);
+
+ final JaulibJarSHASum shaSum = new JaulibJarSHASum();
+ final byte[] shasum = shaSum.compute(VERBOSE);
+ final String shaClasses = SHASum.toHexString(shasum, null).toString();
+ System.err.println("SHA CLASSES.this (now): "+shaClasses);
+ Assert.assertEquals("SHA not equal", shaClassesThis, shaClasses);
+ }
+
+ public static void main(final String args[]) throws IOException {
+ // VERBOSE = true;
+ final String tstname = TestVersionInfo.class.getName();
+ org.junit.runner.JUnitCore.main(tstname);
+ }
+
+}