1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
|
/*
* Copyright (c) 2003, 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 4950756
* @summary Test that RequiredModelMBean.invoke will not invoke methods
* from the RequiredModelMBean class itself if they are not in the
* ModelMBeanInfo
* @author Eamonn McManus
*
* @run clean RequiredModelMBeanMethodTest
* @run build RequiredModelMBeanMethodTest
* @run main RequiredModelMBeanMethodTest
*/
import java.lang.reflect.*;
import javax.management.*;
import javax.management.modelmbean.*;
/*
* We do the same test with a number of different operations:
*
* - A plain operation that is directed to the managed resource in the
* usual way. We give it some parameters so we can test that the
* class loading logic for signature parameters is reasonable.
*
* - An operation (removeNotificationListener) that is directed to the
* RequiredModelMBean itself. We use this particular operation because
* it will throw an exception, which allows us to check that it did in
* fact execute.
*
* - An operation (load()) that has the same signature as a
* RequiredModelMBean operation but is directed to the resource
* because of a "class" field in the descriptor.
*
* - An operation (store()) that has the same signature as a
* RequiredModelMBean operation but is directed to the resource
* because of a "targetObject" field in the descriptor.
*
* In each case we check that the operation does not work if it is not
* in the ModelMBeanInfo, and does work if it is.
*/
public class RequiredModelMBeanMethodTest {
public static void main(String[] args) throws Exception {
boolean ok = true;
MBeanServer mbs = MBeanServerFactory.createMBeanServer();
Descriptor tralalaDescriptor =
new DescriptorSupport(new String[] {
"name=tralala",
"descriptorType=operation",
"role=operation",
"targetType=ObjectReference",
});
Method tralalaMethod =
Resource.class.getMethod("tralala",
new Class[] {int.class, Resource.class});
ModelMBeanOperationInfo tralalaInfo =
new ModelMBeanOperationInfo("tralala descr", tralalaMethod,
tralalaDescriptor);
Method remACNLMethod =
RequiredModelMBean.class.getMethod("removeAttributeChangeNotificationListener",
new Class[] {
NotificationListener.class,
String.class
});
ModelMBeanOperationInfo remACNLInfo =
new ModelMBeanOperationInfo("remACNL descr", remACNLMethod);
Descriptor loadDescriptor =
new DescriptorSupport(new String[] {
"name=load",
"descriptorType=operation",
"role=operation",
"targetType=ObjectReference",
"class=" + Resource.class.getName(),
});
ModelMBeanOperationInfo loadInfo =
new ModelMBeanOperationInfo("load", "load descr",
new MBeanParameterInfo[0],
"void", ModelMBeanOperationInfo.ACTION,
loadDescriptor);
Descriptor storeDescriptor =
new DescriptorSupport(new String[] {
"name=store",
"descriptorType=operation",
"role=operation",
"targetType=ObjectReference",
});
storeDescriptor.setField("targetObject", resource);
ModelMBeanOperationInfo storeInfo =
new ModelMBeanOperationInfo("store", "store descr",
new MBeanParameterInfo[0],
"void", ModelMBeanOperationInfo.ACTION,
storeDescriptor);
ModelMBeanInfo emptyMMBI =
new ModelMBeanInfoSupport(Resource.class.getName(),
"empty descr",
null, null, null, null);
ModelMBean emptyMMB = new RequiredModelMBean(emptyMMBI);
emptyMMB.setManagedResource(resource, "ObjectReference");
ObjectName emptyMMBName = new ObjectName("test:type=Empty");
mbs.registerMBean(emptyMMB, emptyMMBName);
System.out.println("Testing that we cannot call methods not in the " +
"ModelMBeanInfo");
try {
boolean thisok = test(mbs, emptyMMBName, false);
if (thisok)
System.out.println("...OK");
else
ok = false;
} catch (Exception e) {
System.out.println("TEST FAILED: Caught exception:");
e.printStackTrace(System.out);
ok = false;
}
ModelMBeanOperationInfo[] opInfos = {
tralalaInfo, remACNLInfo, loadInfo, storeInfo,
};
ModelMBeanInfo fullMMBI =
new ModelMBeanInfoSupport(Resource.class.getName(),
"full descr",
null, null, opInfos, null);
ModelMBean fullMMB = new RequiredModelMBean(fullMMBI);
fullMMB.setManagedResource(resource, "ObjectReference");
ObjectName fullMMBName = new ObjectName("test:type=Full");
mbs.registerMBean(fullMMB, fullMMBName);
System.out.println();
System.out.println("Testing that we can call methods in the " +
"ModelMBeanInfo");
System.out.println(" and that \"class\" or \"targetObject\" in " +
"descriptor directs methods to resource");
try {
boolean thisok = test(mbs, fullMMBName, true);
if (thisok)
System.out.println("...OK");
else
ok = false;
} catch (Exception e) {
System.out.println("TEST FAILED: Caught exception:");
e.printStackTrace(System.out);
ok = false;
}
if (ok) {
if (!resource.loadCalled || !resource.storeCalled) {
System.out.println("TEST FAILED: not called:" +
(resource.loadCalled ? "" : " load") +
(resource.storeCalled ? "" : " store"));
ok = false;
}
}
// Test the invoke("class.method") form
if (ok) {
System.out.println("Testing invoke(\"class.method\")");
resource.loadCalled = false;
mbs.invoke(fullMMBName, Resource.class.getName() + ".load",
null, null);
if (!resource.loadCalled) {
System.out.println("TEST FAILED: load not called");
ok = false;
}
try {
mbs.invoke(fullMMBName,
RequiredModelMBean.class.getName() +
".removeAttributeChangeNotificationListener",
new Object[] {boringListener, null},
new String[] {
NotificationListener.class.getName(),
String.class.getName(),
});
System.out.println("TEST FAILED: removeNotificationListener" +
" returned successfully but " +
"should not have");
ok = false;
} catch (MBeanException e) {
final Exception target = e.getTargetException();
if (target instanceof ListenerNotFoundException) {
// OK: there is no such listener
} else
throw e;
}
}
if (ok)
System.out.println("Test passed");
else {
System.out.println("TEST FAILED");
System.exit(1);
}
}
private static boolean test(MBeanServer mbs, ObjectName name,
boolean shouldWork)
throws Exception {
boolean ok = true;
final String[] names = {
"tralala",
"removeAttributeChangeNotificationListener",
"load",
"store",
};
for (int i = 0; i < 4; i++) {
boolean thisok = true;
try {
switch (i) {
case 0:
String tralala = (String)
mbs.invoke(name, names[i],
new Object[] {new Integer(5), resource},
new String[] {"int",
Resource.class.getName()});
if (!"tralala".equals(tralala)) {
System.out.println("TEST FAILED: tralala returned: " +
tralala);
thisok = false;
}
break;
case 1:
try {
mbs.invoke(name,
names[i],
new Object[] {boringListener, null},
new String[] {
NotificationListener.class.getName(),
String.class.getName(),
});
System.out.println("TEST FAILED: " + names[i] +
" returned successfully but " +
"should not have");
thisok = false;
} catch (MBeanException e) {
final Exception target = e.getTargetException();
if (target instanceof ListenerNotFoundException) {
// OK: there is no such listener
} else
throw e;
}
break;
case 2:
case 3:
mbs.invoke(name,
names[i],
new Object[0],
new String[0]);
break;
default:
throw new AssertionError();
}
thisok = shouldWork;
if (!shouldWork) {
System.out.println("TEST FAILED: " + names[i] +
" worked but should not");
}
} catch (MBeanException e) {
if (shouldWork) {
System.out.println("TEST FAILED: " + names[i] + ": " + e);
e.printStackTrace(System.out);
thisok = false;
} else {
Exception target = e.getTargetException();
if (!(target instanceof ServiceNotFoundException)) {
System.out.println("TEST FAILED: " + names[i] +
": wrong exception: " + target);
thisok = false;
}
}
} catch (Exception e) {
System.out.println("TEST FAILED: " + names[i] + ": " + e);
e.printStackTrace(System.out);
thisok = false;
}
if (thisok)
System.out.println("OK: " + names[i]);
else
ok = false;
}
return ok;
}
public static class Resource {
public String tralala(int x, Resource y) {
if (x != 5 || y != this)
return "wrong params: " + x + " " + y;
return "tralala";
}
public void load() {
loadCalled = true;
}
public void store() {
storeCalled = true;
}
boolean loadCalled, storeCalled;
}
private static Resource resource = new Resource();
private static NotificationListener boringListener =
new NotificationListener() {
public void handleNotification(Notification n, Object h) {
}
};
}
|