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 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
|
/*
* Copyright (c) 2002, 2025, 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.
*/
package nsk.jdi.Method.isObsolete;
import nsk.share.*;
import nsk.share.jpda.*;
import nsk.share.jdi.*;
import com.sun.jdi.*;
import com.sun.jdi.connect.*;
import com.sun.jdi.request.*;
import com.sun.jdi.event.*;
import java.io.*;
import java.util.*;
/**
*/
public class isobsolete003 {
private final static String prefix = "nsk.jdi.Method.isObsolete";
private final static String className = ".isobsolete003";
private final static String debuggerName = prefix + className;
private final static String debuggeeName = debuggerName + "a";
private final static int brkpMainLineNumber = 48;
private final static int brkpFooLineNumber = 33;
private static int waitTime;
private static int exitStatus;
private static ArgumentHandler argHandler;
private static Log log;
private static Debugee debuggee;
private static VirtualMachine vm;
private static ReferenceType debuggeeClass;
private static EventRequestManager eventRManager;
private static EventSet eventSet;
private static EventIterator eventIterator;
public static void main(String argv[]) {
int result = run(argv,System.out);
if (result != 0) {
throw new RuntimeException("TEST FAILED with result " + result);
}
}
public static int run(String argv[], PrintStream out) {
exitStatus = Consts.TEST_PASSED;
argHandler = new ArgumentHandler(argv);
log = new Log(out, argHandler);
waitTime = argHandler.getWaitTime() * 60000;
try {
Binder binder = new Binder(argHandler, log);
debuggee = binder.bindToDebugee(debuggeeName);
debuggee.redirectStderr(log, "debuggee > ");
debuggee.createIOPipe();
eventRManager = debuggee.getEventRequestManager();
vm = debuggee.VM();
eventRManager = vm.eventRequestManager();
waitForDebuggeeClassPrepared();
if (vm.canRedefineClasses()) {
execTest();
debuggee.resume();
getEventSet();
if (eventIterator.nextEvent() instanceof VMDeathEvent) {
display("Waiting for the debuggee's finish...");
debuggee.waitFor();
display("Getting the debuggee's exit status.");
int status = debuggee.getStatus();
if (status != (Consts.TEST_PASSED + Consts.JCK_STATUS_BASE)) {
complain("Debuggee returned UNEXPECTED exit status: " + status);
exitStatus = Consts.TEST_FAILED;
}
} else {
throw new TestBug("Last event is not the VMDeathEvent");
}
} else {
display("vm.canRedefineClasses() == false : test is cancelled");
vm.exit(Consts.TEST_PASSED + Consts.JCK_STATUS_BASE);
}
} catch (VMDisconnectedException e) {
exitStatus = Consts.TEST_FAILED;
complain("The test cancelled due to VMDisconnectedException.");
e.printStackTrace(out);
display("Trying: vm.process().destroy();");
if (vm != null) {
Process vmProcess = vm.process();
if (vmProcess != null) {
vmProcess.destroy();
}
}
} catch (Exception e) {
exitStatus = Consts.TEST_FAILED;
complain("Unexpected Exception: " + e.getMessage());
e.printStackTrace(out);
complain("The test has not finished normally. Forcing: vm.exit().");
if (vm != null) {
vm.exit(Consts.TEST_PASSED + Consts.JCK_STATUS_BASE);
}
debuggee.resume();
getEventSet();
}
return exitStatus;
}
private static void execTest() {
ThreadReference mainThread = debuggee.mainThread();
// Set first breakpoint to have isobsolete003b class loaded.
BreakpointRequest bpRequest = debuggee.makeBreakpoint(debuggeeClass, "main", brkpMainLineNumber);
bpRequest.addThreadFilter(mainThread);
bpRequest.addCountFilter(1);
bpRequest.enable();
waitForEvent(bpRequest);
bpRequest.disable();
// At this point isobsolete003b class should be loaded in debuggee.
String redefName = prefix + ".isobsolete003b";
ReferenceType redefClass = debuggee.classByName(redefName);
if (redefClass == null) {
throw new TestBug(redefName + "is not found in debuggee.");
}
String methodName = "foo";
Method method = (Method) redefClass.methodsByName(methodName).get(0);
// save some values for check in future
Method oldMethod = method;
Location oldLocation = method.location();
long oldCodeIndex = oldLocation.codeIndex();
String oldRetTypeName = method.returnTypeName();
int oldHashCode = method.hashCode();
// Set new breakpoint to have isobsolete003b.foo() method on stack before redefinition.
bpRequest = debuggee.makeBreakpoint(redefClass, methodName, brkpFooLineNumber);
bpRequest.addThreadFilter(mainThread);
bpRequest.addCountFilter(1);
bpRequest.enable();
waitForEvent(bpRequest);
bpRequest.disable();
display("requested BreakpointEvent for foo() method received;");
try {
if (!mainThread.frame(0).location().method().equals(method)) {
throw new TestBug("foo() method is not on the top of the main thread stack");
}
} catch (IncompatibleThreadStateException e) {
throw new Failure("Unexpected IncompatibleThreadStateException while comparing mainThread.frame(0).location().method(): " + e.getMessage());
}
display("Making redefineClasses(mapClassToBytes()).");
vm.redefineClasses(mapClassToBytes());
// Check isObsolete after redefinition
try {
method = mainThread.frame(0).location().method();
} catch (IncompatibleThreadStateException e) {
throw new Failure("Unexpected IncompatibleThreadStateException while getting mainThread.frame(0).location().method(): " + e.getMessage());
}
if (!method.isObsolete()) {
complain("method.isObsolete() == true for foo() method after redefineClasses()");
exitStatus = Consts.TEST_FAILED;
} else {
// Do other checks for obsolete method.
if (method.equals(oldMethod)) {
complain("equals(oldMethod) returned true for obsolete method.");
exitStatus = Consts.TEST_FAILED;
}
List l = null;
Location loc = null;
try {
l = method.allLineLocations();
if (l.size() > 0) {
complain("allLineLocations() returned a list with non-zero size for obsolete method." +
"Number of Locations :" + l.size());
exitStatus = Consts.TEST_FAILED;
}
} catch (AbsentInformationException e) {
// it is expected
}
try {
l = method.allLineLocations(vm.getDefaultStratum(), null);
if (l.size() > 0) {
complain("allLineLocations(vm.getDefaultStratum(), null) returned a list with non-zero size for obsolete method." +
"Number of Locations :" + l.size());
exitStatus = Consts.TEST_FAILED;
}
} catch (AbsentInformationException e) {
// it is expected
}
try {
l = method.locationsOfLine(1);
if (l.size() > 0) {
complain("locationsOfLine(1) returned a list with non-zero size for obsolete method." +
"Number of Locations :" + l.size());
exitStatus = Consts.TEST_FAILED;
}
} catch (AbsentInformationException e) {
// it is expected
}
try {
l = method.locationsOfLine(vm.getDefaultStratum(), null, 1);
if (l.size() > 0) {
complain("locationsOfLine(vm.getDefaultStratum(), null, 1) returned a list with non-zero size for obsolete method." +
"Number of Locations :" + l.size());
exitStatus = Consts.TEST_FAILED;
}
} catch (AbsentInformationException e) {
// it is expected
}
try {
l = method.arguments();
if (l.size() > 0) {
complain("arguments() returned a list with non-zero size for obsolete method." +
"Size of list :" + l.size());
exitStatus = Consts.TEST_FAILED;
}
} catch (AbsentInformationException e) {
// it is expected
}
l = method.argumentTypeNames();
if (l.size() > 0) {
complain("argumentTypeNames() returned a list with non-zero size for obsolete method." +
"Size of list :" + l.size());
exitStatus = Consts.TEST_FAILED;
}
try {
l = method.argumentTypes();
if (l.size() > 0) {
complain("argumentsTypes() returned a list with non-zero size for obsolete method." +
"Size of list :" + l.size());
exitStatus = Consts.TEST_FAILED;
}
} catch (ClassNotLoadedException e) {
// it is expected
}
try {
l = method.variables();
if (l.size() > 0) {
complain("variables() returned a list with non-zero size for obsolete method." +
"Size of list :" + l.size());
exitStatus = Consts.TEST_FAILED;
}
} catch (AbsentInformationException e) {
// it is expected
}
try {
l = method.variablesByName("dummyInt");
if (l.size() > 0) {
complain("variablesByName(oldVar.name()) returned a list with non-zero size for obsolete method." +
"Size of list :" + l.size());
exitStatus = Consts.TEST_FAILED;
}
} catch (AbsentInformationException e) {
// it is expected
}
byte[] b = method.bytecodes();
if (b.length > 0) {
complain("bytecodes() returned an array with non-zero length for obsolete method." +
"Number of bytes :" + b.length);
exitStatus = Consts.TEST_FAILED;
}
loc = method.location();
if (loc != null && loc == oldLocation) {
complain("location() returned old location for obsolete method.");
exitStatus = Consts.TEST_FAILED;
}
loc = method.locationOfCodeIndex(oldCodeIndex);
if (loc != null) {
complain("locationOfCodeIndex(oldCodeIndex) returned not-null location for obsolete method.");
exitStatus = Consts.TEST_FAILED;
}
String rtName = method.returnTypeName();
if (rtName.equals(oldRetTypeName)) {
complain("returnTypeName() returned an old string for obsolete method: " + rtName);
exitStatus = Consts.TEST_FAILED;
}
try {
Type rType = method.returnType();
if (rType != null) {
complain("returnType() returned not-null Type for obsolete method: " + rType.name());
exitStatus = Consts.TEST_FAILED;
}
} catch (ClassNotLoadedException e) {
// it is expected
}
int hashCode = method.hashCode();
if (hashCode == oldHashCode) {
complain("hashCode() returned old value for obsolete method: " + hashCode);
exitStatus = Consts.TEST_FAILED;
}
}
}
private static void display(String msg) {
log.display("debugger > " + msg);
}
private static void complain(String msg) {
log.complain("debugger FAILURE > " + msg);
}
/**
* Returns Map object for redefinition.
*
*/
private static Map<? extends com.sun.jdi.ReferenceType,byte[]> mapClassToBytes() {
String[] args = argHandler.getArguments();
if (args.length <= 0) {
throw new Failure("mapClassToBytes(): Test arguments are not found.");
}
String testDir = args[0];
display("Test current dir = " + testDir);
String filePrefix = File.separator + "nsk"
+ File.separator + "jdi"
+ File.separator + "Method"
+ File.separator + "isObsolete";
String fileToRedefineName = testDir +
File.separator + "newclass" + filePrefix
+ File.separator + "isobsolete003b.class";
display("fileToRedefineName : " + fileToRedefineName);
byte[] arrayToRedefine;
try {
File fileToRedefine = new File(fileToRedefineName);
if (!fileToRedefine.exists()) {
throw new Failure("mapClassToBytes(): fileToRedefine does not exist");
}
FileInputStream inputFile = new FileInputStream(fileToRedefine);
arrayToRedefine = new byte [(int) fileToRedefine.length()];
inputFile.read(arrayToRedefine);
inputFile.close();
} catch (IOException e) {
complain("unexpected IOException: " + e);
throw new Failure(e);
}
String testClassName = prefix + ".isobsolete003b";
ReferenceType testClass = debuggee.classByName(testClassName);
HashMap<com.sun.jdi.ReferenceType,byte[]> mapForClass = new HashMap<com.sun.jdi.ReferenceType,byte[]>();
mapForClass.put(testClass, arrayToRedefine);
return mapForClass;
}
private static Event waitForEvent (EventRequest evRequest) {
vm.resume();
Event resultEvent = null;
try {
eventSet = null;
eventIterator = null;
eventSet = vm.eventQueue().remove(waitTime);
if (eventSet == null) {
throw new Failure("TIMEOUT while waiting for an event");
}
eventIterator = eventSet.eventIterator();
while (eventIterator.hasNext()) {
Event curEvent = eventIterator.nextEvent();
if (curEvent instanceof VMDisconnectEvent) {
throw new Failure("Unexpected VMDisconnectEvent received.");
} else if (curEvent.request().equals(evRequest)) {
display("Requested event received.");
resultEvent = curEvent;
break;
} else {
throw new TestBug("Unexpected Event received: " + curEvent.toString());
}
}
} catch (Exception e) {
throw new Failure("Unexpected exception while waiting for an event: " + e);
}
return resultEvent;
}
private static void getEventSet() {
try {
eventSet = vm.eventQueue().remove(waitTime);
if (eventSet == null) {
throw new Failure("TIMEOUT while waiting for an event");
}
eventIterator = eventSet.eventIterator();
} catch (Exception e) {
throw new Failure("getEventSet(): Unexpected exception while waiting for an event: " + e);
}
}
private static void waitForDebuggeeClassPrepared () {
display("Creating request for ClassPrepareEvent for debuggee.");
ClassPrepareRequest cpRequest = eventRManager.createClassPrepareRequest();
cpRequest.addClassFilter(debuggeeName);
cpRequest.addCountFilter(1);
cpRequest.enable();
ClassPrepareEvent event = (ClassPrepareEvent) waitForEvent(cpRequest);
cpRequest.disable();
debuggee.setMainThread(event.thread());
debuggeeClass = event.referenceType();
if (!debuggeeClass.name().equals(debuggeeName))
throw new Failure("Unexpected class name for ClassPrepareEvent : " + debuggeeClass.name());
}
}
|