8033445: [TESTBUG] Add test case for calling default methods from JNI
authorstsmirno
Thu, 14 May 2015 10:09:35 -0700
changeset 30747 b3fafad765d1
parent 30746 dfce1db72058
child 30748 653bc416d9ae
8033445: [TESTBUG] Add test case for calling default methods from JNI Reviewed-by: ctornqvi, dsimms
hotspot/make/test/JtregNative.gmk
hotspot/test/runtime/jni/8033445/DefaultMethods.java
hotspot/test/runtime/jni/8033445/libDefaultMethods.c
--- a/hotspot/make/test/JtregNative.gmk	Thu May 07 15:05:46 2015 +0200
+++ b/hotspot/make/test/JtregNative.gmk	Thu May 14 10:09:35 2015 -0700
@@ -42,6 +42,7 @@
 # Add more directories here when needed.
 BUILD_HOTSPOT_JTREG_NATIVE_SRC := \
     $(HOTSPOT_TOPDIR)/test/native_sanity \
+    $(HOTSPOT_TOPDIR)/test/runtime/jni/8033445 \
     #
 
 BUILD_HOTSPOT_JTREG_OUTPUT_DIR := $(BUILD_OUTPUT)/support/test/hotspot/jtreg/native
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/hotspot/test/runtime/jni/8033445/DefaultMethods.java	Thu May 14 10:09:35 2015 -0700
@@ -0,0 +1,106 @@
+/*
+ * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+/* @test
+ * @bug 8033445
+ * @summary regression tests for 8033445, verify default methods call from JNI
+ * @run main/native DefaultMethods
+ */
+
+interface A {
+
+    default int getOne() {
+        return 1;
+    }
+}
+
+interface B extends A {
+
+}
+
+interface C extends B {
+
+    @Override
+    default int getOne() {
+        return 2;
+    }
+}
+
+abstract class Abstract implements C {
+}
+
+class Impl extends Abstract {
+
+    @Override
+    public int getOne() {
+        return 3;
+    }
+}
+
+class Impl2 extends Impl {
+
+    public static final int expectedValue = 4;
+
+    @Override
+    public int getOne() {
+        return expectedValue;
+    }
+}
+
+public class DefaultMethods {
+
+    static {
+        System.loadLibrary("DefaultMethods");
+    }
+
+    static native int callAndVerify(Impl impl, String className, int expectedResult, int implExpectedResult);
+
+    /**
+     * @param args the command line arguments
+     */
+    public static void main(String[] args) {
+        Impl2 impl2 = new Impl2();
+        if (args.length == 0) {
+            callAndVerify(impl2, "A", 1, Impl2.expectedValue);
+            callAndVerify(impl2, "B", 1, Impl2.expectedValue);
+            callAndVerify(impl2, "C", 2, Impl2.expectedValue);
+            callAndVerify(impl2, "Abstract", 2, Impl2.expectedValue);
+            callAndVerify(impl2, "Impl", 3, Impl2.expectedValue);
+            callAndVerify(impl2, "Impl2", 4, Impl2.expectedValue);
+        } else {
+            verifyAndRun(args, impl2, Impl2.expectedValue);
+        }
+    }
+
+    //Method to verify input arguments and run a specific test with an expected result provided in the args array
+    static void verifyAndRun(String[] args, Impl2 impl, int expectedValue) {
+        if (args.length != 2) {
+            throw new RuntimeException("invalid number of input arguments");
+        }
+
+        String className = args[0];
+        int expectedResult = Integer.parseInt(args[1]);
+
+        callAndVerify(impl, className, expectedResult, expectedValue);
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/hotspot/test/runtime/jni/8033445/libDefaultMethods.c	Thu May 14 10:09:35 2015 -0700
@@ -0,0 +1,59 @@
+/*
+ * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+#include <jni.h>
+
+//Default methods call test
+JNIEXPORT void JNICALL
+Java_DefaultMethods_callAndVerify(JNIEnv *env, jclass unused, jobject impl, jstring klass_name, jint expected_result, jint impl_expected_result) {
+
+    jmethodID getOne_id = NULL;
+    jint res = 0;
+    jclass clazz = NULL;
+    const char* class_name = NULL;
+
+    class_name = (*env)->GetStringUTFChars(env, klass_name, NULL);
+
+    clazz = (*env)->FindClass(env, class_name);
+    (*env)->ReleaseStringUTFChars(env, klass_name, class_name);
+    if (clazz == NULL) {
+        (*env)->FatalError(env, "could not find class");
+    }
+
+    getOne_id = (*env)->GetMethodID(env, clazz, "getOne", "()I");
+    if (getOne_id == NULL) {
+        (*env)->FatalError(env, "could not find method");
+    }
+
+    res = (*env)->CallNonvirtualIntMethod(env, impl, clazz, getOne_id);
+
+    if (res != expected_result) {
+        (*env)->FatalError(env, "wrong return value");
+    }
+
+    res = (*env)->CallIntMethod(env, impl, getOne_id);
+
+    if (res != impl_expected_result) {
+        (*env)->FatalError(env, "wrong return value");
+    }
+}