author | ykantser |
Thu, 07 May 2015 09:11:49 +0200 | |
changeset 30376 | 2ccf2cf7ea48 |
parent 18299 | 627400b6bdcf |
child 37890 | f6cb5112c878 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
30376
2ccf2cf7ea48
8078896: Add @modules as needed to the jdk_svc tests
ykantser
parents:
18299
diff
changeset
|
2 |
* Copyright (c) 2006, 2015, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5506 | 19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
2 | 22 |
*/ |
23 |
||
24 |
/* |
|
25 |
* @test |
|
26 |
* @bug 6403794 |
|
27 |
* @summary Test that all the platform MXBeans are wrapped in StandardMBean so |
|
28 |
* an MBeanServer which does not have support for MXBeans can be used. |
|
29 |
* @author Luis-Miguel Alventosa |
|
30376
2ccf2cf7ea48
8078896: Add @modules as needed to the jdk_svc tests
ykantser
parents:
18299
diff
changeset
|
30 |
* @modules java.management |
2ccf2cf7ea48
8078896: Add @modules as needed to the jdk_svc tests
ykantser
parents:
18299
diff
changeset
|
31 |
* jdk.management |
2 | 32 |
* @run clean MBeanServerMXBeanUnsupportedTest |
33 |
* @run build MBeanServerMXBeanUnsupportedTest |
|
10060
55f7b9ec8719
7056447: test/java/lang/management/ManagementFactory/MBeanServerMXBeanUnsupportedTest.java fails in agentvm
alanb
parents:
5506
diff
changeset
|
34 |
* @run main/othervm MBeanServerMXBeanUnsupportedTest |
2 | 35 |
*/ |
36 |
||
37 |
import java.lang.management.ManagementFactory; |
|
38 |
import java.lang.reflect.InvocationHandler; |
|
39 |
import java.lang.reflect.Method; |
|
40 |
import java.lang.reflect.Proxy; |
|
17954 | 41 |
import java.util.Arrays; |
42 |
import java.util.HashSet; |
|
2 | 43 |
import javax.management.MBeanServer; |
44 |
import javax.management.MBeanServerBuilder; |
|
45 |
import javax.management.MBeanServerDelegate; |
|
46 |
import javax.management.ObjectName; |
|
47 |
import javax.management.StandardMBean; |
|
48 |
import javax.management.remote.MBeanServerForwarder; |
|
49 |
||
50 |
public class MBeanServerMXBeanUnsupportedTest { |
|
51 |
||
52 |
/** |
|
53 |
* An MBeanServerBuilder that returns an MBeanServer which throws a |
|
54 |
* RuntimeException if MXBeans are not converted into StandardMBean. |
|
55 |
*/ |
|
56 |
public static class MBeanServerBuilderImpl extends MBeanServerBuilder { |
|
57 |
||
58 |
private final MBeanServerBuilder inner; |
|
59 |
||
60 |
public MBeanServerBuilderImpl() { |
|
61 |
inner = new MBeanServerBuilder(); |
|
62 |
} |
|
63 |
||
64 |
public MBeanServer newMBeanServer( |
|
65 |
String defaultDomain, |
|
66 |
MBeanServer outer, |
|
67 |
MBeanServerDelegate delegate) { |
|
68 |
final MBeanServerForwarder mbsf = |
|
69 |
MBeanServerForwarderInvocationHandler.newProxyInstance(); |
|
70 |
||
71 |
final MBeanServer innerMBeanServer = |
|
72 |
inner.newMBeanServer(defaultDomain, |
|
73 |
(outer == null ? mbsf : outer), |
|
74 |
delegate); |
|
75 |
||
76 |
mbsf.setMBeanServer(innerMBeanServer); |
|
77 |
return mbsf; |
|
78 |
} |
|
79 |
} |
|
80 |
||
81 |
/** |
|
82 |
* An MBeanServerForwarderInvocationHandler that throws a |
|
83 |
* RuntimeException if we try to register a non StandardMBean. |
|
84 |
*/ |
|
85 |
public static class MBeanServerForwarderInvocationHandler |
|
86 |
implements InvocationHandler { |
|
87 |
||
17954 | 88 |
public static final HashSet<String> excludeList = new HashSet<String>( |
89 |
Arrays.asList("com.sun.management:type=DiagnosticCommand")); |
|
90 |
||
2 | 91 |
public static MBeanServerForwarder newProxyInstance() { |
92 |
||
93 |
final InvocationHandler handler = |
|
94 |
new MBeanServerForwarderInvocationHandler(); |
|
95 |
||
96 |
final Class[] interfaces = |
|
97 |
new Class[] {MBeanServerForwarder.class}; |
|
98 |
||
99 |
Object proxy = Proxy.newProxyInstance( |
|
100 |
MBeanServerForwarder.class.getClassLoader(), |
|
101 |
interfaces, |
|
102 |
handler); |
|
103 |
||
104 |
return MBeanServerForwarder.class.cast(proxy); |
|
105 |
} |
|
106 |
||
107 |
public Object invoke(Object proxy, Method method, Object[] args) |
|
108 |
throws Throwable { |
|
109 |
||
110 |
final String methodName = method.getName(); |
|
111 |
||
112 |
if (methodName.equals("getMBeanServer")) { |
|
113 |
return mbs; |
|
114 |
} |
|
115 |
||
116 |
if (methodName.equals("setMBeanServer")) { |
|
117 |
if (args[0] == null) |
|
118 |
throw new IllegalArgumentException("Null MBeanServer"); |
|
119 |
if (mbs != null) |
|
120 |
throw new IllegalArgumentException("MBeanServer object " + |
|
121 |
"already initialized"); |
|
122 |
mbs = (MBeanServer) args[0]; |
|
123 |
return null; |
|
124 |
} |
|
125 |
||
126 |
if (methodName.equals("registerMBean")) { |
|
127 |
Object mbean = args[0]; |
|
128 |
ObjectName name = (ObjectName) args[1]; |
|
129 |
String domain = name.getDomain(); |
|
130 |
System.out.println("registerMBean: class=" + |
|
131 |
mbean.getClass().getName() + "\tname=" + name); |
|
132 |
Object result = method.invoke(mbs, args); |
|
133 |
if (domain.equals("java.lang") || |
|
134 |
domain.equals("java.util.logging") || |
|
135 |
domain.equals("com.sun.management")) { |
|
17954 | 136 |
if(!excludeList.contains(name.getCanonicalName())) { |
137 |
String mxbean = (String) |
|
138 |
mbs.getMBeanInfo(name).getDescriptor().getFieldValue("mxbean"); |
|
139 |
if (mxbean == null || !mxbean.equals("true")) { |
|
140 |
throw new RuntimeException( |
|
2 | 141 |
"Platform MBeans must be MXBeans!"); |
17954 | 142 |
} |
143 |
if (!(mbean instanceof StandardMBean)) { |
|
144 |
throw new RuntimeException( |
|
2 | 145 |
"MXBeans must be wrapped in StandardMBean!"); |
17954 | 146 |
} |
2 | 147 |
} |
148 |
} |
|
149 |
return result; |
|
150 |
} |
|
151 |
||
152 |
return method.invoke(mbs, args); |
|
153 |
} |
|
154 |
||
155 |
private MBeanServer mbs; |
|
156 |
} |
|
157 |
||
158 |
/* |
|
159 |
* Standalone entry point. |
|
160 |
* |
|
161 |
* Run the test and report to stdout. |
|
162 |
*/ |
|
163 |
public static void main(String args[]) throws Exception { |
|
164 |
System.setProperty("javax.management.builder.initial", |
|
165 |
MBeanServerBuilderImpl.class.getName()); |
|
166 |
try { |
|
167 |
ManagementFactory.getPlatformMBeanServer(); |
|
168 |
} catch (RuntimeException e) { |
|
169 |
System.out.println(">>> Unhappy Bye, Bye!"); |
|
170 |
throw e; |
|
171 |
} |
|
172 |
System.out.println(">>> Happy Bye, Bye!"); |
|
173 |
} |
|
174 |
} |