test/jdk/javax/management/Introspector/InvokeGettersTest.java
author kbarrett
Wed, 13 Nov 2019 18:00:30 -0500
changeset 59067 f080b08daace
parent 47216 71c04702a3d5
permissions -rw-r--r--
8232588: G1 concurrent System.gc can return early or late 8233279: G1: GCLocker GC with +GCLockerInvokesConcurrent spins while cycle in progress Summary: Refactor G1CH::try_collect and fix bugs with concurrent collections. Reviewed-by: tschatzl, sjohanss
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
30376
2ccf2cf7ea48 8078896: Add @modules as needed to the jdk_svc tests
ykantser
parents: 5506
diff changeset
     2
 * Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * @bug 6317101
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary Test that the jmx.invoke.getters system property works
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * @author Eamonn McManus
44423
306c020eb154 8176176: fix @modules in jdk_svc tests
iignatyev
parents: 30376
diff changeset
    29
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * @run clean InvokeGettersTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * @run build InvokeGettersTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * @run main InvokeGettersTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.util.Arrays;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import javax.management.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
public class InvokeGettersTest {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    public static interface ThingMBean {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
        public int getWhatsit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
        public void setWhatsit(int x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
        public boolean isTrue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    public static class Thing implements ThingMBean {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        public int getWhatsit() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
            return whatsit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
        public void setWhatsit(int x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
            whatsit = x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        public boolean isTrue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        private int whatsit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    public static void main(String[] args) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        MBeanServer mbs = MBeanServerFactory.newMBeanServer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        ObjectName on = new ObjectName("a:b=c");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        mbs.registerMBean(new Thing(), on);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        if (test(mbs, on, false))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
            System.out.println("OK: invoke without jmx.invoke.getters");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        System.setProperty("jmx.invoke.getters", "true");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        if (test(mbs, on, true))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
            System.out.println("OK: invoke with jmx.invoke.getters");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        if (failure == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
            System.out.println("TEST PASSED");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
            throw new Exception("TEST FAILED: " + failure);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    private static boolean test(MBeanServer mbs, ObjectName on,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
                                boolean shouldWork) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        ++x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        mbs.setAttribute(on, new Attribute("Whatsit", x));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        Integer got = (Integer) mbs.getAttribute(on, "Whatsit");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        if (got != x)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
            return fail("Set attribute was not got: " + got);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        ++x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            mbs.invoke(on, "setWhatsit", new Object[] {x}, new String[] {"int"});
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
            if (!shouldWork)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
                return fail("invoke setWhatsit worked but should not have");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            System.out.println("invoke setWhatsit worked as expected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        } catch (ReflectionException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            if (shouldWork)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                return fail("invoke setWhatsit did not work but should have");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            System.out.println("set got expected exception: " + e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            got = (Integer) mbs.invoke(on, "getWhatsit", null, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            if (!shouldWork)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
                return fail("invoke getWhatsit worked but should not have");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            if (got != x)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
                return fail("Set attribute through invoke was not got: " + got);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            System.out.println("invoke getWhatsit worked as expected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        } catch (ReflectionException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
            if (shouldWork)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                return fail("invoke getWhatsit did not work but should have");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            System.out.println("get got expected exception: " + e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            boolean t = (Boolean) mbs.invoke(on, "isTrue", null, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            if (!shouldWork)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
                return fail("invoke isTrue worked but should not have");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
            if (!t)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                return fail("isTrue returned false");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
            System.out.println("invoke isTrue worked as expected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        } catch (ReflectionException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            if (shouldWork)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
                return fail("invoke isTrue did not work but should have");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                System.out.println("isTrue got expected exception: " + e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        // Following cases should fail whether or not jmx.invoke.getters is set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        final Object[][] badInvokes = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            {"isWhatsit", null, null},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            {"getWhatsit", new Object[] {5}, new String[] {"int"}},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            {"setWhatsit", new Object[] {false}, new String[] {"boolean"}},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            {"getTrue", null, null},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        boolean ok = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        for (Object[] args : badInvokes) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
            String name = (String) args[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
            Object[] params = (Object[]) args[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            String[] sig = (String[]) args[2];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            String what =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
                "invoke " + name + (sig == null ? "[]" : Arrays.toString(sig));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
                mbs.invoke(on, name, params, sig);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
                ok = fail(what + " worked but should not have");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
            } catch (ReflectionException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
                if (e.getCause() instanceof NoSuchMethodException)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
                    System.out.println(what + " failed as expected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
                else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
                    ok = fail(what + " got exception with wrong nested " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
                              "exception: " + e.getCause());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        return ok;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    private static boolean fail(String why) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        failure = why;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        System.out.println("FAILED: " + why);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    private static int x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    private static String failure;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
}