jdk/test/javax/management/Introspector/InvokeGettersTest.java
author ohair
Tue, 12 Apr 2011 18:36:42 -0700
changeset 9064 63c8767f5915
parent 5506 202f599c92aa
child 30376 2ccf2cf7ea48
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 2005, 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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * @run clean InvokeGettersTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * @run build InvokeGettersTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * @run main InvokeGettersTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.util.Arrays;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import javax.management.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
public class InvokeGettersTest {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    public static interface ThingMBean {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
        public int getWhatsit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
        public void setWhatsit(int x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
        public boolean isTrue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    public static class Thing implements ThingMBean {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
        public int getWhatsit() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
            return whatsit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        public void setWhatsit(int x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
            whatsit = x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        public boolean isTrue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        private int whatsit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    public static void main(String[] args) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        MBeanServer mbs = MBeanServerFactory.newMBeanServer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        ObjectName on = new ObjectName("a:b=c");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        mbs.registerMBean(new Thing(), on);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        if (test(mbs, on, false))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
            System.out.println("OK: invoke without jmx.invoke.getters");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        System.setProperty("jmx.invoke.getters", "true");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        if (test(mbs, on, true))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            System.out.println("OK: invoke with jmx.invoke.getters");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        if (failure == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
            System.out.println("TEST PASSED");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            throw new Exception("TEST FAILED: " + failure);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    private static boolean test(MBeanServer mbs, ObjectName on,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
                                boolean shouldWork) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        ++x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        mbs.setAttribute(on, new Attribute("Whatsit", x));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        Integer got = (Integer) mbs.getAttribute(on, "Whatsit");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        if (got != x)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
            return fail("Set attribute was not got: " + got);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        ++x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
            mbs.invoke(on, "setWhatsit", new Object[] {x}, new String[] {"int"});
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            if (!shouldWork)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
                return fail("invoke setWhatsit worked but should not have");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
            System.out.println("invoke setWhatsit worked as expected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        } catch (ReflectionException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            if (shouldWork)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
                return fail("invoke setWhatsit did not work but should have");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            System.out.println("set got expected exception: " + e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            got = (Integer) mbs.invoke(on, "getWhatsit", null, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            if (!shouldWork)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
                return fail("invoke getWhatsit worked but should not have");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            if (got != x)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
                return fail("Set attribute through invoke was not got: " + got);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            System.out.println("invoke getWhatsit worked as expected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        } catch (ReflectionException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            if (shouldWork)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                return fail("invoke getWhatsit did not work but should have");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
            System.out.println("get got expected exception: " + e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
            boolean t = (Boolean) mbs.invoke(on, "isTrue", null, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            if (!shouldWork)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
                return fail("invoke isTrue worked but should not have");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            if (!t)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                return fail("isTrue returned false");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
            System.out.println("invoke isTrue worked as expected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        } catch (ReflectionException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            if (shouldWork)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                return fail("invoke isTrue did not work but should have");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                System.out.println("isTrue got expected exception: " + e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        // Following cases should fail whether or not jmx.invoke.getters is set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        final Object[][] badInvokes = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            {"isWhatsit", null, null},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            {"getWhatsit", new Object[] {5}, new String[] {"int"}},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            {"setWhatsit", new Object[] {false}, new String[] {"boolean"}},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            {"getTrue", null, null},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        boolean ok = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        for (Object[] args : badInvokes) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            String name = (String) args[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
            Object[] params = (Object[]) args[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
            String[] sig = (String[]) args[2];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            String what =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
                "invoke " + name + (sig == null ? "[]" : Arrays.toString(sig));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
                mbs.invoke(on, name, params, sig);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
                ok = fail(what + " worked but should not have");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
            } catch (ReflectionException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
                if (e.getCause() instanceof NoSuchMethodException)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
                    System.out.println(what + " failed as expected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
                else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
                    ok = fail(what + " got exception with wrong nested " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
                              "exception: " + e.getCause());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
                }
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
        return ok;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    private static boolean fail(String why) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        failure = why;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        System.out.println("FAILED: " + why);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    private static int x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    private static String failure;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
}