jdk/test/java/lang/management/ManagementFactory/MBeanServerMXBeanUnsupportedTest.java
author ohair
Tue, 25 May 2010 15:58:33 -0700
changeset 5506 202f599c92aa
parent 2 90ce3da70b43
child 10060 55f7b9ec8719
permissions -rw-r--r--
6943119: Rebrand source copyright notices Reviewed-by: darcy, weijun
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) 2006, 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 6403794
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary Test that all the platform MXBeans are wrapped in StandardMBean so
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 *          an MBeanServer which does not have support for MXBeans can be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * @author Luis-Miguel Alventosa
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * @run clean MBeanServerMXBeanUnsupportedTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * @run build MBeanServerMXBeanUnsupportedTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * @run main MBeanServerMXBeanUnsupportedTest
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.lang.management.ManagementFactory;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.lang.reflect.InvocationHandler;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.lang.reflect.Method;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.lang.reflect.Proxy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import javax.management.MBeanServer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import javax.management.MBeanServerBuilder;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import javax.management.MBeanServerDelegate;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import javax.management.ObjectName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import javax.management.StandardMBean;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import javax.management.remote.MBeanServerForwarder;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
public class MBeanServerMXBeanUnsupportedTest {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
     * An MBeanServerBuilder that returns an MBeanServer which throws a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     * RuntimeException if MXBeans are not converted into StandardMBean.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    public static class MBeanServerBuilderImpl extends MBeanServerBuilder {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        private final MBeanServerBuilder inner;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
        public MBeanServerBuilderImpl() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
            inner = new MBeanServerBuilder();
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 MBeanServer newMBeanServer(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
                String defaultDomain,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
                MBeanServer outer,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
                MBeanServerDelegate delegate) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
            final MBeanServerForwarder mbsf =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
                    MBeanServerForwarderInvocationHandler.newProxyInstance();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            final MBeanServer innerMBeanServer =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
                    inner.newMBeanServer(defaultDomain,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
                    (outer == null ? mbsf : outer),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
                    delegate);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            mbsf.setMBeanServer(innerMBeanServer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
            return mbsf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * An MBeanServerForwarderInvocationHandler that throws a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * RuntimeException if we try to register a non StandardMBean.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    public static class MBeanServerForwarderInvocationHandler
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
            implements InvocationHandler {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        public static MBeanServerForwarder newProxyInstance() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
            final InvocationHandler handler =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
                    new MBeanServerForwarderInvocationHandler();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            final Class[] interfaces =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
                    new Class[] {MBeanServerForwarder.class};
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            Object proxy = Proxy.newProxyInstance(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                    MBeanServerForwarder.class.getClassLoader(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
                    interfaces,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
                    handler);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            return MBeanServerForwarder.class.cast(proxy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        public Object invoke(Object proxy, Method method, Object[] args)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                throws Throwable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
            final String methodName = method.getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
            if (methodName.equals("getMBeanServer")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
                return mbs;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            if (methodName.equals("setMBeanServer")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                if (args[0] == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                    throw new IllegalArgumentException("Null MBeanServer");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
                if (mbs != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                    throw new IllegalArgumentException("MBeanServer object " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                            "already initialized");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
                mbs = (MBeanServer) args[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            if (methodName.equals("registerMBean")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                Object mbean = args[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                ObjectName name = (ObjectName) args[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
                String domain = name.getDomain();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                System.out.println("registerMBean: class=" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                        mbean.getClass().getName() + "\tname=" + name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
                Object result = method.invoke(mbs, args);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                if (domain.equals("java.lang") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
                    domain.equals("java.util.logging") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
                    domain.equals("com.sun.management")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
                    String mxbean = (String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
                        mbs.getMBeanInfo(name).getDescriptor().getFieldValue("mxbean");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
                    if (mxbean == null || !mxbean.equals("true")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
                        throw new RuntimeException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
                                "Platform MBeans must be MXBeans!");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
                    if (!(mbean instanceof StandardMBean)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
                        throw new RuntimeException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
                                "MXBeans must be wrapped in StandardMBean!");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
                return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            return method.invoke(mbs, args);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        private MBeanServer mbs;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * Standalone entry point.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * Run the test and report to stdout.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    public static void main(String args[]) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        System.setProperty("javax.management.builder.initial",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
                MBeanServerBuilderImpl.class.getName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            ManagementFactory.getPlatformMBeanServer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        } catch (RuntimeException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            System.out.println(">>> Unhappy Bye, Bye!");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            throw e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        System.out.println(">>> Happy Bye, Bye!");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
}